New function mem_iconveh.
[gnulib.git] / ChangeLog
1 2007-01-21  Bruno Haible  <bruno@clisp.org>
2
3         * lib/striconveh.h (mem_iconveh): New declaration.
4         * lib/striconveh.c (mem_iconveh): New function.
5         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
6
7 2007-01-21  Bruno Haible  <bruno@clisp.org>
8
9         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
10
11         * lib/striconveh.h (mem_cd_iconveh): Change specification.
12         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
13         original result buffer.
14         (str_cd_iconveh): Update.
15         * tests/test-striconveh.c (main): Update.
16
17         * lib/striconv.h (mem_cd_iconv): Change specification.
18         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
19         result buffer.
20         (str_cd_iconv): Update.
21         * tests/test-striconv.c (main): Update.
22
23 2007-01-21  Bruno Haible  <bruno@clisp.org>
24
25         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
26
27 2007-01-20  Jim Meyering  <jim@meyering.net>
28
29         * lib/userspec.c (parse_with_separator): If a user or group string
30         starts with "+", skip the corresponding name-to-ID look-up, since
31         such a look-up must fail: user and group names may not include "+".
32
33 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
34
35         * lib/poll.c: Include sys/time.h and time.h unconditionally,
36         since we now assume the sys_time module.
37         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
38         check for sys/time.h; no longer needed.
39         * modules/poll (Depends-on): Depend on sys_time.
40
41 2007-01-18  Bruno Haible  <bruno@clisp.org>
42
43         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
44         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
45
46         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
47         gettimeofday.
48
49         * tests/test-gettimeofday.c: Include <time.h>.
50         (dummy): Remove variable.
51
52         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
53         gl_HEADER_SYS_TIME_H.
54         (gl_HEADER_SYS_TIME_H): New macro.
55
56         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
57         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
58         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
59         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
60         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
61         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
62         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
63         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
64         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
65         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
66         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
67
68         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
69         last change; it caused a compilation error when cross-compiling to
70         Cygwin.
71
72 2007-01-18  Jim Meyering  <jim@meyering.net>
73
74         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
75         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
76         than the race-prone "test -d sys || mkdir sys".
77         (configure.ac): Use AC_PROG_MKDIR_P.
78         * modules/sys_select: Likewise.
79         * modules/sys_socket: Likewise.
80         * modules/sys_time: Likewise.
81
82 2007-01-18  Eric Blake  <ebb9@byu.net>
83
84         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
85         replace gettimeofday.
86         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
87         name, to avoid infinite recursion.
88
89 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
90
91         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
92         module sys_time.
93         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
94         assume timespec.h defines struct timeval.
95         * lib/settime.c: Likewise.
96         * lib/utimens.c: Likewise.
97         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
98         since we now assume the gettimeofday module.
99         * lib/tempname.c (__gen_tempname): Likewise.
100         * lib/gettimeofday.h: Remove.
101         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
102         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
103         Include <time.h>, for 'time()'.
104         (localtime_buffer_addr): Also use this workaround if
105         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
106         to simplify the uses.  All uses changed.
107         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
108         that #undef is inside {}, and 'const' follows type name consistently.
109         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
110         (gettimeofday): Do not use the maximum possible value for
111         tv->tv_usec, since that might break usages other than ls.c.
112         Instead, we'll leave ls.c alone.  This undoes today's patch
113         by Bruno.  Add a compile-time warning for 1s-clock resolution;
114         we've never observed the problem but might as well keep the
115         canary.
116         * lib/nanosleep.c: Include timespec.h first, for interface check.
117         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
118         now assume the sys_time module.
119         * lib/tempname.c: Likewise.
120         * lib/timespec.h: Likewise.
121         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
122         needed.
123         * lib/strftime.c: Likewise.
124         * lib/timespec.h: Likewise.
125         * lib/posixtm.c: Include posixtm.h first, for interface check.
126         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
127         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
128         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
129         * lib/sys_time_.h: New file.
130         * lib/timespec.h (struct timespec): Use long int, not long.
131         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
132         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
133         Remove obsolescent call to AC_HEADER_TIME.
134         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
135         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
136         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
137         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
138         Likewise.
139         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
140         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
141         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
142         into the sys_time module.  Check for gettimeofday just once.
143         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
144         for gettimeofday signature to just check the signature.  Merely
145         compile it, since linking doesn't test signature.  Improve test for
146         whether gettimeofday.o is actually needed.
147         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
148         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
149         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
150         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
151         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
152         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
153         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
154         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
155         than worrying about sys/time.h.
156         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
157         Don't bother worrying about TIME_WITH_SYS_TIME.
158         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
159         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
160         * m4/sys_time_h.m4: New file.
161         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
162         Don't include sys/time.h.  Return from main rather than exiting.
163         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
164         all uses changed.
165         * modules/gethrxtime (Depends-on): Add sys_time.
166         * modules/gettime (Depends-on): Likewise.
167         * modules/gettimeofday (Depends-on): Likewise.
168         * modules/nanosleep (Depends-on): Likewise.
169         * modules/settime (Depends-on): Likewise.
170         * modules/tempname (Depends-on): Likewise.
171         * modules/utimens (Depends-on): Likewise.
172         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
173         (Include:) Change back to <sys/time.h>.
174         (Maintainer:) Add self.
175         * modules/sys_time: New file.
176         * modules/tempname (Depends-on): Add gettimeofday.
177         * tests/test-gettimeofday.c: Include <sys/time.h>
178         rather than gettimeofday.h.
179
180 2007-01-17  Bruno Haible  <bruno@clisp.org>
181
182         * gnulib-tool (func_get_license): Revert last patch. Instead, let
183         the license default to GPL.
184         (func_create_testdir): Don't complain if a module is LGPL and its
185         tests module depends on GPLed modules.
186
187 2007-01-17  Bruno Haible  <bruno@clisp.org>
188
189         * lib/gettimeofday.c (gettimeofday): Add code for the case
190         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
191         maximum possible value for tv->tv_usec, rather than the minimum one.
192
193 2005-10-08  Martin Lambers  <marlam@marlam.de>
194 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
195 2007-01-16  Bruno Haible  <bruno@clisp.org>
196
197         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
198         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
199         gl_FUNC_GETTIMEOFDAY.
200         (Include): Add gettimeofday.h.
201         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
202         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
203         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
204         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
205         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
206         * lib/gettimeofday.h: New file.
207         * lib/gettimeofday.c: Include <sys/timeb.h>.
208         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
209         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
210         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
211         fall back on time().
212
213         * tests/test-gettimeofday.c: New file.
214         * modules/gettimeofday-tests: New file.
215
216 2007-01-16  Eric Blake  <ebb9@byu.net>
217
218         * modules/fnmatch (Depends-on): Depend on wchar.
219         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
220         * m4/fnmatch.m4: Likewise.
221         * modules/mbchar (Makefile.am): Assume <wchar.h>.
222         * m4/mbchar.m4: Likewise.
223         * modules/mbswidth (Depends-on): Depend on wchar.
224         * lib/mbswidth.c: Assume <wchar.h>.
225         * m4/mbswidth.m4: Likewise.
226         * modules/quotearg (Depends-on): Depend on wchar.
227         * lib/quotearg.c: Assume <wchar.h>.
228         * m4/quotearg.m4: Likewise.
229         * modules/regex (Depends-on): Depend on wchar.
230         * lib/regex_internal.h: Assume <wchar.h>.
231         * m4/regex.m4: Likewise.
232         * modules/stdint (Depends-on): Depend on wchar.
233         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
234         * m4/stdint.m4: Likewise.
235         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
236         * modules/strftime (Depends-on): Depend on wchar.
237         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
238         * modules/strtol (Depends-on): Depend on wchar.
239         * lib/strtol.c: Assume <wchar.h>.
240         * modules/wcwidth (Depends-on): Depend on wchar.
241         * lib/wcwidth.h: Assume <wchar.h>.
242         * m4/wcwidth.m4: Likewise.
243
244 2007-01-16  Bruno Haible  <bruno@clisp.org>
245
246         * modules/csharpexec-script: New, created from...
247         * modules/csharpexec: ... this.
248
249 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
250
251         * modules/javaexec-script: New, created from...
252         * modules/javaexec: ... this.
253
254 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
255
256         * modules/poll (Dependencies): Add sys_select.
257
258 2007-01-15  Jim Meyering  <jim@meyering.net>
259
260         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
261         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
262         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
263         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
264
265 2007-01-15  Bruno Haible  <bruno@clisp.org>
266
267         * modules/striconveh: New file.
268         * lib/striconveh.h: New file.
269         * lib/striconveh.c: New file.
270         * MODULES.html.sh (Internationalization functions): Add striconveh.
271
272         * modules/striconveh-tests: New file.
273         * tests/test-striconveh.c: New file.
274
275 2007-01-15  Bruno Haible  <bruno@clisp.org>
276
277         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
278         not from GNU libiconv or GNU libc.
279
280 2007-01-15  Bruno Haible  <bruno@clisp.org>
281
282         * doc/gnulib-intro.texi (Copyright): Explain the different license
283         terms for module descriptions, autoconf macros, tests, documentation.
284
285 2007-01-14  Bruno Haible  <bruno@clisp.org>
286
287         * modules/striconv-tests: New file.
288         * tests/test-striconv.c: New file.
289
290 2007-01-14  Bruno Haible  <bruno@clisp.org>
291
292         * modules/iconv-tests: New file.
293         * tests/test-iconv.c: New file.
294
295 2007-01-14  Bruno Haible  <bruno@clisp.org>
296
297         * gnulib-tool (func_get_license): For test modules, use the license of
298         the main module.
299
300 2007-01-14  Bruno Haible  <bruno@clisp.org>
301
302         * modules/iconv (Include): Clarify that <iconv.h> can only be included
303         if iconv is found to exist.
304
305 2007-01-14  Bruno Haible  <bruno@clisp.org>
306
307         * modules/c-ctype-tests: New file.
308         * tests/test-c-ctype.c: New file.
309
310 2007-01-14  Bruno Haible  <bruno@clisp.org>
311
312         * modules/binary-io-tests: New file.
313         * tests/test-binary-io.sh: New file.
314         * tests/test-binary-io.c: New file.
315
316 2007-01-14  Bruno Haible  <bruno@clisp.org>
317
318         * modules/array-oset-tests: New file.
319         * tests/test-array_oset.c: New file.
320
321 2007-01-14  Bruno Haible  <bruno@clisp.org>
322
323         * modules/array-list-tests: New file.
324         * tests/test-array_list.c: New file.
325
326 2007-01-14  Bruno Haible  <bruno@clisp.org>
327
328         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
329         and make.
330         Reported by Simon Josefsson in
331         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
332
333 2007-01-14  Bruno Haible  <bruno@clisp.org>
334
335         * modules/allocsa-tests: New file.
336         * tests/test-allocsa.c: New file.
337
338 2007-01-14  Bruno Haible  <bruno@clisp.org>
339
340         * modules/fchdir (Depends-on): Add absolute-header.
341         * modules/unistd (Depends-on): Likewise.
342
343 2006-12-30  Bruno Haible  <bruno@clisp.org>
344
345         * modules/fchdir: New file.
346         * modules/unistd (Files): Add lib/unistd_.h.
347         (Makefile.am): Generate unistd.h from unistd_.h.
348         * lib/fchdir.c: New file.
349         * lib/dirent_.h: New file.
350         * lib/unistd_.h: New file.
351         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
352         * m4/fchdir.m4: New file.
353         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
354         (gl_HEADER_UNISTD): Invoke it.
355         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
356         function.
357         * lib/backupfile.c (opendir, closedir): Undefine.
358         * lib/chown.c (open, close): Undefine.
359         * lib/clean-temp.c (open, close): Undefine.
360         * lib/copy-file.c (open, close): Undefine.
361         * lib/execute.c (open, close): Undefine.
362         * lib/fsusage.c (open, close): Undefine.
363         * lib/gc-gnulib.c (open, close): Undefine.
364         * lib/getcwd.c (opendir, closedir): Undefine.
365         * lib/glob.c (opendir, closedir): Undefine.
366         * lib/javacomp.c (open, close): Undefine.
367         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
368         * lib/openat-proc.c (open, close): Undefine.
369         * lib/pagealign_alloc.c (open, close): Undefine.
370         * lib/pipe.c (open, close): Undefine.
371         * lib/progreloc.c (open, close): Undefine.
372         * lib/savedir.c (opendir, closedir): Undefine.
373         * lib/utime.c (open, close): Undefine.
374         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
375
376 2007-01-10  Bruno Haible  <bruno@clisp.org>
377
378         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
379
380 2007-01-12  Eric Blake  <ebb9@byu.net>
381
382         Provide a robust <wchar.h>.  Further simplifications are now
383         possible in other modules, but not included here.
384         * modules/wchar: New module.
385         * m4/wchar.m4: New file.
386         * lib/wchar_.h: Likewise.
387         * modules/mbchar (Depends-on): Depend on wchar, as the first use
388         of the new module.
389         * MODULES.html.sh (Extended multibyte and wide character utilities):
390         New section.
391
392 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
393
394         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
395         to a reasonable default for memory allocation.
396         (xreadlink): Don't allocate a huge buffer, to work around a buggy
397         file system that reports garbage st_size values for symlinks.
398         Problem reported by Liyang Hu.
399
400 2007-01-11  Simon Josefsson  <simon@josefsson.org>
401
402         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
403         Emacs .#* auto-save files).
404
405 2007-01-11  Bruno Haible  <bruno@clisp.org>
406
407         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
408         directory.
409
410 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
411
412         Use @...@ consistently in lib/wctype_.h.
413         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
414         on it being set to 1 or 0.
415         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
416         go back to AC_SUBSTing it.
417         * modules/wctype (Makefile.am): Undo previous change.
418
419 2007-01-10  Eric Blake  <ebb9@byu.net>
420
421         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
422         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
423         * modules/wctype (Makefile.am): Likewise.
424         Reported by Chris McGuire.
425
426 2007-01-10  Jim Meyering  <jim@meyering.net>
427
428         fts.c: a small readability/maintainability improvement
429         * lib/fts.c (fts_read): Make this code slightly more readable and
430         maintainable by hoisting the "sp->fts_cur = p" assignments to
431         immediately follow the statements that set P.  Derived from
432         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
433
434 2007-01-10  Eric Blake  <ebb9@byu.net>
435
436         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
437         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
438         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
439         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
440         Reported by Chris McGuire.
441
442 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
443
444         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
445         in sed script.
446
447 2007-01-09  Bruno Haible  <bruno@clisp.org>
448
449         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
450         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
451         variables.
452         (func_module): Use them.
453
454 2007-01-09  Bruno Haible  <bruno@clisp.org>
455
456         * modules/unistr/base: New file.
457         * lib/unistr.h: New file.
458
459         * modules/unistr/u8-to-u16: New file.
460         * lib/unistr/u8-to-u16.c: New file.
461
462         * modules/unistr/u8-to-u32: New file.
463         * lib/unistr/u8-to-u32.c: New file.
464
465         * modules/unistr/u16-to-u8: New file.
466         * lib/unistr/u16-to-u8.c: New file.
467
468         * modules/unistr/u16-to-u32: New file.
469         * lib/unistr/u16-to-u32.c: New file.
470
471         * modules/unistr/u32-to-u8: New file.
472         * lib/unistr/u32-to-u8.c: New file.
473
474         * modules/unistr/u32-to-u16: New file.
475         * lib/unistr/u32-to-u16.c: New file.
476
477         * modules/unistr/u8-check: New file.
478         * modules/unistr/u16-check: New file.
479         * modules/unistr/u32-check: New file.
480         * lib/unistr/u8-check.c: New file.
481         * lib/unistr/u16-check.c: New file.
482         * lib/unistr/u32-check.c: New file.
483
484         * modules/unistr/u8-chr: New file.
485         * modules/unistr/u16-chr: New file.
486         * modules/unistr/u32-chr: New file.
487         * lib/unistr/u8-chr.c: New file.
488         * lib/unistr/u16-chr.c: New file.
489         * lib/unistr/u32-chr.c: New file.
490
491         * modules/unistr/u8-cmp: New file.
492         * modules/unistr/u16-cmp: New file.
493         * modules/unistr/u32-cmp: New file.
494         * lib/unistr/u8-cmp.c: New file.
495         * lib/unistr/u16-cmp.c: New file.
496         * lib/unistr/u32-cmp.c: New file.
497
498         * modules/unistr/u8-cpy: New file.
499         * modules/unistr/u16-cpy: New file.
500         * modules/unistr/u32-cpy: New file.
501         * lib/unistr/u8-cpy.c: New file.
502         * lib/unistr/u16-cpy.c: New file.
503         * lib/unistr/u32-cpy.c: New file.
504         * lib/unistr/u-cpy.h: New file.
505
506         * modules/unistr/u8-cpy-alloc: New file.
507         * modules/unistr/u16-cpy-alloc: New file.
508         * modules/unistr/u32-cpy-alloc: New file.
509         * lib/unistr/u8-cpy-alloc.c: New file.
510         * lib/unistr/u16-cpy-alloc.c: New file.
511         * lib/unistr/u32-cpy-alloc.c: New file.
512         * lib/unistr/u-cpy-alloc.h: New file.
513
514         * modules/unistr/u8-endswith: New file.
515         * modules/unistr/u16-endswith: New file.
516         * modules/unistr/u32-endswith: New file.
517         * lib/unistr/u8-endswith.c: New file.
518         * lib/unistr/u16-endswith.c: New file.
519         * lib/unistr/u32-endswith.c: New file.
520         * lib/unistr/u-endswith.h: New file.
521
522         * modules/unistr/u8-mblen: New file.
523         * modules/unistr/u16-mblen: New file.
524         * modules/unistr/u32-mblen: New file.
525         * lib/unistr/u8-mblen.c: New file.
526         * lib/unistr/u16-mblen.c: New file.
527         * lib/unistr/u32-mblen.c: New file.
528
529         * modules/unistr/u8-mbtouc: New file.
530         * modules/unistr/u16-mbtouc: New file.
531         * modules/unistr/u32-mbtouc: New file.
532         * lib/unistr/u8-mbtouc.c: New file.
533         * lib/unistr/u16-mbtouc.c: New file.
534         * lib/unistr/u32-mbtouc.c: New file.
535
536         * modules/unistr/u8-mbtouc-safe: New file.
537         * modules/unistr/u16-mbtouc-safe: New file.
538         * modules/unistr/u32-mbtouc-safe: New file.
539         * lib/unistr/u8-mbtouc-safe.c: New file.
540         * lib/unistr/u16-mbtouc-safe.c: New file.
541         * lib/unistr/u32-mbtouc-safe.c: New file.
542
543         * modules/unistr/u8-move: New file.
544         * modules/unistr/u16-move: New file.
545         * modules/unistr/u32-move: New file.
546         * lib/unistr/u8-move.c: New file.
547         * lib/unistr/u16-move.c: New file.
548         * lib/unistr/u32-move.c: New file.
549         * lib/unistr/u-move.h: New file.
550
551         * modules/unistr/u8-next: New file.
552         * modules/unistr/u16-next: New file.
553         * modules/unistr/u32-next: New file.
554         * lib/unistr/u8-next.c: New file.
555         * lib/unistr/u16-next.c: New file.
556         * lib/unistr/u32-next.c: New file.
557
558         * modules/unistr/u8-prev: New file.
559         * modules/unistr/u16-prev: New file.
560         * modules/unistr/u32-prev: New file.
561         * lib/unistr/u8-prev.c: New file.
562         * lib/unistr/u16-prev.c: New file.
563         * lib/unistr/u32-prev.c: New file.
564
565         * modules/unistr/u8-set: New file.
566         * modules/unistr/u16-set: New file.
567         * modules/unistr/u32-set: New file.
568         * lib/unistr/u8-set.c: New file.
569         * lib/unistr/u16-set.c: New file.
570         * lib/unistr/u32-set.c: New file.
571         * lib/unistr/u-set.h: New file.
572
573         * modules/unistr/u8-startswith: New file.
574         * modules/unistr/u16-startswith: New file.
575         * modules/unistr/u32-startswith: New file.
576         * lib/unistr/u8-startswith.c: New file.
577         * lib/unistr/u16-startswith.c: New file.
578         * lib/unistr/u32-startswith.c: New file.
579         * lib/unistr/u-startswith.h: New file.
580
581         * modules/unistr/u8-stpcpy: New file.
582         * modules/unistr/u16-stpcpy: New file.
583         * modules/unistr/u32-stpcpy: New file.
584         * lib/unistr/u8-stpcpy.c: New file.
585         * lib/unistr/u16-stpcpy.c: New file.
586         * lib/unistr/u32-stpcpy.c: New file.
587         * lib/unistr/u-stpcpy.h: New file.
588
589         * modules/unistr/u8-stpncpy: New file.
590         * modules/unistr/u16-stpncpy: New file.
591         * modules/unistr/u32-stpncpy: New file.
592         * lib/unistr/u8-stpncpy.c: New file.
593         * lib/unistr/u16-stpncpy.c: New file.
594         * lib/unistr/u32-stpncpy.c: New file.
595         * lib/unistr/u-stpncpy.h: New file.
596
597         * modules/unistr/u8-strcat: New file.
598         * modules/unistr/u16-strcat: New file.
599         * modules/unistr/u32-strcat: New file.
600         * lib/unistr/u8-strcat.c: New file.
601         * lib/unistr/u16-strcat.c: New file.
602         * lib/unistr/u32-strcat.c: New file.
603         * lib/unistr/u-strcat.h: New file.
604
605         * modules/unistr/u8-strchr: New file.
606         * modules/unistr/u16-strchr: New file.
607         * modules/unistr/u32-strchr: New file.
608         * lib/unistr/u8-strchr.c: New file.
609         * lib/unistr/u16-strchr.c: New file.
610         * lib/unistr/u32-strchr.c: New file.
611
612         * modules/unistr/u8-strcmp: New file.
613         * modules/unistr/u16-strcmp: New file.
614         * modules/unistr/u32-strcmp: New file.
615         * lib/unistr/u8-strcmp.c: New file.
616         * lib/unistr/u16-strcmp.c: New file.
617         * lib/unistr/u32-strcmp.c: New file.
618
619         * modules/unistr/u8-strcpy: New file.
620         * modules/unistr/u16-strcpy: New file.
621         * modules/unistr/u32-strcpy: New file.
622         * lib/unistr/u8-strcpy.c: New file.
623         * lib/unistr/u16-strcpy.c: New file.
624         * lib/unistr/u32-strcpy.c: New file.
625         * lib/unistr/u-strcpy.h: New file.
626
627         * modules/unistr/u8-strcspn: New file.
628         * modules/unistr/u16-strcspn: New file.
629         * modules/unistr/u32-strcspn: New file.
630         * lib/unistr/u8-strcspn.c: New file.
631         * lib/unistr/u16-strcspn.c: New file.
632         * lib/unistr/u32-strcspn.c: New file.
633         * lib/unistr/u-strcspn.h: New file.
634
635         * modules/unistr/u8-strdup: New file.
636         * modules/unistr/u16-strdup: New file.
637         * modules/unistr/u32-strdup: New file.
638         * lib/unistr/u8-strdup.c: New file.
639         * lib/unistr/u16-strdup.c: New file.
640         * lib/unistr/u32-strdup.c: New file.
641         * lib/unistr/u-strdup.h: New file.
642
643         * modules/unistr/u8-strlen: New file.
644         * modules/unistr/u16-strlen: New file.
645         * modules/unistr/u32-strlen: New file.
646         * lib/unistr/u8-strlen.c: New file.
647         * lib/unistr/u16-strlen.c: New file.
648         * lib/unistr/u32-strlen.c: New file.
649         * lib/unistr/u-strlen.h: New file.
650
651         * modules/unistr/u8-strmblen: New file.
652         * modules/unistr/u16-strmblen: New file.
653         * modules/unistr/u32-strmblen: New file.
654         * lib/unistr/u8-strmblen.c: New file.
655         * lib/unistr/u16-strmblen.c: New file.
656         * lib/unistr/u32-strmblen.c: New file.
657
658         * modules/unistr/u8-strmbtouc: New file.
659         * modules/unistr/u16-strmbtouc: New file.
660         * modules/unistr/u32-strmbtouc: New file.
661         * lib/unistr/u8-strmbtouc.c: New file.
662         * lib/unistr/u16-strmbtouc.c: New file.
663         * lib/unistr/u32-strmbtouc.c: New file.
664
665         * modules/unistr/u8-strncat: New file.
666         * modules/unistr/u16-strncat: New file.
667         * modules/unistr/u32-strncat: New file.
668         * lib/unistr/u8-strncat.c: New file.
669         * lib/unistr/u16-strncat.c: New file.
670         * lib/unistr/u32-strncat.c: New file.
671         * lib/unistr/u-strncat.h: New file.
672
673         * modules/unistr/u8-strncmp: New file.
674         * modules/unistr/u16-strncmp: New file.
675         * modules/unistr/u32-strncmp: New file.
676         * lib/unistr/u8-strncmp.c: New file.
677         * lib/unistr/u16-strncmp.c: New file.
678         * lib/unistr/u32-strncmp.c: New file.
679
680         * modules/unistr/u8-strncpy: New file.
681         * modules/unistr/u16-strncpy: New file.
682         * modules/unistr/u32-strncpy: New file.
683         * lib/unistr/u8-strncpy.c: New file.
684         * lib/unistr/u16-strncpy.c: New file.
685         * lib/unistr/u32-strncpy.c: New file.
686         * lib/unistr/u-strncpy.h: New file.
687
688         * modules/unistr/u8-strnlen: New file.
689         * modules/unistr/u16-strnlen: New file.
690         * modules/unistr/u32-strnlen: New file.
691         * lib/unistr/u8-strnlen.c: New file.
692         * lib/unistr/u16-strnlen.c: New file.
693         * lib/unistr/u32-strnlen.c: New file.
694         * lib/unistr/u-strnlen.h: New file.
695
696         * modules/unistr/u8-strpbrk: New file.
697         * modules/unistr/u16-strpbrk: New file.
698         * modules/unistr/u32-strpbrk: New file.
699         * lib/unistr/u8-strpbrk.c: New file.
700         * lib/unistr/u16-strpbrk.c: New file.
701         * lib/unistr/u32-strpbrk.c: New file.
702         * lib/unistr/u-strpbrk.h: New file.
703
704         * modules/unistr/u8-strrchr: New file.
705         * modules/unistr/u16-strrchr: New file.
706         * modules/unistr/u32-strrchr: New file.
707         * lib/unistr/u8-strrchr.c: New file.
708         * lib/unistr/u16-strrchr.c: New file.
709         * lib/unistr/u32-strrchr.c: New file.
710
711         * modules/unistr/u8-strspn: New file.
712         * modules/unistr/u16-strspn: New file.
713         * modules/unistr/u32-strspn: New file.
714         * lib/unistr/u8-strspn.c: New file.
715         * lib/unistr/u16-strspn.c: New file.
716         * lib/unistr/u32-strspn.c: New file.
717         * lib/unistr/u-strspn.h: New file.
718
719         * modules/unistr/u8-strstr: New file.
720         * modules/unistr/u16-strstr: New file.
721         * modules/unistr/u32-strstr: New file.
722         * lib/unistr/u8-strstr.c: New file.
723         * lib/unistr/u16-strstr.c: New file.
724         * lib/unistr/u32-strstr.c: New file.
725         * lib/unistr/u-strstr.h: New file.
726
727         * modules/unistr/u8-strtok: New file.
728         * modules/unistr/u16-strtok: New file.
729         * modules/unistr/u32-strtok: New file.
730         * lib/unistr/u8-strtok.c: New file.
731         * lib/unistr/u16-strtok.c: New file.
732         * lib/unistr/u32-strtok.c: New file.
733         * lib/unistr/u-strtok.h: New file.
734
735         * modules/unistr/u8-uctomb: New file.
736         * modules/unistr/u16-uctomb: New file.
737         * modules/unistr/u32-uctomb: New file.
738         * lib/unistr/u8-uctomb.c: New file.
739         * lib/unistr/u16-uctomb.c: New file.
740         * lib/unistr/u32-uctomb.c: New file.
741
742         * MODULES.html.sh (Unicode string functions): Add the new modules.
743
744 2007-01-08  Bruno Haible  <bruno@clisp.org>
745
746         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
747         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
748         subdirectories.
749
750 2007-01-08  Karl Berry  <karl@gnu.org>
751
752         * doc/error.texi: mention that main() fns must set program_name
753         when progname is used.
754
755 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
756
757         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
758         WCTYPE_H is empty, for the benefit of builds from non-distclean
759         directories.  Problem reported by Eric Blake in
760         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
761
762 2007-01-08  Bruno Haible  <bruno@clisp.org>
763
764         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
765         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
766         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
767         PROVIDE_CANONICALIZE_FILENAME_MODE.
768         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
769
770 2007-01-08  Bruno Haible  <bruno@clisp.org>
771
772         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
773         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
774         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
775         * lib/fts.c: Likewise.
776         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
777
778 2006-12-25  Bruno Haible  <bruno@clisp.org>
779
780         * modules/utf8-ucs4-safe: New file.
781         * lib/utf8-ucs4-safe.h: New file.
782         * lib/unistr/utf8-ucs4-safe.c: New file.
783
784         * modules/utf16-ucs4-safe: New file.
785         * lib/utf16-ucs4-safe.h: New file.
786         * lib/unistr/utf16-ucs4-safe.c: New file.
787
788         * MODULES.html.sh (Unicode string functions): Add the new modules.
789
790 2007-01-08  Bruno Haible  <bruno@clisp.org>
791
792         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
793         (Depends-on): Add unitypes.
794         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
795         (u8_mbtouc_aux): Move out to separate file.
796         (u8_mbtouc): Use ucs4_t, uint8_t types.
797         * lib/unistr/utf8-ucs4.c: New file.
798
799         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
800         (Depends-on): Add unitypes.
801         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
802         (u16_mbtouc_aux): Move out to separate file.
803         (u16_mbtouc): Use ucs4_t, uint16_t types.
804         * lib/unistr/utf16-ucs4.c: New file.
805
806         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
807         (Depends-on): Add unitypes.
808         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
809         (u8_uctomb_aux): Move out to separate file.
810         (u8_uctomb): Use ucs4_t, uint8_t types.
811         * lib/unistr/ucs4-utf8.c: New file.
812
813         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
814         (Depends-on): Add unitypes.
815         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
816         (u16_uctomb_aux): Move out to separate file.
817         (u16_uctomb): Use ucs4_t, uint16_t types.
818         * lib/unistr/ucs4-utf16.c: New file.
819
820 2006-12-25  Bruno Haible  <bruno@clisp.org>
821
822         * modules/unitypes: New file.
823         * lib/unitypes.h: New file.
824         * MODULES.html.sh (func_all_modules): New section "Unicode string
825         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
826         this section. Add unitypes.
827
828 2007-01-08  Bruno Haible  <bruno@clisp.org>
829
830         Avoid variable names that conflict with those from libtool.
831         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
832         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
833         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
834         library_names_spec to acl_library_names_spec, hardcode_* to
835         acl_hardcode_*.
836         Reported by Ralf Wildenhues.
837
838 2007-01-08  Bruno Haible  <bruno@clisp.org>
839
840         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
841         definition.
842         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
843         definition.
844         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
845         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
846         definition.
847         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
848         definition.
849         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
850         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
851         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
852         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
853         definition.
854         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
855         definition.
856         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
857         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
858         GC_USE_<algorithm>.
859         * lib/gc-libgcrypt.c: Likewise.
860         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
861         * modules/gc-arctwo (configure.ac): Likewise.
862         * modules/gc-des (configure.ac): Likewise.
863         * modules/gc-hmac-md5 (configure.ac): Likewise.
864         * modules/gc-hmac-sha1 (configure.ac): Likewise.
865         * modules/gc-md2 (configure.ac): Likewise.
866         * modules/gc-md4 (configure.ac): Likewise.
867         * modules/gc-md5 (configure.ac): Likewise.
868         * modules/gc-random (configure.ac): Likewise.
869         * modules/gc-rijndael (configure.ac): Likewise.
870         * modules/gc-sha1 (configure.ac): Likewise.
871
872 2007-01-08  Bruno Haible  <bruno@clisp.org>
873
874         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
875         macro definition.
876         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
877         definition.
878         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
879         definition.
880         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
881         * modules/fcntl-safer (configure.ac): Likewise.
882         * modules/fopen-safer (configure.ac): Likewise.
883         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
884         GNULIB_FWRITEERROR macro definition.
885
886 2007-01-08  Bruno Haible  <bruno@clisp.org>
887
888         * m4/gnulib-common.m4: New file.
889         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
890         (func_get_filelist): Add m4/gnulib-common.m4.
891
892 2007-01-08  Bruno Haible  <bruno@clisp.org>
893
894         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
895         command.
896
897 2007-01-08  Jim Meyering  <jim@meyering.net>
898
899         Use a more robust test for a "can't happen" condition.
900         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
901         narrowed the st_size value.  Presuming the "can't happen" condition
902         is true, that narrowing could conceivably convert an invalid st_size
903         value into a valid one.  Instead, use a change based on Matthew
904         Woehlke's original patch.
905
906         Slight readability improvement: use an assert-like macro
907         in place of literal "abort ()" uses.
908         * lib/fts.c (fts_assert): Define.
909         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
910         Use this macro instead of a bare 'abort'.
911
912 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
913
914         Don't worry about using IRIX 5.3's wctype.h broken definitions;
915         simply work around them.
916         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
917         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
918         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
919         Don't bother to define as macros, since the standard doesn't require it.
920         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
921         longer worry about IRIX 5.3.
922         (HAVE_WCTYPE_CTMP_BUG): Remove.
923
924 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
925
926         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
927         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
928         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
929         Problems reported by Georg Schwarz for IRIX 5.3.
930
931         * gnulib-tool (autoconf_minversion): Take the maximum version number
932         found, not the minimum.  Problem reported by James Youngman.
933
934 2007-01-03  Karl Berry  <karl@gnu.org>
935
936         * doc/error.texi: new file, explaining interaction with progname.
937         * doc/gnulib.texi: include it.  Update copyright.
938
939 2007-01-03  Simon Josefsson  <simon@josefsson.org>
940
941         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
942         AC_CANONICAL_HOST, to improve autobuild outputs.
943
944 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
945             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
946
947         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
948         sockets, server sockets, and other file descriptors.  Count errors
949         to compute the return value.  Reorder the code a bit to be easier
950         to follow.  Don't set event bits that were not requested (except
951         POLLERR and POLLHUP).
952
953 2007-01-01  Bruno Haible  <bruno@clisp.org>
954
955         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
956
957 2007-01-03  Jim Meyering  <jim@meyering.net>
958
959         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
960
961 2007-01-02  Bruno Haible  <bruno@clisp.org>
962
963         * modules/settime (Include): Require timespec.h.
964         * modules/nanosleep (Include): Likewise.
965
966 2007-01-01  Bruno Haible  <bruno@clisp.org>
967
968         * gnulib-tool (func_emit_copyright_notice): Bump year.
969         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
970
971 2007-01-01  Bruno Haible  <bruno@clisp.org>
972
973         Improve support for OpenBSD.
974         * build-aux/config.rpath (libname_spec): Export.
975         (library_names_spec): New variable. Export.
976         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
977         library_names_spec from the config.rpath output. Locate shared library
978         through the name pattern in library_names_spec.
979
980 2007-01-01  Eric Blake  <ebb9@byu.net>
981
982         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
983
984 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
985
986         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
987         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
988         assume the C locale, and avoid an "eval" that could cause trouble.
989         Problem with SORT reported by Bob Proulx.
990
991         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
992         Define.  Trivial patch from Henning Nielsen Lund, originally
993         sent to bug-grep@gnu.org today.
994
995 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
996
997         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
998         struct stat.  Problem reported by Henning Nielsen Lund.
999         * lib/acl.c: Include acl.h first, to check interface.  Don't
1000         bother to include sys/types.h and sys/stat.h again.
1001
1002 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
1003
1004         Import the following change from libc; problem reported by
1005         Sven Verdoolaege.
1006
1007         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
1008
1009         [BZ #1373]
1010         * lib/argp.h: Remove __NTH for __argp_usage inline function.
1011
1012 2006-12-28  Jim Meyering  <jim@meyering.net>
1013
1014         * build-aux/announce-gen: Do not assume that the package
1015         builds any of tar.gz, tar.bz2, and .xdelta files.
1016         Suggestion from Simon Josefsson.
1017
1018 2006-12-28  Simon Josefsson  <simon@josefsson.org>
1019
1020         * modules/announce-gen: New file.
1021
1022 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
1023
1024         * lib/mbchar.h: Just include <wctype.h>; the wctype module
1025         handles its gotchas now.
1026         * lib/mbswidth.c: Likewise.
1027         * lib/wcwidth.h: Likewise.
1028         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
1029         and iswcntrl; the wctype module does this stuff now.
1030         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1031         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1032         * modules/mbchar (Depends-on): Add wctype.
1033         * modules/mbswidth (Depends-on): Likewise.
1034         * modules/wcwidth (Depends-on): Likewise.
1035
1036 2006-12-27  Eric Blake  <ebb9@byu.net>
1037
1038         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
1039         module uses more than what <wctype.h> is required to provide.
1040
1041 2006-12-26  Eric Blake  <ebb9@byu.net>
1042
1043         * gnulib-tool (sed_extract_prog): Avoid space-tab.
1044
1045 2006-12-26  Eric Blake  <ebb9@byu.net>
1046
1047         * modules/absolute-header: New module.
1048         * modules/fcntl (Depends-on): Depend on it.
1049         * modules/inttypes (Depends-on): Likewise.
1050         * modules/stdint (Depends-on): Likewise.
1051         * modules/sys_stat (Depends-on): Likewise.
1052         * modules/wctype (Depends-on): Likewise.
1053         * MODULES.html.sh (Support for building libraries and
1054         executables): Document it.
1055
1056 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1057
1058         * gnulib-tool (SED): Remove, undoing previous change.
1059         The problem was that it broke coreutils on Solaris, because
1060         "sed --posix" leaked into a makefile.
1061         (sed): New alias, if 'alias' and GNU sed.
1062
1063 2006-12-24  Jim Meyering  <jim@meyering.net>
1064
1065         Work around an fchownat bug in glibc-2.4:
1066         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
1067         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
1068         in spite of the -P option.
1069         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
1070         New macros.
1071         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1072         * modules/openat (Files): Add lib/fchownat.c.
1073         * lib/openat.c (fchownat): Don't define here.  Move to...
1074         * lib/fchownat.c: ...this new file.
1075
1076 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1077
1078         Fix bug reported by Bruno Haible in
1079         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1080         where quotearg.c didn't compile on Mac OS X 10.2 because it
1081         lacks <wchar.h> and wint_t.
1082         * lib/wctype_.h (__wctype_wint_t): New type.
1083         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1084         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1085         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1086         Arg is now of type __wctype_wint_t, not wint_t.
1087         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1088         substitute HAVE_WINT_T.
1089         * modules/wctype (Files): Add m4/wint_t.m4.
1090         (wctype.h): Substitute HAVE_WINT_T.
1091
1092 2006-12-23  Bruno Haible  <bruno@clisp.org>
1093
1094         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1095
1096 2006-12-23  Bruno Haible  <bruno@clisp.org>
1097
1098         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1099         S_ISLNK.
1100         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1101         mingw.
1102
1103 2006-12-22  Bruno Haible  <bruno@clisp.org>
1104
1105         * lib/copy-file.c: Include acl.h.
1106         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1107         Close the file descriptors only after being done with copy_acl.
1108         * modules/copy-file (Depends-on): Add acl.
1109
1110 2006-12-22  Bruno Haible  <bruno@clisp.org>
1111
1112         * gnulib-tool (SED): New variable.
1113         Use $SED instead of sed everywhere.
1114
1115 2006-12-22  Bruno Haible  <bruno@clisp.org>
1116
1117         * modules/no-c++: New file.
1118         * m4/no-c++.m4: New file.
1119         * MODULES.html.sh (Support for building libraries and executables):
1120         Add no-c++.
1121
1122 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1123
1124         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1125         Include <limits.h>, and use its INT_MAX to rewrite the
1126         j loop so that it does not overflow 'int'.  Problem reported by
1127         Ralf Wildenhues in
1128         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1129         Play it safe by shifting left by 1 rather than multiplying by 2,
1130         as GCC is less likely to optimize this away when the value
1131         is signed (when it assumes overflow leads to undefined behavior).
1132         Also, don't assume time_t uses two's complement.
1133
1134 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1135
1136         * MODULES.html.sh: New module wctype.
1137         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1138         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1139         <wctype.h>, since the new wctype module should fix this.
1140         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1141         the wctype module should arrange for it.
1142         * lib/regex_internal.h: Likewise.
1143         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1144         since the wctype module should handle this now.
1145         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1146         * modules/fnmatch (Depends-on): Add wctype.
1147         * modules/quotearg (Depends-on): Likewise.
1148         * modules/regex (Depends-on): Likewise.
1149
1150 2006-12-19  Bruno Haible  <bruno@clisp.org>
1151
1152         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1153         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1154
1155 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1156
1157         * modules/savewd (Depends-on): Fix dependency on fcntl.
1158
1159 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1160
1161         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1162         conforms to C99, rather than relying on the user's environment
1163         setting of STDINT_H.
1164
1165 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1166         and Eric Blake  <ebb9@byu.net>
1167
1168         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
1169         This is more consistent with the other defines here.
1170         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
1171         Port to z/OS.  Problem reported by Paul Gilmartin.
1172         Change local vars to use gl_ prefix rather than ac_.
1173         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
1174         with other defines.
1175         * modules/double-slash-root: New module.
1176         * modules/dirname (Files): Remove m4/double-slash-root.m4.
1177         (Depends-on): Add double-slash-root.
1178         * MODULES.html.sh (File system functions): Mention new module.
1179
1180 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
1181
1182         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
1183         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
1184         This is for the benefit of gzip, which doesn't do i18n.
1185
1186 2006-12-12  Jim Meyering  <jim@meyering.net>
1187
1188         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
1189         Reported by Andreas Schwab <schwab@suse.de>.
1190
1191 2006-12-12  Bruno Haible  <bruno@clisp.org>
1192
1193         Merge these changes.
1194         2006-09-05  Bruno Haible  <bruno@clisp.org>
1195         * lib/iconvme.c (iconv_string): No need to save and restore errno when
1196         iconv_alloc succeeded.
1197         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
1198         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
1199         test for " && dest " at the end - dest is always != NULL there. Call
1200         iconv with 4xNULL arguments initially, to reset the state. Call iconv
1201         with 2xNULL arguments, also to flush the state storage. Handle the
1202         IRIX iconv behaviour. Realloc the final result, to throw away unused
1203         memory.
1204
1205 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1206
1207         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
1208         and fchmodat unconditionally, since glibc 2.4 has them.
1209         Problem reported by Arkadiusz Miskiewicz.
1210
1211 2006-12-10  Bruno Haible  <bruno@clisp.org>
1212
1213         * gnulib-tool (func_import): Show the include files only for those
1214         modules that are copied and specified.
1215         Reported by Karl Berry.
1216
1217 2006-12-08  Jim Meyering  <jim@meyering.net>
1218
1219         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
1220         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
1221
1222         * build-aux/announce-gen: Add two new options, both optional:
1223         --bootstrap-tools=TOOL_LIST
1224               a comma-separated list of tools, e.g.,
1225               autoconf,automake,bison,gnulib
1226         --gnulib-snapshot-date=DATE
1227               if gnulib is in the bootstrap tool list,
1228               then report this as the snapshot date.
1229               If not specified, use the current date/time.
1230               If you specify a date here, be sure it's UTC.
1231
1232 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1233
1234         * tests/test-argp-2.sh: Fix test to match actual output.
1235         (func_compare): Fix sed script to be portable.
1236
1237 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
1238
1239         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
1240         workaround for this case.  It is not autoconfigured now; offhand
1241         it's hard to see how to autoconfigure it.
1242
1243 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1244
1245         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
1246         a directory that is about to be chowned.  Such a directory's
1247         initial file permissions should permit the owner only and this
1248         should not be changed until after the chown, since the group and
1249         other bits would be incorrect if they granted permission before
1250         the chown.
1251
1252         Fix porting problem for iswctype reported by Georg Schwarz in:
1253         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
1254         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
1255         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
1256         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
1257         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1258
1259 2006-12-03  Jim Meyering  <jim@meyering.net>
1260
1261         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
1262         p->fts_statp may not yet be defined.
1263         (fts_read): Instead, set it in the caller, once p->fts_statp is
1264         sure to be defined, and corresponds to a top-level directory.
1265         This bug made du -x fail.  Here's the coreutils test case:
1266         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
1267         Reported by Mike Frysinger.
1268
1269 2006-12-01  Jim Meyering  <jim@meyering.net>
1270
1271         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
1272         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
1273         Reported by Simon Josefsson.
1274
1275 2006-11-30  Jim Meyering  <jim@meyering.net>
1276
1277         * m4/warning.m4: Use the all-permissive copyright notice
1278         recommended by RMS (rather than LGPL).
1279         * m4/vararrays.m4: Likewise.
1280         * m4/flexmember.m4: Likewise.
1281
1282 2006-11-29  Bruno Haible  <bruno@clisp.org>
1283
1284         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1285         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
1286         using +=.
1287         Reported by Simon Josefsson <simon@josefsson.org>.
1288
1289 2006-11-28  James Youngman <jay@gnu.org>
1290
1291         * README: Advise users that they might find the bug-gnulib@gnu.org
1292         and autotools-announce@gnu.org mailing lists useful.
1293
1294 2006-11-28  Bruno Haible  <bruno@clisp.org>
1295
1296         * m4/ptrdiff_max.m4: Remove file.
1297
1298 2006-11-21  Bruno Haible  <bruno@clisp.org>
1299
1300         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
1301         _AC_COMPUTE_INT.
1302         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1303         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
1304         _AC_COMPUTE_INT.
1305         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1306         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
1307         _AC_COMPUTE_INT.
1308         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1309
1310 2006-11-28  Jim Meyering  <jim@meyering.net>
1311
1312         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
1313         warning from "gcc -Wshadow" about shadowing the builtin.
1314
1315 2006-11-27  Bruno Haible  <bruno@clisp.org>
1316
1317         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
1318         _AC_COMPUTE_INT.
1319         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1320
1321 2006-11-27  Bruno Haible  <bruno@clisp.org>
1322             Paul Eggert  <eggert@cs.ucla.edu>
1323
1324         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
1325
1326 2006-11-26  Bruno Haible  <bruno@clisp.org>
1327
1328         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1329         noinst_LTLIBRARIES.
1330
1331 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1332             Bruno Haible  <bruno@clisp.org>
1333
1334         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
1335         if compiling with "gcc -ansi".
1336
1337 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
1338
1339         Fix some incompatibilities with gcc -ansi -pedantic.
1340         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
1341         if compiling pedantically with GCC, unless it's C99 or later.
1342         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
1343         it mishandles gcc -ansi -pedantic as well.
1344         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
1345         if gcc -pedantic.
1346         * lib/regexec.c (check_node_accept_bytes): Don't use auto
1347         initializers for struct if -pedantic, unless it's C99 or later.
1348
1349 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
1350
1351         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
1352         Don't close an fd more than once. Identical atimes indicate
1353         success, not failure.
1354
1355 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
1356
1357         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
1358
1359 2006-11-23  Jim Meyering  <jim@meyering.net>
1360
1361         * build-aux/announce-gen: New file.  From coreutils.
1362
1363 2006-11-22  Jim Meyering  <jim@meyering.net>
1364
1365         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
1366         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
1367         (fts_read): Use a temporary to narrow the overused st_size member
1368         before using it in a switch statement.  Reported by Matthew Woehlke.
1369
1370         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
1371         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
1372
1373 2006-11-20  Bruno Haible  <bruno@clisp.org>
1374
1375         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
1376         changequote instead of pairs of brackets.
1377         Reported by Andreas Schwab <schwab@suse.de>.
1378
1379 2006-11-21  Jim Meyering  <jim@meyering.net>
1380
1381         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
1382         so as to remain compatible with older compilers.
1383         Patch from Michael Deutschmann.
1384
1385 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1386
1387         * MODULES.html.sh (File system functions): Add openat.
1388
1389         * lib/openat.h (rpl_fstatat): New macro, if
1390         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
1391         (fstatat): Define to rpl_fstatat under the same conditions,
1392         unless COMPILING_FSTATAT.
1393         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
1394         seems to have the bug.
1395         * lib/fstatat.c: New file.
1396         * modules/openat (Files): Add it.
1397
1398 2006-11-20  Bruno Haible  <bruno@clisp.org>
1399
1400         * Makefile: New file.
1401
1402 2006-11-20  Jim Meyering  <jim@meyering.net>
1403
1404         The beginnings of syntax-related checks for gnulib.
1405         * lib/Makefile: New file.
1406         * lib/t-idcache: New script.  Ensure that the two halves of
1407         idcache.c stay in sync.
1408
1409         * lib/idcache.c: Adjust comments in user- and group- portions to
1410         be more accurate, and to be consistent with one another.
1411
1412 2006-11-20  Jim Meyering  <jim@meyering.net>
1413
1414         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
1415         continue using the flexible array member (thus, this module performs
1416         half as many malloc calls), with the addition that...
1417         (getgroup, getuser): Consistently record a non-match via an empty
1418         "name" string, and map an empty string match to a NULL return value.
1419         * modules/idcache (Depends-on): Re-add flexmember.
1420
1421         * lib/idcache.c (getuser): Remove all uses of the register keyword.
1422         (getuidbyname, getgroup, getgidbyname): Likewise.
1423
1424         Use cleaner syntax: NULL rather than 0.
1425         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
1426
1427 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1428
1429         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
1430         It mishandled the case where the group was missing.
1431         Problem reported by Greg Schafer.
1432         * modules/idcache: Likewise.
1433
1434 2006-11-18  Jim Meyering  <jim@meyering.net>
1435
1436         * check-module (%exempt_header): Add exception for some
1437         conditionally-included headers.
1438
1439         * modules/i-ring (Depends-on): Add verify.
1440         (License): Change to LGPL.
1441
1442 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1443
1444         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
1445         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
1446         and inttostr.h.  Use snprintf rather than uinttostr, so that
1447         LGPLed code doesn't depend on GPLed.
1448
1449 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1450
1451         * modules/inline (License): Change from GPL to LGPL.
1452
1453 2006-11-17  Jim Meyering  <jim@meyering.net>
1454
1455         * modules/d-type (License): Switch to LGPL.
1456
1457 2006-11-15  Bruno Haible  <bruno@clisp.org>
1458
1459         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
1460
1461 2006-11-15  Eric Blake  <ebb9@byu.net>
1462
1463         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
1464         the module dependency.
1465
1466 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1467             Bruno Haible  <bruno@clisp.org>
1468
1469         * gnulib-tool (func_create_testdir): Add license consistency check.
1470
1471 2006-11-15  Eric Blake  <ebb9@byu.net>
1472
1473         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
1474         random "(cached)" in configure output.
1475
1476 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1477
1478         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
1479         test for conforming inttypes.h is both announced and cached.
1480
1481         * MODULES.html.sh (seen_modules, seen_files): New variables.
1482         (func_module): Rewrite to use a few less gnulib-tool and sed
1483         invocations.  Avoid a couple of quadratic algorithms for ...
1484         (missed_modules, missed_files): ... these, with ...
1485         (func_append, func_tmpdir): ... these new functions, from
1486         gnulib-tool.  Analogously, install traps for cleanup.
1487
1488         * tests/test-gc.c (main): Remove unused variables.
1489         * tests/test-read-file.c: Include stdlib.h, for 'free'.
1490
1491 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
1492
1493         * modules/inttostr (License): Change to LGPL.
1494
1495 2006-11-14  Eric Blake  <ebb9@byu.net>
1496
1497         * modules/tempname (License): Change to LGPL.
1498
1499 2006-11-14  Eric Blake  <ebb9@byu.net>
1500
1501         * doc/functions.texi (Function Portability): *printf functions on
1502         Cygwin now understand all POSIX size specifiers.
1503
1504 2006-11-14  Bruno Haible  <bruno@clisp.org>
1505
1506         * modules/c-ctype (License): Change to LGPL.
1507
1508 2006-11-12  Bruno Haible  <bruno@clisp.org>
1509
1510         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
1511         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
1512         for GNOME libraries, for which the include files are installed in
1513         subdirectories of $prefix/include.
1514
1515 2006-11-12  Bruno Haible  <bruno@clisp.org>
1516
1517         * m4/lib-link.m4: Require at least autoconf-2.54.
1518         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
1519         name to underscores for the --with option.
1520
1521 2006-11-13  Bruno Haible  <bruno@clisp.org>
1522
1523         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
1524         the tests directory.
1525         Reported by Ralf Wildenhues.
1526
1527 2006-11-13  Bruno Haible  <bruno@clisp.org>
1528
1529         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
1530         (func_emit_initmacro_end): Undo the override here.
1531         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
1532         Works around the famous automake error in coreutils.
1533
1534 2006-11-13  Eric Blake  <ebb9@byu.net>
1535
1536         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
1537         element, not its node.
1538
1539 2006-11-12  Bruno Haible  <bruno@clisp.org>
1540
1541         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
1542         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
1543
1544 2006-11-12  Bruno Haible  <bruno@clisp.org>
1545
1546         * gnulib-tool: New option --local-symlink.
1547         (func_usage): Document it.
1548         (lsymbolic): New variable.
1549         (func_import, func_create_testdir): If --symlink was not specified,
1550         test whether --local-symlink was specified and the file comes from
1551         the local_gnulib_dir.
1552
1553 2006-11-12  Bruno Haible  <bruno@clisp.org>
1554
1555         * gnulib-tool (func_ln): New function.
1556         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
1557
1558 2006-11-12  Bruno Haible  <bruno@clisp.org>
1559
1560         Finish support for source files in subdirectories.
1561         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
1562         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
1563         AUTOMAKE_OPTIONS.
1564         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
1565
1566 2006-11-12  Bruno Haible  <bruno@clisp.org>
1567
1568         * gnulib-tool (func_get_automake_snippet): Synthesize also an
1569         EXTRA_lib_SOURCES augmentation.
1570         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
1571
1572 2006-11-12  Jim Meyering  <jim@meyering.net>
1573
1574         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
1575         file descriptors.  This also averts a failure on systems with
1576         native openat support when a traversed directory lacks "x" access.
1577         * lib/fts_.h: Include "i-ring.h"
1578         (struct FTS) [fts_fd_ring]: New member.
1579         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
1580         (FCHDIR): Add parentheses.
1581         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
1582         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
1583         When descending, rather than simply closing the previous
1584         fts_cwd_fd value, push that file descriptor onto the ring.
1585         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
1586         (fts_open): Initialize the new fd_ring member.
1587         (fts_close): Clear the ring.
1588         (fts_safe_changedir): When possible, use our new fd_ring to skip
1589         the diropen and fstat and dev/ino comparison that would normally
1590         accompany a virtual `chdir ("..")'.
1591
1592         * modules/fts (Depends-on): Add i-ring.
1593         * modules/i-ring: New module.
1594         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
1595         * m4/i-ring.m4: New file.
1596
1597 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1598
1599         * gnulib-tool (func_create_testdir): Fix replacement of
1600         `build-aux' in configure.ac.  Run autotools in gltests
1601         subdirectory.
1602         (func_create_testdir, func_create_megatestdir, test): There is
1603         no need for '--force' in most autotool invocations in a new
1604         tree.  Actually fail the whole test if any of the tools, or the
1605         configure or make stages fail.
1606
1607         Sync from Automake.
1608         * build-aux/gnupload: Revert last change.  Add pointer to upload
1609         instructions of the GNU Maintenance Instructions.
1610         Suggestion by Karl Berry.
1611
1612 2006-11-10  Jim Meyering  <jim@meyering.net>
1613
1614         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
1615
1616 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1617
1618         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
1619         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
1620         (bind_textdomain_codeset) [! ENABLE_NLS]:
1621         Evaluate all the arguments.  That way, callers get compatible behavior
1622         if the arguments have side effects.  Also, it avoids some GCC
1623         diagnostics in some cases; Joel E. Denny reported problems when Bison
1624         was configured with --enable-gcc-warnigs.
1625
1626 2006-11-10  Jim Meyering  <jim@meyering.net>
1627
1628         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
1629         relevant options in CFLAGS (like -O, -fno-inline) are taken into
1630         account.
1631
1632 2006-11-10  Jim Meyering  <jim@meyering.net>
1633
1634         * modules/inline: New file/module.
1635         * modules/xalloc (Files): Remove m4/inline.m4.
1636         (Depends-on): Add inline, instead.
1637         * modules/oset: Likewise.
1638         * modules/list: Likewise.
1639
1640 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1641
1642         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
1643         Problem reported by Matthew Woehlke.
1644
1645 2006-11-09  Bruno Haible  <bruno@clisp.org>
1646
1647         * lib/tempname.c (gen_tempname): Remove variant that invokes
1648         __gen_tempname.
1649         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
1650         __gen_tempname.
1651
1652 2006-11-08  Bruno Haible  <bruno@clisp.org>
1653
1654         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
1655         to 'yes' instead of 'cross-compiling'.
1656
1657 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1658
1659         * lib/quotearg.h (quotearg_free): New decl.
1660         * lib/quotearg.c (quotearg_free): New function.
1661         (slot0, nslots, slotvec0, slotvec):
1662         Now file-scope so that quotearg_free can get at them.
1663
1664 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1665
1666         Sync from Automake.
1667         * build-aux/gnupload: Add missing 'gnu' to example URL.
1668         Report by Karl Berry.
1669
1670 2006-11-08  Bruno Haible  <bruno@clisp.org>
1671
1672         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
1673         Suggested by Paul Eggert.
1674
1675 2006-11-08  Jim Meyering  <jim@meyering.net>
1676
1677         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
1678         It's already included if !_LIBC.
1679         (fts_safe_changedir): Add a comment.
1680
1681 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1682
1683         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
1684         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
1685         Matthew Woehlke.
1686
1687         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
1688         definitions up, to avoid colliding with change below.
1689         (static_inline) [HAVE_INLINE]: New macro.
1690         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
1691         Provide extern decls when !HAVE_INLINE.  Do not define unless
1692         static_inline is defined, either by us or by xmalloc.c.  Use
1693         static_inline rather than static inline.
1694         (XCALLOC): Optimize sizeof(T) = 1 case.
1695         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
1696
1697 2006-11-07  Bruno Haible  <bruno@clisp.org>
1698
1699         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
1700         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
1701         AC_C_INLINE.
1702         * modules/xalloc (Files): Add m4/inline.m4.
1703
1704 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1705
1706         * README: Fix typo.
1707         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
1708         (Miscellanous Notes): ...from this.
1709
1710 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1711
1712         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
1713         Mention that offsetof should be used instead of sizeof.
1714         From Bruno Haible.
1715
1716 2006-11-07  Bruno Haible  <bruno@clisp.org>
1717
1718         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
1719
1720 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1721
1722         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1723         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
1724         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1725         (gl_tree_add_before, gl_tree_add_after):
1726         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
1727         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
1728         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
1729         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
1730         (gl_linked_add_after, gl_linked_add_at): Likewise.
1731         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
1732         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1733         (gl_tree_add_before, gl_tree_add_after): Likewise.
1734         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
1735         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
1736         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
1737
1738 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1739
1740         * lib/gl_oset.h: Use C comment style, not C++ comment style.
1741
1742 2006-11-06  Bruno Haible  <bruno@clisp.org>
1743
1744         * m4/inline.m4: New file.
1745         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
1746         * modules/list (Files): Add m4/inline.m4.
1747         * modules/oset (Files): Likewise.
1748
1749 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1750
1751         * lib/idcache.c: Include <stddef.h>, for offsetof.
1752         (struct userid.name): Change from char * to a flexible array member.
1753         All uses changed.
1754         * modules/idcache (Depends-on): Add flexmember.
1755
1756         * MODULES.html.sh (Core language properties): New module flexmember.
1757         * modules/flexmember, m4/flexmember.m4: New files.
1758
1759         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
1760         inline functions that are identical with the old xnmalloc_inline,
1761         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
1762         that we can avoid some unnecessary integer multiplications and
1763         divisions in the common case where the element size is known at
1764         compile time.
1765         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
1766         needed.
1767         (xnboundedmalloc): Remove.
1768         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
1769         arguments, for consistency with rest of this header.
1770         (xcharalloc): Rewrite using XNMALLOC.
1771         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
1772         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
1773         versions have been moved to lib/xalloc.h and renamed to be the
1774         non-*_inline versions.
1775         (xmalloc, xrealloc): Implement without reference to the xnmalloc
1776         and xnrealloc functions, since those functions are now inline and
1777         now call us.
1778         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
1779         renaming described above.
1780         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
1781         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
1782         captures the dependency in AC_C_INLINE.
1783
1784         New module canonicalize-lgpl, proposed by Charles Wilson in
1785         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
1786         with a few small changes afterwards.
1787         * MODULES.html.sh (File system functions): New module
1788         canonicalize-lgpl.
1789         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
1790         and canonicalize_file_name.
1791         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
1792         * modules/canonicalize-lgpl: New files.
1793
1794 2006-11-05  Bruno Haible  <bruno@clisp.org>
1795
1796         * gnulib-tool (func_import, func_create_testdir): Create directories
1797         also for files in subdirectories of lib/.
1798
1799 2006-11-05  Bruno Haible  <bruno@clisp.org>
1800
1801         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
1802         ANSI C compliant.
1803
1804 2006-11-03  Bruno Haible  <bruno@clisp.org>
1805
1806         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1807         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
1808         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
1809         (xnboundedmalloc): New inline function.
1810         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
1811         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
1812         xmalloc.
1813         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
1814         xmalloc.
1815         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
1816         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
1817         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
1818         xmalloc.
1819         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1820         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
1821         xmalloc.
1822         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
1823         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1824         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
1825         xmalloc.
1826         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1827         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
1828         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1829         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
1830         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
1831         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
1832         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
1833
1834 2006-11-03  Bruno Haible  <bruno@clisp.org>
1835
1836         * lib/c-ctype.h [C++]: Define functions without name mangling.
1837         * lib/fwriteerror.h [C++]: Likewise.
1838         * lib/gcd.h [C++]: Likewise.
1839         * lib/linebreak.h [C++]: Likewise.
1840
1841 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
1842
1843         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
1844         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
1845         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
1846         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
1847         Check for functions and headers just once.
1848         Check for declaration of canonicalize_file_name.
1849         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
1850
1851 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1852
1853         * gnulib-tool (func_import): Fix typo in actioncmd.
1854
1855 2006-11-02  Bruno Haible  <bruno@clisp.org>
1856
1857         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
1858         newline sequence in the Makefile.am snippet as a space, like "make"
1859         does.
1860         Reported by Roger Persson <perrog@gmail.com>.
1861
1862 2006-11-01  Bruno Haible  <bruno@clisp.org>
1863
1864         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
1865         already declared in <string.h>.
1866         * lib/strcase.h (strncasecmp): Don't declare it if yes.
1867
1868 2006-11-01  Bruno Haible  <bruno@clisp.org>
1869
1870         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
1871         * lib/strcase.h: Include <string.h>.
1872         (strcasecmp): Define to rpl_strcasecmp here.
1873
1874 2006-11-01  Bruno Haible  <bruno@clisp.org>
1875
1876         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
1877
1878 2006-11-01  Eric Blake  <ebb9@byu.net>
1879
1880         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
1881
1882         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
1883
1884 2006-10-29  Bruno Haible  <bruno@clisp.org>
1885
1886         Make it compile in C++ mode.
1887         * lib/full-write.c (full_rw): Add a cast.
1888
1889 2006-11-01  Bruno Haible  <bruno@clisp.org>
1890
1891         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
1892         be POSIX compliant.
1893         Reported by Roger Persson <perrog@gmail.com>.
1894
1895 2006-11-01  Eric Blake  <ebb9@byu.net>
1896
1897         * lib/getopt_.h: Fix comments.
1898
1899 2006-10-31  Eric Blake  <ebb9@byu.net>
1900
1901         * modules/tmpdir (Depends-on): Add sys_stat.
1902         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
1903         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
1904         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
1905         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
1906         tempname.
1907
1908 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
1909
1910         Avoid some C++ diagnostics reported by Bruno Haible.
1911         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
1912         xmalloc.
1913         (quotearg_alloc): Use xcharalloc rather than xmalloc.
1914         (struct slotvec): Move to top level.
1915         (quotearg_n_options): Rewrite to avoid xmalloc.
1916         * lib/xalloc.h (xcharalloc): New function.
1917         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
1918         [defined __cplusplus]: Add function template that provides result
1919         type propagation.  This part of the change is from Bruno Haible.
1920
1921 2006-10-29  Bruno Haible  <bruno@clisp.org>
1922
1923         Make it compile in C++ mode.
1924         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
1925         * lib/strnlen1.c (strnlen1): Cast memchr result.
1926         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
1927         * lib/clean-temp.c (string_equals, string_hash): Add casts.
1928         (create_temp_dir): Rename local variable 'template'.
1929         (compile_csharp_using_sscli): Add cast.
1930         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
1931         * lib/findprog.c (find_in_path): Likewise.
1932         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
1933         * lib/wait-process.c (register_slave_subprocess): Likewise.
1934
1935 2006-10-22  Bruno Haible  <bruno@clisp.org>
1936
1937         * modules/tsearch: New file.
1938         * lib/tsearch.h: New file.
1939         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
1940         * m4/tsearch.m4: New file.
1941         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
1942
1943 2006-10-29  Eric Blake  <ebb9@byu.net>
1944
1945         * lib/arcfour.c: Assume config.h.
1946         * lib/arctwo.c: Likewise.
1947         * lib/base64.c: Likewise.
1948         * lib/check-version.c: Likewise.
1949         * lib/crc.c: Likewise.
1950         * lib/des.c: Likewise.
1951         * lib/gc-gnulib.c: Likewise.
1952         * lib/gc-libgcrypt.c: Likewise.
1953         * lib/gc-pbkdf2-sha1.c: Likewise.
1954         * lib/getaddrinfo.c: Likewise.
1955         * lib/getdelim.c: Likewise.
1956         * lib/getline.c: Likewise.
1957         * lib/hmac-md5.c: Likewise.
1958         * lib/hmac-sha1.c: Likewise.
1959         * lib/iconvme.c: Likewise.
1960         * lib/md2.c: Likewise.
1961         * lib/md4.c: Likewise.
1962         * lib/memxor.c: Likewise.
1963         * lib/read-file.c: Likewise.
1964         * lib/readline.c: Likewise.
1965         * lib/rijndael-alg-fst.c: Likewise.
1966         * lib/rijndael-api-fst.c: Likewise.
1967         * lib/xgetdomainname.c: Likewise.
1968
1969 2006-10-28  Eric Blake  <ebb9@byu.net>
1970
1971         * lib/xstrndup.c: Assume config.h.
1972
1973 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
1974
1975         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
1976         stat-macros.h is now for our own macros, whereas stat_h is for
1977         macros in the <sys/stat.h> name space.
1978         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
1979         (STAT_MACROS_H): Remove.
1980         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
1981         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
1982         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
1983         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
1984         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
1985         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
1986         Move these macros to ...
1987         * lib/stat_.h: here.  Don't include stat-macros.h.
1988         * lib/canonicalize.c: Don't include stat-macros.h.
1989         * lib/chown.c: Likewise.
1990         * lib/euidaccess.c: Likewise.
1991         * lib/file-type.c: Likewise.
1992         * lib/filemode.c: Likewise.
1993         * lib/glob.c: Likewise.
1994         * lib/isapipe.c: Likewise.
1995         * lib/lchown.c: Likewise.
1996         * lib/lstat.c: Likewise.
1997         * lib/mkdir-p.c: Likewise.
1998         * lib/rmdir.c: Likewise.
1999         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
2000         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
2001         unless mkdir isn't declared, to speed up 'configure'.
2002         Always create sys/stat.h, since it's unlikely any real sys/stat.h
2003         would define all the S_* symbols.
2004         * modules/canonicalize (Depends-on):
2005         Depend on sys_stat, not stat-macros.
2006         * modules/chown: Likewise.
2007         * modules/euidaccess: Likewise.
2008         * modules/filemode: Likewise.
2009         * modules/file-type: Likewise.
2010         * modules/glob: Likewise.
2011         * modules/isapipe: Likewise.
2012         * modules/lchown: Likewise.
2013         * modules/lstat: Likewise.
2014         * modules/mkancesdirs: Likewise.
2015         * modules/rmdir: Likewise.
2016         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
2017         * modules/modechange: Likewise.
2018         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
2019         (configure.ac): Remove gl_STAT_MACROS.
2020         * modules/sys_stat (Depends-on): Remove stat-macros.
2021
2022 2006-10-27  Bruno Haible  <bruno@clisp.org>
2023
2024         * m4/signed.m4: Remove file.
2025         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
2026         invocation.
2027         * modules/vasnprintf (Files): Remove m4/signed.m4.
2028
2029 2006-10-27  Bruno Haible  <bruno@clisp.org>
2030
2031         Update to GNU gettext 0.16.
2032         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
2033         m4/inttypes-h.m4, m4/signed.m4.
2034         * m4/gettext.m4: Update to GNU gettext 0.16.
2035         * m4/intl.m4: New file, from GNU gettext.
2036         * m4/intldir.m4: New file, from GNU gettext.
2037         * config/srclist.txt: Update
2038
2039 2006-10-27  Eric Blake  <ebb9@byu.net>
2040
2041         * MODULES.html.sh: Document tempname.
2042         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
2043         dependencies.
2044         (Files): Move lib/tempname.c...
2045         * modules/tempname: ...to this new module.
2046         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
2047         (gl_PREREQ_TEMPNAME): Move...
2048         * m4/tempname.m4: ...to this new file.
2049         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
2050         * modules/sys_stat (Depends-on): Add stat-macros.
2051         * lib/stat_.h (includes): Pick up stat macros.
2052         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
2053         if stat macros are broken.
2054         * lib/tempname.c (includes): No need to include "stat-macros.h".
2055         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
2056         (direxists, __path_search) [!_LIBC]: Don't compile these in
2057         gnulib; the tmpdir module covers that.
2058         * lib/tempname.h: New file.
2059
2060 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
2061
2062         * COPYING: Explain how gnulib-tool converts licence headers.
2063         Almost all wording by Eric Blake.
2064
2065 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
2066
2067         * lib/mbchar.h (is_basic_table): Make read-only.
2068         * lib/mbchar.c (is_basic_table): Likewise.
2069         Reported by John Darrington.
2070
2071 2006-10-25  Bruno Haible  <bruno@clisp.org>
2072
2073         * lib/progname.h (set_program_name): Undefine before defining.
2074
2075 2006-10-25  Bruno Haible  <bruno@clisp.org>
2076
2077         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2078         false for non-gcc C++ compilers.
2079         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2080
2081 2006-10-24  Bruno Haible  <bruno@clisp.org>
2082
2083         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2084         iconv implementations like Irix iconv.
2085
2086 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2087
2088         * modules/vararrays: New file.
2089         * m4/vararrays.m4: New file, taken from diffutils.
2090         * MODULES.html.sh: New module vararrays.
2091
2092 2006-10-24  Karl Berry  <karl@gnu.org>
2093
2094         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2095         Don't call GNU Unix.
2096
2097 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2098
2099         * users.txt: Add Libtool.
2100
2101         Sync from Libtool:
2102
2103         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2104
2105         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2106         to gnulib's policy of including config.h unconditionally.
2107
2108 2006-10-24  Bruno Haible  <bruno@clisp.org>
2109
2110         * modules/wcwidth (Files): Add m4/wint_t.m4.
2111         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2112         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2113
2114 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2115
2116         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2117         to pacify GCC with some -W flags enabled.  Problem reported by
2118         Bruno Haible.
2119
2120 2006-10-24  Jim Meyering  <jim@meyering.net>
2121
2122         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2123         Reported by Karl Berry.
2124
2125 2006-10-23  Bruno Haible  <bruno@clisp.org>
2126
2127         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2128
2129 2006-10-24  Bruno Haible  <bruno@clisp.org>
2130
2131         * lib/gl_list.h: Use C comment style, not C++ comment style.
2132
2133 2006-10-23  Eric Blake  <ebb9@byu.net>
2134
2135         * lib/getaddrinfo.c (includes): Add missing include.
2136
2137 2006-10-23  Bruno Haible  <bruno@clisp.org>
2138             Paul Eggert  <eggert@cs.ucla.edu>
2139
2140         Ability to rename obstack_free.
2141         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2142         obstack_free.
2143         (obstack_free): Invoke the __obstack_free macro.
2144         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2145
2146 2006-10-23  Bruno Haible  <bruno@clisp.org>
2147             Paul Eggert  <eggert@cs.ucla.edu>
2148
2149         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2150         __argc, __argv from the declaration. (They are defined as macros on
2151         mingw.)
2152
2153 2006-10-22  Bruno Haible  <bruno@clisp.org>
2154
2155         * doc/gnulib-intro.texi: New file.
2156         * doc/gnulib.texi: Include it.
2157
2158 2006-10-21  Bruno Haible  <bruno@clisp.org>
2159
2160         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2161         "Introduction", "Miscellanous Notes", "Particular Modules".
2162
2163 2006-10-21  Bruno Haible  <bruno@clisp.org>
2164
2165         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2166         Change mostlyclean-local rule to avoid sh syntax error from bash
2167         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
2168
2169 2006-10-23  Jim Meyering  <jim@meyering.net>
2170
2171         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
2172         in place of snprintf.
2173
2174         * modules/inttostr (Files): Add lib/uinttostr.c.
2175         * lib/uinttostr.c (inttostr): New file/function.
2176         * lib/inttostr.h (uinttostr): Declare.
2177         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
2178         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
2179         Add uinttostr.
2180         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
2181
2182 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2183
2184         * lib/canonicalize.c (ELOOP): Define if not already defined.
2185         Problem reported by Bruno Haible in
2186         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
2187
2188 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2189
2190         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
2191         Problem reported by Perry Smith and Ville Laurikari.
2192
2193         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
2194         uses.
2195
2196 2006-10-19  Bruno Haible  <bruno@clisp.org>
2197
2198         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
2199         for mingw.
2200
2201 2006-10-19  Bruno Haible  <bruno@clisp.org>
2202
2203         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
2204         Needed for mingw.
2205
2206 2006-10-19  Bruno Haible  <bruno@clisp.org>
2207
2208         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
2209
2210 2006-10-19  Bruno Haible  <bruno@clisp.org>
2211
2212         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
2213         it.
2214
2215 2006-10-19  Bruno Haible  <bruno@clisp.org>
2216
2217         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
2218         invocation.
2219
2220 2006-10-19  Bruno Haible  <bruno@clisp.org>
2221
2222         * gnulib-tool (func_create_testdir): Don't include ftruncate and
2223         mountlist by default.
2224
2225 2006-10-16  Bruno Haible  <bruno@clisp.org>
2226
2227         * lib/c-strstr.c: Include c-strstr.h.
2228
2229 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2230
2231         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
2232         in a slash.
2233
2234 2006-10-18  Bruno Haible  <bruno@clisp.org>
2235
2236         * lib/lock.h [C++]: Wrap definitions in extern "C".
2237
2238 2006-10-18  Bruno Haible  <bruno@clisp.org>
2239
2240         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
2241         gl_LIBOBJS list.
2242
2243 2006-10-18  Bruno Haible  <bruno@clisp.org>
2244
2245         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
2246
2247 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
2248
2249         * lib/xstrtol.h: Include gettext.h.
2250         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
2251         Problem reported by Eric Blake.
2252         * modules/xstrtol (Depends-on): Add gettext-h.
2253
2254 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
2255
2256         * lib/strftime.c (advance): New macro.
2257         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
2258         incomplete type, so you can't add 0 to it.  Problem and patch
2259         reported by Eelco Dolstra for dietlibc.
2260
2261 2006-10-18  Jim Meyering  <jim@meyering.net>
2262
2263         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
2264         type for a local, and rename it: s/up/user_proc/.
2265
2266 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
2267
2268         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
2269         READ_UTMP_USER_PROCESS.
2270         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
2271
2272 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
2273
2274         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
2275         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
2276
2277 2006-10-17  Eric Blake  <ebb9@byu.net>
2278
2279         * lib/sigprocmask.c (sigprocmask): Fix typo.
2280
2281         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
2282
2283         * modules/clean-temp (Makefile.am): Don't add to make output...
2284         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
2285         config.h.
2286
2287 2006-10-17  Bruno Haible  <bruno@clisp.org>
2288
2289         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
2290         differently if DEFAULT_TEXT_DOMAIN is set.
2291
2292 2006-10-16  Bruno Haible  <bruno@clisp.org>
2293
2294         * lib/clean-temp.c: Include fwriteerror.h.
2295
2296 2006-10-16  Bruno Haible  <bruno@clisp.org>
2297
2298         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
2299
2300 2006-10-16  Bruno Haible  <bruno@clisp.org>
2301
2302         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
2303         * lib/sigprocmask.h: Include <sys/types.h>.
2304         (sigset_t): Use the system's definition if present.
2305
2306 2006-10-17  Eric Blake  <ebb9@byu.net>
2307
2308         * lib/xvasprintf.c (includes): Assume config.h.
2309         * lib/xasprintf.c (includes): Likewise.
2310
2311 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
2312
2313         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
2314         at least as wide as intmax_t.
2315
2316 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
2317
2318         (Imported from Automake.)
2319         * build-aux/gnupload: Update to version 1.1 of directive file.
2320
2321 2006-10-16  Eric Blake  <ebb9@byu.net>
2322
2323         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
2324         match Automake 1.10a.
2325
2326 2006-10-14  Bruno Haible  <bruno@clisp.org>
2327
2328         * modules/sigprocmask: New file.
2329         * lib/sigprocmask.h: New file.
2330         * lib/sigprocmask.c: New file.
2331         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
2332         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
2333         request sigprocmask.o.
2334         (gl_PREREQ_SIGPROCMASK): New macro.
2335         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
2336         (Depends-on): Add sigprocmask.
2337         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
2338         gt_SIGNALBLOCKING. Test for 'raise' only once.
2339         * lib/fatal-signal.c: Include sigprocmask.h.
2340         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
2341         unblock_fatal_signals): Define always.
2342         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2343         sigprocmask.
2344
2345 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
2346
2347         Sync from Automake.
2348         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
2349         which incorrectly sets the mode of an existing destination
2350         directory.  In some cases the unpatched install-sh could do the
2351         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
2352         system.  We hope this is rare in practice, but it's clearly worth
2353         fixing.  Problem reported by Alex Unleashed in
2354         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
2355         Also, don't bother to check for -m bugs unless we're using -m;
2356         suggested by Stepan Kasal.
2357
2358 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2359
2360         Sync from Automake.
2361         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
2362         `-c' flag, so they appear at the same position as in %FASTDEP%
2363         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
2364         which ignores unknown options only after the first non-option.
2365         Bug report against M4 by Nelson H. F. Beebe.
2366
2367 2006-10-13  Jim Meyering  <jim@meyering.net>
2368
2369         Fix a bug in yesterday's change.
2370         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
2371         p->fts_statp->st_dev would be used uninitialized.
2372         Ensures that we always call fts_stat on the very first entry.
2373         Miklos Szeredi reported that find -xdev stopped working.
2374
2375 2006-10-12  Bruno Haible  <bruno@clisp.org>
2376
2377         * gnulib-tool (func_get_automake_snippet): Append an automatically
2378         computed EXTRA_DIST augmentation.
2379         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
2380         * modules/alloca-opt (Makefile.am): Likewise.
2381         * modules/allocsa (Makefile.am): Likewise.
2382         * modules/arcfour (Makefile.am): Likewise.
2383         * modules/arctwo (Makefile.am): Likewise.
2384         * modules/argmatch (Makefile.am): Likewise.
2385         * modules/argz (Makefile.am): Likewise.
2386         * modules/atexit (Makefile.am): Likewise.
2387         * modules/backupfile (Makefile.am): Likewise.
2388         * modules/byteswap (Makefile.am): Likewise.
2389         * modules/c-strtod (Makefile.am): Likewise.
2390         * modules/c-strtold (Makefile.am): Likewise.
2391         * modules/calloc (Makefile.am): Likewise.
2392         * modules/canon-host (Makefile.am): Likewise.
2393         * modules/canonicalize (Makefile.am): Likewise.
2394         * modules/chdir-long (Makefile.am): Likewise.
2395         * modules/chdir-safer (Makefile.am): Likewise.
2396         * modules/check-version (Makefile.am): Likewise.
2397         * modules/chown (Makefile.am): Likewise.
2398         * modules/cloexec (Makefile.am): Likewise.
2399         * modules/close-stream (Makefile.am): Likewise.
2400         * modules/closeout (Makefile.am): Likewise.
2401         * modules/crc (Makefile.am): Likewise.
2402         * modules/csharpexec (Makefile.am): Likewise.
2403         * modules/cycle-check (Makefile.am): Likewise.
2404         * modules/des (Makefile.am): Likewise.
2405         * modules/dev-ino (Makefile.am): Likewise.
2406         * modules/dirfd (Makefile.am): Likewise.
2407         * modules/dirname (Makefile.am): Likewise.
2408         * modules/dup2 (Makefile.am): Likewise.
2409         * modules/eealloc (Makefile.am): Likewise.
2410         * modules/error (Makefile.am): Likewise.
2411         * modules/euidaccess (Makefile.am): Likewise.
2412         * modules/exclude (Makefile.am): Likewise.
2413         * modules/exitfail (Makefile.am): Likewise.
2414         * modules/fcntl-safer (Makefile.am): Likewise.
2415         * modules/fcntl (Makefile.am): Likewise.
2416         * modules/file-type (Makefile.am): Likewise.
2417         * modules/fileblocks (Makefile.am): Likewise.
2418         * modules/filemode (Makefile.am): Likewise.
2419         * modules/filenamecat (Makefile.am): Likewise.
2420         * modules/fnmatch (Makefile.am): Likewise.
2421         * modules/fopen-safer (Makefile.am): Likewise.
2422         * modules/fpending (Makefile.am): Likewise.
2423         * modules/fprintftime (Makefile.am): Likewise.
2424         * modules/free (Makefile.am): Likewise.
2425         * modules/fsusage (Makefile.am): Likewise.
2426         * modules/ftruncate (Makefile.am): Likewise.
2427         * modules/fts (Makefile.am): Likewise.
2428         * modules/gc-arcfour (Makefile.am): Likewise.
2429         * modules/gc-des (Makefile.am): Likewise.
2430         * modules/gc-hmac-md5 (Makefile.am): Likewise.
2431         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
2432         * modules/gc-md4 (Makefile.am): Likewise.
2433         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2434         * modules/gc-sha1 (Makefile.am): Likewise.
2435         * modules/gc (Makefile.am): Likewise.
2436         * modules/getaddrinfo (Makefile.am): Likewise.
2437         * modules/getcwd (Makefile.am): Likewise.
2438         * modules/getdelim (Makefile.am): Likewise.
2439         * modules/getdomainname (Makefile.am): Likewise.
2440         * modules/getgroups (Makefile.am): Likewise.
2441         * modules/gethostname (Makefile.am): Likewise.
2442         * modules/gethrxtime (Makefile.am): Likewise.
2443         * modules/getline (Makefile.am): Likewise.
2444         * modules/getloadavg (Makefile.am): Likewise.
2445         * modules/getlogin_r (Makefile.am): Likewise.
2446         * modules/getndelim2 (Makefile.am): Likewise.
2447         * modules/getopt (Makefile.am): Likewise.
2448         * modules/getpagesize (Makefile.am): Likewise.
2449         * modules/getpass-gnu (Makefile.am): Likewise.
2450         * modules/getpass (Makefile.am): Likewise.
2451         * modules/getsubopt (Makefile.am): Likewise.
2452         * modules/gettime (Makefile.am): Likewise.
2453         * modules/gettimeofday (Makefile.am): Likewise.
2454         * modules/getugroups (Makefile.am): Likewise.
2455         * modules/getusershell (Makefile.am): Likewise.
2456         * modules/glob (Makefile.am): Likewise.
2457         * modules/group-member (Makefile.am): Likewise.
2458         * modules/hard-locale (Makefile.am): Likewise.
2459         * modules/hash (Makefile.am): Likewise.
2460         * modules/hmac-md5 (Makefile.am): Likewise.
2461         * modules/hmac-sha1 (Makefile.am): Likewise.
2462         * modules/human (Makefile.am): Likewise.
2463         * modules/idcache (Makefile.am): Likewise.
2464         * modules/imaxabs (Makefile.am): Likewise.
2465         * modules/imaxdiv (Makefile.am): Likewise.
2466         * modules/inet_ntop (Makefile.am): Likewise.
2467         * modules/inet_pton (Makefile.am): Likewise.
2468         * modules/intprops (Makefile.am): Likewise.
2469         * modules/inttostr (Makefile.am): Likewise.
2470         * modules/inttypes (Makefile.am): Likewise.
2471         * modules/isapipe (Makefile.am): Likewise.
2472         * modules/javaversion (Makefile.am): Likewise.
2473         * modules/lchmod (Makefile.am): Likewise.
2474         * modules/lchown (Makefile.am): Likewise.
2475         * modules/localcharset (Makefile.am): Likewise.
2476         * modules/long-options (Makefile.am): Likewise.
2477         * modules/lstat (Makefile.am): Likewise.
2478         * modules/malloc (Makefile.am): Likewise.
2479         * modules/mathl (Makefile.am): Likewise.
2480         * modules/mbchar (Makefile.am): Likewise.
2481         * modules/md2 (Makefile.am): Likewise.
2482         * modules/md4 (Makefile.am): Likewise.
2483         * modules/md5 (Makefile.am): Likewise.
2484         * modules/memcasecmp (Makefile.am): Likewise.
2485         * modules/memchr (Makefile.am): Likewise.
2486         * modules/memcmp (Makefile.am): Likewise.
2487         * modules/memcoll (Makefile.am): Likewise.
2488         * modules/memcpy (Makefile.am): Likewise.
2489         * modules/memmem (Makefile.am): Likewise.
2490         * modules/memmove (Makefile.am): Likewise.
2491         * modules/mempcpy (Makefile.am): Likewise.
2492         * modules/memrchr (Makefile.am): Likewise.
2493         * modules/memset (Makefile.am): Likewise.
2494         * modules/memxor (Makefile.am): Likewise.
2495         * modules/mkancesdirs (Makefile.am): Likewise.
2496         * modules/mkdir-p (Makefile.am): Likewise.
2497         * modules/mkdir (Makefile.am): Likewise.
2498         * modules/mkdtemp (Makefile.am): Likewise.
2499         * modules/mkstemp (Makefile.am): Likewise.
2500         * modules/mktime (Makefile.am): Likewise.
2501         * modules/modechange (Makefile.am): Likewise.
2502         * modules/mountlist (Makefile.am): Likewise.
2503         * modules/nanosleep (Makefile.am): Likewise.
2504         * modules/obstack (Makefile.am): Likewise.
2505         * modules/openat (Makefile.am): Likewise.
2506         * modules/pagealign_alloc (Makefile.am): Likewise.
2507         * modules/pathmax (Makefile.am): Likewise.
2508         * modules/physmem (Makefile.am): Likewise.
2509         * modules/poll (Makefile.am): Likewise.
2510         * modules/posixtm (Makefile.am): Likewise.
2511         * modules/posixver (Makefile.am): Likewise.
2512         * modules/putenv (Makefile.am): Likewise.
2513         * modules/quote (Makefile.am): Likewise.
2514         * modules/quotearg (Makefile.am): Likewise.
2515         * modules/raise (Makefile.am): Likewise.
2516         * modules/read-file (Makefile.am): Likewise.
2517         * modules/readline (Makefile.am): Likewise.
2518         * modules/readlink (Makefile.am): Likewise.
2519         * modules/readtokens (Makefile.am): Likewise.
2520         * modules/readutmp (Makefile.am): Likewise.
2521         * modules/realloc (Makefile.am): Likewise.
2522         * modules/regex (Makefile.am): Likewise.
2523         * modules/rename-dest-slash (Makefile.am): Likewise.
2524         * modules/rename (Makefile.am): Likewise.
2525         * modules/rijndael (Makefile.am): Likewise.
2526         * modules/rmdir (Makefile.am): Likewise.
2527         * modules/rpmatch (Makefile.am): Likewise.
2528         * modules/safe-read (Makefile.am): Likewise.
2529         * modules/safe-write (Makefile.am): Likewise.
2530         * modules/same-inode (Makefile.am): Likewise.
2531         * modules/same (Makefile.am): Likewise.
2532         * modules/save-cwd (Makefile.am): Likewise.
2533         * modules/savedir (Makefile.am): Likewise.
2534         * modules/setenv (Makefile.am): Likewise.
2535         * modules/settime (Makefile.am): Likewise.
2536         * modules/sha1 (Makefile.am): Likewise.
2537         * modules/sig2str (Makefile.am): Likewise.
2538         * modules/snprintf (Makefile.am): Likewise.
2539         * modules/stat-macros (Makefile.am): Likewise.
2540         * modules/stat-time (Makefile.am): Likewise.
2541         * modules/stdbool (Makefile.am): Likewise.
2542         * modules/stdint (Makefile.am): Likewise.
2543         * modules/stdlib-safer (Makefile.am): Likewise.
2544         * modules/stpcpy (Makefile.am): Likewise.
2545         * modules/stpncpy (Makefile.am): Likewise.
2546         * modules/strcase (Makefile.am): Likewise.
2547         * modules/strcasestr (Makefile.am): Likewise.
2548         * modules/strchrnul (Makefile.am): Likewise.
2549         * modules/strcspn (Makefile.am): Likewise.
2550         * modules/strdup (Makefile.am): Likewise.
2551         * modules/strerror (Makefile.am): Likewise.
2552         * modules/strftime (Makefile.am): Likewise.
2553         * modules/strndup (Makefile.am): Likewise.
2554         * modules/strnlen (Makefile.am): Likewise.
2555         * modules/strpbrk (Makefile.am): Likewise.
2556         * modules/strsep (Makefile.am): Likewise.
2557         * modules/strstr (Makefile.am): Likewise.
2558         * modules/strtod (Makefile.am): Likewise.
2559         * modules/strtoimax (Makefile.am): Likewise.
2560         * modules/strtok_r (Makefile.am): Likewise.
2561         * modules/strtol (Makefile.am): Likewise.
2562         * modules/strtoll (Makefile.am): Likewise.
2563         * modules/strtoul (Makefile.am): Likewise.
2564         * modules/strtoull (Makefile.am): Likewise.
2565         * modules/strtoumax (Makefile.am): Likewise.
2566         * modules/strverscmp (Makefile.am): Likewise.
2567         * modules/sys_socket (Makefile.am): Likewise.
2568         * modules/sys_stat (Makefile.am): Likewise.
2569         * modules/sysexits (Makefile.am): Likewise.
2570         * modules/time_r (Makefile.am): Likewise.
2571         * modules/timegm (Makefile.am): Likewise.
2572         * modules/timespec (Makefile.am): Likewise.
2573         * modules/tmpfile-safer (Makefile.am): Likewise.
2574         * modules/trim (Makefile.am): Likewise.
2575         * modules/unistd-safer (Makefile.am): Likewise.
2576         * modules/unlinkdir (Makefile.am): Likewise.
2577         * modules/unlocked-io (Makefile.am): Likewise.
2578         * modules/userspec (Makefile.am): Likewise.
2579         * modules/utime (Makefile.am): Likewise.
2580         * modules/utimecmp (Makefile.am): Likewise.
2581         * modules/utimens (Makefile.am): Likewise.
2582         * modules/vasnprintf (Makefile.am): Likewise.
2583         * modules/vasprintf (Makefile.am): Likewise.
2584         * modules/vsnprintf (Makefile.am): Likewise.
2585         * modules/xalloc (Makefile.am): Likewise.
2586         * modules/xgetcwd (Makefile.am): Likewise.
2587         * modules/xnanosleep (Makefile.am): Likewise.
2588         * modules/xreadlink (Makefile.am): Likewise.
2589         * modules/xstrtod (Makefile.am): Likewise.
2590         * modules/xstrtol (Makefile.am): Likewise.
2591         * modules/xstrtold (Makefile.am): Likewise.
2592         * modules/yesno (Makefile.am): Likewise.
2593         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
2594
2595 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2596
2597         * modules/error (Makefile.am): Distribute files through
2598         EXTRA_DIST, not lib_SOURCES.
2599
2600 2006-10-12  Eric Blake  <ebb9@byu.net>
2601
2602         * modules/error (Makefile.am): Distribute files in /lib.
2603         * modules/obstack (Makefile.am): Likewise.
2604
2605 2006-10-12  Bruno Haible  <bruno@clisp.org>
2606
2607         * modules/acl (Makefile.am): Distribute all files in lib/ through
2608         EXTRA_DIST.
2609         * modules/arcfour (Makefile.am): Likewise.
2610         * modules/arctwo (Makefile.am): Likewise.
2611         * modules/argmatch (Makefile.am): Likewise.
2612         * modules/argz (Makefile.am): Likewise.
2613         * modules/atexit (Makefile.am): Likewise.
2614         * modules/backupfile (Makefile.am): Likewise.
2615         * modules/c-strtod (Makefile.am): Likewise.
2616         * modules/c-strtold (Makefile.am): Likewise.
2617         * modules/calloc (Makefile.am): Likewise.
2618         * modules/canon-host (Makefile.am): Likewise.
2619         * modules/canonicalize (Makefile.am): Likewise.
2620         * modules/chdir-long (Makefile.am): Likewise.
2621         * modules/chdir-safer (Makefile.am): Likewise.
2622         * modules/check-version (Makefile.am): Likewise.
2623         * modules/chown (Makefile.am): Likewise.
2624         * modules/cloexec (Makefile.am): Likewise.
2625         * modules/close-stream (Makefile.am): Likewise.
2626         * modules/closeout (Makefile.am): Likewise.
2627         * modules/crc (Makefile.am): Likewise.
2628         * modules/cycle-check (Makefile.am): Likewise.
2629         * modules/des (Makefile.am): Likewise.
2630         * modules/dirfd (Makefile.am): Likewise.
2631         * modules/dirname (Makefile.am): Likewise.
2632         * modules/dup2 (Makefile.am): Likewise.
2633         * modules/euidaccess (Makefile.am): Likewise.
2634         * modules/exclude (Makefile.am): Likewise.
2635         * modules/exitfail (Makefile.am): Likewise.
2636         * modules/fcntl-safer (Makefile.am): Likewise.
2637         * modules/file-type (Makefile.am): Likewise.
2638         * modules/fileblocks (Makefile.am): Likewise.
2639         * modules/filemode (Makefile.am): Likewise.
2640         * modules/filenamecat (Makefile.am): Likewise.
2641         * modules/fnmatch (Makefile.am): Likewise.
2642         * modules/fopen-safer (Makefile.am): Likewise.
2643         * modules/fpending (Makefile.am): Likewise.
2644         * modules/fprintftime (Makefile.am): Likewise.
2645         * modules/free (Makefile.am): Likewise.
2646         * modules/fsusage (Makefile.am): Likewise.
2647         * modules/ftruncate (Makefile.am): Likewise.
2648         * modules/fts (Makefile.am): Likewise.
2649         * modules/gc (Makefile.am): Likewise.
2650         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2651         * modules/getaddrinfo (Makefile.am): Likewise.
2652         * modules/getcwd (Makefile.am): Likewise.
2653         * modules/getdelim (Makefile.am): Likewise.
2654         * modules/getdomainname (Makefile.am): Likewise.
2655         * modules/getgroups (Makefile.am): Likewise.
2656         * modules/gethostname (Makefile.am): Likewise.
2657         * modules/gethrxtime (Makefile.am): Likewise.
2658         * modules/getline (Makefile.am): Likewise.
2659         * modules/getloadavg (Makefile.am): Likewise.
2660         * modules/getlogin_r (Makefile.am): Likewise.
2661         * modules/getopt (Makefile.am): Likewise.
2662         * modules/getpass (Makefile.am): Likewise.
2663         * modules/getpass-gnu (Makefile.am): Likewise.
2664         * modules/getsubopt (Makefile.am): Likewise.
2665         * modules/gettime (Makefile.am): Likewise.
2666         * modules/gettimeofday (Makefile.am): Likewise.
2667         * modules/getugroups (Makefile.am): Likewise.
2668         * modules/getusershell (Makefile.am): Likewise.
2669         * modules/glob (Makefile.am): Likewise.
2670         * modules/group-member (Makefile.am): Likewise.
2671         * modules/hard-locale (Makefile.am): Likewise.
2672         * modules/hash (Makefile.am): Likewise.
2673         * modules/hmac-md5 (Makefile.am): Likewise.
2674         * modules/hmac-sha1 (Makefile.am): Likewise.
2675         * modules/human (Makefile.am): Likewise.
2676         * modules/idcache (Makefile.am): Likewise.
2677         * modules/imaxabs (Makefile.am): Likewise.
2678         * modules/imaxdiv (Makefile.am): Likewise.
2679         * modules/inet_ntop (Makefile.am): Likewise.
2680         * modules/inet_pton (Makefile.am): Likewise.
2681         * modules/inttostr (Makefile.am): Likewise.
2682         * modules/isapipe (Makefile.am): Likewise.
2683         * modules/lchown (Makefile.am): Likewise.
2684         * modules/long-options (Makefile.am): Likewise.
2685         * modules/lstat (Makefile.am): Likewise.
2686         * modules/malloc (Makefile.am): Likewise.
2687         * modules/mathl (Makefile.am): Likewise.
2688         * modules/mbchar (Makefile.am): Likewise.
2689         * modules/md2 (Makefile.am): Likewise.
2690         * modules/md4 (Makefile.am): Likewise.
2691         * modules/md5 (Makefile.am): Likewise.
2692         * modules/memcasecmp (Makefile.am): Likewise.
2693         * modules/memchr (Makefile.am): Likewise.
2694         * modules/memcmp (Makefile.am): Likewise.
2695         * modules/memcoll (Makefile.am): Likewise.
2696         * modules/memcpy (Makefile.am): Likewise.
2697         * modules/memmem (Makefile.am): Likewise.
2698         * modules/memmove (Makefile.am): Likewise.
2699         * modules/mempcpy (Makefile.am): Likewise.
2700         * modules/memrchr (Makefile.am): Likewise.
2701         * modules/memset (Makefile.am): Likewise.
2702         * modules/memxor (Makefile.am): Likewise.
2703         * modules/mkancesdirs (Makefile.am): Likewise.
2704         * modules/mkdir (Makefile.am): Likewise.
2705         * modules/mkdir-p (Makefile.am): Likewise.
2706         * modules/mkdtemp (Makefile.am): Likewise.
2707         * modules/mkstemp (Makefile.am): Likewise.
2708         * modules/mktime (Makefile.am): Likewise.
2709         * modules/modechange (Makefile.am): Likewise.
2710         * modules/mountlist (Makefile.am): Likewise.
2711         * modules/nanosleep (Makefile.am): Likewise.
2712         * modules/openat (Makefile.am): Likewise.
2713         * modules/pagealign_alloc (Makefile.am): Likewise.
2714         * modules/physmem (Makefile.am): Likewise.
2715         * modules/poll (Makefile.am): Likewise.
2716         * modules/posixtm (Makefile.am): Likewise.
2717         * modules/posixver (Makefile.am): Likewise.
2718         * modules/putenv (Makefile.am): Likewise.
2719         * modules/quote (Makefile.am): Likewise.
2720         * modules/quotearg (Makefile.am): Likewise.
2721         * modules/raise (Makefile.am): Likewise.
2722         * modules/read-file (Makefile.am): Likewise.
2723         * modules/readline (Makefile.am): Likewise.
2724         * modules/readlink (Makefile.am): Likewise.
2725         * modules/readtokens (Makefile.am): Likewise.
2726         * modules/readutmp (Makefile.am): Likewise.
2727         * modules/realloc (Makefile.am): Likewise.
2728         * modules/regex (Makefile.am): Likewise.
2729         * modules/rename (Makefile.am): Likewise.
2730         * modules/rename-dest-slash (Makefile.am): Likewise.
2731         * modules/rijndael (Makefile.am): Likewise.
2732         * modules/rmdir (Makefile.am): Likewise.
2733         * modules/rpmatch (Makefile.am): Likewise.
2734         * modules/safe-read (Makefile.am): Likewise.
2735         * modules/safe-write (Makefile.am): Likewise.
2736         * modules/same (Makefile.am): Likewise.
2737         * modules/save-cwd (Makefile.am): Likewise.
2738         * modules/savedir (Makefile.am): Likewise.
2739         * modules/setenv (Makefile.am): Likewise.
2740         * modules/settime (Makefile.am): Likewise.
2741         * modules/sha1 (Makefile.am): Likewise.
2742         * modules/sig2str (Makefile.am): Likewise.
2743         * modules/snprintf (Makefile.am): Likewise.
2744         * modules/stdlib-safer (Makefile.am): Likewise.
2745         * modules/stpcpy (Makefile.am): Likewise.
2746         * modules/stpncpy (Makefile.am): Likewise.
2747         * modules/strcase (Makefile.am): Likewise.
2748         * modules/strcasestr (Makefile.am): Likewise.
2749         * modules/strchrnul (Makefile.am): Likewise.
2750         * modules/strcspn (Makefile.am): Likewise.
2751         * modules/strdup (Makefile.am): Likewise.
2752         * modules/strerror (Makefile.am): Likewise.
2753         * modules/strftime (Makefile.am): Likewise.
2754         * modules/strndup (Makefile.am): Likewise.
2755         * modules/strnlen (Makefile.am): Likewise.
2756         * modules/strpbrk (Makefile.am): Likewise.
2757         * modules/strsep (Makefile.am): Likewise.
2758         * modules/strstr (Makefile.am): Likewise.
2759         * modules/strtod (Makefile.am): Likewise.
2760         * modules/strtoimax (Makefile.am): Likewise.
2761         * modules/strtok_r (Makefile.am): Likewise.
2762         * modules/strtol (Makefile.am): Likewise.
2763         * modules/strtoll (Makefile.am): Likewise.
2764         * modules/strtoul (Makefile.am): Likewise.
2765         * modules/strtoull (Makefile.am): Likewise.
2766         * modules/strtoumax (Makefile.am): Likewise.
2767         * modules/strverscmp (Makefile.am): Likewise.
2768         * modules/time_r (Makefile.am): Likewise.
2769         * modules/timegm (Makefile.am): Likewise.
2770         * modules/tmpfile-safer (Makefile.am): Likewise.
2771         * modules/unistd-safer (Makefile.am): Likewise.
2772         * modules/unlinkdir (Makefile.am): Likewise.
2773         * modules/userspec (Makefile.am): Likewise.
2774         * modules/utime (Makefile.am): Likewise.
2775         * modules/utimecmp (Makefile.am): Likewise.
2776         * modules/utimens (Makefile.am): Likewise.
2777         * modules/vasnprintf (Makefile.am): Likewise.
2778         * modules/vasprintf (Makefile.am): Likewise.
2779         * modules/vsnprintf (Makefile.am): Likewise.
2780         * modules/xalloc (Makefile.am): Likewise.
2781         * modules/xgetcwd (Makefile.am): Likewise.
2782         * modules/xnanosleep (Makefile.am): Likewise.
2783         * modules/xreadlink (Makefile.am): Likewise.
2784         * modules/xstrtod (Makefile.am): Likewise.
2785         * modules/xstrtol (Makefile.am): Likewise.
2786         * modules/xstrtold (Makefile.am): Likewise.
2787         * modules/yesno (Makefile.am): Likewise.
2788
2789 2006-10-12  Jim Meyering  <jim@meyering.net>
2790
2791         * m4/getloadavg.m4: Revert the change below.
2792
2793         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
2794         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
2795         fail with a symlink, which is what coreutils' ./bootstrap now
2796         creates by default.
2797
2798 2006-10-12  Bruno Haible  <bruno@clisp.org>
2799
2800         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
2801         mingw.
2802         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
2803         MSVC and mingw explicitly.
2804
2805 2006-10-11  Simon Josefsson  <jas@extundo.com>
2806             Bruno Haible  <bruno@clisp.org>
2807
2808         Add support for multiple gnulib-tool invocations in the scope of a
2809         single configure.ac file.
2810         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
2811         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
2812         with the same contents as the _LIBADD variable.
2813         (func_emit_initmacro_start, func_emit_initmacro_end,
2814         func_emit_initmacro_done): New functions.
2815         (func_import, func_create_testdir): Invoke them. Allow the identifiers
2816         gl_LIBOBJS and gl_LTLIBOBJS.
2817
2818 2006-10-11  Bruno Haible  <bruno@clisp.org>
2819
2820         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
2821         (func_create_testdir): Don't create po/Makefile.am, don't invoke
2822         autoreconf. Instead, invoke autopoint explicitly but move back the
2823         *.m4 files from gnulib.
2824
2825 2006-10-11  Bruno Haible  <bruno@clisp.org>
2826
2827         * gnulib-tool (func_usage): Make module names after --create-testdir
2828         optional.
2829         (func_create_testdir): If no module was specified, use nearly all
2830         modules.
2831
2832 2006-10-12  Jim Meyering  <jim@meyering.net>
2833
2834         Big performance improvement for fts-based tools that use FTS_NOSTAT.
2835         Avoid spurious inode-mismatch problems on non-POSIX file systems.
2836         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
2837         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
2838         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
2839         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
2840         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
2841         (fts_set_stat_required): New function.
2842         (fts_open): Defer the calls to fts_stat, if possible or requested.
2843         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
2844         into fts_stat itself.
2845         (fts_read): Perform any required (deferred) fts_stat call.
2846         (fts_build): Likewise, for the directory we're about to open and read.
2847         In the readdir loop, carefully decide whether each entry will require
2848         an eventual call to fts_stat, using dirent.d_type info if available.
2849         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
2850         a command line argument into this function.  Update all callers.
2851         Map a return value of FTS_DOT to FTS_D for a command line argument.
2852         * modules/fts (Depends-on): Add d-type.  Alphabetize.
2853         Thanks to Miklos Szeredi for his tenacity and for the initial
2854         bug report about "find" failing on a FUSE-based file system.
2855
2856         * lib/fts.c (fts_open): Use consistent indentation.
2857
2858 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2859
2860         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
2861         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
2862         reported by Jim Meyering.  All uses of cache variables renamed
2863         to match Autoconf's.
2864         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
2865         the other one.
2866
2867         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
2868         Fix misspelling in diagnostic.
2869
2870 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2871
2872         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
2873         defined.  Problem reported by Matthew Woehlke.
2874
2875         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
2876         Add support for Tandem NonStop R series.
2877         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
2878         Use new macro.
2879
2880         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
2881         (has_trailing_slash): Omit size arg; all callers changed.
2882         Omit 'inline', since it doesn't help performance and we'd
2883         need to configure it.
2884         Don't count //, ///, etc. as having a trailing slash.
2885         As a side effect, this removes a C99ism reported by Matthew Woehlke.
2886         (rpl_rename_dest_slash): On failure, use rename's errno rather
2887         than (in some cases) an incorrect or junk errno.
2888         Simplify code by removing need to compute length; this does
2889         cause it to make two passes instead of one over the file name,
2890         but it's worth it.
2891
2892         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
2893         change, since Autoconf's version may no longer be appropriate now
2894         that we are using CVS Autoconf's version.  Add support for Tandem.
2895
2896 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2897             Bruno Haible  <bruno@clisp.org>
2898
2899         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
2900         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
2901         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
2902         gl_AC_TYPE_LONG_LONG.
2903
2904         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
2905         instead of HAVE_LONG_LONG.
2906         * lib/printf-args.c (printf_fetchargs): Likewise.
2907         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
2908         * lib/vasnprintf.c (VASNPRINTF): Likewise.
2909         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
2910         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
2911         gl_AC_TYPE_LONG_LONG.
2912
2913 2006-10-11  Bruno Haible  <bruno@clisp.org>
2914
2915         * m4/longlong.m4: Add comments.
2916         * m4/ulonglong.m4: Likewise.
2917
2918 2006-10-10  Bruno Haible  <bruno@clisp.org>
2919
2920         Make it possible to #define stpcpy, strdup to aliases.
2921         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
2922         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
2923
2924 2006-10-10  Bruno Haible  <bruno@clisp.org>
2925
2926         Make it possible to #define gcd to an alias.
2927         * lib/gcd.c: Include config.h.
2928
2929 2006-10-10  Bruno Haible  <bruno@clisp.org>
2930
2931         Make it possible to #define c_isascii to an alias.
2932         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
2933         defined. Undefine the macros before defining them, to avoid gcc
2934         warnings.
2935         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
2936         define NO_C_CTYPE_MACROS early.
2937
2938 2006-10-10  Bruno Haible  <bruno@clisp.org>
2939
2940         Make it possible to #define set_program_name to an alias.
2941         * lib/progname.c: Don't undefine set_program_name; instead, undefine
2942         ENABLE_RELOCATABLE early.
2943
2944 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
2945
2946         Port to Tandem NSK OSS, which has 64-bit signed int but at most
2947         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
2948         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
2949         More generally, don't assume that 64-bit signed int is available
2950         if unsigned int is, and vice versa.
2951         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
2952         unsigned symbols, not on their signed counterparts.
2953         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
2954         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
2955         (UINT64_C, UINTMAX_C):
2956         Likewise.
2957         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
2958         unsigned counterparts.
2959         (Have_long_long, Unsigned): New macros.
2960         (Int): Renamed from INT.
2961         (strtoimax): Use the new macros.
2962         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
2963         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
2964         * modules/inttypes (inttypes.h): Substitute
2965         HAVE_UNSIGNED_LONG_LONG_INT.
2966         * modules/stdint (stdint.h): Likewise.
2967         (Files): Add m4/ulonglong.m4.
2968
2969 2006-10-10  Bruno Haible  <bruno@clisp.org>
2970
2971         Fix a gcc -Wshadow warning.
2972         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
2973         to 'bucket'.
2974         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
2975         gl_linked_indexof_from_to): Likewise.
2976         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
2977         Likewise.
2978         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
2979         Likewise.
2980         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
2981         Reported by Eric Blake.
2982
2983 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2984
2985         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
2986         for NetBSD.  Problem reported by Bruno Haible.
2987
2988 2006-10-09  Jim Meyering  <jim@meyering.net>
2989
2990         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
2991         Patch from Bruno Haible.
2992
2993 2006-10-09  Jim Meyering  <jim@meyering.net>
2994
2995         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
2996         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
2997         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
2998
2999 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
3000
3001         Don't include <config.h> twice; this doesn't work in some cases,
3002         e.g., when config.h has "#define intmax_t long long int" and
3003         we include <config.h>, <inttypes.h>, <config.h> in that order.
3004         Problem reported by Matthew Woehlke in:
3005         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
3006         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
3007         * lib/fts-cycle.c: Don't include config.h.
3008         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
3009         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
3010         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
3011         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
3012         inttypes.h.
3013         * lib/xstrtoumax.c: Likewise.
3014         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
3015         __strtol and the like, so that this module is more like its siblings.
3016         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
3017         Remove; no longer needed now that we assume gnulib inttypes.h.
3018
3019 2006-10-08  Bruno Haible  <bruno@clisp.org>
3020
3021         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
3022         option.
3023
3024 2006-10-07  Jim Meyering  <jim@meyering.net>
3025
3026         * modules/inttypes (inttypes.h): Revert what seems to have been
3027         an inadvertent part of today's change: use "|", not "/" in the
3028         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
3029
3030 2006-10-07  Bruno Haible  <bruno@clisp.org>
3031
3032         * modules/sublist: New file.
3033
3034 2006-10-07  Bruno Haible  <bruno@clisp.org>
3035
3036         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
3037         * modules/argz (argz.h): Likewise.
3038         * modules/arpa_inet (arpa/inet.h): Likewise.
3039         * modules/byteswap (byteswap.h): Likewise.
3040         * modules/configmake (configmake.h): Likewise.
3041         * modules/fcntl (fcntl.h): Likewise.
3042         * modules/fnmatch (fnmatch.h): Likewise.
3043         * modules/getopt (getopt.h): Likewise.
3044         * modules/glob (glob.h): Likewise.
3045         * modules/inttypes (inttypes.h): Likewise.
3046         * modules/netinet_in (netinet/in.h): Likewise.
3047         * modules/poll (poll.h): Likewise.
3048         * modules/stdbool (stdbool.h): Likewise.
3049         * modules/stdint (stdint.h): Likewise.
3050         * modules/sys_select (sys/select.h): Likewise.
3051         * modules/sys_socket (sys/socket.h): Likewise.
3052         * modules/sys_stat (sys/stat.h): Likewise.
3053         * modules/sysexits (sysexits.h): Likewise.
3054         * modules/unistd (unistd.h): Likewise.
3055         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3056         Add a "DO NOT EDIT" comment to the generated file.
3057         (func_import): Likewise for gnulib-comp.m4.
3058
3059 2006-10-07  Bruno Haible  <bruno@clisp.org>
3060
3061         * lib/gl_sublist.h: New file.
3062         * lib/gl_sublist.c: New file.
3063
3064 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
3065
3066         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
3067         name (relative to the original working directory) and the file
3068         name component (relative to the temporary working directory).  All
3069         callers changed.
3070         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3071         * lib/mkdir-p.c (make_dir_parents): Likewise.
3072         * lib/mkdir-p.h (make_dir_parents): Likewise.
3073
3074 2006-10-06  Eric Blake  <ebb9@byu.net>
3075
3076         Define several macros for use by the clean-temp module.
3077         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3078         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3079         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3080
3081         * lib/clean-temp.h (close_stream_temp): New declaration.
3082         * lib/clean-temp.c (includes): Pull in headers according to what
3083         other modules are in use.
3084         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3085
3086 2006-10-06  Bruno Haible  <bruno@clisp.org>
3087
3088         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3089         instead of fopen, fwriteerror.
3090
3091 2006-10-06  Bruno Haible  <bruno@clisp.org>
3092
3093         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3094         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3095         int.
3096         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3097         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3098         Return an error indicator.
3099         Suggested by Eric Blake.
3100
3101 2006-10-06  Bruno Haible  <bruno@clisp.org>
3102
3103         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3104         Reported by Eric Blake.
3105
3106 2006-10-06  Bruno Haible  <bruno@clisp.org>
3107
3108         * modules/closeout (Description): Mention stderr too.
3109
3110 2006-10-06  Bruno Haible  <bruno@clisp.org>
3111         and Paul Eggert  <eggert@cs.ucla.edu>
3112
3113         * lib/closeout.c (close_stdout): Also close stderr.
3114         * lib/closeout.h: Update comment.
3115
3116 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3117
3118         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3119         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3120         * lib/dirchownmod.c: Include lchown.h.
3121         * lib/lchown.c: Don't include files that lchown.h now includes.
3122         Don't declare chown, since lchown.h now does that.
3123         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3124         (lchown): Define to rpl_chown if lchown is declared but
3125         does not exist.  Declare using a prototype if lchown is not
3126         declared.  Add a copyright notice.
3127         * lib/mkstemp.h: Include <unistd.h>.
3128         * lib/openat.c: Include lchown.h.
3129
3130         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3131         we now test for that separately.
3132         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3133         rather than O_NOFOLLOW, when testing whether it's possible to
3134         avoid a race condition reliably.
3135         * lib/savewd.c (savewd_chdir): Likewise.
3136
3137         Remove macros that are no longer needed now that stdint.h is
3138         reliable.
3139         * lib/fsusage.c (UINTMAX_MAX): Remove.
3140         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3141         * lib/utimecmp.c (SIZE_MAX): Remove.
3142
3143         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3144
3145         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3146         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3147         O_NOATIME works.
3148
3149 2006-10-05  Bruno Haible  <bruno@clisp.org>
3150
3151         * lib/gl_list.h (gl_sortedlist_search_from_to,
3152         gl_sortedlist_indexof_from_to): New declarations.
3153         (gl_list_implementation): New fields sortedlist_search_from_to,
3154         sortedlist_indexof_from_to.
3155         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3156         inline functions.
3157         * lib/gl_list.c (gl_sortedlist_search_from_to,
3158         gl_sortedlist_indexof_from_to): New functions.
3159         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3160         function.
3161         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3162         (gl_array_sortedlist_search_from_to): New function.
3163         (gl_array_list_implementation): Update.
3164         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
3165         function.
3166         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
3167         (gl_carray_sortedlist_search_from_to): New function.
3168         (gl_carray_list_implementation): Update.
3169         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
3170         gl_linked_sortedlist_indexof_from_to): New functions.
3171         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3172         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3173         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
3174         gl_tree_sortedlist_indexof_from_to): New functions.
3175         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3176         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3177         Update.
3178         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3179         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
3180         Update.
3181
3182 2006-10-05  Bruno Haible  <bruno@clisp.org>
3183
3184         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
3185         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
3186         (struct gl_list_implementation): Add fields search_from_to,
3187         indexof_from_to. Remove fields search, indexof.
3188         (gl_list_search): Use the search_from_to method.
3189         (gl_list_search_from, gl_list_search_from_to): New functions.
3190         (gl_list_indexof): Use the indexof_from_to method.
3191         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3192         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
3193         (gl_list_search_from, gl_list_search_from_to): New functions.
3194         (gl_list_indexof): Use the indexof_from_to method.
3195         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3196         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
3197         gl_array_indexof. Add start_index, end_index arguments.
3198         (gl_array_search_from_to): Renamed from gl_array_search. Add
3199         start_index, end_index arguments.
3200         (gl_array_remove, gl_array_list_implementation): Update.
3201         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
3202         gl_carray_indexof. Add start_index, end_index arguments.
3203         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
3204         start_index, end_index arguments.
3205         (gl_carray_remove, gl_carray_list_implementation): Update.
3206         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
3207         gl_linked_search. Add start_index, end_index arguments.
3208         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
3209         start_index, end_index arguments.
3210         (gl_linked_remove): Update.
3211         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3212         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3213         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
3214         field to 'size_t'.
3215         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
3216         gl_tree_search. Add start_index, end_index arguments.
3217         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3218         start_index, end_index arguments.
3219         (gl_tree_remove): Update.
3220         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3221         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3222         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
3223         function.
3224         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
3225         gl_tree_search. Add start_index, end_index arguments.
3226         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3227         start_index, end_index arguments.
3228         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3229         Update.
3230         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
3231
3232 2006-10-05  Bruno Haible  <bruno@clisp.org>
3233
3234         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
3235
3236         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
3237         fwriteerror_temp): New declarations.
3238         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
3239         (descriptors): New variable.
3240         (cleanup): First, close the descriptors.
3241         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
3242         fclose_temp, fwriteerror_temp): New functions.
3243
3244 2006-10-04  Jim Meyering  <jim@meyering.net>
3245
3246         * lib/fts.c (fts_open): Tiny comment change.
3247
3248 2006-10-04  Bruno Haible  <bruno@clisp.org>
3249
3250         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
3251         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
3252         gl_LOCK_BODY.
3253         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
3254         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
3255         gl_LOCK_EARLY_BODY.
3256         (gl_LOCK): Require gl_LOCK_BODY.
3257
3258 2006-10-04  Bruno Haible  <bruno@clisp.org>
3259
3260         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
3261         (gl_oset_search_atleast): New declaration.
3262         (struct gl_oset_implementation): Add field 'search_atleast'.
3263         (gl_oset_search_atleast): New inline function.
3264         * lib/gl_oset.c (gl_oset_search_atleast): New function.
3265         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
3266         (gl_array_oset_implementation): Update.
3267         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
3268         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
3269         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
3270
3271 2006-10-04  Bruno Haible  <bruno@clisp.org>
3272
3273         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
3274
3275 2006-10-03  Bruno Haible  <bruno@clisp.org>
3276
3277         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
3278         from gl_avltreehash_list_implementation.
3279
3280 2006-10-03  Bruno Haible  <bruno@clisp.org>
3281
3282         * lib/gl_oset.c (gl_oset_add): Fix return type.
3283
3284 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
3285
3286         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
3287
3288 2006-10-02  Eric Blake  <ebb9@byu.net>
3289
3290         * modules/strnlen (Depends-on): Add extensions.
3291
3292 2006-10-02  Eric Blake  <ebb9@byu.net>
3293
3294         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
3295         definition in 2.60+.
3296
3297 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
3298
3299         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
3300         checks.
3301
3302 2006-10-02  Bruno Haible  <bruno@clisp.org>
3303
3304         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
3305         to the AUTOMAKE_OPTIONS.
3306         Reported by Jim Meyering.
3307
3308 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
3309
3310         Work around bug in Solaris 10 /proc file system:
3311         /proc/self/fd/NNN/.. isn't the parent directory of
3312         the directory whose file descriptor is NNN.  This needs to
3313         be worked around at run time, not compile time, since a
3314         program might be built on Solaris 8, where things work, and
3315         run on Solaris 10.
3316         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
3317         to use the following interface instead:
3318         (OPENAT_BUFFER_SIZE): New macro.
3319         (openat_proc_name): New function.
3320         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
3321         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
3322         Likewise.
3323         * lib/openat-proc.c: New file.
3324         * modules/openat (Files): Add lib/openat-proc.c.
3325         (Depends-on): Add same-inode, stdbool.
3326         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
3327
3328 2006-09-29  Bruno Haible  <bruno@clisp.org>
3329
3330         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
3331         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
3332         argument. Set stdout_closed before testing for ferror, not after.
3333         (fwriteerror, fwriteerror_no_ebadf): New functions.
3334
3335 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3336
3337         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
3338
3339 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
3340
3341         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
3342         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
3343
3344 2006-09-28  Jim Meyering  <jim@meyering.net>
3345
3346         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
3347         Include <unistd.h>.
3348
3349 2006-09-28  Bruno Haible  <bruno@clisp.org>
3350
3351         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
3352         * modules/linkedhash-list (Depends-on): Likewise.
3353         * modules/rbtreehash-list (Depends-on): Likewise.
3354
3355 2006-09-28  Bruno Haible  <bruno@clisp.org>
3356
3357         * lib/strndup.h: Simplify the redefinition of strndup.
3358         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
3359         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
3360
3361 2006-09-28  Bruno Haible  <bruno@clisp.org>
3362
3363         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
3364         * lib/gl_linkedhash_list.c: Likewise.
3365         * lib/gl_rbtreehash_list.c: Likewise.
3366
3367 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
3368
3369         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
3370         getaddrinfo.
3371
3372         * lib/__fpending.h: Don't include <stdio_ext.h> unless
3373         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
3374         it causes <stdio_ext.h> to cause a compile-time error.
3375         Problem reported by Nelson H. F. Beebe.
3376         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
3377         of HAVE_DECL___PENDING.
3378
3379         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
3380         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
3381         declaration.
3382
3383 2006-09-27  Jim Meyering  <jim@meyering.net>
3384
3385         This file could end up with a definition for a function
3386         named __strndup, rather than rpl_strndup on a system with
3387         incomplete weak_alias support.
3388         * lib/strndup.c (strndup): Rename from __strndup.
3389         Remove #defines that used to map __strndup to strndup.
3390         Don't use K&R prototypes.
3391         Remove LIBC-related code, since this file is not sync'd with glibc.
3392         * lib/strndup.h: Revamp, accordingly.
3393         * m4/strndup.m4: Modernize.
3394
3395 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
3396
3397         * modules/savewd (Depends-on): Add 'raise'.
3398         * lib/savewd.c: Include <signal.h>, for 'raise'.
3399
3400 2006-09-26  Jim Meyering  <jim@meyering.net>
3401
3402         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
3403         when we detect Darwin 8.7.0's acl_get_file bug.
3404         Rearrange to perform the new (below) run-test while $LIBS
3405         contains any acl-related library.  Set USE_ACL at the end.
3406         (gl_ACL_GET_FILE): New function.
3407
3408 2006-09-26  Eric Blake  <ebb9@byu.net>
3409
3410         * lib/verror.c: Include <config.h> unconditionally.
3411
3412 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
3413
3414         * modules/clock-time (Maintainer): Add self.
3415         * modules/getlogin_r (Depends-on): Add extensions.
3416
3417 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3418
3419         * modules/clock-time: New module.
3420         * modules/nanosleep (Depends-on): Add clock-time.
3421         * modules/gethrxtime (Depends-on): Likewise.
3422         * modules/gettime (Depends-on): Likewise.
3423         * modules/settime (Depends-on): Likewise.
3424
3425         * modules/fts-lgpl: Depend on openat.
3426         * modules/mkancesdirs: Depend on savewd.
3427         * modules/mkdir-p: Likewise.
3428
3429 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3430
3431         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
3432
3433         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
3434         `gl_have_arbitrary_file_name_length_limit' to
3435         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
3436         actually works between configure runs.
3437
3438 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3439             Bruno Haible  <bruno@clisp.org>
3440
3441         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
3442
3443 2006-09-25  Jim Meyering  <jim@meyering.net>
3444
3445         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
3446         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
3447
3448 2006-09-25  Eric Blake  <ebb9@byu.net>
3449
3450         * gnulib-tool (func_import, func_create_testdir): Fix typos in
3451         exec's in 2006-09-18 patch when shuffling fds.
3452
3453 2006-09-25  Bruno Haible  <bruno@clisp.org>
3454
3455         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
3456         Reported by Jim Meyering.
3457
3458 2006-09-24  Jim Meyering  <jim@meyering.net>
3459
3460         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
3461         compare a pointer against a literal "0".  That caused failures with
3462         at least HP-UX's hpcc.
3463
3464 2006-09-22  Simon Josefsson  <jas@extundo.com>
3465
3466         * modules/gc-sha1:
3467         * modules/gc-md4:
3468         * modules/gc-hmac-sha1:
3469         * modules/gc-hmac-md5:
3470         * modules/gc-des:
3471         * modules/gc-arcfour: Distribute more files.
3472
3473 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3474
3475         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
3476         (gl_linked_iterator_from_to): Initialize struct completely.
3477         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
3478         (gl_tree_iterator_from_to): Likewise
3479         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
3480         * lib/gl_array_list.c [lint] (gl_array_iterator)
3481         (gl_array_iterator_from_to): Likewise.
3482         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
3483         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
3484         (gl_carray_iterator_from_to): Likewise.
3485
3486         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
3487         * lib/md4.c (md4_process_block): Remove unused variable.
3488         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
3489         parentheses for clarity.
3490
3491 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3492
3493         * modules/bison-i18n (Depends-on): Add gettext.
3494
3495 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3496
3497         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
3498         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
3499         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
3500         also add missing comma that caused broken test.
3501         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
3502         stdlib.h, for `abort'.
3503         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
3504         variables.
3505         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
3506         include unistd.h if present, for `rmdir'.
3507         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
3508         variables.
3509         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
3510         in the process include standard headers for prototypes.
3511         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
3512         gets declared on GNU/Linux.
3513         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
3514         unistd.h, for `rmdir'.
3515         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
3516
3517         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
3518         always true.
3519         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
3520
3521         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
3522
3523 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3524
3525         * gnulib-tool (func_version): Create output all at once.  This
3526         may help avoid triggering unnecessary SIGPIPEs, and at any
3527         rate it doesn't hurt.
3528
3529 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3530             Bruno Haible  <bruno@clisp.org>
3531
3532         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
3533         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
3534         * m4/signed.m4 (bh_C_SIGNED): Likewise.
3535
3536         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
3537         (gl_FUNC_VASPRINTF): Invoke it.
3538
3539 2006-09-22  Bruno Haible  <bruno@clisp.org>
3540
3541         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
3542         getloadavg.c as first argument.
3543
3544 2006-09-22  Bruno Haible  <bruno@clisp.org>
3545
3546         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
3547         at the beginning of the gl_INIT macro.
3548         * modules/getloadavg (configure.ac): Pass $gl_source_base to
3549         gl_GETLOADAVG.
3550
3551 2006-09-22  Bruno Haible  <bruno@clisp.org>
3552
3553         * gnulib-tool (func_create_megatestdir): Don't include the config-h
3554         module.
3555         Suggested by Ralf Wildenhues.
3556
3557 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
3558
3559         Import this patch from libc:
3560
3561         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
3562
3563         * lib/regex_internal.c (re_string_reconstruct): Handle
3564         offset < pstr->valid_raw_len && pstr->offsets_needed case.
3565         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
3566         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
3567         re_string_context_at.
3568
3569         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
3570         now requires it.
3571         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
3572         gl_REGEX now does it for us.
3573         (gl_REGEX): Add test taken from
3574         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
3575
3576         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
3577         Check that large offsets work.  Modernize Autoconf usages.
3578         Prefer "yes" to mean a good thing rather than a bad.
3579         Don't put "#define mkstemp" in config.h, as this might interfere
3580         with standard system headers that "#define mkstemp mkstemp64".
3581
3582         * modules/mkstemp (Depends-on): Add extensions, so that
3583         mkstemp is visible on some platforms.
3584         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
3585         (Include): Change to "mkstemp.h" from <stdlib.h>.
3586         (Files): Add mkstemp.h.
3587
3588         * lib/mkstemp.h: New file, since some standard headers
3589         #define mkstemp.
3590         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
3591         Include "mkstemp.h".
3592         Make the _LIBC code resemble glibc original more,
3593         e.g., use K&R style.
3594         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
3595         (mkstemp): Remove, since mkstemp.h does this for us.
3596         * lib/stdlib--.h: Include mkstemp.h.
3597
3598         Import this patch from libc:
3599
3600         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3601
3602         * lib/tempname.c (__gen_tempname): Change attempts_min
3603         into a macro.  Use preprocessor to decide how to initialize
3604         attempts [Coverity CID 67].
3605
3606 2006-09-20  Bruno Haible  <bruno@clisp.org>
3607
3608         * lib/mkdtemp.c: Import from libc.
3609         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3610                 * sysdeps/posix/tempname.c (__gen_tempname): Change
3611                 attempts_min into a macro.  Use preprocessor to decide how to
3612                 initialize attempts [Coverity CID 67].
3613         2001-11-27  Paul Eggert  <eggert@twinsun.com>
3614                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
3615                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
3616
3617 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3618
3619         * gnulib-tool (func_exit): New function, to allow to pass the
3620         exit status portably through the trap.  Use everywhere.
3621         (--help, --version): Signal a write error.
3622         (trap): catch SIGPIPE, for write errors.
3623         Exit at the end of the trap, with the correct exit status.
3624
3625 2006-09-19  Karl Berry  <karl@gnu.org>
3626
3627         * doc/gnulib.texi: note about the license texinfo files.
3628
3629 2006-09-19  Eric Blake  <ebb9@byu.net>
3630
3631         * gnulib-tool: Avoid space-tab.
3632
3633 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3634
3635         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
3636         that prevented coreutils 6.1 from building.  Problem reported
3637         by Petter Reinholdtsen.
3638
3639 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3640
3641         * gnulib-tool (avoidlist): Fix typo that broke options like
3642         --avoid=lock that are used by coreutils bootstrap.
3643
3644 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
3645
3646         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
3647         more systematically.
3648
3649 2006-09-18  Jim Meyering  <jim@meyering.net>
3650
3651         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
3652
3653 2006-09-18  Bruno Haible  <bruno@clisp.org>
3654
3655         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
3656
3657 2006-09-18  Bruno Haible  <bruno@clisp.org>
3658
3659         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
3660         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
3661         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
3662         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
3663         * m4/gettext.m4: Require autoconf >= 2.52.
3664         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
3665         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
3666         of gl_cv_header_inttypes_h.
3667
3668 2006-09-18  Bruno Haible  <bruno@clisp.org>
3669
3670         * lib/javaversion.c: Include configmake.h.
3671
3672 2006-09-18  Bruno Haible  <bruno@clisp.org>
3673
3674         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
3675         avoid that the while loops be executed in a subshell.
3676
3677 2006-09-18  Bruno Haible  <bruno@clisp.org>
3678
3679         * MODULES.html.sh (func_module): Break long lines.
3680         Suggested by Bruce Korb <bkorb@gnu.org>.
3681
3682 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3683
3684         Speed up by a factor of 1.12.
3685         * gnulib-tool (nl): New variable.
3686         (func_import): Rewrite include directive extraction to only read each
3687         directive once.
3688
3689 2006-09-17  Bruno Haible  <bruno@clisp.org>
3690
3691         * modules/javaversion (Makefile.am): Remove DEFS setting.
3692         (Depends-on): Add configmake, for PKGDATADIR definition.
3693
3694 2006-09-17  Bruno Haible  <bruno@clisp.org>
3695
3696         * gnulib-tool (func_create_testdir): Rewrite all files at once.
3697
3698 2006-09-17  Bruno Haible  <bruno@clisp.org>
3699
3700         * gnulib-tool (func_append): New function, stolen from libtool.m4.
3701         (func_modules_transitive_closure, func_modules_add_dummy,
3702         func_modules_to_filelist, func_import, func_create_testdir,
3703         func_create_megatestdir, ...): Use it wherever possible.
3704         Suggested by Ralf Wildenhues.
3705
3706 2006-09-16  Karl Berry  <karl@gnu.org>
3707
3708         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
3709         to avoid sectioning errors.
3710         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
3711         [ifinfo]: blank line after @center-ed titles.
3712         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
3713         Spell FSF address consistently with others.
3714         (These changes approved by rms.)
3715
3716 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3717
3718         Speed up by a factor of 1.61.
3719         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
3720         already checked module names again.
3721
3722 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3723
3724         Speed up by a factor of 1.13.
3725         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
3726         for new_files, and the input to func_add_or_update.
3727
3728 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3729
3730         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
3731         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
3732
3733 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3734
3735         * modules/mkancesdirs (Depends-on): Add fcntl.
3736         * modules/savewd: New file.
3737         * MODULES.html.sh (File system functions): Add savewd.
3738
3739         * modules/configmake (Makefile.am): Add support for the
3740         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
3741
3742 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3743
3744         * m4/savewd.m4: New file.
3745
3746 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3747
3748         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
3749         (dirchownmod): New arg FD.  All callers changed.
3750         Use FD rather than opening the directory ourself, as opening is
3751         now the caller's responsibility.
3752         * lib/dirchownmod.h: Likewise.
3753         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
3754         hosts that require <sys/types.h> before <sys/stat.h>.  Include
3755         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
3756         (test_dir): Remove.
3757         (mkancesdirs): Return length of prefix of FILE that has already
3758         been made, or -2 if there is a child doing the work.  Redo
3759         algorithm so that it is O(N) rather than O(N**2).  Optimize away
3760         ".", and treat ".." specially since it might stray back into
3761         already-created areas.  Use a subprocess if necessary.  New arg
3762         WD; all users changed.  MAKE_DIR function should now return 1
3763         if it creates a directory that is not readable.  Return -2 if
3764         a child process is spun off.
3765         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
3766         Adjust signature to match code.
3767         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
3768         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
3769         all users changed.
3770         * lib/savewd.c, lib/savewd.h: New files.
3771
3772 2006-09-15  Jim Meyering  <jim@meyering.net>
3773
3774         * modules/rename-dest-slash: New module.
3775         * MODULES.html.sh (posix_compat): Add it here.
3776
3777         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
3778
3779 2006-09-15  Jim Meyering  <jim@meyering.net>
3780
3781         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
3782         file.
3783
3784         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
3785
3786 2006-09-15  Jim Meyering  <jim@meyering.net>
3787
3788         * lib/rename-dest-slash.c (has_trailing_slash): Use
3789         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
3790         (rpl_rename_dest_slash): Perform the cheaper trailing slash
3791         test before testing whether SRC is a directory.
3792         Suggestions from Bruno Haible.
3793
3794         Avoid a warning about an unused variable.
3795         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
3796         into the #ifdef block where it's used.
3797
3798         * lib/rename-dest-slash.c: New file.
3799
3800 2006-09-14  Bruno Haible  <bruno@clisp.org>
3801
3802         * lib/allocsa.c: Include <config.h> unconditionally.
3803         * lib/asnprintf.c: Likewise.
3804         * lib/asprintf.c: Likewise.
3805         * lib/c-strcasecmp.c: Likewise.
3806         * lib/c-strcasestr.c: Likewise.
3807         * lib/c-strncasecmp.c: Likewise.
3808         * lib/c-strstr.c: Likewise.
3809         * lib/classpath.c: Likewise.
3810         * lib/clean-temp.c: Likewise.
3811         * lib/concatpath.c: Likewise.
3812         * lib/copy-file.c: Likewise.
3813         * lib/csharpcomp.c: Likewise.
3814         * lib/csharpexec.c: Likewise.
3815         * lib/execute.c: Likewise.
3816         * lib/fatal-signal.c: Likewise.
3817         * lib/findprog.c: Likewise.
3818         * lib/fwriteerror.c: Likewise.
3819         * lib/gl_array_list.c: Likewise.
3820         * lib/gl_array_oset.c: Likewise.
3821         * lib/gl_avltree_list.c: Likewise.
3822         * lib/gl_avltree_oset.c: Likewise.
3823         * lib/gl_avltreehash_list.c: Likewise.
3824         * lib/gl_carray_list.c: Likewise.
3825         * lib/gl_linked_list.c: Likewise.
3826         * lib/gl_linkedhash_list.c: Likewise.
3827         * lib/gl_list.c: Likewise.
3828         * lib/gl_oset.c: Likewise.
3829         * lib/gl_rbtree_list.c: Likewise.
3830         * lib/gl_rbtree_oset.c: Likewise.
3831         * lib/gl_rbtreehash_list.c: Likewise.
3832         * lib/imaxabs.c: Likewise.
3833         * lib/imaxdiv.c: Likewise.
3834         * lib/javacomp.c: Likewise.
3835         * lib/javaexec.c: Likewise.
3836         * lib/javaversion.c: Likewise.
3837         * lib/linebreak.c: Likewise.
3838         * lib/localcharset.c: Likewise.
3839         * lib/lock.c: Likewise.
3840         * lib/mbchar.c: Likewise.
3841         * lib/mbswidth.c: Likewise.
3842         * lib/mkdtemp.c: Likewise.
3843         * lib/pipe.c: Likewise.
3844         * lib/printf-args.c: Likewise.
3845         * lib/printf-parse.c: Likewise.
3846         * lib/progname.c: Likewise.
3847         * lib/progreloc.c: Likewise.
3848         * lib/readlink.c: Likewise.
3849         * lib/sh-quote.c: Likewise.
3850         * lib/stpcpy.c: Likewise.
3851         * lib/stpncpy.c: Likewise.
3852         * lib/strcasecmp.c: Likewise.
3853         * lib/strcasestr.c: Likewise.
3854         * lib/strcspn.c: Likewise.
3855         * lib/striconv.c: Likewise.
3856         * lib/strncasecmp.c: Likewise.
3857         * lib/strnlen1.c: Likewise.
3858         * lib/strstr.c: Likewise.
3859         * lib/strtok_r.c: Likewise.
3860         * lib/tls.c: Likewise.
3861         * lib/tmpdir.c: Likewise.
3862         * lib/unicodeio.c: Likewise.
3863         * lib/unsetenv.c: Likewise.
3864         * lib/vasnprintf.c: Likewise.
3865         * lib/vasprintf.c: Likewise.
3866         * lib/wait-process.c: Likewise.
3867         * lib/xallocsa.c: Likewise.
3868         * lib/xsetenv.c: Likewise.
3869         * lib/xstriconv.c: Likewise.
3870
3871 2006-09-13  Simon Josefsson  <jas@extundo.com>
3872
3873         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
3874         that internally, suggested by Ralf Wildenhues
3875         <Ralf.Wildenhues@gmx.de>.
3876
3877 2006-09-13  Simon Josefsson  <jas@extundo.com>
3878
3879         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
3880         @LIBOBJS@.
3881         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3882
3883 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3884
3885         * lib/_fpending.c: Include <config.h> unconditionally, since we no
3886         longer worry about uses that don't define HAVE_CONFIG_H.
3887         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
3888         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
3889         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
3890         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
3891         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
3892         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
3893         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
3894         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
3895         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
3896         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
3897         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
3898         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
3899         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
3900         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
3901         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
3902         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
3903         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
3904         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
3905         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
3906         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
3907         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
3908         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
3909         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
3910         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
3911         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
3912         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
3913         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
3914         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
3915         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
3916         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
3917         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
3918         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
3919         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
3920         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
3921         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
3922         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
3923         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
3924         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
3925         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
3926         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
3927         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
3928         Likewise.
3929
3930 2006-09-13  Eric Blake  <ebb9@byu.net>
3931
3932         * lib/getopt.c: Fix typo in last commit.
3933
3934 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3935
3936         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
3937         dgettext.
3938
3939 2006-09-12  Jim Meyering  <jim@meyering.net>
3940
3941         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
3942         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
3943         Reported by Nelson H. F. Beebe.
3944
3945 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
3946
3947         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
3948         program_invocation_name and program_invocation_short_name are
3949         initialized.
3950         * lib/argp-namefrob.h: Move declarations of program_invocation_name
3951         and program_invocation_short_name to argp.h, so they are visible
3952         to user programs.
3953         * lib/argp.h: Likewise
3954
3955 2006-09-10  Bruno Haible  <bruno@clisp.org>
3956
3957         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3958         m4/inttypes_h.m4, m4/uintmax_t.m4.
3959
3960 2006-09-10  Bruno Haible  <bruno@clisp.org>
3961
3962         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
3963         gl_AC_TYPE_UINTMAX_T.
3964
3965 2006-09-10  Bruno Haible  <bruno@clisp.org>
3966
3967         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
3968
3969 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
3970
3971         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
3972         convention.  Text proposed by Bruno Haible.
3973         (struct argp_option): Document the use of N_() wrappers.
3974
3975         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
3976         '\v', and translate the two parts separately, instead of feeding
3977         the whole string to gettext.  This allows to exclude
3978         '\v' from the strings visible to the translator by writing doc
3979         strings as N_("..") "\v" N_("..").
3980
3981 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
3982
3983         * config/srclist.txt: Undo latest change; the bug was fixed.
3984
3985 2006-09-09  Bruno Haible  <bruno@clisp.org>
3986
3987         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
3988         assignments if building a library without libtool.
3989         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
3990         in func_emit_lib_Makefile_am.
3991         (func_import): When building a static library libfoo.a, arrange to
3992         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
3993         (func_create_testdir): Likewise.
3994         * modules/gc (configure.ac, Makefile.am): If building statically,
3995         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
3996         * modules/iconvme (configure.ac, Makefile.am): Likewise.
3997         * modules/striconv (configure.ac, Makefile.am): Likewise.
3998         Based on a suggestion by Ralf Wildenhues.
3999
4000 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4001
4002         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
4003         Check for unistd.h too, since Autoconf doesn't assume POSIX.
4004         Also:
4005
4006         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4007         Add year_2050_test to catch glibc bug 2821
4008         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4009
4010         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4011         Prefer #ifdef to #if.
4012
4013         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4014         Return from 'main' instead of calling 'exit'.
4015
4016 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4017
4018         * lib/mktime.c (guess_time_tm): Fix bug where mktime
4019         returned the maximum time_t value rather than (time_t) -1.
4020         Problem originally reported by William Bardwell
4021         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4022
4023         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4024         Moved to here ...
4025         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4026         ... from here.
4027
4028 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4029
4030         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
4031         2821 is fixed.
4032
4033 2006-09-08  Jim Meyering  <jim@meyering.net>
4034
4035         Don't make generated files read-only.  That would bother too many
4036         people.  However, do retain the ability to work when targets are
4037         read-only: remove the destination and temporary files before writing
4038         them (when generated via sed or echo), or by using the -f option for
4039         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
4040         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4041         * modules/byteswap, modules/configmake, modules/fcntl:
4042         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4043         * modules/localcharset, modules/netinet_in, modules/poll:
4044         * modules/stdbool, modules/stdint, modules/sys_select:
4045         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4046
4047 2006-09-08  Jim Meyering  <jim@meyering.net>
4048
4049         Avoid new build failure on FreeBSD 6.0.
4050         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
4051         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
4052         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
4053
4054 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4055
4056         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
4057
4058 2006-09-07  Jim Meyering  <jim@meyering.net>
4059
4060         Fix global typo in last change: use chmod u-w, not chmod u-x.
4061         Spotted by Paul Eggert and Bruce Korb.
4062         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4063         * modules/byteswap, modules/configmake, modules/fcntl:
4064         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4065         * modules/localcharset, modules/netinet_in, modules/poll:
4066         * modules/stdbool, modules/stdint, modules/sys_select:
4067         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4068
4069 2006-09-06  Jim Meyering  <jim@meyering.net>
4070
4071         Make generated files be read-only.
4072         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4073         Ensure that each generated file is now read-only.
4074         * modules/argz: Likewise.
4075         * modules/arpa_inet: Likewise.
4076         * modules/byteswap: Likewise.
4077         * modules/configmake: Likewise.
4078         * modules/fcntl: Likewise.
4079         * modules/fnmatch: Likewise.
4080         * modules/getopt: Likewise.
4081         * modules/glob: Likewise.
4082         * modules/inttypes: Likewise.
4083         * modules/netinet_in: Likewise.
4084         * modules/poll: Likewise.
4085         * modules/stdbool: Likewise.
4086         * modules/stdint: Likewise.
4087         * modules/sys_select: Likewise.
4088         * modules/sys_socket: Likewise.
4089         * modules/sys_stat: Likewise.
4090         * modules/sysexits: Likewise.
4091         * modules/localcharset: Same as above, but continue using temporary
4092         file named "t-$@" (why different?) rather than the "$@-t" used
4093         everywhere else.
4094
4095         * modules/sysexits (Makefile.am): Replace literal occurrences
4096         of "sysexit.h" more readable, and more consistent, "$@".
4097
4098 2006-09-06  Bruno Haible  <bruno@clisp.org>
4099
4100         * modules/striconv: New file.
4101         * modules/xstriconv: New file.
4102         * MODULES.html.sh (Internationalization functions): Add striconv,
4103         xstriconv.
4104
4105 2006-09-06  Bruno Haible  <bruno@clisp.org>
4106
4107         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4108         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4109         not using libtool correctly.
4110
4111 2006-09-06  Bruno Haible  <bruno@clisp.org>
4112
4113         * lib/striconv.h: New file.
4114         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4115         iconvstring.c.
4116         * lib/xstriconv.h: New file.
4117         * lib/xstriconv.c: New file.
4118
4119 2006-09-06  Bruno Haible  <bruno@clisp.org>
4120
4121         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4122         lib_..._LDFLAGS.
4123
4124 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4125
4126         * lib/argz_.h: Sync from Libtool.
4127
4128         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4129                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4130
4131         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4132
4133 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4134
4135         * modules/trim: New file.
4136
4137 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4138
4139         * lib/trim.h: New file.
4140         * lib/trim.c: New file.
4141
4142 2006-09-05  Bruno Haible  <bruno@clisp.org>
4143
4144         * MODULES.html.sh (String handling): Add trim.
4145
4146 2006-09-04  Karl Berry  <karl@gnu.org>
4147
4148         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4149         until next release.
4150
4151 2006-09-03  Bruno Haible  <bruno@clisp.org>
4152
4153         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4154         correctly.
4155
4156 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4157
4158         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4159         not gl_GETLOADAVG.  Omit unneeded semicolons.
4160         Problems reported by Ralf Wildenhues in
4161         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4162         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4163         at the end, which is the usual gnulib style.
4164
4165         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
4166         of doing all the work ourselves.
4167         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
4168         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
4169
4170 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4171
4172         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
4173         Problem reported by Ralf Wildenhues in
4174         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4175
4176         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
4177         HAVE_STRUCT_STATFS_F_FSTYPENAME.
4178
4179 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4180
4181         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
4182         yesterday's patch by changing test -n to test -z.
4183
4184 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4185
4186         * modules/getloadavg (Files): Add m4/getloadavg.m4.
4187         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
4188         the former is now obsolescent.
4189
4190         * modules/chdir-long (Depends-on): Add fcntl.
4191
4192 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4193
4194         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
4195         obsolescent, and programs should use gnulib instead.
4196         * m4/getloadavg.m4: New file, with contents taken from Autoconf
4197         but with prefixes changed.
4198
4199 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4200
4201         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
4202         or stdbool.h, because they might not exist while configuring.
4203
4204         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
4205         Don't include unistd.h or limits.h; not needed, since chdir-long.h
4206         does that for us.
4207         (O_DIRECTORY): Remove.
4208
4209 2006-08-31  Eric Blake  <ebb9@byu.net>
4210
4211         * gnulib-tool: Don't let emacs change spaces to TAB.
4212
4213 2006-08-31  Bruno Haible  <bruno@clisp.org>
4214
4215         * gnulib-tool: When calling func_import more than once, do it in a
4216         subshell.
4217         Reported by Eric Blake <ebb9@byu.net>.
4218
4219 2006-08-31  Bruno Haible  <bruno@clisp.org>
4220
4221         * gnulib-tool (nl): Remove variable.
4222         (sed_transform_lib_file): Use more robust test for config-h module.
4223         (func_import): Fix typo in 2006-08-25 patch.
4224
4225 2006-08-31  Bruno Haible  <bruno@clisp.org>
4226
4227         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
4228         specified, augment Makefile.am variables instead of assigning them.
4229
4230 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4231
4232         Work around a bug in both the Linux and SunOS 64-bit kernels:
4233         nanosleep mishandles sleeps for longer than 2**31 seconds.
4234         Problem reported by Frank v Waveren in
4235         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4236         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
4237         Check for nanosleep bug.
4238         (LIB_NANOSLEEP): Append clock_gettime library if needed.
4239
4240 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4241
4242         Work around a bug in both the Linux and SunOS 64-bit kernels:
4243         nanosleep mishandles sleeps for longer than 2**31 seconds.
4244         Problem reported by Frank v Waveren in
4245         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4246         * lib/nanosleep.c (BILLION): New constant.
4247         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
4248         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
4249         implementation.
4250
4251 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4252
4253         * modules/nanosleep (Depends-on): Add gettime.
4254
4255 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4256         and Simon Josefsson  <jas@extundo.com>
4257         and Oskar Liljeblad  <oskar@osk.mine.nu>
4258
4259         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
4260         * gnulib-tool (func_import): New license type 'unmodifiable license
4261         text'.
4262         * modules/fdl: Use it.  Longer description.
4263         * module/gpl, module/lgpl: New files.
4264
4265 2006-08-30  Jim Meyering  <jim@meyering.net>
4266
4267         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
4268         shadowing the parameter.
4269
4270 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4271
4272         Sync from Libtool:
4273
4274         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4275
4276         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
4277         sharing with gnulib.  Report by Eric Blake.
4278
4279 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4280
4281         * modules/isapipe: New file.
4282         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
4283
4284 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4285
4286         * modules/configmake (Makefile.am): Add a comment, and omit
4287         the CONFIGMAKE_ prefix from generated macro names.  Suggested
4288         by Bruno Haible.
4289
4290 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4291
4292         * m4/isapipe.m4: New file.
4293
4294 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4295
4296         * lib/isapipe.c, lib/isapipe.h: New files.
4297
4298 2006-08-29  Jim Meyering  <jim@meyering.net>
4299
4300         * modules/configmake (Makefile.am): Make configmake.h depend on
4301         Makefile.  Otherwise, a stale configmake.h could hang around.
4302
4303 2006-08-29  Eric Blake  <ebb9@byu.net>
4304
4305         * lib/error.c (error_at_line, print_errno_message): Match libc, after
4306         resolution of upstream bug 3044.
4307
4308 2006-08-29  Bruno Haible  <bruno@clisp.org>
4309
4310         * modules/localcharset (Depends-on): Add configmake.
4311         (Makefile.am): Remove setting of LIBDIR through DEFS.
4312
4313 2006-08-29  Bruno Haible  <bruno@clisp.org>
4314
4315         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
4316         defined.
4317
4318 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4319
4320         * modules/fcntl: New file.
4321         * modules/chdir-safer (Depends-on): Add fcntl.
4322         * modules/fts: Likewise.
4323         * modules/mkdir-p: Likewise.
4324
4325         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
4326         This undoes the most recent change, since we're now addressing the
4327         problem in a different way.
4328
4329         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
4330         into output, since the output might be called Makefile.am even
4331         if $makefile_name is something different.
4332         (func_import): Use $makefile_am rather than
4333         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
4334         empty.
4335
4336         * modules/inttypes (Files): Add m4/inttypes-h.m4.
4337
4338 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4339
4340         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
4341         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
4342         recent change to stdint.m4, since we're now addressing the problem in a
4343         different way.
4344
4345 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4346
4347         * m4/fcntl_h.m4: New file.
4348
4349 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4350
4351         * lib/fcntl_.h: New file.
4352         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
4353         the fcntl module.
4354         * lib/dirchownmod.c: Likewise.
4355         * lib/fts.c: Likewise.
4356
4357         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
4358         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
4359         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
4360         just before including <inttypes.h>, to avoid circular inclusion.
4361
4362 2006-08-28  Jim Meyering  <jim@meyering.net>
4363
4364         * doc/visibility.texi: Actually read and correct the grammar of the
4365         sentence affected by yesterday's change.
4366
4367 2006-08-28  Eric Blake  <ebb9@byu.net>
4368
4369         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
4370         needs wrapper.
4371
4372 2006-08-28  Eric Blake  <ebb9@byu.net>
4373
4374         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
4375
4376 2006-08-28  Eric Blake  <ebb9@byu.net>
4377
4378         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
4379
4380 2006-08-28  Bruno Haible  <bruno@clisp.org>
4381
4382         * modules/c-strstr: New file, from GNU gettext.
4383         * MODULES.html.sh (String handling): Add c-strstr.
4384
4385 2006-08-28  Bruno Haible  <bruno@clisp.org>
4386
4387         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
4388         macros.
4389         Reported by Eric Blake.
4390
4391 2006-08-28  Bruno Haible  <bruno@clisp.org>
4392
4393         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
4394         (VASNPRINTF): Return a string of length > INT_MAX without failing.
4395         * lib/vasprintf.c: Include errno.h, limits.h.
4396         (EOVERFLOW): New fallback definition.
4397         (vasprintf): Test here whether the string length is > INT_MAX.
4398         * lib/vsnprintf.c: Include errno.h, limits.h.
4399         (EOVERFLOW): New fallback definition.
4400         (vsnprintf): Fix bug when generated string was too long for the buffer.
4401         Test here whether the string length is > INT_MAX.
4402
4403 2006-08-28  Bruno Haible  <bruno@clisp.org>
4404
4405         * lib/inttypes_.h (SCNX*): Remove definitions.
4406         Reported by Eric Blake.
4407
4408 2006-08-28  Bruno Haible  <bruno@clisp.org>
4409
4410         * lib/c-strstr.h: New file, from GNU gettext.
4411         * lib/c-strstr.c: New file, from GNU gettext.
4412
4413 2006-08-28  Bruno Haible  <bruno@clisp.org>
4414
4415         * gnulib-tool: Reorder some statements.
4416
4417 2006-08-28  Bruno Haible  <bruno@clisp.org>
4418
4419         * gnulib-tool: New option --makefile-name.
4420         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
4421         $makefile_name.
4422         (func_import): Write $makefile_name to the cache file, and read it from
4423         there unless explicitly specified. Use $makefile_name as file name
4424         instead of Makefile.am. Adjust the recommendations accordingly.
4425
4426 2006-08-28  Bruno Haible  <bruno@clisp.org>
4427
4428         * gnulib-tool (func_verify_module): Check against misapplying patch.
4429
4430 2006-08-28  Bruno Haible  <bruno@clisp.org>
4431
4432         * gnulib-tool (func_relativize, func_relconcat): New functions.
4433         Give an error if --local-dir is given with --update.
4434         Remove trailing slashes from $local_gnulib_dir.
4435         (func_import): Store the relativized $local_gnulib_dir in
4436         gnulib-cache.m4, and read it from there if not specified explicitly.
4437
4438 2006-08-28  Bruno Haible  <bruno@clisp.org>
4439
4440         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
4441         is the current directory. Respect also $local_gnulib_dir.
4442
4443 2006-08-28  Bruno Haible  <bruno@clisp.org>
4444             Simon Josefsson  <jas@extundo.com>
4445
4446         BeOS portability.
4447         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
4448
4449 2006-08-27  Jim Meyering  <jim@meyering.net>
4450
4451         * doc/visibility.texi: Remove duplicate word: "pointer".
4452
4453 2006-08-26  Bruno Haible  <bruno@clisp.org>
4454
4455         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
4456         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
4457         (Makefile.am): Create inttypes.h from inttypes_.h.
4458         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
4459
4460         * modules/imaxabs: New file.
4461
4462         * modules/imaxdiv: New file.
4463
4464 2006-08-26  Bruno Haible  <bruno@clisp.org>
4465
4466         * m4/inttypes.m4: New file.
4467         * m4/_inttypes_h.m4: Remove file.
4468         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
4469         PRI_MACROS_BROKEN.
4470         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
4471
4472         * m4/imaxabs.m4: New file.
4473
4474         * m4/imaxdiv.m4: New file.
4475
4476 2006-08-26  Bruno Haible  <bruno@clisp.org>
4477
4478         * lib/inttypes_.h: New file.
4479         * lib/inttypes.h: Remove file.
4480         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
4481
4482         * lib/imaxabs.c: New file.
4483
4484         * lib/imaxdiv.c: New file.
4485
4486 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4487
4488         New config-h module, so that "make" output needn't be cluttered
4489         by -DHAVE_CONFIG_H.
4490         * MODULES.html.sh (Support for building libraries and executables):
4491         Add config-h.
4492         * modules/config-h: New file.
4493         * gnulib-tool (nl, sed_transform_lib_file): New vars.
4494         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
4495         the config-h module is used.
4496
4497         New configmake module, so that "make" output needn't be cluttered
4498         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
4499         * MODULES.html.sh (Support for building libraries and executables):
4500         Add configmake.
4501         * modules/configmake: New file.
4502
4503 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4504
4505         * m4/config-h.m4: New file.
4506
4507 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4508
4509         * config/srclist.txt: Add elisp-comp.
4510
4511 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4512
4513         * MODULES.html.sh (Support for building libraries and executables):
4514         Add elisp-comp.
4515         * build-aux/elisp-comp: New file.
4516         * modules/elisp-comp: New file.
4517
4518 2006-08-24  Bruno Haible  <bruno@clisp.org>
4519
4520         * gnulib-tool (func_create_testdir): Use non-default values of
4521         sourcebase and m4base.
4522
4523 2006-08-24  Bruno Haible  <bruno@clisp.org>
4524
4525         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
4526         HTML structure.
4527
4528 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
4529
4530         * modules/openat (Depends-on): Add lchown.
4531
4532 2006-08-23  Bruno Haible  <bruno@clisp.org>
4533
4534         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
4535         of gl_LOCK_EARLY instead of gl_LOCK.
4536
4537 2006-08-23  Bruno Haible  <bruno@clisp.org>
4538
4539         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
4540         on OSF/1 to no.
4541         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
4542
4543 2006-08-23  Bruno Haible  <bruno@clisp.org>
4544
4545         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
4546         as unusable.
4547
4548         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
4549         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
4550         (gl_LOCK): New macro.
4551
4552 2006-08-22  Simon Josefsson  <jas@extundo.com>
4553
4554         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
4555         to md5 module.
4556
4557 2006-08-22  Simon Josefsson  <jas@extundo.com>
4558
4559         * MODULES.html.sh: Add "Support for maintaining and release
4560         projects".
4561
4562         * build-aux/gnupload: New file, from coreutils.
4563
4564 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4565
4566         Avoid the need for AC_LIBSOURCES in m4 macros.
4567         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
4568         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
4569         * modules/check-version (EXTRA_DIST): Add check-version.h.
4570         * modules/crc (EXTRA_DIST): Add crc.h.
4571         * modules/des (EXTRA_DIST): Add des.h.
4572         * modules/gc (EXTRA_DIST): Add gc.h.
4573         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
4574         * modules/getline (EXTRA_DIST): Add getline.h.
4575         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
4576         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
4577         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
4578         * modules/md2 (EXTRA_DIST): Add md2.h.
4579         * modules/md4 (EXTRA_DIST): Add md4.h.
4580         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
4581         * modules/read-file (EXTRA_DIST): Add read-file.h.
4582         * modules/readline (EXTRA_DIST): Add readline.h.
4583         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
4584         rijndael-api-fst.h.
4585
4586 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4587
4588         * m4/rijndael.m4 (gl_ARCFOUR):
4589         * m4/arctwo.m4 (gl_ARCTWO):
4590         * m4/check-version.m4 (gl_CHECK_VERSION):
4591         * m4/crc.m4 (gl_CRC):
4592         * m4/des.m4 (gl_DES):
4593         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
4594         * m4/gc.m4 (gl_GC):
4595         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
4596         * m4/getline.m4 (gl_FUNC_GETLINE):
4597         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
4598         * m4/hmac-md5.m4 (gl_HMAC_MD5):
4599         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
4600         * m4/md2.m4 (gl_MD2):
4601         * m4/md4.m4 (gl_MD4):
4602         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
4603         * m4/read-file.m4 (gl_FUNC_READ_FILE):
4604         * m4/readline.m4 (gl_FUNC_READLINE):
4605         * m4/rijndael.m4 (gl_RIJNDAEL):
4606         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4607         to get the necessary .h files and whatnot.
4608
4609 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4610
4611         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
4612         gnulib rather than the other way around.
4613         * config/srclistvars.sh (COREUTILS): Remove.
4614
4615 2006-08-22  Jim Meyering  <jim@meyering.net>
4616
4617         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
4618
4619         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
4620
4621 2006-08-22  Eric Blake  <ebb9@byu.net>
4622
4623         * modules/regexprops-generic: New file.
4624         * MODULES.html.sh (Support for building documentation): List it.
4625
4626 2006-08-22  Eric Blake  <ebb9@byu.net>
4627
4628         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
4629         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
4630         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
4631         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
4632
4633 2006-08-22  Bruno Haible  <bruno@clisp.org>
4634
4635         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
4636         and lib_LTLIBRARIES like the other lib_* variables.
4637
4638 2006-08-22  Bruno Haible  <bruno@clisp.org>
4639
4640         * build-aux/x-to-1.in: New file, from GNU gettext.
4641
4642 2006-08-22  Bruno Haible  <bruno@clisp.org>
4643
4644         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
4645         <utmpx.h> exists.
4646
4647 2006-08-22  Bruno Haible  <bruno@clisp.org>
4648
4649         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
4650         <utmpx.h> exists.
4651
4652 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4653
4654         BeOS portability.
4655         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
4656         exist.
4657         Problem reported by Bruno Haible.
4658
4659 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4660
4661         Avoid the need for AC_LIBSOURCES in m4 macros.
4662         * modules/acl (EXTRA_DIST): Add acl.h.
4663         * modules/argmatch (Files): Add m4/argmatch.m4.
4664         (configure.ac): Add gl_ARGMATCH.
4665         (EXTRA_DIST): Renamed from lib_SOURCES, for
4666         consistency with the other modules.  Remove argmatch.c.
4667         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
4668         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
4669         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
4670         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
4671         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
4672         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
4673         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
4674         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
4675         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
4676         * modules/closeout (EXTRA_DIST): Add closeout.h.
4677         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
4678         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
4679         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
4680         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
4681         dirname.h; remove basename.c and stripslash.c.
4682         * modules/exclude (EXTRA_DIST): Add exclude.h.
4683         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
4684         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
4685         * modules/file-type (EXTRA_DIST): Add file-type.h.
4686         * modules/filemode (EXTRA_DIST): Add filemode.h.
4687         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
4688         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4689         * modules/fpending (EXTRA_DIST): Add __fpending.h.
4690         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
4691         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
4692         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
4693         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
4694         * modules/getdate (EXTRA_DIST): Add getdate.c.
4695         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
4696         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
4697         * modules/getpass (EXTRA_DIST): Add getpass.h.
4698         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
4699         * modules/group-member (EXTRA_DIST): Add group-member.h.
4700         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
4701         * modules/hash (EXTRA_DIST): Add hash.h.
4702         * modules/human (EXTRA_DIST): Add human.h.
4703         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
4704         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
4705         * modules/lchown (EXTRA_DIST): Add lchown.h.
4706         * modules/long-options (EXTRA_DIST): Add long-options.h.
4707         * modules/lstat (EXTRA_DIST): Add lstat.h.
4708         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
4709         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
4710         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
4711         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
4712         * modules/memxor (EXTRA_DIST): Add memxor.h.
4713         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
4714         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
4715         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
4716         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
4717         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
4718         * modules/physmem (EXTRA_DIST): Add physmem.h.
4719         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
4720         * modules/posixver (EXTRA_DIST): Add posixver.h.
4721         * modules/quote (EXTRA_DIST): Add quote.h.
4722         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
4723         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
4724         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
4725         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
4726         regex_internal.h regexec.c.
4727         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
4728         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
4729         * modules/same (EXTRA_DIST): Add same.h.
4730         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
4731         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
4732         * modules/savedir (EXTRA_DIST): Add savedir.h.
4733         * modules/sha1 (EXTRA_DIST): Add sha1.h.
4734         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
4735         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
4736         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
4737         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
4738         * modules/strdup (EXTRA_DIST): Add strdup.h.
4739         * modules/strftime (EXTRA_DIST): Add strftime.h.
4740         * modules/strndup (EXTRA_DIST): Add strndup.h.
4741         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
4742         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
4743         * modules/time_r (EXTRA_DIST): Add time_r.h.
4744         * modules/timespec (EXTRA_DIST): Add timespec.h.
4745         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4746         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
4747         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
4748         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
4749         * modules/userspec (EXTRA_DIST): Add userspec.h.
4750         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
4751         * modules/utimens (EXTRA_DIST): Add utimens.h.
4752         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
4753         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
4754         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
4755         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
4756         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
4757         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
4758         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
4759         * modules/yesno (EXTRA_DIST): Add yesno.h.
4760
4761 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4762
4763         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
4764
4765         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
4766         * m4/dev-ino.m4, same-inode.m4: Remove.
4767
4768         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
4769         * m4/acl.m4 (AC_FUNC_ACL):
4770         * m4/backupfile.m4 (gl_BACKUPFILE):
4771         * m4/c-strtod.m4 (gl_C99_STRTOLD):
4772         * m4/canon-host.m4 (gl_CANON_HOST):
4773         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
4774         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
4775         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
4776         * m4/cloexec.m4 (gl_CLOEXEC):
4777         * m4/close-stream.m4 (gl_CLOSE_STREAM):
4778         * m4/closeout.m4 (gl_CLOSEOUT):
4779         * m4/dirfd.m4 (gl_FUNC_DIRFD):
4780         * m4/dirname.m4 (gl_DIRNAME):
4781         * m4/exclude.m4 (gl_EXCLUDE):
4782         * m4/exitfail.m4 (gl_EXITFAIL):
4783         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
4784         * m4/file-type.m4 (gl_FILE_TYPE):
4785         * m4/filemode.m4 (gl_FILEMODE):
4786         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
4787         * m4/fpending.m4 (gl_FUNC_FPENDING):
4788         * m4/fprintftime.m4 (gl_FPRINTFTIME):
4789         * m4/fts.m4 (gl_FUNC_FTS):
4790         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
4791         * m4/getdate.m4 (gl_GETDATE):
4792         * m4/gethrxtime.m4 (gl_GETHRXTIME):
4793         * m4/getpagesize.m4 (gl_GETPAGESIZE):
4794         * m4/getpass.m4 (gl_FUNC_GETPASS):
4795         * m4/gettime.m4 (gl_GETTIME):
4796         * m4/getugroups.m4 (gl_GETUGROUPS):
4797         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
4798         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
4799         * m4/hard-locale.m4 (gl_HARD_LOCALE):
4800         * m4/hash.m4 (gl_HASH):
4801         * m4/idcache.m4 (gl_IDCACHE):
4802         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
4803         * m4/lchown.m4 (gl_FUNC_LCHOWN):
4804         * m4/long-options.m4 (gl_LONG_OPTIONS):
4805         * m4/lstat.m4 (gl_FUNC_LSTAT):
4806         * m4/md5.m4 (gl_MD5):
4807         * m4/memcasecmp.m4 (gl_MEMCASECMP):
4808         * m4/memcoll.m4 (gl_MEMCOLL):
4809         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
4810         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
4811         * m4/memxor.m4 (gl_MEMXOR):
4812         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
4813         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
4814         * m4/modechange.m4 (gl_MODECHANGE):
4815         * m4/mountlist.m4 (gl_MOUNTLIST):
4816         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
4817         * m4/openat.m4 (gl_FUNC_OPENAT):
4818         * m4/pathmax.m4 (gl_PATHMAX):
4819         * m4/physmem.m4 (gl_PHYSMEM):
4820         * m4/posixtm.m4 (gl_POSIXTM):
4821         * m4/posixver.m4 (gl_POSIXVER):
4822         * m4/quote.m4 (gl_QUOTE):
4823         * m4/quotearg.m4 (gl_QUOTEARG):
4824         * m4/readtokens.m4 (gl_READTOKENS):
4825         * m4/readutmp.m4 (gl_READUTMP):
4826         * m4/regex.m4 (gl_REGEX):
4827         * m4/safe-read.m4 (gl_SAFE_READ):
4828         * m4/safe-write.m4 (gl_SAFE_WRITE):
4829         * m4/same.m4 (gl_SAME):
4830         * m4/save-cwd.m4 (gl_SAVE_CWD):
4831         * m4/savedir.m4 (gl_SAVEDIR):
4832         * m4/settime.m4 (gl_SETTIME):
4833         * m4/sha1.m4 (gl_SHA1):
4834         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
4835         * m4/stat-macros.m4 (gl_STAT_MACROS):
4836         * m4/stat-time.m4 (gl_STAT_TIME):
4837         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
4838         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
4839         * m4/strdup.m4 (gl_FUNC_STRDUP):
4840         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
4841         * m4/strndup.m4 (gl_FUNC_STRNDUP):
4842         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
4843         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
4844         * m4/time_r.m4 (gl_TIME_R):
4845         * m4/timespec.m4 (gl_TIMESPEC):
4846         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
4847         * m4/unlinkdir.m4 (gl_UNLINKDIR):
4848         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
4849         * m4/userspec.m4 (gl_USERSPEC):
4850         * m4/utimecmp.m4 (gl_UTIMECMP):
4851         * m4/utimens.m4 (gl_UTIMENS):
4852         * m4/xalloc.m4 (gl_XALLOC):
4853         * m4/xgetcwd.m4 (gl_XGETCWD):
4854         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
4855         * m4/xreadlink.m4 (gl_XREADLINK):
4856         * m4/xstrtod.m4 (gl_XSTRTOD):
4857         * m4/yesno.m4 (gl_YESNO):
4858         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4859         to get the necessary .h files and whatnot.
4860
4861 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
4862             Bruno Haible  <bruno@clisp.org>
4863
4864         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
4865         /bin/sh understanding of '!' conditional negation.
4866
4867 2006-08-21  Jim Meyering  <jim@meyering.net>
4868
4869         * modules/openat (Depends-on): Really alphabetize.
4870
4871         * modules/acl (Depends-on): Add error and quote.
4872
4873         * check-module (find_included_lib_files): Add at-func.c to the
4874         ok-to-include-more-than-once white list.
4875
4876         * modules/openat (Depends-on): Add lstat.  Alphabetize.
4877
4878 2006-08-21  Bruno Haible  <bruno@clisp.org>
4879
4880         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4881         Emit a pkgdata_DATA variable only if some snippets add contents to it.
4882         Reported by Martin Lambers <marlam@marlam.de>.
4883
4884 2006-08-21  Bruno Haible  <bruno@clisp.org>
4885
4886         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
4887         specify an installation location, don't emit a noinst_LIBRARIES or
4888         noinst_LTLIBRARIES assignment.
4889
4890 2006-08-21  Bruno Haible  <bruno@clisp.org>
4891
4892         BeOS portability.
4893         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
4894         BeOS has mbrtowc() but no <wctype.h>.
4895
4896 2006-08-21  Bruno Haible  <bruno@clisp.org>
4897
4898         BeOS portability.
4899         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
4900         exist.
4901
4902 2006-08-21  Bruno Haible  <bruno@clisp.org>
4903
4904         BeOS portability.
4905         * lib/mbchar.h: Include <wctype.h> only if it exists.
4906
4907 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4908
4909         Remove files that are no longer needed by their respective modules.
4910         * m4/obstack.m4: Remove.
4911         * m4/strerror_r.m4: Remove.
4912         * m4/uint32_t.m4: Remove.
4913         * m4/uintptr_t.m4: Remove.
4914         * m4/ullong_max.m4: Remove.
4915         * m4/xstrtoimax.m4: Remove.
4916         * m4/xstrtoumax.m4: Remove.
4917
4918         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
4919         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
4920         dependencies now capture this.
4921
4922         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
4923         Do not use AC_LIBSOURCES, since gnulib modules now do this.
4924         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
4925         * m4/human.m4 (gl_HUMAN): Likewise.
4926         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
4927         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
4928
4929         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
4930
4931         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
4932         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
4933         stdint.
4934         * m4/human.m4 (gl_HUMAN): Likewise.
4935         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
4936         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
4937         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4938         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4939         * m4/xstrtol (gl_XSTRTOL): Likewise.
4940
4941         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
4942         AC_TYPE_LONG_LONG_INT.
4943         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4944         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
4945         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
4946         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4947
4948         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
4949         on stdbool.
4950
4951         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
4952         (gl_PREREQ_XSTRTOUL): Remove.
4953
4954         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
4955
4956         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
4957         mode.
4958
4959 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4960
4961         Add and change modules to make it easier for coreutils to use
4962         gnulib-tool.
4963         * modules/backupfile (Files): Remove m4/d-ino.m4.
4964         (Depends-on): Add d-ino.
4965         * modules/cycle-check (Depends-on): Add stdint.
4966         (lib_SOURCES): Add cycle-check.h.
4967         * modules/d-ino: New module.
4968         * modules/d-type: New module.
4969         * modules/error (Files): Remove m4/strerror_r.m4.
4970         * modules/filemode (Files): Add m4/st_dm_mode.m4.
4971         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4972         m4/inttypes_h.m4, m4/uintmax_t.m4.
4973         (Depends-on): Add stdint.
4974         (lib_SOURCES): Add fsusage.h.
4975         * modules/getcwd (Files): Remove d-ino.m4.
4976         (Depends-on): Add d-ino.
4977         * modules/getndelim2 (Depends-on): Add stdint.
4978         * modules/glob (Files): Remove m4/d-type.m4.
4979         (Depends-on): Add d-type.
4980         * modules/host-os: New module.
4981         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
4982         m4/inttypes_h.m4, m4/uintmax_t.m4.
4983         * Depends-on: Add stdint.
4984         (lib_SOURCES): Add human.h.
4985         * modules/inttostr (Files): Remove m4/intmax_t.m4,
4986         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
4987         m4/uintmax_t.m4, m4/ulonglong.m4.
4988         (Depends-on): Add stdint.
4989         (EXTRA_DIST): Add inttostr.h.
4990         * modules/lchmod: New module.
4991         * modules/link-follow: New module.
4992         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
4993         (Depends-on): Add lchmod.
4994         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
4995         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
4996         (Depends-on): Add stdint.
4997         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
4998         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4999         (Depends-on): Add stdint.
5000         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
5001         * modules/perl: New module.
5002         * modules/regex (Depends-on): Add stdint.
5003         * modules/rmdir-errno: New module.
5004         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5005         m4/intmax_t.m4.
5006         (Depends-on): Add stdint.
5007         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5008         m4/uintmax_t.m4.
5009         (Depends-on): Add stdint.
5010         * modules/unlink-busy: New module.
5011         * modules/utimecmp (Depends-on): Add stdint.
5012         * modules/uptime: New module.
5013         * modules/winsz-ioctl: New module.
5014         * modules/winsz-termios: New module.
5015         * modules/xnanosleep (Depends-on): Add nanosleep.
5016         * modules/ullong_max: Remove.
5017         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
5018         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
5019         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
5020         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
5021         (Depends-on): Add inttypes.
5022         (lib_SOURCES): Add xstrtol.h.
5023         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
5024         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
5025         * MODULES.html.sh: Move 'assert' into the assert section.
5026         Move 'dummy' into the linking section.
5027         Remove ullong_max.
5028         Add section for compatibility checks for POSIX:2001 functions,
5029         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
5030         winsz-ioctl, and winsz-termios into it.
5031         Add lchmod.
5032         Add top-level Misc section and put host-os, perl, and uptime
5033         into it.
5034
5035 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5036
5037         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
5038         now assume the stdint module.  Do not include inttypes.h.
5039         * lib/fsusage.h: Likewise.
5040         * lib/getndelim2.c: Likewise.
5041         * lib/human.h: Likewise.
5042         * lib/inttostr.h: Likewise.
5043         * lib/obstack.c: Likewise.
5044         * lib/regex_internal.h: Likewise.
5045         * lib/tempname.c: Likewise.
5046         * lib/utimecmp.c: Likewise.
5047         * lib/xstrtol.h: Likewise.
5048
5049         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
5050
5051         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
5052         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
5053         * lib/xtime.h: Likewise.
5054
5055 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5056
5057         * modules/openat (Files): Add lib/fchmodat.c.
5058         Fixes problem reported by Jay Youngman.
5059
5060 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5061
5062         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
5063         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
5064
5065 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5066             Bruno Haible  <bruno@clisp.org>
5067
5068         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5069         and is a script that invokes bison. Tighten the code. Add comments.
5070
5071 2006-08-18  Jim Meyering  <jim@meyering.net>
5072
5073         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5074         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5075         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5076         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5077
5078 2006-08-18  Bruno Haible  <bruno@clisp.org>
5079
5080         * modules/bison-i18n: New file.
5081         * MODULES.html.sh (Internationalization functions): Add it.
5082
5083 2006-08-18  Bruno Haible  <bruno@clisp.org>
5084
5085         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5086         sys/statvfs.h. When getmntinfo was found, check its declaration and
5087         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5088
5089 2006-08-18  Bruno Haible  <bruno@clisp.org>
5090
5091         * m4/bison-i18n.m4: New file, from bison.
5092
5093 2006-08-18  Bruno Haible  <bruno@clisp.org>
5094
5095         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5096         (ME_DUMMY): Treat "kernfs" as a dummy.
5097         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5098
5099 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5100
5101         Update from coreutils.
5102
5103         2006-08-15  Jim Meyering  <jim@meyering.net>
5104
5105         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5106
5107         2006-01-17  Jim Meyering  <jim@meyering.net>
5108
5109         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5110
5111         2006-01-11  Jim Meyering  <jim@meyering.net>
5112
5113         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5114         Check for the lchmod function.
5115
5116 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5117
5118         Update from coreutils.
5119
5120         * lib/__fpending.h: Add copyright notice.
5121         * lib/fprintftime.h: Likewise.
5122         * lib/savedir.c: Use (C) in copyright notice.
5123         * lib/savedir.h: Likewise.
5124
5125         2006-08-15  Jim Meyering  <jim@meyering.net>
5126
5127         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5128         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5129         in support of the EXPECTED_ERRNO macro.
5130         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5131         definitions.  Instead, define the appropriate symbols and include
5132         "at-func.c".
5133         * lib/mkdirat.c (mkdirat): Likewise.
5134         * lib/fchmodat.c (fchmodat): Likewise.
5135         (ENOSYS): Remove definition.
5136         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5137         it.  Don't include "unistd--.h" -- it wasn't ever used.
5138
5139         2006-01-17  Jim Meyering  <jim@meyering.net>
5140
5141         Rewrite fts.c not to change the current working directory,
5142         by using openat, fstatat, fdopendir, etc..
5143
5144         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5145         (HAVE_OPENAT_SUPPORT): Define.
5146         [_LIBC] (fchdir): Don't undef or define; no longer used.
5147         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5148         Now, this `function' always succeeds, and consumes its file descriptor
5149         parameter -- so callers must not close such FDs.  Update callers.
5150         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5151         (diropen): Add parameter, SP.  Adjust all callers.
5152         Implement using diropen_fd, rather than open.
5153         (fts_open): Initialize new member, fts_cwd_fd.
5154         Remove fts_rft-setting code.
5155         (fts_close): Close fts_cwd_fd, if necessary.
5156         (__opendir2): Define in terms of opendir or opendirat,
5157         depending on whether the FST_NOCHDIR flag is set.
5158         (fts_build): Since fts_safe_changedir consumes its FD, and since
5159         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5160         and close the dup'd file descriptor upon failure.
5161         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5162         (fts_safe_changedir): Tweak semantics to reflect that this function
5163         now calls cwd_advance_fd and hence consumes its FD argument.
5164         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
5165         [struct FTS] (fts_rft): Remove now-unused member.
5166         [struct FTS] (fts_cycle.state): Improve comment.
5167
5168         * lib/openat.c (openat_needs_fchdir): New function.
5169         * lib/openat.h (openat_needs_fchdir): Declare it.
5170
5171 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
5172
5173         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
5174         Problem and fix reported by Pádraig Brady in
5175         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
5176
5177 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5178
5179         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
5180
5181 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5182
5183         * lib/memcoll.c (memcoll): Optimize for the common case where the
5184         arguments are bytewise equal.
5185
5186 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5187
5188         * doc/regexprops-generic.texi: Add a copyright notice.
5189
5190 2006-08-15  Bruno Haible  <bruno@clisp.org>
5191
5192         * modules/tmpdir (License): Change to LGPL.
5193
5194 2006-08-15  Bruno Haible  <bruno@clisp.org>
5195
5196         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
5197         module.
5198
5199 2006-08-14  Simon Josefsson  <jas@extundo.com>
5200
5201         * config/srclist.txt: Add gnupload.
5202
5203 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5204
5205         Change copyright notice from LGPL 2 to GPL 2, since that's the
5206         standard form used in the gnulib repository.
5207         * tests/test-lock.c: Likewise.
5208         * tests/test-stdint.c: Likewise.
5209         * tests/test-tls.c: Likewise.
5210
5211         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
5212         prelude-manager.  User shorter URLs for GNU projects, without '?'.
5213         Add copyright notice.
5214
5215         * check-module: Add copyright notice.  Output a copyright
5216         notice if "--version" is specified.
5217         * modules/COPYING: New file.
5218         * tests/test-getaddrinfo.c: Add copyright notice.
5219         * tests/test-verify.c: Likewise.
5220
5221 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5222
5223         Change copyright notice from LGPL 2 to GPL 2, since that's the
5224         standard form used in the gnulib repository.
5225         * lib/lock.c: LGPL -> GPL.
5226         * lib/lock.h: Likewise.
5227         * lib/strnlen1.c: Likewise.
5228         * lib/strnlen1.h: Likewise.
5229         * lib/tls.c: Likewise.
5230         * lib/tls.h: Likewise.
5231         * lib/tmpdir.c: Likewise.
5232
5233         * lib/TODO: Remove; this belongs only in coreutils.
5234
5235 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5236
5237         Add copyright notices to long-enough files that lack them, since
5238         otherwise the files aren't clearly free.  Use the same notice that
5239         getdate.texi already uses.
5240         * doc/alloca-opt.texi: Add copyright notice.
5241         * doc/alloca.texi: Likewise.
5242         * doc/ctime.texi: Likewise.
5243         * doc/functions.texi: Likewise.
5244         * doc/gcd.texi: Likewise.
5245         * doc/gnulib-tool.texi: Likewise.
5246         * doc/inet_ntoa.texi: Likewise.
5247         * doc/visibility.texi: Likewise.
5248
5249         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
5250         * doc/quote.texi: Add copyright notice.
5251
5252         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
5253         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
5254         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
5255         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
5256         is now obsolete, and give a pointer to the Sun list.
5257         Add copyright notice.
5258
5259 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5260
5261         * config/srclistvars.sh: Add copyright notice.
5262
5263 2006-08-14  Eric Blake  <ebb9@byu.net>
5264
5265         Import the following change from libc:
5266
5267         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
5268
5269         Upstream bug 2997.
5270         * lib/misc/error.c: Add space between program name and message if file
5271         name is missing.
5272
5273 2006-08-12  Karl Berry  <karl@gnu.org>
5274
5275         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
5276         remove, these originate in gnulib now.
5277
5278 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5279
5280         * doc/Makefile (standards.info standards.html standards.dvi):
5281         Also depend on make-stds.texi.
5282
5283 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
5284
5285         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
5286         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
5287
5288         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
5289         in wchar_t.  Problem reported by Eric Blake.
5290
5291         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
5292         LEN is smaller than SIZE.  Suggested by Bruno Haible.
5293         Also, help the compiler to keep LEN in a register.
5294
5295 2006-08-11  Eric Blake  <ebb9@byu.net>
5296
5297         * users.txt: Sort.  Add tar.
5298
5299 2006-08-11  Bruno Haible  <bruno@clisp.org>
5300
5301         * users.txt: New file.
5302
5303 2006-08-11  Bruno Haible  <bruno@clisp.org>
5304
5305         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
5306         before <wchar.h>. Needed for OSF/1 and BSD/OS.
5307
5308 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5309
5310         * modules/snprintf (Depends-on): Remove minmax.
5311         (Maintainer): Add self and Bruno.
5312
5313 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5314
5315         * lib/.cppi-disable: Add snprintf.h, socket_.h.
5316         * lib/snprintf.c: Include <errno.h> and <limits.h>.
5317         (EOVERFLOW): Define if the system does not.
5318         Do not include "minmax.h"; it wasn't used.
5319         (snprintf): Don't assume size_t promotes to an unsigned type.
5320         Fix bug when generated string was too long for the buffer: the
5321         buffer's contents are supposed to be the initial prefix of the
5322         output.  Don't assume vasnprintf returns EOVERFLOW if the size
5323         exceeds INT_MAX; do the check ourselves.
5324
5325         Import the following changes from libc:
5326
5327         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
5328
5329         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
5330         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
5331         set wc to the byte which couldn't be converted.
5332         (re_string_reconstruct): Don't clear valid_raw_len before calling
5333         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
5334         tip_context using re_string_context_at.
5335
5336         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
5337
5338         * lib/posix/regex.h: g++ still cannot handled [restrict].
5339
5340         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
5341
5342         * lib/posix/regex.h: Remove special handling for VMS.
5343
5344 2006-08-10  Jim Meyering  <jim@meyering.net>
5345
5346         * modules/same-inode: New module.
5347         * modules/dev-ino: New module.
5348         * modules/cycle-check: Depend on these modules, rather than simply
5349         including their .h files.
5350         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
5351         required via m4/cycle-check.m4.
5352         * modules/same: Depend on new same-inode module, rather than
5353         including same-inode.h.
5354         * modules/chdir-safer: New file.
5355
5356         * modules/chown (Depends-on): Add stat-macros.
5357
5358 2006-08-10  Jim Meyering  <jim@meyering.net>
5359
5360         * m4/cycle-check.m4: New file.
5361         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
5362         * m4/dev-ino.m4, m4/same-inode.m4: New files.
5363
5364 2006-08-10  Eric Blake  <ebb9@byu.net>
5365
5366         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
5367         in from original proposal.
5368
5369 2006-08-10  Eric Blake  <ebb9@byu.net>
5370         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5371
5372         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
5373         namespace.
5374
5375 2006-08-10  Bruno Haible  <bruno@clisp.org>
5376
5377         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
5378         as well.
5379
5380 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5381
5382         Sync from coreutils.
5383
5384         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
5385
5386         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
5387         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
5388
5389 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5390
5391         * modules/restrict: Remove; no longer needed now that we assume
5392         Autoconf 2.59 or later.
5393         * MODULES.html.sh: Remove 'restrict'.
5394         * modules/argp (Depends-on): Remove 'restrict'.
5395         * modules/base64 (Depends-on): Likewise.
5396         * modules/gc (Depends-on): Likewise.
5397         * modules/getaddrinfo (Depends-on): Likewise.
5398         * modules/glob (Depends-on): Likewise.
5399         * modules/inet_ntop (Depends-on): Likewise.
5400         * modules/inet_pton (Depends-on): Likewise.
5401         * modules/memxor (Depends-on): Likewise.
5402         * modules/regex (Depends-on): Likewise.
5403         * modules/strtok_r (Depends-on): Likewise.
5404         * modules/time_r (Depends-on): Likewise.
5405
5406 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5407
5408         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
5409         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
5410         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5411         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
5412         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
5413         * m4/memxor.m4 (gl_MEMXOR): Likewise.
5414         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
5415         gl_C_RESTRICT replaced by AC_C_RESTRICT.
5416
5417         Merge from coreutils.
5418         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
5419         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
5420         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
5421         * m4/time_r.m4 (gl_TIME_R): Likewise.
5422
5423 2006-08-09  Karl Berry  <karl@gnu.org>
5424
5425         * config/srclist.txt: no more gettext-tools, per Bruno.
5426
5427 2006-08-08  Eric Blake  <ebb9@byu.net>
5428
5429         * modules/verror: New module.
5430         * MODULES.html.sh: Document it.
5431
5432 2006-08-08  Eric Blake  <ebb9@byu.net>
5433
5434         * lib/verror.h, lib/verror.c: New files.
5435
5436 2006-08-08  Eric Blake  <ebb9@byu.net>
5437
5438         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
5439         verror_at_line output complies with GNU Coding Standards even when
5440         file is NULL.
5441
5442 2006-08-07  Bruno Haible  <bruno@clisp.org>
5443
5444         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
5445         versions of AIX.
5446         Reported by Ralf Wildenhues.
5447
5448 2006-08-07  Bruno Haible  <bruno@clisp.org>
5449
5450         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
5451         in an AC_DEFUN. Needed so that the autoconf snippets can use
5452         AC_REQUIRE.
5453
5454 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5455
5456         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5457         Initialize pkgdata_DATA.
5458         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
5459         overriding it.
5460
5461 2006-08-06  Eric Blake  <ebb9@byu.net>
5462
5463         * lib/error.h: Fold in some upstream changes from glibc.
5464         * lib/error.c: Likewise.
5465
5466 2006-08-04  Bruno Haible  <bruno@clisp.org>
5467
5468         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5469         Make the mostlyclean-local rule depend on mostlyclean-generic.
5470         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
5471
5472 2006-07-31  Bruno Haible  <bruno@clisp.org>
5473
5474         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
5475         <stdlib.h>, <string.h>.
5476
5477 2006-07-30  Bruno Haible  <bruno@clisp.org>
5478
5479         * modules/readlink (License): Change to LGPL.
5480
5481 2006-07-30  Bruno Haible  <bruno@clisp.org>
5482
5483         * modules/javaversion (Makefile.am): Distribute javaversion.java and
5484         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
5485         set PKGDATADIR to point to it.
5486
5487 2006-07-30  Bruno Haible  <bruno@clisp.org>
5488
5489         * modules/csharpexec (configure.ac): Comment out macro invocation.
5490         * modules/javaexec (configure.ac): Likewise.
5491         * modules/javacomp-script (configure.ac): Likewise.
5492
5493         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
5494
5495 2006-07-30  Bruno Haible  <bruno@clisp.org>
5496
5497         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
5498         linked-list.
5499
5500 2006-07-30  Bruno Haible  <bruno@clisp.org>
5501
5502         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
5503
5504 2006-07-30  Bruno Haible  <bruno@clisp.org>
5505
5506         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5507         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
5508         get removed.
5509
5510 2006-07-29  Bruno Haible  <bruno@clisp.org>
5511
5512         Make it possible for gnulib-tool to work with locally modified or
5513         augmented gnulib repositories.
5514         * gnulib-tool (func_usage): Document --local-dir option.
5515         (local_gnulib_dir): New variable.
5516         Handle --local-dir option.
5517         (func_lookup_file): New function.
5518         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
5519         (func_get_description, func_get_filelist, func_get_description,
5520         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
5521         func_get_automake_snippet, func_get_include_directive,
5522         func_get_license, func_get_maintainer): Use func_lookup_file.
5523         (func_import, func_create_testdir): Use func_lookup_file.
5524
5525 2006-07-29  Bruno Haible  <bruno@clisp.org>
5526
5527         * modules/setenv (Depends-on): Add unistd.
5528
5529 2006-07-29  Bruno Haible  <bruno@clisp.org>
5530
5531         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
5532
5533 2006-07-29  Bruno Haible  <bruno@clisp.org>
5534
5535         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
5536
5537 2006-07-29  Bruno Haible  <bruno@clisp.org>
5538
5539         * gnulib-tool (import, update): If there is no Makefile.am, look at
5540         aclocal.m4, instead of bailing out.
5541
5542 2006-07-29  Bruno Haible  <bruno@clisp.org>
5543
5544         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
5545         Categorize the options by when they are useful.
5546
5547 2006-07-29  Bruno Haible  <bruno@clisp.org>
5548
5549         * gnulib-tool (func_usage): Document option --no-libtool.
5550         Handle option --no-libtool.
5551         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
5552         for changed semantics of $libtool variable.
5553         (func_import): Likewise. If libtool is not used, show this through
5554         an option --no-libtool.
5555         (func_create_testdir): Update.
5556
5557 2006-07-29  Bruno Haible  <bruno@clisp.org>
5558
5559         * gnulib-tool (func_import): Extend error message about missing
5560         --doc-base.
5561
5562 2006-07-29  Bruno Haible  <bruno@clisp.org>
5563
5564         * gnulib-tool (func_import): Don't create the $docbase directory if
5565         there is no file to store there.
5566
5567 2006-07-29  Bruno Haible  <bruno@clisp.org>
5568
5569         * gnulib-tool (autoconf_minversion): If a --dir option is given and
5570         relevant, look for configure.ac there, not in the current directory.
5571         Also use a simple search for AC_PREREQ, not "autoconf --trace".
5572
5573 2006-07-29  Bruno Haible  <bruno@clisp.org>
5574
5575         * gnulib-tool (SORT): New variable.
5576         (func_usage): Undocument --assume-autoconf option.
5577         Remove --assume-autoconf option handling.
5578         (autoconf_minversion): Determine from the contents of configure.ac.
5579         (func_import): Remove autoconf_minversion handling.
5580         Suggested by Eric Blake.
5581
5582 2006-07-29  Bruno Haible  <bruno@clisp.org>
5583
5584         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
5585
5586 2006-07-29  Bruno Haible  <bruno@clisp.org>
5587
5588         * config/srclist.txt (*setenv.[ch]): Remove rules.
5589
5590 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5591
5592         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
5593
5594 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5595
5596         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
5597         arpa/inet.h.
5598
5599 2006-07-28  Simon Josefsson  <jas@extundo.com>
5600
5601         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
5602         * modules/inet_pton (Depends-on): Likewise.
5603
5604 2006-07-28  Simon Josefsson  <jas@extundo.com>
5605
5606         * m4/netinet_in_h.m4: New file.
5607
5608 2006-07-28  Simon Josefsson  <jas@extundo.com>
5609
5610         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
5611         #include's.
5612
5613 2006-07-28  Simon Josefsson  <jas@extundo.com>
5614
5615         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
5616         #include's.
5617
5618 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
5619
5620         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
5621         setgid on directories only if they set these bits.
5622         * lib/modechange.h: Remove obsolete comment about masks.
5623
5624 2006-07-28  Eric Blake  <ebb9@byu.net>
5625
5626         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
5627         macro expansion.
5628
5629 2006-07-28  Bruno Haible  <bruno@clisp.org>
5630
5631         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
5632
5633 2006-07-28  Bruno Haible  <bruno@clisp.org>
5634
5635         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
5636
5637 2006-07-28  Bruno Haible  <bruno@clisp.org>
5638
5639         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
5640         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
5641         Define fallbacks.
5642         Avoids link error on FreeBSD 4.x.
5643         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
5644
5645         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
5646         encoding.
5647         * lib/mbswidth.c (iswcntrl): Likewise.
5648
5649 2006-07-27  Bruno Haible  <bruno@clisp.org>
5650
5651         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
5652         test.
5653
5654 2006-07-27  Bruno Haible  <bruno@clisp.org>
5655
5656         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
5657         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
5658         defined.
5659
5660 2006-07-26  Eric Blake  <ebb9@byu.net>
5661
5662         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
5663
5664 2006-07-26  Eric Blake  <ebb9@byu.net>
5665
5666         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
5667         like mingw that lack mkstemp.
5668         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
5669         avoid compilation warning on mingw.
5670
5671 2006-07-26  Bruno Haible  <bruno@clisp.org>
5672
5673         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
5674         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
5675         INT_FAST*_MIN, INTPTR_MIN.
5676
5677 2006-07-25  Bruno Haible  <bruno@clisp.org>
5678
5679         * modules/version-etc (Depends-on): Add stdarg.
5680
5681 2006-07-25  Bruno Haible  <bruno@clisp.org>
5682
5683         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
5684         complex commands.
5685
5686 2006-07-25  Bruno Haible  <bruno@clisp.org>
5687
5688         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
5689         defined in <stdarg.h> or config.h.
5690
5691 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5692
5693         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
5694         (gl_STDIO_SAFER): Remove.
5695
5696 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5697
5698         * MODULES.html.sh (File stream based Input/Output):
5699         Add fopen-safer, tmpfile-safer; remove stdio-safer.
5700         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
5701         * modules/fopen-safer, modules/tmpfile-safer: New files.
5702         * modules/stdio-safer: Remove.
5703
5704 2006-07-24  Bruno Haible  <bruno@clisp.org>
5705
5706         * modules/tmpdir: New file.
5707         * MODULES.html.sh (File system functions): Add it.
5708
5709 2006-07-24  Bruno Haible  <bruno@clisp.org>
5710
5711         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
5712         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
5713
5714 2006-07-24  Bruno Haible  <bruno@clisp.org>
5715
5716         * modules/clean-temp: New file.
5717
5718 2006-07-24  Bruno Haible  <bruno@clisp.org>
5719
5720         * m4/tmpdir.m4: New file, from GNU gettext.
5721
5722 2006-07-24  Bruno Haible  <bruno@clisp.org>
5723
5724         * lib/tmpdir.h: New file, from GNU gettext.
5725         * lib/tmpdir.c: New file, from GNU gettext.
5726
5727 2006-07-24  Bruno Haible  <bruno@clisp.org>
5728
5729         * lib/clean-temp.h: New file, from GNU gettext.
5730         * lib/clean-temp.c: New file, from GNU gettext.
5731
5732 2006-07-23  Eric Blake  <ebb9@byu.net>
5733
5734         * modules/stdio-safer (Files): Add tmpfile-safer.c.
5735         (Depends-on): Add binary-io.
5736
5737 2006-07-23  Eric Blake  <ebb9@byu.net>
5738
5739         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
5740
5741 2006-07-23  Eric Blake  <ebb9@byu.net>
5742
5743         * lib/tmpfile-safer.c: New file.
5744         * lib/stdio-safer.h (fopen_safer): Add prototype.
5745         * lib/stdio--.h (tmpfile): Make safer.
5746
5747 2006-07-23  Bruno Haible  <bruno@clisp.org>
5748
5749         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
5750         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
5751         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
5752         gl_linked_remove_at): Use it.
5753
5754 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5755         and Simon Josefsson <jas@extundo.com>
5756
5757         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
5758
5759         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
5760
5761 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5762
5763         * modules/close-stream: New file.
5764         * modules/closeout (Description): Make it clear that it exits
5765         with a diagnostic on error.
5766         (Depends-on): Add close-stream.  Remove fpending, stdbool.
5767         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
5768
5769 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5770
5771         * m4/close-stream.m4: New file.
5772
5773 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5774
5775         * lib/close-stream.c, lib/close-stream.h: New files.
5776
5777 2006-07-22  Bruno Haible  <bruno@clisp.org>
5778
5779         Merge from GNU gettext 0.15.
5780
5781         2006-05-01  Bruno Haible  <bruno@clisp.org>
5782
5783                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
5784
5785         2006-07-22  Bruno Haible  <bruno@clisp.org>
5786
5787                 * modules/javaversion: New file.
5788                 * MODULES.html.sh (Java): Add javaversion.
5789
5790         2006-03-12  Bruno Haible  <bruno@clisp.org>
5791
5792                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
5793
5794         2005-12-04  Bruno Haible  <bruno@clisp.org>
5795
5796                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
5797                 (untested).
5798
5799         2006-06-21  Bruno Haible  <bruno@clisp.org>
5800
5801                 Avoid warnings from recent versions of mcs.
5802                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
5803                 -o, -L, -r any more. Use options documented since mcs-1.0
5804                 instead. Similarly for -g.
5805
5806         2005-12-04  Bruno Haible  <bruno@clisp.org>
5807
5808                 * build-aux/csharpcomp.sh.in: Suffix for resources is
5809                 .resources, not .resource.
5810
5811         2005-07-09  Bruno Haible  <bruno@clisp.org>
5812
5813                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
5814                 add a .dll suffix.
5815                 Reported by Mark Junker <mjscod@gmx.de>.
5816
5817         2006-07-22  Bruno Haible  <bruno@clisp.org>
5818
5819                 * modules/gettext: Upgrade to gettext-0.15.
5820                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
5821                 m4/visibility.m4.
5822                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
5823
5824 2006-07-22  Bruno Haible  <bruno@clisp.org>
5825
5826         Merge from GNU gettext 0.15.
5827
5828         2006-03-25  Bruno Haible  <bruno@clisp.org>
5829
5830                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
5831
5832         2006-07-21  Bruno Haible  <bruno@clisp.org>
5833
5834                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
5835                 "1.1".
5836
5837         2006-05-09  Bruno Haible  <bruno@clisp.org>
5838
5839                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
5840                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
5841                 for the conftestver execution.
5842
5843         2006-05-01  Bruno Haible  <bruno@clisp.org>
5844
5845                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
5846                 optional target-version argument. Verify that the compiler
5847                 groks source of the specified source-version, or add -source
5848                 option as necessary. Verify that the compiler produces
5849                 bytecode in the specified target-version, or add -target and
5850                 -source options as necessary. Make the result of the test
5851                 available as variable CONF_JAVAC. Also log error output in
5852                 config.log.
5853
5854         2006-03-11  Bruno Haible  <bruno@clisp.org>
5855
5856                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
5857
5858         2006-05-09  Bruno Haible  <bruno@clisp.org>
5859
5860                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
5861                 CLASSPATH_SEPARATOR to a semicolon.
5862
5863         2006-03-12  Bruno Haible  <bruno@clisp.org>
5864
5865                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
5866                 available as variable CONF_JAVA, for subsequent autoconf
5867                 tests. Also log error output in config.log.
5868
5869         2006-07-19  Bruno Haible  <bruno@clisp.org>
5870
5871                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
5872                 that getline works on glibc2 systems. Needed to avoid trouble
5873                 in relocatable.c.
5874                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
5875
5876         2005-12-04  Bruno Haible  <bruno@clisp.org>
5877
5878                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
5879                 launcher (untested).
5880
5881         2005-12-04  Bruno Haible  <bruno@clisp.org>
5882
5883                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
5884
5885         2006-07-22  Bruno Haible  <bruno@clisp.org>
5886
5887                 * gettext.m4: Update from GNU gettext-0.15.
5888                 * nls.m4: Likewise.
5889                 * po.m4: Likewise.
5890                 * inttypes-pri.m4: Likewise.
5891                 * inttypes-h.m4: Renamed from inttypes.m4.
5892                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
5893
5894 2006-07-22  Bruno Haible  <bruno@clisp.org>
5895
5896         Merge from GNU gettext 0.15.
5897
5898         2005-07-05  Bruno Haible  <bruno@clisp.org>
5899
5900                 * printf-args.c (printf_fetchargs): Work around broken
5901                 definition of wint_t on mingw.
5902
5903         2005-02-12  Bruno Haible  <bruno@clisp.org>
5904
5905                 * xallocsa.h: Add extern "C" for C++.
5906
5907         2006-05-17  Bruno Haible  <bruno@clisp.org>
5908
5909                 Cygwin portability.
5910                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
5911
5912         2006-04-30  Bruno Haible  <bruno@clisp.org>
5913
5914                 * progreloc.c: Include <mach-o/dyld.h> if available.
5915                 (find_executable): Use _NSGetExecutablePath when possible.
5916
5917         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
5918
5919                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
5920                 function.
5921
5922         2005-12-29  Bruno Haible  <bruno@clisp.org>
5923
5924                 * progreloc.c (set_program_name_and_installdir): Fix
5925                 compilation error.
5926
5927         2005-12-04  Bruno Haible  <bruno@clisp.org>
5928
5929                 Cygwin portability.
5930                 * progreloc.c: Include <windows.h> also on Cygwin.
5931                 (find_executable): Add support for Cygwin.
5932                 (set_program_name_and_installdir): Handle also platforms with
5933                 nonempty EXEEXT.
5934
5935         2006-07-11  Bruno Haible  <bruno@clisp.org>
5936
5937                 * javacomp.c: Fix a comment.
5938                 Reported by Jim Meyering.
5939
5940         2006-04-30  Bruno Haible  <bruno@clisp.org>
5941
5942                 * javacomp.h (compile_java_class): Add source_version,
5943                 target_version arguments.
5944                 * javacomp.c: Rewritten to choose only a compiler that
5945                 respects the specified source_version and target_version.
5946
5947         2006-06-27  Bruno Haible  <bruno@clisp.org>
5948
5949                 Assume correct S_ISDIR macro.
5950                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
5951
5952         2006-07-22  Bruno Haible  <bruno@clisp.org>
5953
5954                 * javaversion.h: New file, from GNU gettext.
5955                 * javaversion.c: New file, from GNU gettext.
5956                 * javaversion.java: New file, from GNU gettext.
5957                 * javaversion.class: New file, from GNU gettext.
5958
5959         2006-05-17  Bruno Haible  <bruno@clisp.org>
5960
5961                 Cygwin portability.
5962                 * javaexec.c (execute_java_class): Test for jview program
5963                 also on Cygwin.
5964
5965         2006-04-09  Bruno Haible  <bruno@clisp.org>
5966
5967                 * fatal-signal.c: Don't include string.h.
5968                 (at_fatal_signal): Use a copying loop instead of memcpy.
5969
5970         2005-12-04  Bruno Haible  <bruno@clisp.org>
5971
5972                 * csharpexec.c: Add support for 'clix' launcher (untested).
5973                 (execute_csharp_using_sscli): New function.
5974                 (execute_csharp_program): Call it.
5975
5976         2006-06-21  Bruno Haible  <bruno@clisp.org>
5977
5978                 Avoid warnings from recent versions of mcs.
5979                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
5980                 -o, -L, -r any more. Use options documented since mcs-1.0
5981                 instead. Similarly for -g.
5982
5983         2005-07-09  Bruno Haible  <bruno@clisp.org>
5984
5985                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
5986                 add a .dll suffix.
5987                 Reported by Mark Junker <mjscod@gmx.de>.
5988
5989         2006-06-17  Bruno Haible  <bruno@clisp.org>
5990
5991                 * config.charset: Update for NetBSD 3.0.
5992
5993         2006-05-17  Bruno Haible  <bruno@clisp.org>
5994
5995                 Cygwin portability.
5996                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
5997
5998         2006-05-16  Bruno Haible  <bruno@clisp.org>
5999
6000                 * localcharset.c [CYGWIN]: Include <windows.h>.
6001                 (get_charset_aliases): For Cygwin, return the same CPxxx
6002                 aliases list as under WIN32.
6003                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
6004                 the environment variables. Fall back to GetACP().
6005
6006         2006-04-05  Bruno Haible  <bruno@clisp.org>
6007
6008                 * config.charset: Update Juan Manuel Guerrero's address.
6009
6010         2005-02-12  Bruno Haible  <bruno@clisp.org>
6011
6012                 * allocsa.h: Add extern "C" for C++.
6013
6014         2005-02-10  Bruno Haible  <bruno@clisp.org>
6015
6016                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
6017                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
6018
6019         2006-07-22  Bruno Haible  <bruno@clisp.org>
6020
6021                 * gettext.h: Update to GNU gettext-0.15.
6022
6023 2006-07-22  Bruno Haible  <bruno@clisp.org>
6024
6025         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
6026         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
6027         lib-prefix.m4, longdouble.m4, ssize_t.m4.
6028
6029 2006-07-21  Eric Blake  <ebb9@byu.net>
6030
6031         * modules/stdlib-safer: New file.
6032         * MODULES.html.sh (File stream based Input/Output): Add
6033         stdlib-safer.
6034
6035 2006-07-21  Eric Blake  <ebb9@byu.net>
6036
6037         * lib/stdlib-safer.h: New file from coreutils, required by
6038         stdlib--.h.
6039
6040 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
6041
6042         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
6043
6044 2006-07-20  Bruno Haible  <bruno@clisp.org>
6045
6046         * gnulib-tool: Recognize new option --assume-autoconf.
6047         (autoconf_minversion): New variable.
6048         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
6049
6050 2006-07-20  Bruno Haible  <bruno@clisp.org>
6051
6052         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
6053
6054 2006-07-19  Derek R. Price  <derek@ximbiot.com>
6055
6056         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
6057         Reindent and repaginate.
6058
6059 2006-07-19  Derek Price  <derek@ximbiot.com>
6060
6061         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
6062         Correct grammar.
6063
6064 2006-07-17  Bruno Haible  <bruno@clisp.org>
6065
6066         * modules/list: New file.
6067         * modules/array-list: New file.
6068         * modules/carray-list, modules/carray-list-tests: New files.
6069         * modules/linked-list, modules/linked-list-tests: New files.
6070         * modules/avltree-list, modules/avltree-list-tests: New files.
6071         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6072         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6073         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6074         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6075         * modules/oset: New file.
6076         * modules/array-oset: New file.
6077         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6078         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6079         * tests/test-carray_list.c: New file.
6080         * tests/test-linked_list.c: New file.
6081         * tests/test-avltree_list.c: New file.
6082         * tests/test-rbtree_list.c: New file.
6083         * tests/test-linkedhash_list.c: New file.
6084         * tests/test-avltreehash_list.c: New file.
6085         * tests/test-rbtreehash_list.c: New file.
6086         * tests/test-avltree_oset.c: New file.
6087         * tests/test-rbtree_oset.c: New file.
6088         * MODULES.html.sh (Container data structures): New section.
6089
6090 2006-07-17  Bruno Haible  <bruno@clisp.org>
6091
6092         * m4/gl_list.m4: New file.
6093
6094 2006-07-17  Bruno Haible  <bruno@clisp.org>
6095
6096         * lib/gl_list.h: New file.
6097         * lib/gl_list.c: New file.
6098         * lib/gl_array_list.h: New file.
6099         * lib/gl_array_list.c: New file.
6100         * lib/gl_carray_list.h: New file.
6101         * lib/gl_carray_list.c: New file.
6102         * lib/gl_linked_list.h: New file.
6103         * lib/gl_linked_list.c: New file.
6104         * lib/gl_anylinked_list1.h: New file.
6105         * lib/gl_anylinked_list2.h: New file.
6106         * lib/gl_avltree_list.h: New file.
6107         * lib/gl_avltree_list.c: New file.
6108         * lib/gl_anyavltree_list1.h: New file.
6109         * lib/gl_anyavltree_list2.h: New file.
6110         * lib/gl_rbtree_list.h: New file.
6111         * lib/gl_rbtree_list.c: New file.
6112         * lib/gl_anyrbtree_list1.h: New file.
6113         * lib/gl_anyrbtree_list2.h: New file.
6114         * lib/gl_anytree_list1.h: New file.
6115         * lib/gl_anytree_list2.h: New file.
6116         * lib/gl_linkedhash_list.h: New file.
6117         * lib/gl_linkedhash_list.c: New file.
6118         * lib/gl_anyhash_list1.h: New file.
6119         * lib/gl_anyhash_list2.h: New file.
6120         * lib/gl_avltreehash_list.h: New file.
6121         * lib/gl_avltreehash_list.c: New file.
6122         * lib/gl_rbtreehash_list.h: New file.
6123         * lib/gl_rbtreehash_list.c: New file.
6124         * lib/gl_anytreehash_list1.h: New file.
6125         * lib/gl_anytreehash_list2.h: New file.
6126
6127         * lib/gl_oset.h: New file.
6128         * lib/gl_oset.c: New file.
6129         * lib/gl_array_oset.h: New file.
6130         * lib/gl_array_oset.c: New file.
6131         * lib/gl_avltree_oset.h: New file.
6132         * lib/gl_avltree_oset.c: New file.
6133         * lib/gl_rbtree_oset.h: New file.
6134         * lib/gl_rbtree_oset.c: New file.
6135         * lib/gl_anytree_oset.h: New file.
6136
6137 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6138
6139         * m4/mkancesdirs.m4: New file.
6140         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6141         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6142         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6143         it.
6144
6145 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6146
6147         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6148         * lib/mkancesdirs.h: New files.
6149         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6150         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6151         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6152         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6153         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6154         callers changed.  Revamp internals significantly, by not
6155         attempting to create directories that are temporarily more
6156         permissive than the final results.  Do not attempt to use
6157         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6158         This removes some race conditions, fixes some bugs, and simplifies
6159         things.  Use new dirchownmod function to do owner and mode changes.
6160         * lib/mkdir-p.h: Likewise.
6161         * lib/modechange.c (octal_to_mode): New function.
6162         (struct mode_change): New member mentioned.
6163         (make_node_op_equals): New arg mentioned.  All callers changed.
6164         (mode_compile): Keep track of which mode bits the user has explicitly
6165         mentioned.
6166         (mode_adjust): New arg DIR, so that we implement the X op correctly.
6167         New arg PMODE_BITS, to keep track of which mode bits the user
6168         mentioned; it treats S_ISUID and S_ISGID speciall.
6169         All callers changed.
6170         * lib/modechange.h: Likewise.
6171
6172 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6173
6174         * MODULES.html.sh: Add mkancestors.
6175         * modules/mkancesdirs: New module.
6176         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
6177         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
6178         The chdir-safer and afs files are now orphans; I'll remove them
6179         unless someone speaks up.
6180         Add lib/dirchownmod.c, lib/dirchownmod.h.
6181         (Depends-on): Remove alloca, chown, save-cwd, dirname.
6182         Add lchown, mkancesdirs.
6183         (Maintainer): Add self.
6184
6185 2006-07-15  Karl Berry  <karl@gnu.org>
6186
6187         * gnulib-tool: help message wording/arrangement.
6188
6189 2006-07-14  Simon Josefsson  <jas@extundo.com>
6190
6191         * doc/gnulib.texi (Libtool and Windows): New section.
6192
6193 2006-07-12  Simon Josefsson  <jas@extundo.com>
6194
6195         * modules/gendocs (License): Fix license, approved by Karl.
6196
6197 2006-07-12  Eric Blake  <ebb9@byu.net>
6198
6199         * MODULES.html.sh: Add gendocs.
6200
6201 2006-07-11  Eric Blake  <ebb9@byu.net>
6202
6203         * modules/fdl: New module, to install doc/fdl.texi.
6204         * MODULES.html.sh: Add new section for documentation modules.
6205         * gnulib-tool: Avoid space-tab.
6206         (--doc-base): New option, to manage files from doc.
6207
6208 2006-07-11  Eric Blake  <ebb9@byu.net>
6209
6210         * m4/absolute-header.m4: Fix comments to match recent change.
6211
6212 2006-07-11  Eric Blake  <ebb9@byu.net>
6213
6214         * gnulib-tool: List --doc-base before --tests-base.
6215
6216 2006-07-11  Derek R. Price  <derek@ximbiot.com>
6217
6218         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
6219
6220 2006-07-11  Bruno Haible  <bruno@clisp.org>
6221
6222         * README: Mention where to put documentation.
6223
6224 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6225
6226         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
6227
6228 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6229
6230         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
6231         to stdint.m4.
6232
6233 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6234
6235         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
6236         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
6237         "no/such/file/stdint.h" when there is no such file, so that
6238         the resulting C code can be parsed by dodgy compilers.
6239         Problems reported by Bob Proulx.
6240
6241 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6242
6243         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
6244         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6245         macros into the GNU _D_EXACT_NAMLEN.
6246         * lib/savedir.c:  Likewise.
6247         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
6248
6249 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6250         and Paul Eggert  <eggert@cs.ucla.edu>
6251
6252         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
6253         * m4/savedir.m4:
6254         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6255         macros into the GNU _D_EXACT_NAMLEN.
6256
6257 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6258
6259         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
6260         around the absolute name, to work around a problem with the HP-UX
6261         11.23 native C compiler, reported by Bob Proulx.
6262
6263 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6264
6265         * doc/maintain.texi, make-stds.texi: Sync from
6266         <http://savannah.gnu.org/projects/gnustandards>.
6267
6268 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6269
6270         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
6271
6272 2006-07-09  Jim Meyering  <jim@meyering.net>
6273
6274         * m4/glob.m4: Remove a doubled word in a comment.
6275
6276 2006-07-09  Jim Meyering  <jim@meyering.net>
6277
6278         * lib/argp-pv.c: Remove a doubled word in a comment.
6279         * lib/check-version.c (check_version): Likewise.
6280         * lib/javacomp.c (compile_java_class): Likewise.
6281
6282 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
6283
6284         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
6285         for the benefit of people using Autoconf 2.60.  If you want to
6286         support older Autoconf versions you can copy m4/onceonly_2_57.m4
6287         (or m4/onceonly.m4, if pre-2.57) manually.
6288
6289 2006-07-08  Jim Meyering  <jim@meyering.net>
6290
6291         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
6292         comment.
6293         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
6294         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
6295         comment.
6296
6297 2006-07-08  Jim Meyering  <jim@meyering.net>
6298
6299         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
6300
6301 2006-07-07  Simon Josefsson  <jas@extundo.com>
6302
6303         * tests/test-crc.c: Change expected crc value, the test vector
6304         were probably computed using the old broken crc.c?
6305
6306 2006-07-06  Simon Josefsson  <jas@extundo.com>
6307
6308         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
6309         now the canonical place for the M4 file).
6310
6311         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
6312         from the sys_socket dependency now.
6313
6314         * modules/inet_pton (Files): Ditto.
6315
6316         * modules/inet_ntop (Files): Ditto.
6317
6318 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
6319
6320         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
6321         not gl_PREREQ_GETUSERSHELL.
6322
6323 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6324
6325         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
6326         with only one argument, for Autoconf 2.60.
6327         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
6328         expand to nothing, so add a shell command to avoid syntax error.
6329         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6330
6331 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6332
6333         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
6334
6335 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6336
6337         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
6338         no longer needed.  Check for isblank decl.
6339         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
6340         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
6341         of existence.
6342
6343 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6344
6345         * lib/getloadavg.c: Use __VMS, not VMS.
6346         * lib/getopt.c: Likewise.
6347         * lib/getpagesize.h: Likewise.
6348         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
6349         and probably does not work.
6350
6351 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6352
6353         * lib/.cppi-disable: Add wcwidth.
6354         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
6355         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
6356         (ISGRAPH): Remove.  All uses changed to isgraph.
6357         (FOLD) [!defined _LIBC]: Remove special case.
6358         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
6359         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
6360         HAVE_ISBLANK.
6361         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
6362         case.
6363
6364 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6365
6366         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
6367         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
6368         brackets.  Other minor changes to suppress some compiler
6369         warnings.
6370
6371 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6372         and Paul Eggert  <eggert@cs.ucla.edu>
6373
6374         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
6375         of invoking obsolescent AC_HEADER_DIRENT macro.
6376         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
6377         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
6378         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
6379         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
6380         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
6381         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6382         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
6383         * m4/readdir.m4: Remove; no longer needed.
6384
6385 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6386         and Paul Eggert  <eggert@cs.ucla.edu>
6387
6388         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
6389         Don't worry about this obsolete case any more.
6390         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
6391         directories.
6392         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
6393         worry about this obsolete case any more.
6394         * lib/fts.c: Likewise.
6395         * lib/getcwd.c: Likewise.
6396         * lib/glob.h: Likewise.
6397         * lib/savedir.c: Likewise.
6398
6399 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6400
6401         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
6402         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
6403         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
6404         needed.
6405         All uses removed.
6406         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6407         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6408         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
6409         needed.
6410         * m4/getdate.m4 (gl_GETDATE): Likewise.
6411         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6412         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6413         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6414         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6415         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6416         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6417         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
6418         needed.
6419
6420 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6421
6422         * lib/memcasecmp.c: Include <limits.h>.
6423         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
6424         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
6425         Don't assume isdigit succeeds only on '0' through '9'.
6426
6427 2006-07-05  Eric Blake  <ebb9@byu.net>
6428
6429         * modules/getaddrinfo (Depends-on): Add snprintf.
6430
6431 2006-07-05  Eric Blake  <ebb9@byu.net>
6432
6433         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
6434         to avoid 'header present but could not be compiled' on cygwin.
6435
6436 2006-07-05  Eric Blake  <ebb9@byu.net>
6437
6438         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
6439         missing from netdb.h.
6440         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
6441
6442 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6443
6444         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
6445         no longer needed.
6446         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
6447         * m4/getdate.m4 (gl_GETDATE): Likewise.
6448         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6449         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6450         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6451         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6452         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6453
6454 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6455
6456         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
6457         All uses of is_space replaced by isspace.
6458         * lib/exit.h: Don't talk about STDC_HEADERS.
6459         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
6460         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
6461         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
6462         replaced by isprint etc.
6463         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
6464         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6465         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
6466         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
6467         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
6468         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6469
6470 2006-07-05  Bruno Haible  <bruno@clisp.org>
6471
6472         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
6473         the function exists, before testing against AIX.
6474         Reported by Martin Lambers <marlam@marlam.de>.
6475
6476 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6477
6478         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
6479         From Mark D. Baushke.
6480
6481 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6482
6483         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
6484         to the absolute name, not just one, to bypass Sun C 5.8's
6485         "warning: #include of /usr/include/... may be non-portable".
6486
6487 2006-07-04  Eric Blake  <ebb9@byu.net>
6488
6489         * modules/dirname-tests: New test module.
6490         * tests/test-dirname.c: New file, replacing dirname.c
6491         TEST_DIRNAME section that was recently deleted.
6492
6493 2006-07-04  Bruno Haible  <bruno@clisp.org>
6494
6495         Assume ANSI C header files and <ctype.h> functions.
6496         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
6497         (mbsnwidth): Use isprint, iscntrl instead.
6498
6499 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6500
6501         Merge from coreutils.
6502         * MODULES.html.sh: Add xstrtold.
6503         * modules/xstrtold: New file.
6504         * modules/cycle-check (Files): Add lib/same-inode.h.
6505         * modules/dirname (Files): Add m4/double-slash-root.m4.
6506         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
6507         * modules/mkdir-p (Files): Add lib/same-inode.h.
6508         * modules/same (Files): Add lib/same-inode.h.
6509
6510 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6511
6512         * m4/absolute-header.m4: Renamed from full-header-path.m4.
6513         This is to keep the terminology clean; POSIX talks about
6514         "absolute pathnames", not "full pathnames", but the GNU
6515         Coding Standards say to use "path" for something else;
6516         so use "absolute" to keep both sides happy.
6517         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
6518         Set gl_absolute_header, not gl_full_header_path.
6519         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
6520         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
6521         All uses changed.
6522
6523         Merge from coreutils.
6524
6525         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6526
6527         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
6528         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
6529         want to require the building of c-strtod.o.
6530         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
6531         needs -lm directly.
6532         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
6533
6534         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6535
6536         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
6537         --as-needed option if available.  Problem reported by Albert Chin in
6538         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
6539         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
6540         cc merely issues a bunch of annoying warnings for --as-needed
6541         (this problem was reported by Bob Proulx).  Also, try linking with
6542         -lm to detect a bug in binutils 2.16 (this problem was reported
6543         by Ralf Wildenhues).
6544
6545         2006-06-18  Jim Meyering  <jim@meyering.net>
6546
6547         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
6548         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
6549         macro.
6550         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
6551         also check for glibc-2.4's abort-inducing bug.
6552
6553         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
6554         Low-probability clean-up should be to use rmdir to get rid of
6555         the just-created directory, not unlink.
6556
6557         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
6558         configure fail, and request a bug report to inform us about it.
6559         Add a comment that, barring reports to the contrary, in 2007 we'll
6560         assume ftruncate is universally available.
6561
6562         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6563
6564         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
6565
6566         2006-03-12  Jim Meyering  <jim@meyering.net>
6567
6568         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
6569         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
6570         * m4/same.m4 (gl_SAME): Likewise.
6571         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
6572
6573         2006-03-11  Eric Blake  <ebb9@byu.net>
6574
6575         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
6576         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
6577         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
6578         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
6579
6580 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6581
6582         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
6583         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
6584         reported by Mark D. Baushke, one in
6585         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
6586
6587         Merge from coreutils.
6588
6589         * lib/.cppi-disable: Add stdint_.h.
6590         * lib/.cvsignore: Add stdint.h.
6591
6592         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6593
6594         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
6595         both double and long double versions.
6596         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
6597         * lib/xstrtold.c: New file.
6598         * lib/xstrtod.h (xstrtold): New decl.
6599
6600         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
6601
6602         * lib/filemode.c (setst): Remove.
6603         (strmode): Rewrite to avoid setst.  This makes the code shorter,
6604         (arguably) clearer, and the generated code is a bit smaller on my
6605         Debian GNU/Linux stable x86 host.
6606
6607         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6608
6609         * lib/filemode.c: Include "filemode.h" first, to test the interface.
6610         Assume that filemode.h includes sys/types.h and sys/stat.h.
6611         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
6612         (ftypelet): Reorder to put common cases first, for efficiency.
6613         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
6614         to do 'M'.
6615         (strmode): Renamed from mode_string, and now stores 12 bytes instead
6616         of 10, for compatibility with FreeBSD.  All callers changed.
6617         (filemodestring): Now stores 12 bytes instead of 10, and sets file
6618         types that can't be deduced solely from st_mode.  First arg is now a
6619         const pointer.
6620         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
6621         (strmode): Renamed from mode_string.
6622         (filemodestring): New decl.
6623         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
6624         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
6625         needed.
6626         (S_ISPORT, S_ISWHT): New macros, if not already defined.
6627
6628         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
6629
6630         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
6631         fsusage.h now does that.  Include fsusage.h first, to test interface.
6632         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
6633         at most one method (the old code could have generated decls that
6634         didn't conform to C89, not that this was ever exercised).
6635         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
6636
6637         2006-03-19  Jim Meyering  <jim@meyering.net>
6638
6639         Work even in a chroot where d_ino values for entries in "/"
6640         don't match the stat.st_ino values for the same names.
6641         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
6642         number, iterate through all entries again, using lstat instead.
6643         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
6644         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
6645
6646         * lib/getcwd.c (__getcwd): Clarify a comment.
6647         Use memcpy in place of a call to strcpy.
6648
6649         2006-03-12  Jim Meyering  <jim@meyering.net>
6650
6651         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
6652         matches that of the current directory (which we're about to chdir ".."
6653         out of), then save the dev-ino of the parent, instead.
6654
6655         * lib/same-inode.h (SAME_INODE): New file/macro.
6656         * lib/chdir-safer.c (SAME_INODE): Remove definition.
6657         Include "same-inode.h", instead.
6658         * lib/same.c: Likewise.
6659         * lib/cycle-check.h: Include "same-inode.h".
6660         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
6661         * lib/cycle-check.c (SAME_INODE): Remove definition.
6662         * lib/root-dev-ino.h: Include "same-inode.h".
6663
6664         2006-03-11  Eric Blake  <ebb9@byu.net>
6665
6666         * lib/same.c (same_name): s/base_name/last_component/
6667         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
6668         * lib/filenamecat.c (file_name_concat): Likewise.
6669
6670         2006-03-11  Eric Blake  <ebb9@byu.net>,
6671                     Paul Eggert  <eggert@cs.ucla.edu>
6672
6673         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
6674         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
6675         drive prefix.
6676         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
6677         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
6678         (last_component): New method.
6679         * lib/dirname.c (dir_len): Determine when drive letters need a
6680         subsequent slash.  Preserve // when it is special.
6681         (dir_name): Don't append dot when drive letter is absolute.
6682         [TEST_DIRNAME]: Move into a full-blown gnulib test.
6683         * lib/basename.c (base_name): New semantics - malloc the result.
6684         Preserve // when it is special.  Preserve relative files that look
6685         like drive letters.
6686         (base_len): Preserve // when it is special.
6687         (last_component): New method, similar to old base_name semantics.
6688         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
6689         base_name.  Strip redundant slashes from ///.
6690
6691 2006-07-03  Jim Meyering  <jim@meyering.net>
6692
6693         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
6694         macro is used before the first cycle_check call.
6695
6696 2006-07-03  Eric Blake  <ebb9@byu.net>
6697
6698         * modules/dirname (Depends-on): Add xstrndup.
6699
6700 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6701
6702         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
6703         test cases, so that config.log is a bit easier to follow.
6704
6705 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6706
6707         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
6708         both are 64 bits, since this seems to be the tradition, and this
6709         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
6710         we ever run into a host that prefers long long to long in this
6711         case, we'll need another configure-time test.  Problem reported by
6712         Jim Meyering.
6713
6714 2006-07-02  Eric Blake  <ebb9@byu.net>
6715
6716         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
6717
6718 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6719
6720         * modules/inttypes (Depends-on): No longer depends on stdint.
6721         * modules/stdint (Description): Say more about assumptions.
6722         Say that the fast types might differ.  Say macros are used.
6723         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
6724         (Makefile.am): Revise list of substituted symbols to match
6725         new stdint.m4.
6726         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
6727         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
6728         * tests/test-stdint.c (verify_same_types)
6729         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
6730         the code conforms to C99/C89.
6731         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
6732         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
6733
6734 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6735
6736         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
6737         but fix a bug, by requiring at least 64 bits.
6738         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
6739         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
6740         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
6741         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
6742
6743         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
6744         changes.  Make 2.59 a prerequisite.  Check and substitute for
6745         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
6746         inttypes.h.  Do not use special include files; just use the
6747         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
6748         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
6749         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
6750         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
6751         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
6752         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
6753         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
6754         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
6755         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
6756         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
6757         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
6758         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
6759         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
6760         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
6761         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
6762         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
6763         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
6764         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
6765         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
6766         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
6767         WINT_MAX.  Check for C99 conformance more strictly, by detecting
6768         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
6769         not check for things that C99 does not require, e.g., int8_t.  If
6770         a test isn't needed unless <stdint.h> isn't working, and is
6771         unlikely to be needed for any other reason, then don't do it
6772         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
6773         size_t, since we assume C89 freestanding at least.  Do not check
6774         for sig_atomic_t, wchar_t, or wint_t, since the code now does
6775         the right thing even if the types are not defined.  Instead use:
6776         (gl_STDINT_TYPE_PROPERTIES): New macro.
6777         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
6778         testing whether <sys/types.h> clashes, as Autoconf does this for
6779         us now.  All uses removed.
6780         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
6781         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
6782         (gl_CHECK_TYPE_SAME):
6783         Remove; no longer needed.
6784         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
6785         exists, since we'll return 0 anyway in that case.
6786         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
6787
6788 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6789
6790         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
6791         possible collision with system files.
6792         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
6793         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
6794         WCHAR_MIN and WCHAR_MAX in this case.
6795         (<stddef.h>): Do not include; no longer needed.
6796         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
6797         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
6798         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
6799         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
6800         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
6801         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
6802         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
6803         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
6804         !defined(__c99))]: Include in this case too, since it's harmless
6805         now.
6806         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
6807         dangerous to do so.
6808         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
6809         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
6810         (_STDINT_MIN, _STDINT_MAX): New macros.
6811         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
6812         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
6813         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
6814         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
6815         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
6816         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
6817         macros, not typedefs; this simplifies things quite a bit.
6818         Use long int for all types narrower than int64_t.
6819         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
6820         Define in terms of long long int or int64_t or long int,
6821         not int64_t or int32_t.  This saves some compile-time testing.
6822         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
6823         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
6824         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
6825         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
6826         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
6827         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
6828         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
6829         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
6830         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
6831         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
6832         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6833         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6834         undef any previous version and define our own version, for
6835         simplicity and consistency with the new macros for types.
6836         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6837         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6838         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
6839         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
6840         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
6841         @WINT_T_SUFFIX@ to keep things simple here.
6842         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
6843         Simplify by assuming typical 8/16/32/64 host, since we're
6844         already doing that elsewhere anyway.
6845         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
6846         and assume long long int is 64 bits if available.  This
6847         speeds up 'configure'.
6848
6849 2006-07-01  Eric Blake  <ebb9@byu.net>
6850
6851         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
6852         Reported by Andreas Buening.
6853
6854 2006-07-01  Eric Blake  <ebb9@byu.net>
6855
6856         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
6857
6858 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6859
6860         * lib/getaddrinfo.c: fixed typo
6861
6862 2006-06-29  Jim Meyering  <jim@meyering.net>
6863
6864         * modules/strftime (Maintainer): Add my name, since with the
6865         FPRINTFTIME changes strftime.c has forked from glibc.
6866
6867 2006-06-29  Eric Blake  <ebb9@byu.net>
6868
6869         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
6870
6871 2006-06-29  Eric Blake  <ebb9@byu.net>
6872
6873         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
6874
6875 2006-06-29  Eric Blake  <ebb9@byu.net>
6876
6877         * lib/stat_.h: New file.
6878
6879 2006-06-29  Eric Blake  <ebb9@byu.net>
6880
6881         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
6882         unused static function.
6883
6884 2006-06-29  Eric Blake  <ebb9@byu.net>
6885
6886         * doc/functions.texi (Function Portability): Document missing lstat
6887         on mingw.
6888
6889 2006-06-29  Eric Blake  <ebb9@byu.net>
6890
6891         * MODULES.html.sh: Add sys_stat.
6892         * modules/sys_stat: New module.
6893         * modules/mkstemp (Depends-on): Add sys_stat.
6894
6895 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6896
6897         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
6898
6899 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6900
6901         * m4/c-bs-a.m4: Removed.
6902
6903 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6904
6905         * lib/strftime.c: Assume strftime() exists.
6906
6907 2006-06-29  Derek Price  <derek@ximbiot.com>
6908
6909         * modules/c-bs-a: Removed - \a is C89.
6910         * MODULES.html.sh: Remove c-bs-a.
6911
6912 2006-06-29  Bruno Haible  <bruno@clisp.org>
6913
6914         * modules/wcwidth (License): Change to LGPL.
6915
6916 2006-06-28  Simon Josefsson  <jas@extundo.com>
6917
6918         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
6919         on _WIN32.
6920
6921         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
6922         getnameinfo.
6923
6924 2006-06-28  Simon Josefsson  <jas@extundo.com>
6925
6926         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
6927
6928 2006-06-28  Simon Josefsson  <jas@extundo.com>
6929
6930         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
6931         functions there.  It will succeed on Windows XP, but on Windows
6932         2000 and (presumably) earlier, it will fail, and use the internal
6933         re-implementation.
6934         (use_win32_p): New function.
6935         (getaddrinfo): Use strtoul on servname, to support numeric ports.
6936         Support AI_NUMERICSERV to disable getservbyname.
6937         (getnameinfo): New function, only supports
6938         NI_NUMERICHOST|NI_NUMERICSERV for now.
6939
6940         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
6941         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
6942         getnameinfo.
6943
6944 2006-06-28  Eric Blake  <ebb9@byu.net>
6945
6946         * modules/wcwidth: New file.
6947         * modules/mbchar (Depends-on): Add wcwidth.
6948         * modules/mbswidth (Depends-on): Add wcwidth.
6949         * MODULES.html.sh: Add wcwidth.
6950
6951 2006-06-28  Eric Blake  <ebb9@byu.net>
6952
6953         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
6954         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
6955
6956 2006-06-28  Eric Blake  <ebb9@byu.net>
6957
6958         * lib/xvasprintf.h: Fix comments.
6959
6960 2006-06-28  Eric Blake  <ebb9@byu.net>
6961
6962         * lib/mbchar.h (wcwidth): Include wcwidth.h.
6963         * lib/mbswidth.c (wcwidth): Move from here...
6964         * lib/wcwidth.h: ...to this new file.
6965
6966 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6967
6968         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
6969
6970         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
6971         it's obsolete.
6972         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
6973
6974 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6975
6976         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
6977         Autoconf 2.60 says this stuff was obsolete.
6978
6979 2006-06-28  Bruno Haible  <bruno@clisp.org>
6980
6981         * modules/wcwidth (Files): Add m4/wchar_t.m4.
6982
6983 2006-06-28  Bruno Haible  <bruno@clisp.org>
6984
6985         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
6986         gt_TYPE_WCHAR_T.
6987
6988 2006-06-28  Bruno Haible  <bruno@clisp.org>
6989
6990         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
6991         declaration for wcwidth.
6992         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
6993
6994 2006-06-28  Bruno Haible  <bruno@clisp.org>
6995
6996         * lib/mkdtemp.c [MINGW]: Include <io.h>.
6997         (mkdir): Define using _mkdir.
6998
6999 2006-06-28  Bruno Haible  <bruno@clisp.org>
7000
7001         * lib/getaddrinfo.h: Fix POSIX URL.
7002         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
7003         _WIN32.
7004         (use_win32_p): Make static.
7005         (getaddrinfo): Reject service name if it is empty or does not consist
7006         solely of decimal digits, or if its value is > 65535.
7007         (getnameinfo): Remove useless casts.
7008
7009 2006-06-27  Simon Josefsson  <jas@extundo.com>
7010
7011         * modules/sys_select: New file, suggested by Bruno Haible, Paul
7012         Eggert and Martin Lambers.
7013
7014 2006-06-27  Simon Josefsson  <jas@extundo.com>
7015
7016         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
7017         Eggert and Martin Lambers.
7018
7019 2006-06-27  Bruno Haible  <bruno@clisp.org>
7020
7021         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
7022         result to 0, not to empty.
7023         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
7024
7025 2006-06-27  Bruno Haible  <bruno@clisp.org>
7026
7027         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
7028
7029 2006-06-26  Simon Josefsson  <jas@extundo.com>
7030
7031         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
7032         present.
7033
7034 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
7035
7036         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
7037         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
7038         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
7039
7040 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
7041
7042         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
7043
7044 2006-06-26  Bruno Haible  <bruno@clisp.org>
7045
7046         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
7047
7048 2006-06-26  Bruno Haible  <bruno@clisp.org>
7049
7050         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
7051
7052 2006-06-26  Bruno Haible  <bruno@clisp.org>
7053
7054         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
7055         SGI C compiler in pre-C99 mode.
7056         Suggested by Mark D. Baushke and Larry Jones.
7057
7058 2006-06-26  Bruno Haible  <bruno@clisp.org>
7059
7060         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
7061         WCHAR_MAX.
7062         Reported by Mark D. Baushke and Larry Jones.
7063
7064 2006-06-26  Bruno Haible  <bruno@clisp.org>
7065
7066         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
7067         in pre-C99 mode.
7068         Suggested by Mark D. Baushke and Larry Jones.
7069
7070 2006-06-23  Simon Josefsson  <jas@extundo.com>
7071             Bruno Haible  <bruno@clisp.org>
7072
7073         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7074         Emit mostlyclean-local rule.
7075         (func_emit_tests_Makefile_am): Likewise.
7076         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7077
7078 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7079
7080         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7081
7082 2006-06-23  Bruno Haible  <bruno@clisp.org>
7083
7084         * tests/test-stdint.c: Update to match ISO C 99 Technical
7085         Corrigendum 1.
7086
7087 2006-06-23  Bruno Haible  <bruno@clisp.org>
7088
7089         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7090
7091 2006-06-23  Bruno Haible  <bruno@clisp.org>
7092
7093         * lib/stdint_.h: Treat IRIX like OpenBSD.
7094
7095 2006-06-23  Bruno Haible  <bruno@clisp.org>
7096
7097         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7098         ISO C 99 Technical Corrigendum 1.
7099
7100 2006-06-22  Simon Josefsson  <jas@extundo.com>
7101
7102         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7103         MinGW.
7104
7105 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7106
7107         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7108         needed.  Some compiler complained about some of them.  Problem reported
7109         by Larry Jones in
7110         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7111
7112 2006-06-21  Simon Josefsson  <jas@extundo.com>
7113
7114         * tests/test-getaddrinfo.c: New file.
7115
7116         * modules/getaddrinfo-tests: New file.
7117
7118         * MODULES.html.sh: Add inet_pton.
7119
7120         * modules/inet_pton: New file.
7121
7122 2006-06-21  Simon Josefsson  <jas@extundo.com>
7123
7124         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7125         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7126         of using the (limited) gnulib implementation on Windows XP.
7127
7128         * m4/inet_pton.m4: New file.
7129
7130 2006-06-21  Simon Josefsson  <jas@extundo.com>
7131
7132         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7133         variable.
7134
7135         * lib/socket_.h: Don't define WINVER.
7136
7137         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7138         slightly modified to work in gnulib.
7139
7140 2006-06-21  Simon Josefsson  <jas@extundo.com>
7141
7142         * doc/gnulib.texi (Windows sockets): Add.
7143
7144 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7145
7146         * lib/read-file.c (fread_file): Start with buffer allocation of
7147         0 bytes rather than 1 byte; this simplifies the code.
7148         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7149         code to free buffer and save/restore errno.
7150         (internal_read_file): Remove unused local.
7151
7152 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7153
7154         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7155         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7156         Problem reported by Denis Excoffier in
7157         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7158
7159 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7160
7161         * modules/sys_socket, modules/socklen: Include sys/types since
7162         FreeBSD 4.x's sys/socket.h needs it.
7163
7164 2006-06-19  Simon Josefsson  <jas@extundo.com>
7165
7166         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
7167
7168 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7169
7170         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
7171
7172 2006-06-19  Bruno Haible  <bruno@clisp.org>
7173
7174         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
7175         and FULL_PATH_INTTYPES_H in angle brackets.
7176         Reported by Mark D. Baushke <mdb@gnu.org>.
7177
7178 2006-06-17  Eric Blake  <ebb9@byu.net>
7179
7180         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
7181         errno.
7182
7183 2006-06-17  Bruno Haible  <bruno@clisp.org>
7184
7185         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
7186         <sys/inttypes.h>.
7187
7188 2006-06-17  Bruno Haible  <bruno@clisp.org>
7189
7190         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
7191         whether errno is declared. Assume <errno.h> declares errno.
7192
7193 2006-06-17  Bruno Haible  <bruno@clisp.org>
7194
7195         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
7196
7197 2006-06-17  Bruno Haible  <bruno@clisp.org>
7198
7199         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
7200         problem on Solaris 2.5.1.
7201
7202 2006-06-16  Eric Blake  <ebb9@byu.net>
7203
7204         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
7205         * lib/unicodeio.c [!defined errno]: Likewise.
7206         * lib/strtol.c [!defined errno]: Likewise.
7207         * lib/strtod.c [!defined errno]: Likewise.
7208
7209 2006-06-15  Eric Blake  <ebb9@byu.net>
7210
7211         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
7212
7213 2006-06-15  Eric Blake  <ebb9@byu.net>
7214
7215         * config/srclist.txt (ssize_t.m4): Lose sync.
7216
7217 2006-06-15  Bruno Haible  <bruno@clisp.org>
7218
7219         * modules/stdint (Files): Include m4/full-header-path.m4,
7220         m4/size_max.m4, m4/wchar_t.m4.
7221         (Makefile.am): Many more substitutions.
7222         * modules/stdint-tests: New file.
7223         * tests/test-stdint.c: New file.
7224
7225 2006-06-15  Bruno Haible  <bruno@clisp.org>
7226
7227         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
7228         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
7229         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
7230         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
7231         gl_CHECK_TYPE_SAME): New macros.
7232
7233 2006-06-15  Bruno Haible  <bruno@clisp.org>
7234
7235         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
7236
7237 2006-06-15  Bruno Haible  <bruno@clisp.org>
7238
7239         * lib/stdint_.h: Rewritten to be fully auto-configured.
7240         Fixes bug on HP-UX/IA64.
7241
7242 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
7243
7244         * lib/getdate.y (__attribute__): Don't define if already defined.
7245         Problem reported by Larry Jones.
7246         * lib/utimens.c (__attribute__): Likewise.
7247
7248 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
7249
7250         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
7251         reported by Andreas Schwab.
7252
7253 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7254             Bruno Haible  <bruno@clisp.org>
7255
7256         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
7257         check for the declaration of strnlen and a run test that exposes the
7258         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
7259         rpl_strndup.
7260
7261 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7262             Bruno Haible  <bruno@clisp.org>
7263
7264         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
7265
7266 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7267
7268         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
7269         compile test, for Tru64 4.0D.
7270
7271 2006-05-28  Karl Berry  <karl@gnu.org>
7272
7273         * config/srclist.txt (printf-args.c): lose sync.
7274
7275 2006-05-26  Martin Lambers  <marlam@marlam.de>
7276
7277         * lib/getpass.c: Updates the test for the native W32 API, and adds
7278         missing includes, thus fixing compilation warnings.
7279
7280 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7281
7282         * lib/exclude.c (exclude_fnmatch): New function.
7283         (excluded_file_name): Call exclude_fnmatch.
7284         * lib/exclude.h (excluded_file_name): New prototype
7285
7286 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
7287
7288         * lib/tempname.c (small_open, large_open): New macros.
7289         (__open, __open64) [!_LIBC]: Remove.
7290         (__gen_tempname): Use small_open and large_open instead of __open
7291         and __open64.  This fixes a portability bug on HP-UX 11.11i
7292         reported by Simon Wing-Tang in
7293         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
7294
7295 2006-05-24  Bruno Haible  <bruno@clisp.org>
7296
7297         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
7298         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
7299         Reported by Thorsten Maerz <torte@netztorte.de> via
7300         Aaron Stone <aaron@serendipity.cx>.
7301
7302 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7303
7304         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
7305         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
7306         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
7307         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
7308         not really conditional on the cache.
7309         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
7310
7311 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7312
7313         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
7314         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
7315         (my_usleep): Don't mishandle maximum value.
7316
7317 2006-05-19  Jim Meyering  <jim@meyering.net>
7318
7319         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
7320
7321 2006-05-17  Bruno Haible  <bruno@clisp.org>
7322
7323         Cygwin portability.
7324         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
7325
7326 2006-05-17  Bruno Haible  <bruno@clisp.org>
7327
7328         * lib/stdint_.h: Fix recognition of Cygwin.
7329
7330 2006-05-15  Bruno Haible  <bruno@clisp.org>
7331
7332         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
7333         on libtool patch by Ralf Wildenhues.
7334
7335 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
7336
7337         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
7338         test for C99 conformance; (bool) 0.5 is an integer constant
7339         expression, but (bool) -0.5 is not.  Problem reported by Fedor
7340         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
7341
7342 2006-05-11  Simon Josefsson  <jas@extundo.com>
7343
7344         * m4/xvasprintf.m4: Fix obvious typo.
7345
7346 2006-05-11  Jim Meyering  <jim@meyering.net>
7347
7348         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
7349         James Lemley.
7350
7351 2006-05-10  Simon Josefsson  <jas@extundo.com>
7352
7353         * lib/md4.c: Typo fix, update copyright years.
7354         (K1, K2): Don't use L because it turn computations into 64-bit on
7355         64-bit platforms.
7356
7357 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
7358
7359         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
7360         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
7361         unwanted sign propagation, e.g., on hosts with 64-bit int.
7362         There still are some problems with reeelly weird theoretical hosts
7363         (e.g., 33-bit int) but it's not worth worrying about now.
7364         * lib/sha1.c (rol): Likewise.
7365         (K1, K2, K3, K4): Remove unnecessary L suffix.
7366
7367 2006-05-10  Bruno Haible  <bruno@clisp.org>
7368
7369         * lib/des.c: Cast to avoid warnings.
7370
7371 2006-05-09  Bruno Haible  <bruno@clisp.org>
7372
7373         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
7374         (Depends-on): Depend also on xsize, stdarg.
7375         (configure.ac): Add gl_XVASPRINTF.
7376
7377 2006-05-09  Bruno Haible  <bruno@clisp.org>
7378
7379         * m4/xvasprintf.m4: New file.
7380
7381 2006-05-09  Bruno Haible  <bruno@clisp.org>
7382
7383         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
7384         (EOVERFLOW): Define fallback value.
7385         (xstrcat): New function.
7386         (xvasprintf): Recognize the special case of a string concatenation.
7387
7388 2006-05-08  Eric Blake  <ebb9@byu.net>
7389
7390         * gnulib-tool (func_version): Base copyright year on CVS date.
7391         (func_emit_copyright_notice): New function.
7392         (func_emit_lib_Makefile_am): Use it.
7393         (func_emit_tests_Makefile_am): Likewise.
7394         (func_import): Likewise.
7395
7396 2006-05-08  Bruno Haible  <bruno@clisp.org>
7397
7398         * modules/stdarg: New file.
7399         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
7400
7401 2006-05-08  Bruno Haible  <bruno@clisp.org>
7402
7403         * m4/stdarg.m4: New file, from GNU gettext.
7404
7405 2006-05-08  Bruno Haible  <bruno@clisp.org>
7406
7407         * config/srclist.txt (build-aux/config.rpath): different from latest
7408         release.
7409
7410 2006-05-08  Bruno Haible  <bruno@clisp.org>
7411
7412         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
7413
7414 2006-05-05  Jim Meyering  <jim@meyering.net>
7415
7416         * m4/warning.m4: New file, derived from bison's file by the same name.
7417
7418 2006-05-03  Bruno Haible  <bruno@clisp.org>
7419
7420         * lib/stdint_.h: Shorter URL.
7421         * lib/inttypes.h: Likewise.
7422
7423 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7424
7425         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
7426
7427 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7428
7429         * lib/verify.h: Document the internals better.  Most of this change
7430         was written by Bruno Haible.
7431
7432 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7433
7434         * doc/verify.texi: New file, partly based on a proposal by
7435         Bruno Haible.
7436
7437 2006-05-02  Bruno Haible  <bruno@clisp.org>
7438
7439         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
7440         test from here...
7441         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
7442
7443 2006-04-29  Bruno Haible  <bruno@clisp.org>
7444
7445         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
7446         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
7447
7448 2006-04-29  Bruno Haible  <bruno@clisp.org>
7449
7450         * gnulib-tool: Make --update option actually work.
7451
7452 2006-04-29  Bruno Haible  <bruno@clisp.org>
7453
7454         * doc/gcd.texi: New file.
7455         * doc/gnulib.texi: Include it.
7456
7457 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
7458
7459         * lib/getdate.y (get_date): When adding relative date, start with the
7460         initial time, not with the result of the first mktime call.
7461
7462 2006-04-25  Bruno Haible  <bruno@clisp.org>
7463
7464         * gnulib-tool (func_import): Output the include directives in three
7465         blocks, sorted separately.
7466         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7467
7468 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7469
7470         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
7471         to define main with arguments, for C++.  Reported by Eric Blake.
7472         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
7473         Prefer 'int main ()' to 'int main (void)', for C++.
7474         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
7475         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
7476         for 'main', for C99 and C++.
7477
7478 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7479
7480         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
7481         Don't assume that exit status -1 is valid.
7482         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7483         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
7484         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
7485         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
7486         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
7487         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
7488         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
7489         functions can be used without declaring them, or that you can
7490         exit with status -1.
7491         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
7492
7493 2006-04-24  Karl Berry  <karl@gnu.org>
7494
7495         * config/srclist.txt (longdouble.m4): sync lost.
7496
7497 2006-04-24  Eric Blake  <ebb9@byu.net>
7498
7499         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
7500
7501 2006-04-24  Bruno Haible  <bruno@clisp.org>
7502
7503         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
7504         poll() implementation in AIX.
7505         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7506
7507 2006-04-24  Bruno Haible  <bruno@clisp.org>
7508
7509         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
7510         assigned exactly once.
7511
7512 2006-04-23  Claudio Fontana  <claudio@gnu.org>
7513             Bruno Haible  <bruno@clisp.org>
7514
7515         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
7516         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
7517         for AM_CPPFLAGS.
7518
7519 2006-04-23  Bruno Haible  <bruno@clisp.org>
7520
7521         * modules/copy-file: Depend on unistd.
7522         * modules/execute: Likewise.
7523         * modules/fatal-signal: Likewise.
7524         * modules/findprog: Likewise.
7525         * modules/mkdtemp : Likewise.
7526         * modules/pipe: Likewise.
7527         * modules/wait-process: Likewise.
7528
7529 2006-04-23  Bruno Haible  <bruno@clisp.org>
7530
7531         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
7532         condition was already detected.
7533         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7534
7535 2006-04-23  Bruno Haible  <bruno@clisp.org>
7536
7537         * lib/copy-file.c: Include <unistd.h> unconditionally.
7538         * lib/execute.c: Likewise.
7539         * lib/fatal-signal.c: Likewise.
7540         * lib/findprog.c: Likewise.
7541         * lib/mkdtemp.c: Likewise.
7542         * lib/pipe.h: Likewise.
7543         * lib/pipe.c: Likewise.
7544         * lib/wait-process.h: Likewise.
7545
7546 2006-04-23  Bruno Haible  <bruno@clisp.org>
7547
7548         * gnulib-tool (func_usage): Fix --import description. Document
7549         --update.
7550         (func_import): Create temporary file in a temporary directory, if
7551         --dry-run is specified. Silence errors from 'grep' when there are no
7552         m4 files in $m4dir.
7553         (func_create_testdir): Silence errors from 'grep' when there are no
7554         m4 files in $m4dir.
7555         Reported by Karl Berry <karl@freefriends.org>.
7556
7557 2006-04-20  Bruno Haible  <bruno@clisp.org>
7558
7559         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
7560         one argument, so that the code will be portable to Autoconf 2.60.
7561         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
7562         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7563         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
7564
7565 2006-04-19  Derek Price  <derek@ximbiot.com>
7566             Eric Blake  <ebb9@byu.net>
7567
7568         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
7569         rather than "/full/path.h".  Update comment to match.  Shorten &
7570         generalize m4_translit call via AS_TR_CPP.
7571
7572 2006-04-19  Derek Price  <derek@ximbiot.com>
7573             Eric Blake  <ebb9@byu.net>
7574
7575         * lib/inttypes.h: Correct grammar in comment.
7576
7577 2006-04-18  Derek Price  <derek@ximbiot.com>
7578             Paul Eggert  <eggert@cs.ucla.edu>
7579
7580         * modules/inttypes: New file.
7581         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
7582
7583 2006-04-18  Derek Price  <derek@ximbiot.com>
7584             Paul Eggert  <eggert@cs.ucla.edu>
7585
7586         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
7587         New files.
7588
7589 2006-04-18  Derek Price  <derek@ximbiot.com>
7590             Paul Eggert  <eggert@cs.ucla.edu>
7591
7592         * lib/inttypes.h: New file.
7593         * lib/strtoimax.c: Assume <inttypes.h>.
7594
7595 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
7596
7597         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
7598         isn't mounted.  Problem reported by Kir Kolyshkin.
7599
7600 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
7601
7602         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
7603         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
7604         Derek R. Price.
7605         * lib/regex.h (RE_DUP_MAX): Update comment to match current
7606         implementation.
7607
7608 2006-04-12  Eric Blake  <ebb9@byu.net>
7609
7610         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
7611         is now done automatically by the corresponding Autoconf macro.
7612
7613 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
7614
7615         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
7616         time_r.h.
7617
7618 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7619
7620         Merge regex changes from libc, removing some of our
7621         POSIX-conformance changes that were rejected and redoing them in a
7622         less-intrusive way.
7623
7624         * lib/regcomp.c (re_compile_internal, init_dfa):
7625         Length arg is now size_t, not Idx.  All uses changed.
7626         (peek_token): Forward decl now says internal_function.
7627         (__re_error_msgid, __re_error_msgid_idx):
7628         Now static rather than extern with attribute_hidden.
7629         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
7630         For some reason libc prefers K&R style defns for external functions.
7631         (regerror) [!defined _LIBC]: Likewise.
7632         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
7633         (seek_collating_symbol_entry, lookup_collation_sequence_value):
7634         (build_range_exp, build_collating_symbol):
7635         Use K&R-style defn.
7636         (re_compile_fastmap): Use '\0' to memset, not 0.
7637         (utf8_sb_map): Make the calculations more obvious.
7638         (init_dfa, parse_bracket_exp, build_charclass_op):
7639         Call calloc and cast result, as glibc does.
7640         (init_word_char, fetch_token, peek_token, peek_token_bracket):
7641         (build_range_exp, build_collating_symbol):
7642         Now internal functions.
7643
7644         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
7645
7646         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
7647         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
7648         Don't depend on VMS; depend on __VMS instead, for POSIX
7649         namespace cleanness.
7650         (regoff_t): Define to ssize_t, not long int.
7651
7652         Remove the REG_ macros named below.  Instead, make the old names
7653         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
7654         __USE_GNU_REGEX.
7655         (REG_BACKSLASH_ESCAPE_IN_LISTS):
7656         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
7657         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
7658         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
7659         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
7660         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
7661         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
7662         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
7663         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
7664         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
7665         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
7666         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
7667         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
7668         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
7669         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
7670         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
7671         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
7672         (REG_NREGS):
7673         Remove.  All uses replaced by the old RE_* names.
7674         (RE_BACKSLASH_ESCAPE_IN_LISTS):
7675         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
7676         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
7677         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
7678         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
7679         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
7680         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
7681         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
7682         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
7683         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
7684         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
7685         Don't bother having these macros be independent of each others'
7686         values, since they no longer exist in the POSIX name space.
7687
7688         Rename the following member names back to their old names,
7689         unless !__USE_GNU_REGEX.  All uses changed back.
7690         (buffer): Renamed from re_buffer.
7691         (allocated): Renamed from re_allocated.
7692         (used): Renamed from re_used.
7693         (syntax): Renamed from re_syntax.
7694         (fastmap): Renamed from re_fastmap.
7695         (translate): Renamed from re_translate.
7696         (can_be_null): Renamed from re_can_be_null.
7697         (regs_allocated): Renamed from re_regs_allocated.
7698         (fastmap_accurate): Renamed from re_fastmap_accurate.
7699         (no_sub): Renamed from re_no_sub.
7700         (not_bol): Renamed from re_not_bol.
7701         (not_eol): Renamed from re_not_eol.
7702         (newline_anchor): Renamed from re_newline_anchor.
7703         (num_regs): Renamed from rm_num_regs.
7704         (start): Renamed from rm_start.
7705         (end): Renamed from rm_end.
7706
7707         (free_state): Move up a bit.
7708
7709         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
7710         #define to be empty.
7711         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
7712         when that is what is intended.
7713         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
7714         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
7715         (MAX): New macro.
7716         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
7717         All uses changed back to re_malloc, etc.  It's now the caller's
7718         responsibility to check for overflow; all callers changed.
7719         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
7720         (re_x2nrealloc): Remove.
7721         (free_state): Remove decl.
7722
7723         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
7724         (re_set_registers, re_exec):
7725         Use K&R-style defn.
7726
7727         2006-01-31  Roland McGrath  <roland@redhat.com>
7728
7729         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
7730         Reported by Mike Frysinger <vapier@gentoo.org>.
7731
7732         2006-01-15  Andreas Jaeger  <aj@suse.de>
7733
7734         [BZ #1950]
7735         * lib/regex_internal.c (re_string_reconstruct): Adjust for
7736         build_wcs_upper_buffer change.
7737         (build_wcs_upper_buffer): Change return type.
7738
7739         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
7740
7741         * lib/regex_internal.h: Include <stdint.h> if available.
7742
7743         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
7744
7745         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
7746
7747         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7748
7749         * lib/regcomp.c: Adjust for changed secondary hash function.
7750
7751         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
7752
7753         * lib/regex.h: Pretty printing.
7754         Clean up namespace a bit.
7755
7756         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
7757
7758         * lib/regexec.c (update_cur_sifted_state, check_arrival,
7759         check_arrival_add_next_nodes): Avoid using uninitialized variable.
7760
7761         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7762                     Ulrich Drepper  <drepper@redhat.com>
7763
7764         [BZ #1302]
7765         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
7766         changed.
7767         (bitset_word_t): Renamed from bitset_word.  All uses changed.
7768
7769         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
7770
7771         [BZ #281]
7772         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
7773         * lib/regcomp.c: Remove unnecessary uses of
7774         unsigned RE_TRANSLATE_TYPE.
7775         * lib/regex_internal.h: Likewise.
7776         * lib/regex_internal.c: Likewise.
7777         * lib/regexec.c: Likewise.
7778         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
7779
7780         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
7781
7782         * lib/regexec.c (find_recover_state): Remove unnecessary
7783         initialization.
7784         (transit_state_bkref): Make DFA a const pointer.
7785         (get_subexp): Likewise.
7786         (check_arrival): Likewise.
7787         (update_cur_sifted_state): Likewise.
7788         (re_search_internal): Likewise.
7789         (prune_impossible_nodes): Likewise.
7790         (acquire_init_state_context): Likewise.
7791         (proceed_next_node): Likewise.
7792         (set_regs): Likewise.
7793         (free_fail_stack_return): Likewise.
7794         (check_arrival_expand_ecl): Mark DFA parameter as const.
7795         (check_arrival_expand_ecl_sub): Likewise.
7796         (check_subexp_limits): Likewise.
7797         (sub_epsilon_src_nodes):  Likewise.
7798         (add_epsilon_src_nodes):  Likewise.
7799         (merge_state_array): Likewise.
7800         (update_regs): Likewise.
7801         (build_trtable): Likewise.
7802         (sift_states_backward): Mark MCTX parameter as const.
7803         (build_sifted_states): Likewise.
7804         (update_cur_sifted_state): Likewise.
7805         (sift_states_mkref): Likewise.
7806         (check_arrival_expand_ecl): Mark eclosure as const.
7807         (check_dst_limits_calc_pos_1): Likewise.
7808         * lib/regex_internal.h (re_match_context_t): Make dfa a const
7809         pointer.
7810
7811         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
7812
7813         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
7814         (transit_state_sb): Likewise.
7815         (transit_state_mb): Likewise.
7816         (sift_states_iter_mb): Likewise.
7817         (check_arrival_add_next_nodes): Likewise.
7818         (check_node_accept_bytes): Change first parameter to pointer-to-const.
7819         [_LIBC] (re_search_2_stub): Use mempcpy.
7820
7821         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
7822         mbrtowc for very simple UTF-8 case.
7823
7824         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
7825         a pointer-to-const.
7826         (re_acquire_state_context): Likewise.
7827         * lib/regex_internal.h: Adjust prototypes.
7828
7829         * lib/regex.c: Prevent using C++ compilers.
7830
7831         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
7832         (re_acquire_state_context): Likewise.
7833
7834 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7835
7836         * modules/regex (Depends-on): Add ssize_t.
7837
7838 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7839
7840         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
7841         translation table.
7842
7843 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7844
7845         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
7846
7847 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
7848             Bruno Haible  <bruno@clisp.org>
7849
7850         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
7851         <sys/types.h> and <inttypes.h>.
7852
7853 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7854
7855         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
7856         `__error_t_defined', so argp.h will not typedef the former.
7857
7858 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7859
7860         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
7861         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
7862         glibc names.  Even if glibc is changed to conform to POSIX, the
7863         traditional names will be available anyway, since regex depends on
7864         the extensions module.  Also, fix a longstanding typo in the
7865         implementation of Spencer ERE test #75 from grep 2.3.  Problems
7866         reported by Emanuele Giaquinta.  Also, change sense of cached
7867         variable, so that the message makes sense.
7868
7869 2006-03-24  Simon Josefsson  <jas@extundo.com>
7870
7871         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
7872         including some doc fixes.
7873         (base64_encode_alloc): Fix +1 bug on allocation failures.
7874
7875 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7876
7877         * lib/base64.c (base64_encode): Do not read past end of array with
7878         unsanitized input on systems with CHAR_BIT > 8.
7879
7880 2006-03-24  Eric Blake  <ebb9@byu.net>
7881
7882         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
7883
7884 2006-03-22  Karl Berry  <karl@gnu.org>
7885
7886         * config/srclist.txt (*setenv.[ch]): get from coreutils.
7887         * config/srclistvars.sh (COREUTILS): new var.
7888
7889 2006-03-17  Jim Meyering  <jim@meyering.net>
7890
7891         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
7892         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
7893
7894 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7895
7896         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
7897         no longer needs it.  Instead, check that regoff_t is as least
7898         as wide as ptrdiff_t.
7899
7900         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
7901         so that our regex.h stays compatible with the installed regex.
7902         This is helpful for installers who configure --without-included-regex.
7903         Problem reported by Emanuele Giaquinta.
7904
7905 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7906
7907         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
7908         Typedef to long int, not to off_, as POSIX will likely change
7909         in that direction.
7910
7911 2006-03-15  Eric Blake  <ebb9@byu.net>
7912
7913         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
7914
7915 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7916
7917         * lib/argp-help.c (validate_uparams): Fix typo
7918         * lib/argp-parse.c (argp_default_options): Consistently begin help
7919         messages with a lowercase letter.
7920
7921 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
7922
7923         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
7924         overrun buffers and shouldn't be used (much as gets shouldn't be
7925         used).
7926         * lib/time_r.c (asctime_r, ctime_r): Likewise.
7927
7928 2006-03-08  Simon Josefsson  <jas@extundo.com>
7929
7930         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
7931         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7932
7933 2006-03-08  Simon Josefsson  <jas@extundo.com>
7934
7935         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
7936         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7937
7938 2006-03-08  Simon Josefsson  <jas@extundo.com>
7939
7940         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
7941         signal that configure disabled the device.
7942
7943 2006-03-08  Simon Josefsson  <jas@extundo.com>
7944
7945         * build-aux/maint.mk: Fix refresh-po, to handle no translated
7946         languages.
7947
7948 2006-03-07  Simon Josefsson  <jas@extundo.com>
7949
7950         * modules/getopt (Depends-on): Add unistd.
7951
7952         * modules/unistd: New file.
7953
7954 2006-03-07  Simon Josefsson  <jas@extundo.com>
7955
7956         * modules/gc-random: New file.
7957
7958 2006-03-07  Simon Josefsson  <jas@extundo.com>
7959
7960         * m4/unistd_h.m4: New file.
7961
7962 2006-03-07  Simon Josefsson  <jas@extundo.com>
7963
7964         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
7965         test to be side-effect free by storing the result in the cache
7966         variable gl_cv_lib_readline, and moving the assignment of
7967         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
7968         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7969
7970 2006-03-07  Simon Josefsson  <jas@extundo.com>
7971
7972         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
7973         error on missing devices (the functions will return an error).
7974
7975         * m4/gc.m4: Move random stuff to gc-random.m4
7976
7977 2006-03-07  Simon Josefsson  <jas@extundo.com>
7978
7979         * lib/unistd_.h: New file.
7980
7981 2006-03-07  Simon Josefsson  <jas@extundo.com>
7982
7983         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
7984
7985 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7986
7987         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
7988         Problem reported by Juan Manuel Guerrero.
7989
7990 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7991
7992         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
7993         the unistd module.
7994         * lib/getlogin_r.c: Likewise.
7995         * lib/getlogin_r.h: Likewise.
7996         * lib/glob.c: Likewise.
7997         * lib/pagealign_alloc.c: Likewise.
7998         * lib/unistd_.h: Remove; no longer needed.
7999
8000 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8001
8002         * MODULES.html.sh (Support for systems lacking POSIX:2001):
8003         Add unistd.
8004         * modules/c-stack (Depends-on): Add unistd.
8005         * modules/getlogin_r: Likewise.
8006         * modules/glob: Likewise.
8007         * modules/pagealign_alloc: Likewise.
8008         * modules/unistd (Files): Remove lib/unistd_.h.
8009         (EXTRA_DIST): Remove.
8010         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
8011         need unistd_.h.
8012         (MOSTLYCLEANFILES): Remove unistd.h-t.
8013
8014 2006-03-03  Simon Josefsson  <jas@extundo.com>
8015
8016         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
8017
8018 2006-03-03  Simon Josefsson  <jas@extundo.com>
8019
8020         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
8021         libidn and bison.
8022
8023 2006-03-03  Simon Josefsson  <jas@extundo.com>
8024
8025         * build-aux/maint.mk: Add indent target.
8026
8027 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
8028
8029         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
8030         our replacement poll.h in any case, to avoid a differing
8031         declaration from a system header.  Seen on AIX.
8032
8033 2006-03-01  Simon Josefsson  <jas@extundo.com>
8034
8035         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
8036         <kasal@ucw.cz>.
8037
8038 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8039
8040         * modules/gettime (Depends-on): Add extensions module.
8041         * modules/nanosleep (Depends-on): Likewise.
8042         * modules/settime (Depends-on): Likewise.
8043
8044 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8045
8046         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
8047         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
8048         pedantically.
8049         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8050         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
8051
8052         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
8053         not "==".  Reported by Ralf Wildenhues.
8054
8055 2006-03-01  Karl Berry  <karl@gnu.org>
8056
8057         * doc/Copyright/request-*: new files, synced from gnuorg.
8058
8059 2006-03-01  Karl Berry  <karl@gnu.org>
8060
8061         * config/srclist.txt (Copyright/*): new entries.
8062
8063 2006-02-28  Simon Josefsson  <jas@extundo.com>
8064
8065         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
8066
8067 2006-02-27  Simon Josefsson  <jas@extundo.com>
8068
8069         * lib/base64.h: Indent #define's.  From Jim Meyering
8070         <jim@meyering.net>.
8071
8072 2006-02-27  Jim Meyering  <jim@meyering.net>
8073
8074         Revert the change of 2006-02-24, so these files can continue
8075         to be sync'd from gettext.
8076         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8077         of `config.h'.
8078
8079 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8080
8081         * modules/intprops: New file.
8082         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8083         Add intprops.
8084         * modules/getloadavg (Files): Remove lib/intprops.h.
8085         (Depends-on): Add intprops.
8086         * modules/human: Likewise.
8087         * modules/inttostr: Likewise.
8088         * modules/openat: Likewise.
8089         * modules/sig2str: Likewise.
8090         * modules/userspec: Likewise.
8091         * modules/utimecmp: Likewise.
8092         * modules/xnanosleep: Likewise.
8093         * modules/xstrtol: Likewise.
8094
8095 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8096
8097         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8098         * modules/lock-tests (TESTS): Use $(EXEEXT).
8099         * modules/tls-tests: Likewise.
8100         * modules/argp-tests: Likewise.
8101         (check_PROGRAMS): New var, replacing...
8102         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8103
8104 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8105
8106         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8107         `config.h'.
8108
8109 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8110
8111         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8112
8113 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8114
8115         Sync from coreutils.
8116         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8117         gl_CHDIR_SAFER.
8118
8119 2006-02-22  Jim Meyering  <jim@meyering.net>
8120
8121         Sync from coreutils.
8122         * m4/chdir-safer.m4: New file.
8123
8124 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8125
8126         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8127         AT_FDCWD exceeds INT_MAX.
8128         * lib/openat.h (AT_FDCWD): Likewise.
8129
8130 2006-02-17  Eric Blake  <address@hidden>
8131
8132         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8133
8134 2006-02-16  Simon Josefsson  <jas@extundo.com>
8135
8136         * modules/getaddrinfo (Depends-on): Add sys_socket.
8137
8138 2006-02-15  Simon Josefsson  <jas@extundo.com>
8139
8140         * build-aux/maint.mk: Add dsyntax-check rule.
8141
8142 2006-02-15  Eric Blake  <ebb9@byu.net>
8143
8144         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8145         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8146         'present but cannot compile' warnings on cygwin.
8147         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8148         use ws2tcpip.h if sys/socket.h works.
8149         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8150         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8151
8152 2006-02-14  Simon Josefsson  <jas@extundo.com>
8153
8154         * modules/maintainer-makefile (Files): Rename.
8155
8156         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8157         and (the local) Makefile.cfg to maint-cfg.mk.
8158
8159         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8160         to the latter.
8161
8162         * modules/maintainer-makefile: New module.
8163
8164         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
8165         severaly stripped to make it possible to build it up from scratch
8166         with reliable tests.
8167
8168         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
8169         fixes to permit overriding the default actions when configure and
8170         makefile are not available.
8171
8172 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8173
8174         Sync from coreutils.
8175         * modules/lstat (Depends-on): Don't depend on xalloc.
8176         (License): Change from GPL to LGPL, since this is now simply a
8177         replacement for a libc function.
8178
8179 2006-02-14  Jim Meyering  <jim@meyering.net>
8180
8181         Sync from coreutils.
8182
8183         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
8184         failure on deficient systems, and simplify gnulib lgpl dependencies.
8185         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
8186         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
8187
8188         * lib/xalloc-die.c: Remove unused definition of N_.
8189
8190 2006-02-14  Jim Meyering  <jim@meyering.net>
8191
8192         Sync from coreutils.
8193         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
8194         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
8195         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
8196         double-quote uses of that variable, to accommodate the rare case in
8197         which getmntent is available in none of the libraries checked.  This
8198         happens at least on FreeBSD 5.0.
8199
8200 2006-02-13  Simon Josefsson  <jas@extundo.com>
8201
8202         * gnulib-tool (Usage): Fix --import, from
8203         karl@freefriends.org (Karl Berry).
8204
8205 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8206
8207         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
8208
8209 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
8210
8211         * lib/argp-namefrob.h: Restore changes accidentally lost during the
8212         "autoupdate" on 2005-12-12.
8213
8214 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8215
8216         * modules/closeout (Depends-on): Remove atexit.
8217
8218 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8219
8220         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
8221         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
8222
8223 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8224
8225         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
8226         __EXTENSIONS__ if this causes compilation to fail.  Problem
8227         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
8228         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
8229
8230 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
8231
8232         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
8233         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
8234         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
8235         All uses changed.
8236
8237 2006-01-26  Simon Josefsson  <jas@extundo.com>
8238
8239         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
8240         prototype is visible on mingw32.
8241
8242         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
8243         for mingw32.
8244
8245         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
8246         mingw32).
8247
8248 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
8249
8250         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
8251         attempt to open for write; this always fails, at least on POSIX
8252         hosts.  This reinstates the 2006-01-09 change, which was
8253         inadvertently removed.
8254
8255 2006-01-26  Bruno Haible  <bruno@clisp.org>
8256
8257         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
8258         Reported by Paul Eggert.
8259
8260 2006-01-26  Bruno Haible  <bruno@clisp.org>
8261             Paul Eggert  <eggert@cs.ucla.edu>
8262
8263         * lib/stdbool_.h (_Bool)
8264         [(! (defined __cplusplus || defined __BEOS__)
8265           && !defined __GNUC__
8266           && !(defined __HP_cc || defined __xlc__
8267                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
8268                || defined __sgi))]:
8269         #define to signed char in these cases too; this simplifies
8270         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
8271         etc., separately) and makes it more conservative.
8272
8273 2006-01-25  Simon Josefsson  <jas@extundo.com>
8274
8275         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
8276         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
8277         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
8278
8279 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8280
8281         * lib/argp-namefrob.h: Bugfix. Remove stray #
8282
8283 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
8284
8285         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
8286         so that we test the test.
8287         Check for yet another HP-UX cc bug involving *bool |= bool.
8288
8289 2006-01-25  Karl Berry  <karl@gnu.org>
8290
8291         * config/srclist.txt (vasnprintf.c): sync lost.
8292
8293 2006-01-25  Jim Meyering  <jim@meyering.net>
8294
8295         Sync from the stable (b5) branch of coreutils:
8296
8297         * lib/fts.c (fts_children): Don't let close() clobber errno from
8298         failed fchdir().
8299
8300         * lib/fts.c (fts_stat): When following a symlink-to-directory,
8301         don't necessarily interpret stat-fails+lstat-succeeds as indicating
8302         a dangling symlink.  That can also happen at least for ELOOP.
8303         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
8304         FYI, this bug predates the inclusion of fts.c in coreutils.
8305
8306         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
8307         in their own block, so pre-c99 compilers don't object.
8308
8309         Avoid the double-free (first in fts_read, second in fts_close) that
8310         would occur when an `active' directory is made inaccessible (e.g.,
8311         via chmod a-x) during a traversal.
8312         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8313         before returning.  Reproduce this failure by
8314         mkdir -p a/b; cd a; chmod a-x . b
8315         Reported by Stavros Passas.
8316
8317 2006-01-25  Jim Meyering  <jim@meyering.net>
8318
8319         * lib/fileblocks.c: Remove more useless parentheses.
8320         * lib/readutmp.h: Likewise.
8321
8322 2006-01-25  Bruno Haible  <bruno@clisp.org>
8323
8324         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
8325         warnings.
8326         Reported by Paul Eggert.
8327
8328 2006-01-25  Bruno Haible  <bruno@clisp.org>
8329
8330         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
8331         rid of a trap command. For Solaris sh.
8332         Reported by Mark D. Baushke <mdb@gnu.org>.
8333
8334 2006-01-24  Simon Josefsson  <jas@extundo.com>
8335
8336         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
8337         Bruno.
8338
8339 2006-01-24  Karl Berry  <karl@gnu.org>
8340
8341         * config/srclist.txt (argp-namefrob.h): sync lost.
8342
8343 2006-01-24  Jim Meyering  <jim@meyering.net>
8344
8345         * modules/openat (Files): Add lib/intprops.h.
8346         From Mark D. Baushke.
8347
8348 2006-01-24  Jim Meyering  <jim@meyering.net>
8349
8350         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
8351         Reported by Mark D. Baushke.
8352
8353 2006-01-24  Jim Meyering  <jim@meyering.net>
8354
8355         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
8356
8357 2006-01-24  Bruno Haible  <bruno@clisp.org>
8358
8359         * modules/strnlen (Maintainer): Change from glibc to all.
8360
8361 2006-01-24  Bruno Haible  <bruno@clisp.org>
8362
8363         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
8364         Patch by Paul Eggert.
8365
8366 2006-01-24  Bruno Haible  <bruno@clisp.org>
8367
8368         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
8369         already has it.
8370         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
8371         2005-11-26.
8372
8373         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
8374         'signed char' to avoid problems with the built-in _Bool type.
8375         Reported by Paul Eggert on 2005-11-26.
8376
8377 2006-01-24  Bruno Haible  <bruno@clisp.org>
8378
8379         * gnulib-tool (func_import): Avoid constructing complicated sed
8380         expressions inside backquote.
8381         Report and solution by Mark D. Baushke <mdb@gnu.org>.
8382
8383 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
8384
8385         These changes imported from libc.
8386         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
8387         test and two separate function calls.
8388         * lib/strndup.c (__strndup): Add libc_hidden_def.
8389
8390 2006-01-23  Simon Josefsson  <jas@extundo.com>
8391
8392         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
8393         Remove the test_*_SOURCES variable: automake infers it by default.
8394         * modules/tls-tests: Likewise.
8395
8396 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8397
8398         Work around porting bugs reported by Dieter in
8399         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
8400         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
8401         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
8402         Include "getopt.h" first, to check interface.
8403         (getenv): Declare only if defined HAVE_DECL_GETENV &&
8404         !HAVE_DECL_GETENV.
8405         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
8406         (__strndup): Revert to K&R-style function dfns, the glibc style.
8407         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
8408         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
8409         Include strnlen.h first, to get prototype properly.
8410         (strnlen): Renamed from __strnlen.
8411         Remove weak alias.
8412
8413 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8414
8415         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
8416
8417 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8418
8419         * config/srclist.txt: Adjust to reflect glibc reorganization.
8420         This affects only comments.
8421
8422 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8423
8424          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
8425          Reported by Bruce Korb <bkorb@gnu.org>.
8426
8427 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
8428
8429         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
8430         to pacify gcc -Wswitch-default.
8431
8432 2006-01-22  Bruno Haible  <bruno@clisp.org>
8433
8434         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
8435         temporary buffer for sprintf, take into account the precision also
8436         for 'd', 'i', 'u', 'o', 'x', 'X'.
8437
8438 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8439
8440         * modules/argp-tests: New module
8441         * tests/test-argp.c: New file
8442         * tests/test-argp-2.sh: New file
8443
8444 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8445
8446         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
8447         (__argp_base_name): Removed
8448         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
8449         typo.
8450         (__argp_base_name): Provide macro definition or extern declaration
8451         depending on the configuration
8452
8453 2006-01-20  Simon Josefsson  <jas@extundo.com>
8454
8455         * modules/inet_ntop (Depends-on): Depend on sys_socket.
8456
8457 2006-01-20  Simon Josefsson  <jas@extundo.com>
8458
8459         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
8460
8461 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
8462
8463         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
8464         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
8465         Suggested by Bruno Haible.
8466
8467 2006-01-20  Karl Berry  <karl@gnu.org>
8468
8469         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
8470         until changes propagate, I guess.
8471
8472 2006-01-19  Simon Josefsson  <jas@extundo.com>
8473
8474         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
8475
8476 2006-01-19  Simon Josefsson  <jas@extundo.com>
8477
8478         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
8479
8480 2006-01-19  Simon Josefsson  <jas@extundo.com>
8481
8482         * gnulib-tool: Set check_PROGRAMS.
8483
8484         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8485         modules/des-tests, modules/gc-arcfour-tests,
8486         modules/gc-arctwo-tests, modules/gc-des-tests,
8487         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8488         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8489         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8490         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8491         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8492         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
8493         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
8494         test_*_SOURCES.
8495
8496 2006-01-18  Simon Josefsson  <jas@extundo.com>
8497
8498         * modules/socklen (Depends-on): Depend on sys_socket.
8499
8500 2006-01-18  Simon Josefsson  <jas@extundo.com>
8501
8502         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8503         modules/des-tests, modules/gc-arcfour-tests,
8504         modules/gc-arctwo-tests, modules/gc-des-tests,
8505         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8506         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8507         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8508         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8509         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8510         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
8511         $(EXEEXT) to automake TESTS variable, for mingw32.
8512
8513 2006-01-17  Simon Josefsson  <jas@extundo.com>
8514
8515         * modules/socklen (Include): Need sys/socket.h.
8516
8517 2006-01-17  Bruno Haible  <bruno@clisp.org>
8518
8519         * modules/ssize_t (Include): Add <sys/types.h>.
8520
8521 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
8522
8523         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
8524         it's not portable and it doesn't work with cross-compiles.
8525         Problem reported by Bruno Haible.  Fix missing-$ typo in
8526         'test "gl_cv_ignore_unused_libraries" ...' that prevented
8527         -zignore from being used with Sun's C compiler.
8528
8529 2006-01-12  Simon Josefsson  <jas@extundo.com>
8530
8531         * lib/base64.c: Fix warning, reported by Bruno Haible
8532         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
8533
8534 2006-01-12  Bruno Haible  <bruno@clisp.org>
8535
8536         * modules/ldd: New file.
8537         * build-aux/ldd.sh.in: New file.
8538         * MODULES.html.sh (Support for building libraries and executables): Add
8539         ldd.
8540
8541 2006-01-12  Bruno Haible  <bruno@clisp.org>
8542
8543         * m4/ldd.m4: New file.
8544
8545 2006-01-12  Bruno Haible  <bruno@clisp.org>
8546
8547         * gnulib-tool (func_import, func_create_testdir): Don't go into an
8548         endless loop while replacing $auxdir with build-aux.
8549
8550 2006-01-11  Simon Josefsson  <jas@extundo.com>
8551
8552         * lib/stdint_.h (SIZE_MAX): Add missing (.
8553
8554 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
8555
8556         Sync from coreutils.
8557         * lib/md5.c: Fix commentary typos.
8558         (alignof, UNALIGNED_P): No need for a GCC-specific version.
8559         * lib/md5.h (__attribute__): Remove; unused.
8560         * lib/sha1.c: Fix commentary to match md5 better.
8561         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
8562         so that we don't need to worry about alignment.  All uses changed.
8563         This merges the 2005-10-28 md5 change into sha1.
8564
8565 2006-01-11  Jim Meyering  <jim@meyering.net>
8566
8567         Sync from coreutils.
8568         * lib/md5.c (OP): Fix spacing.
8569
8570 2006-01-11  Bruno Haible  <bruno@clisp.org>
8571
8572         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8573         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
8574         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
8575
8576 2006-01-11  Bruno Haible  <bruno@clisp.org>
8577
8578         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8579         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
8580         the "early" section as well.
8581
8582 2006-01-11  Bruno Haible  <bruno@clisp.org>
8583
8584         Avoid "ar: no archive members specified" error on MacOS X.
8585         * gnulib-tool (func_modules_add_dummy): New function.
8586         (func_import, func_create_testdir): Invoke it.
8587
8588 2006-01-11  Bruno Haible  <bruno@clisp.org>
8589
8590         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
8591         with $auxdir in AC_CONFIG_FILES statements.
8592
8593 2006-01-11  Bruno Haible  <bruno@clisp.org>
8594
8595         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8596         Initialize also noinst_HEADERS to empty.
8597
8598 2006-01-11  Bruno Haible  <bruno@clisp.org>
8599
8600         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
8601         variables.
8602         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
8603         autoreconf.
8604
8605 2006-01-11  Bruno Haible  <bruno@clisp.org>
8606
8607         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
8608         overridable by the user.
8609         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8610
8611 2006-01-10  Simon Josefsson  <jas@extundo.com>
8612
8613         * modules/sys_socket: New file.
8614
8615 2006-01-10  Simon Josefsson  <jas@extundo.com>
8616
8617         * m4/sys_socket_h.m4: New file.
8618
8619 2006-01-10  Simon Josefsson  <jas@extundo.com>
8620
8621         * lib/socket_.h: New file.
8622
8623 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8624
8625         * modules/readutmp (Maintainer): Add myself.
8626
8627 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8628
8629         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
8630         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
8631         People who are still concerned with buggy memcmp implementations
8632         can invoke gl_FUNC_MEMCMP themselves.
8633
8634 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8635
8636         * lib/regex_internal.h (BITSET_WORD_BITS):
8637         Work around a bug in 64-bit PGC (before version 6.1-2), where the
8638         preprocessor mishandles large unsigned values as if they were signed.
8639         Problem reported by Claudio Fontana in
8640         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
8641
8642 2006-01-10  Jim Meyering  <jim@meyering.net>
8643
8644         Avoid the double-free (first in fts_read, second in fts_close) that
8645         would occur when an `active' directory is made inaccessible (e.g.,
8646         via chmod a-x) during a traversal.
8647         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8648         before returning.  Reproduce this failure by
8649         mkdir -p a/b; cd a; chmod a-x . b
8650         Reported by Stavros Passas.
8651
8652         Sync from coreutils.
8653         * lib/sha1.c: Tweak grammar in a comment.
8654
8655 2006-01-10  Jim Meyering  <jim@meyering.net>
8656
8657         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
8658         Patch by Joerg Sonnenberger.
8659
8660 2006-01-10  Bruno Haible  <bruno@clisp.org>
8661
8662         * modules/readutmp: Depend on module free.
8663         * modules/strtok_r: Depend on module restrict.
8664
8665 2006-01-10  Bruno Haible  <bruno@clisp.org>
8666
8667         * modules/gettext (configure.ac): Add an invocation of
8668         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
8669
8670 2006-01-10  Bruno Haible  <bruno@clisp.org>
8671
8672         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
8673         Reported by Werner Lemberg <wl@gnu.org>.
8674
8675 2006-01-10  Bruno Haible  <bruno@clisp.org>
8676
8677         * lib/localcharset.c: Update from GNU gettext.
8678
8679 2006-01-10  Bruno Haible  <bruno@clisp.org>
8680
8681         * lib/argp.h (__const): Remove macro. Use const instead.
8682         * lib/argp-fmtstream.h (__const): Likewise.
8683         * lib/glob_.h (__const): Remove macro.
8684         * lib/glob-libc.h: Use const instead of __const.
8685
8686 2006-01-10  Bruno Haible  <bruno@clisp.org>
8687
8688         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
8689         variable.
8690         Needed to avoid an automake error regarding the 'gettext' module.
8691
8692 2006-01-09  Simon Josefsson  <jas@extundo.com>
8693
8694         * modules/inet_ntop (Depends-on): Add restrict.
8695
8696 2006-01-09  Simon Josefsson  <jas@extundo.com>
8697
8698         * modules/gc-rijndael-tests (License): Put under LGPL.
8699
8700         * modules/gc-des-tests (License): Likewise.
8701
8702         * modules/gc-arcfour-tests (License): Likewise.
8703
8704         * modules/gc-arctwo-tests (License): Likewise.
8705
8706         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
8707
8708         * modules/gc-hmac-sha1-tests (Files): Likewise.
8709
8710         * modules/gc-hmac-md5-tests (License): Likewise.
8711
8712         * modules/gc-sha1-tests (License): Likewise.
8713
8714         * modules/gc-md5-tests (License): Likewise.
8715
8716         * modules/gc-md4-tests (License): Likewise.
8717
8718         * modules/gc-md2-tests (License): Likewise.
8719
8720         * modules/gc-tests (License): Likewise.
8721
8722         * modules/des-tests (License): Likewise.
8723
8724         * modules/md4-tests (License): Likewise.
8725
8726         * modules/md2-tests (License): Likewise.
8727
8728 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8729
8730         Sync from coreutils:
8731
8732         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
8733         * modules/lib-ignore: New file.
8734         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
8735         chdir-safer.m4, lchmod.m4.
8736         * modules/openat: Add mkdirat.c, openat-priv.h.
8737
8738 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8739
8740         Sync from coreutils.
8741         * m4/lib-ignore.m4: New file.
8742         * m4/lchmod.m4: New file.
8743
8744 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8745
8746         Sync from coreutils.
8747         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
8748         for write access: POSIX says that must fail.
8749         * lib/fts.c (diropen): Likewise.
8750         * lib/save-cwd.c (save_cwd): Likewise.
8751         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
8752         well, for minor improvements on hosts that lack O_DIRECTORY.
8753         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
8754         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
8755         Fall back on chown if open failed with EACCES.
8756
8757         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
8758         Report an error at compile-time if only a 1-second nominal clock
8759         resolution is found.
8760
8761         * lib/lchmod.h: New file.
8762         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
8763         (make_dir_parents): Use lchown rather than chown, and
8764         lchmod rather than chmod.
8765
8766         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
8767         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
8768         "proc" reported by n0dalus.
8769
8770         * lib/mountlist.c: Include <limits.h>.
8771         (dev_from_mount_options)
8772         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
8773         New function.  It no longer assumes "dev=" has the System V meaning
8774         on Linux (since it doesn't).  It also parses "dev=" more carefully.
8775         (read_file_system_list)
8776         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
8777         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
8778         dev= in that case.
8779
8780         * lib/posixtm.h (PDS_PRE_2000): New macro.
8781         * lib/posixtm.c (year): Arg is now syntax_bits rather than
8782         allow_century.  All usages changed.  Reject dates outside the range
8783         1969-1999 if PDS_PRE_2000 is used.
8784
8785 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8786
8787         Sync from coreutils.
8788         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
8789         (Time of day items): Mention the possibility of leap seconds.
8790         Problem reported by Dr. David Alan Gilbert.
8791
8792 2006-01-09  Jim Meyering  <jim@meyering.net>
8793
8794         Sync from coreutils.
8795
8796         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
8797
8798         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
8799
8800         * lib/modechange.c (mode_compile): Reject an invalid mode string
8801         that starts with an octal digit.  From Andreas Gruenbacher.
8802
8803         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
8804         and dup to open_safer and dup_safer, respectively.
8805         (openat_permissive): Fix typo in comment.
8806
8807         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
8808         "gettext.h"; either no longer needed or are guaranteed by openat.h.
8809         (_): Remove; no longer needed.
8810         (openat): Renamed from rpl_openat; no need for rpl_openat
8811         since openat.h renames openat for us.
8812         Replace most of the body with a call to openat_permissive,
8813         to avoid duplicate code.
8814         Port to (probably hypothetical) environments were mode_t is
8815         wider than int.
8816         (openat_permissive): Require mode arg, so that we can check
8817         types better.  Put it just after flags.  Change cwd failure
8818         indicator from pointer-to-bool to pointer-to-errno-value.
8819         All callers changed.
8820         Invoke openat_save_fail and/or openat_restore_fail if
8821         cwd_errno is null, so that openat can call us.
8822         (openat_permissive, fdopendir, fstatat, unlinkat):
8823         Simplify errno handling to avoid some duplicate code,
8824         as it's OK to set errno on success.
8825         * lib/openat.h: Revamp code so that function macros depend on
8826         __OPENAT_PREFIX only, not also on AT_FDCWD.
8827         (openat_ro): Remove.  Caller changed to use openat_permissive.
8828         (openat_permissive): Now a macro, if not a function.
8829         (openat_restore_fail, openat_save_fail): Now always functions,
8830         since mkdirat needs them even if __OPENAT_PREFIX is defined.
8831
8832         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
8833         and openat.c.
8834         * lib/mkdirat.c: Include openat-priv.h.
8835         Remove definitions of macros defined therein.
8836         * lib/openat.c: Likewise.
8837
8838         * lib/mkdirat.c (mkdirat): New file and function.
8839         * lib/openat.h (mkdirat): Declare.
8840
8841         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
8842
8843         * lib/openat.h (openat_permissive): Declare.
8844         (openat_ro): Define.
8845
8846         * lib/openat.c (EXPECTED_ERRNO): New macro.
8847         (openat_permissive): New function -- used in remove.c rewrite.
8848         (all functions): Set errno just before returning, only if there
8849         was an actual failure.
8850         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
8851
8852         Emulate openat-family functions using Linux's procfs, if possible.
8853         Idea and some code based on Ulrich Drepper's glibc changes.
8854
8855         * lib/openat.c: (BUILD_PROC_NAME): New macro.
8856         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
8857         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
8858         before falling back on save_cwd and restore_cwd.
8859         (fdopendir, fstatat, unlinkat): Likewise.
8860
8861         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
8862         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
8863
8864         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
8865         as second argument to va_arg.  Otherwise, some versions of gcc
8866         warn that `if this code is reached, the program will abort'.
8867
8868 2006-01-09  Jim Meyering  <jim@meyering.net>
8869
8870         Sync from coreutils.
8871         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
8872         Require openat-priv.h.
8873
8874 2006-01-09  Bruno Haible  <bruno@clisp.org>
8875
8876         * modules/strnlen (Include): Use strnlen.h.
8877
8878 2006-01-09  Bruno Haible  <bruno@clisp.org>
8879
8880         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
8881
8882 2006-01-09  Bruno Haible  <bruno@clisp.org>
8883
8884         * lib/sysexit_.h (EX_OK): New macro.
8885         Suggested by Martin Lambers <marlam@marlam.de>.
8886
8887 2006-01-09  Bruno Haible  <bruno@clisp.org>
8888
8889         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
8890         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
8891
8892 2006-01-09  Bruno Haible  <bruno@clisp.org>
8893
8894         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
8895         numbers.
8896
8897 2006-01-09  Bruno Haible  <bruno@clisp.org>
8898
8899         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
8900         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
8901         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
8902         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
8903
8904 2006-01-09  Bruno Haible  <bruno@clisp.org>
8905
8906         * build-aux/javacomp.sh.in: New file, moved from lib/.
8907         * modules/javacomp-script (Files): Update.
8908         (configure.ac): Add AC_CONFIG_FILES invocation.
8909         (EXTRA_DIST): Remove variable.
8910
8911         * build-aux/javaexec.sh.in: New file, moved from lib/.
8912         * modules/javaexec (Files): Update.
8913         (configure.ac): Add AC_CONFIG_FILES invocation.
8914         (EXTRA_DIST): Remove javaexec.sh.in.
8915
8916         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
8917         * modules/csharpcomp-script (Files): Update.
8918         (configure.ac): Add AC_CONFIG_FILES invocation.
8919         (EXTRA_DIST): Remove variable.
8920
8921         * build-aux/csharpexec.sh.in: New file, moved from lib/.
8922         * modules/csharpexec (Files): Update.
8923         (configure.ac): Add AC_CONFIG_FILES invocation.
8924         (EXTRA_DIST): Remove csharpexec.sh.in.
8925
8926 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8927
8928         Sync from coreutils.
8929
8930         Add POSIX ACL support
8931         * lib/acl.h (copy_acl, set_acl): Add declarations.
8932         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
8933         systems other than Linux.
8934         (chmod_or_fchmod): New function: use fchmod when possible,
8935         and chmod otherwise.
8936         (file_has_acl): Add a POSIX ACL implementation, with a
8937         Linux-specific subcase.
8938         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
8939         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
8940         acls are unsupported.
8941         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
8942         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
8943         are unsupported.
8944
8945 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8946
8947         Sync from coreutils.
8948         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
8949
8950 2006-01-07  Bruno Haible  <bruno@clisp.org>
8951
8952         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
8953         gl_EARLY.
8954
8955 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8956
8957         * lib/strftime.c (tzname): Don't declare if it is already #defined.
8958         Problem reported for Mingw by Mark Junker.
8959
8960 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8961
8962         * README: Gnulib normally doesn't generate a tarball.
8963
8964 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
8965
8966         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
8967         long int, not int, for nanosecond counts, so that people who are
8968         used to POSIX struct timespec won't be surprised.  Reported by Jim
8969         Meyering.
8970
8971 2005-12-28  Bruno Haible  <bruno@clisp.org>
8972
8973         * build-aux/config.rpath: Update from GNU gettext.
8974
8975 2005-12-16  Jim Meyering  <jim@meyering.net>
8976
8977         * modules/fprintftime: New module.
8978         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
8979
8980 2005-12-16  Jim Meyering  <jim@meyering.net>
8981
8982         * m4/fprintftime.m4: New file.
8983
8984 2005-12-16  Jim Meyering  <jim@meyering.net>
8985
8986         * lib/fprintftime.c, lib/fprintftime.h: New files.
8987
8988 2005-12-15  Simon Josefsson  <jas@extundo.com>
8989
8990         * modules/socklen (configure.ac): Fix M4 macro name, to align with
8991         new m4/socklen.m4.
8992
8993 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8994
8995         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
8996         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
8997
8998 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8999
9000         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
9001         * lib/argp-help.c (fill_in_uparams): Check if the constructed
9002         struct uparams is valid. Fall back to the default values if it is
9003         not.
9004
9005 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9006
9007         * modules/argp (Files): Add argp-pin.c
9008         (Depends-on): dirname
9009         (lib_SOURCES): Add argp-pin.c
9010
9011 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9012
9013         * m4/argp.m4:  Check if program_invocation_name and
9014         program_invocation_short_name are declared and define appropriate
9015         macros if they are not.
9016
9017 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9018
9019         * lib/argp-help.c (__argp_base_name): New function
9020         (__argp_short_program_name): Rewrite using __argp_base_name
9021         * lib/argp-namefrob.h: Define program_invocation_name and
9022         program_invocation_short_name if requested
9023         (__argp_base_name): Add prototype
9024         * lib/argp-parse.c (argp_def): Use gettext wrappers
9025         (argp_default_parser): Use __argp_base_name
9026         * lib/argp-pin.c: New file. Defines program_invocation_name and
9027         program_invocation_short_name on systems that lack them.
9028
9029 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9030
9031         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
9032         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9033         porting problem reported by Georg Schwarz in
9034         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9035
9036 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9037
9038         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
9039         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9040         porting problem reported by Georg Schwarz in
9041         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9042
9043 2005-12-05  Bruno Haible  <bruno@clisp.org>
9044
9045         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
9046         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
9047         Reported by Mark Junker <mjscod@gmx.de>.
9048
9049 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
9050
9051         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
9052         Use implementation from Albert Chin, with some
9053         comments/corrections by Stepan Kasal and myself.
9054
9055 2005-12-02  Bruno Haible  <bruno@clisp.org>
9056
9057         * gnulib-tool (func_import): Accept GPLed build tool modules when
9058         --lgpl is given.
9059         * modules/csharpcomp-script: New file.
9060         * modules/csharpcomp: Depend on it.
9061         * modules/javacomp-script: New file.
9062         * modules/javacomp: Depend on it.
9063         Suggested by Simon Josefsson.
9064
9065 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9066
9067         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
9068         statement, to work around an HP-UX 10.20 compiler bug reported by
9069         Peter O'Gorman.
9070
9071 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9072
9073         * modules/savedir (Depends-on): Add openat.
9074
9075 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9076
9077         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9078         (uintmax_t) [defined uintmax_t]: Do not declare.
9079         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9080         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9081         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9082         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9083         sake of portability to weird hosts that C allows (though we don't
9084         know of any practical examples).
9085
9086         * lib/savedir.h (fdsavedir): New decl.
9087         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9088         contains most of the former guts of savedir.
9089         (savedir): Use savedirstream.
9090         Include "openat.h".
9091
9092 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9093
9094         * modules/obstack (Files): Add m4/ulonglong.m4.
9095         Problem reported by Davide Angelocola.
9096
9097 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9098
9099         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9100         coreutils no longer futzes with rounding modes.
9101
9102 2005-11-14  Jim Meyering  <jim@meyering.net>
9103
9104         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9105         replacement of mkstemp.
9106
9107 2005-11-10  Simon Josefsson  <jas@extundo.com>
9108
9109         * lib/readline.c: Remove EOL.
9110
9111 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9112
9113         * modules/gethrxtime (Depends-on): Add gettime.
9114
9115 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9116
9117         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9118         or gettimeofday; no longer needed.
9119
9120 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9121
9122         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9123         time business.
9124         (gethrxtime) [! (HAVE_NANOUPTIME
9125         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9126         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9127         our own approximation.
9128
9129 2005-11-08  Eric Blake  <ebb9@byu.net>
9130
9131         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9132
9133 2005-11-08  Eric Blake  <ebb9@byu.net>
9134
9135         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9136
9137 2005-11-04  Bruno Haible  <bruno@clisp.org>
9138
9139         * gnulib-tool: Implement --update mode.
9140
9141 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9142
9143         Fix porting problem reported by Theodoros V. Kalamatianos.
9144         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9145         Don't assume that futimes failing means we must fail.
9146
9147 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9148
9149         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9150         variables to suggest the intended function of the PATH_MAX check.
9151
9152 2005-10-30  Kean Johnston  <jkj@sco.com>
9153
9154         Trivial changes to support SCO systems.
9155         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9156         as PATH_MAX.
9157         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9158         where __ptr is null when no I/O is pending.
9159
9160 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9161
9162         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9163         leave errno alone.  Problem reported by Dmitry V. Levin.
9164
9165 2005-10-28  Simon Josefsson  <jas@extundo.com>
9166
9167         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
9168         Test more.
9169
9170         * tests/test-gc-md2.c, tests/test-md2.c: New files.
9171
9172         * modules/md2, modules/md2-tests: New files.
9173
9174 2005-10-28  Simon Josefsson  <jas@extundo.com>
9175
9176         * m4/inet_ntop.m4: More tests.
9177
9178         * m4/gc-md2.m4, md2.m4: New file.
9179
9180 2005-10-28  Simon Josefsson  <jas@extundo.com>
9181
9182         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
9183         "restrict" keywords, as per POSIX.  Protect the function
9184         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
9185         Don't use K&R prototypes.  Check the sprintf return values.
9186         Re-define EAFNOSUPPORT if not present.  Indent.
9187
9188         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
9189         suggested by Bruno Haible <bruno@clisp.org>.
9190
9191         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
9192
9193         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
9194
9195         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
9196         libgcrypt).
9197
9198         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
9199
9200         * lib/md2.h, lib/md2.c: New files.
9201
9202 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
9203
9204         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
9205         errno alone.  Problem reported by Frederic Jolliton.
9206
9207 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9208
9209         * modules/verify (License): Change from GPL to LGPL.  This is a
9210         tiny module and there are apparently near-equivalents that are
9211         under the BSD license.
9212
9213 2005-10-24  Simon Josefsson  <jas@extundo.com>
9214
9215         * modules/sha1: Relicense to LGPL.
9216
9217 2005-10-24  Simon Josefsson  <jas@extundo.com>
9218
9219         * lib/md4.h: Shrink buffer size, now that we changed the type.
9220
9221 2005-10-23  Simon Josefsson  <jas@extundo.com>
9222
9223         * gnulib-tool (func_import): Fix --tests-base.
9224
9225 2005-10-22  Simon Josefsson  <jas@extundo.com>
9226
9227         * modules/arcfour (Depends-on): Need stdint.
9228
9229 2005-10-22  Simon Josefsson  <jas@extundo.com>
9230
9231         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
9232         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
9233
9234 2005-10-22  Simon Josefsson  <jas@extundo.com>
9235
9236         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
9237         suggested by Bruno Haible <bruno@clisp.org>.
9238
9239 2005-10-22  Simon Josefsson  <jas@extundo.com>
9240
9241         * lib/crc.h: Include stddef.h, for size_t.
9242
9243 2005-10-22  Simon Josefsson  <jas@extundo.com>
9244
9245         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
9246         arcfour_context struct (simplify test vector testing in GNU
9247         Shishi).
9248
9249 2005-10-21  Simon Josefsson  <jas@extundo.com>
9250
9251         * modules/des, modules/des-tests: New files.
9252
9253         * modules/gc-des, modules/gc-des-tests: New files.
9254
9255         * tests/test-des.c, tests/test-gc-des.c: New file.
9256
9257 2005-10-21  Simon Josefsson  <jas@extundo.com>
9258
9259         * modules/arctwo, modules/arctwo-tests: New files.
9260
9261         * tests/test-arctwo.c: New file.
9262
9263         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
9264
9265         * tests/test-gc-arctwo.c: New file.
9266
9267 2005-10-21  Simon Josefsson  <jas@extundo.com>
9268
9269         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
9270         Bruno Haible <bruno@clisp.org>.
9271
9272         * m4/gc-des.m4: New file.
9273
9274 2005-10-21  Simon Josefsson  <jas@extundo.com>
9275
9276         * m4/arctwo.m4: New file.
9277
9278         * m4/gc-arctwo.m4: New file.
9279
9280 2005-10-21  Simon Josefsson  <jas@extundo.com>
9281
9282         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
9283         block.
9284
9285 2005-10-21  Simon Josefsson  <jas@extundo.com>
9286
9287         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
9288         <bruno@clisp.org>.
9289
9290         * lib/hmac-sha1.c (hmac_sha1): Likewise.
9291
9292         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
9293         Bruno Haible <bruno@clisp.org>.
9294
9295         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
9296         <bruno@clisp.org>.
9297
9298 2005-10-21  Simon Josefsson  <jas@extundo.com>
9299
9300         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
9301
9302 2005-10-21  Simon Josefsson  <jas@extundo.com>
9303
9304         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
9305
9306 2005-10-21  Simon Josefsson  <jas@extundo.com>
9307
9308         * lib/des.h, lib/des.c: New files.
9309
9310         * lib/gc-gnulib.c: Support DES.c
9311
9312 2005-10-21  Simon Josefsson  <jas@extundo.com>
9313
9314         * lib/arctwo.h, lib/arctwo.c: New files.
9315
9316         * lib/gc-gnulib.c: Support ARCTWO.
9317
9318 2005-10-21  Simon Josefsson  <jas@extundo.com>
9319
9320         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
9321         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9322
9323 2005-10-21  Simon Josefsson  <jas@extundo.com>
9324
9325         * gnulib-tool (func_import, func_create_testdir): Define automake
9326         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
9327         Makefile.am snippet),
9328         suggested by Bruno Haible <bruno@clisp.org>.
9329
9330         * modules/gc (Makefile.am): Use it.
9331
9332 2005-10-21  Bruno Haible  <bruno@clisp.org>
9333
9334         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
9335         patch.
9336
9337 2005-10-19  Simon Josefsson  <jas@extundo.com>
9338
9339         * tests/test-gc-rijndael.c: New file.
9340
9341         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
9342
9343 2005-10-19  Simon Josefsson  <jas@extundo.com>
9344
9345         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
9346         interface too.
9347
9348 2005-10-19  Simon Josefsson  <jas@extundo.com>
9349
9350         * tests/test-gc-arcfour.c: New file.
9351
9352         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
9353
9354 2005-10-19  Simon Josefsson  <jas@extundo.com>
9355
9356         * modules/gc-md4, modules/gc-md4-tests: New file.
9357
9358         * tests/test-gc-md4.c: New file.
9359
9360 2005-10-19  Simon Josefsson  <jas@extundo.com>
9361
9362         * m4/gc-md4.m4: New file.
9363
9364 2005-10-19  Simon Josefsson  <jas@extundo.com>
9365
9366         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
9367         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
9368         <kasal@ucw.cz>.
9369
9370 2005-10-19  Simon Josefsson  <jas@extundo.com>
9371
9372         * m4/gc-arcfour.m4: New file.
9373
9374         * m4/gc-rijndael.m4: New file.
9375
9376 2005-10-19  Simon Josefsson  <jas@extundo.com>
9377
9378         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
9379
9380 2005-10-19  Simon Josefsson  <jas@extundo.com>
9381
9382         * lib/gc-gnulib.c: Support ARCFOUR.
9383
9384 2005-10-19  Simon Josefsson  <jas@extundo.com>
9385
9386         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
9387         support.
9388
9389         * lib/gc.h: Add ECB enum type.
9390
9391         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
9392
9393 2005-10-18  Simon Josefsson  <jas@extundo.com>
9394
9395         * tests/test-md5.c: New file.
9396
9397         * modules/md5-tests: New file.
9398
9399 2005-10-18  Simon Josefsson  <jas@extundo.com>
9400
9401         * tests/test-md4.c: New file.
9402
9403         * modules/md4, modules/md4-tests: New files.
9404
9405 2005-10-18  Simon Josefsson  <jas@extundo.com>
9406
9407         * m4/md4.m4: New file.
9408
9409 2005-10-18  Simon Josefsson  <jas@extundo.com>
9410
9411         * lib/md4.h, lib/md4.c: New files, based on md5.?.
9412
9413 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
9414
9415         * gnulib-tool (func_create_testdir): Omit the second check whether
9416         BUILT_SOURCES in nonempty.
9417
9418 2005-10-17  Simon Josefsson  <jas@extundo.com>
9419
9420         * tests/test-rijndael.c: New file.
9421
9422 2005-10-17  Simon Josefsson  <jas@extundo.com>
9423
9424         * modules/sha1: Depend on stdint instead of md5.
9425
9426         * modules/md5: Depend on stdint, remove uint32_t.
9427
9428 2005-10-17  Simon Josefsson  <jas@extundo.com>
9429
9430         * modules/gc-sha1-tests: New file.
9431
9432         * tests/test-gc-sha1.c: New file.
9433
9434 2005-10-17  Simon Josefsson  <jas@extundo.com>
9435
9436         * m4/md5.m4: Remove call to uint32_t.m4.
9437
9438 2005-10-17  Simon Josefsson  <jas@extundo.com>
9439
9440         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
9441
9442         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
9443         md5.h.
9444
9445         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
9446
9447         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
9448
9449 2005-10-17  Simon Josefsson  <jas@extundo.com>
9450
9451         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
9452
9453 2005-10-17  Simon Josefsson  <jas@extundo.com>
9454
9455         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
9456
9457 2005-10-17  Simon Josefsson  <jas@extundo.com>
9458
9459         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
9460
9461         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
9462
9463 2005-10-17  Bruno Haible  <bruno@clisp.org>
9464
9465         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
9466         that it can also be used in a test.
9467
9468 2005-10-16  Bruno Haible  <bruno@clisp.org>
9469
9470         * gnulib-tool (func_emit_tests_Makefile_am): Also define
9471         TESTS_ENVIRONMENT, so that individual tests can augment it.
9472
9473         * gnulib-tool (func_create_testdir): Use an intermediate target for
9474         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
9475         macros, like $(ALLOCA_H), which cannot be passed through the command
9476         line.
9477
9478 2005-10-15  Simon Josefsson  <jas@extundo.com>
9479
9480         * modules/rijndael-tests: New file.
9481
9482         * modules/rijndael: New file.
9483
9484 2005-10-15  Simon Josefsson  <jas@extundo.com>
9485
9486         * m4/rijndael.m4: New file.
9487
9488 2005-10-15  Simon Josefsson  <jas@extundo.com>
9489
9490         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
9491
9492         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
9493
9494 2005-10-14  Simon Josefsson  <jas@extundo.com>
9495
9496         * tests/test-arcfour.c: New file.
9497
9498         * modules/arcfour, modules/arcfour-tests: New files.
9499
9500 2005-10-14  Simon Josefsson  <jas@extundo.com>
9501
9502         * m4/arcfour.m4: New file.
9503
9504 2005-10-14  Simon Josefsson  <jas@extundo.com>
9505
9506         * lib/arcfour.h, lib/arcfour.c: New files.
9507
9508 2005-10-14  Roland McGrath  <roland@redhat.com>
9509
9510         Import from libc.  [BZ #1331]
9511         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
9512         macro argument.
9513         Reported by Matej Vela <vela@debian.org>.
9514
9515 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9516
9517         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
9518         include <wchar.h>; no longer needed.
9519
9520 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9521
9522         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
9523
9524 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
9525         and  Ulrich Drepper  <drepper@redhat.com>
9526
9527         Import from libc.
9528         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
9529         instead of inline stream orientation test and two separate
9530         function calls.  Pay no attention to USE_IN_LIBIO.
9531
9532 2005-10-13  Simon Josefsson  <jas@extundo.com>
9533
9534         * modules/gc-hmac-md5-tests: New file.
9535
9536         * tests/test-gc-hmac-sha1.c: New file.
9537
9538         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
9539
9540         * modules/gc-hmac-md5-tests: New file.
9541
9542         * tests/test-gc-md5.c: New file.
9543
9544         * modules/gc-md5-tests: New file.
9545
9546 2005-10-13  Simon Josefsson  <jas@extundo.com>
9547
9548         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
9549         Move memory allocation outside of loop.
9550
9551 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
9552
9553         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
9554         intermediate directory is in a read-only file system.  Problem
9555         reported by Eric Blake.
9556
9557 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
9558
9559         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
9560
9561 2005-10-12  Simon Josefsson  <jas@extundo.com>
9562
9563         * tests/test-hmac-sha1.c: New file.
9564
9565         * modules/hmac-sha1-tests: New file.
9566
9567         * modules/hmac-sha1: New file.
9568
9569 2005-10-12  Simon Josefsson  <jas@extundo.com>
9570
9571         * modules/gc-sha1: New file.
9572
9573 2005-10-12  Simon Josefsson  <jas@extundo.com>
9574
9575         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
9576
9577         * tests/test-gc-pbkdf2-sha1.c: New file.
9578
9579 2005-10-12  Simon Josefsson  <jas@extundo.com>
9580
9581         * modules/gc-md5, modules/gc-hmac-md5: New files.
9582
9583         * modules/gc (Files): Remove md5, memxor and hmac files.
9584
9585 2005-10-12  Simon Josefsson  <jas@extundo.com>
9586
9587         * m4/gc-pbkdf2-sha1.m4: New file.
9588
9589         * m4/gc-hmac-sha1.m4: New file.
9590
9591         * m4/gc-sha1: New file.
9592
9593         * m4/hmac-sha1.m4: New file.
9594
9595 2005-10-12  Simon Josefsson  <jas@extundo.com>
9596
9597         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
9598
9599         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
9600
9601 2005-10-12  Simon Josefsson  <jas@extundo.com>
9602
9603         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
9604         suggested by Bruno Haible <bruno@clisp.org>.
9605
9606 2005-10-12  Simon Josefsson  <jas@extundo.com>
9607
9608         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
9609
9610 2005-10-12  Simon Josefsson  <jas@extundo.com>
9611
9612         * lib/gc-pbkdf2-sha1.c: New file.
9613
9614         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
9615
9616 2005-10-12  Simon Josefsson  <jas@extundo.com>
9617
9618         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
9619
9620         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
9621
9622 2005-10-12  Simon Josefsson  <jas@extundo.com>
9623
9624         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
9625         GC_USE_HMAC_MD5, respectively.
9626
9627         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
9628         (gc_md5): Fix typo.
9629
9630         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
9631
9632         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
9633
9634         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
9635
9636 2005-10-12  Bruno Haible  <bruno@clisp.org>
9637
9638         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
9639         Reported by Stepan Kasal <kasal@ucw.cz>.
9640
9641 2005-10-11  Simon Josefsson  <jas@extundo.com>
9642
9643         * tests/test-crc.c: New file.
9644
9645         * modules/crc, modules/crc-tests: New files.
9646
9647 2005-10-11  Simon Josefsson  <jas@extundo.com>
9648
9649         * m4/crc.m4: New file.
9650
9651 2005-10-11  Simon Josefsson  <jas@extundo.com>
9652
9653         * lib/gc.h: Add gc_hash and gc_hash_buffer.
9654
9655         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
9656
9657         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
9658
9659 2005-10-11  Simon Josefsson  <jas@extundo.com>
9660
9661         * lib/crc.h, lib/crc.c: New files.
9662
9663         * lib/gc.h (gc_hash_buffer): Add doc.
9664
9665 2005-10-11  Bruno Haible  <bruno@clisp.org>
9666
9667         * modules/c-strcasestr: New file.
9668         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
9669
9670 2005-10-11  Bruno Haible  <bruno@clisp.org>
9671
9672         * modules/c-strcase: New file.
9673         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
9674
9675 2005-10-11  Bruno Haible  <bruno@clisp.org>
9676
9677         * lib/strcasecmp.c: Include limits.h.
9678         (strcasecmp): Avoid integer overflow on exotic platforms.
9679         * lib/strncasecmp.c: Include limits.h.
9680         (strncasecmp): Avoid integer overflow on exotic platforms.
9681         Reported by Paul Eggert.
9682
9683 2005-10-11  Bruno Haible  <bruno@clisp.org>
9684
9685         * lib/c-strcasestr.h: New file, from GNU gettext.
9686         * lib/c-strcasestr.c: New file, from GNU gettext.
9687
9688 2005-10-11  Bruno Haible  <bruno@clisp.org>
9689
9690         * lib/c-strcase.h: New file, from GNU gettext.
9691         * lib/c-strcasecmp.c: New file, from GNU gettext.
9692         * lib/c-strncasecmp.c: New file, from GNU gettext.
9693
9694 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
9695
9696         * modules/mempcpy (License): GPL -> LGPL.
9697         * modules/strchrnul (License): Likewise.
9698         * modules/sysexits (License): Likewise.
9699
9700 2005-10-08  Simon Josefsson  <jas@extundo.com>
9701
9702         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
9703
9704 2005-10-07  Simon Josefsson  <jas@extundo.com>
9705
9706         * m4/memxor.m4: Remove gl_C_RESTRICT call.
9707
9708 2005-10-06  Simon Josefsson  <jas@extundo.com>
9709
9710         * tests/test-hmac-md5.c: New file.
9711
9712         * modules/hmac-md5-tests: New file.
9713
9714         * modules/hmac-md5: New file.
9715
9716 2005-10-06  Simon Josefsson  <jas@extundo.com>
9717
9718         * m4/hmac-md5.m4: New file.
9719
9720         * m4/memxor.m4: Require gl_C_RESTRICT.
9721
9722 2005-10-06  Simon Josefsson  <jas@extundo.com>
9723
9724         * lib/memxor.c (memxor): Avoid casts and warnings.
9725
9726 2005-10-06  Simon Josefsson  <jas@extundo.com>
9727
9728         * lib/hmac-md5.c: New file.
9729
9730         * lib/hmac.h: New file.
9731
9732 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
9733
9734         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
9735         promotes to int, not unsigned int, to catch the AIX 5.3
9736         compiler bug.
9737
9738 2005-10-05  Simon Josefsson  <jas@extundo.com>
9739
9740         * modules/memxor: New file.
9741
9742         * modules/iconv (Files): Move config.rpath to havelib, it is used
9743         there.
9744
9745         * modules/havelib (Files): Add config.rpath.
9746
9747 2005-10-05  Simon Josefsson  <jas@extundo.com>
9748
9749         * m4/memxor.m4: New file.
9750
9751 2005-10-05  Simon Josefsson  <jas@extundo.com>
9752
9753         * lib/memxor.c (memxor): Fix compiler error.
9754
9755         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
9756         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
9757
9758         * lib/memxor.h, lib/memxor.c: New files.
9759
9760         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
9761         we assume all systems have it, suggested by Jim Meyering
9762         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
9763         any systems lack sys/socket.h; mingw32 is known to lack it, but we
9764         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
9765         same reasons.
9766
9767 2005-10-05  Simon Josefsson  <jas@extundo.com>
9768
9769         * config/srclist.txt: Add glibc bug 1423 for md5.h.
9770
9771 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
9772
9773         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
9774         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
9775         needed, since the source code now assumes these .h files.
9776
9777 2005-10-05  Derek Price  <derek@ximbiot.com>
9778
9779         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
9780
9781 2005-10-05  Bruno Haible  <bruno@clisp.org>
9782
9783         * modules/stdint (License): Change to LGPL.
9784
9785 2005-10-04  Simon Josefsson  <jas@extundo.com>
9786
9787         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
9788         D. Baushke" <mdb@gnu.org>.
9789
9790 2005-10-04  Bruno Haible  <bruno@clisp.org>
9791
9792         * lib/verify.h (verify_true): Provide alternative definition for C++.
9793
9794 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
9795
9796         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
9797         (SSIZE_MAX): New macro, if not already defined.
9798         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
9799         than 2 GiB.
9800
9801 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9802
9803         Sync from coreutils.
9804         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
9805         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
9806         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
9807         ULLONG_MAX doesn't work with 2.7.2.1.
9808
9809 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9810
9811         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
9812         From Ben Pfaff.
9813
9814         * modules/exclude (Depends-on): Depend on verify.
9815         * modules/strtoimax (Depends-on): Likewise.
9816         * modules/utimecmp (Depends-on): Likewise.
9817
9818 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9819
9820         * lib/exclude.c: Include verify.h.
9821         (verify): Remove.  All callers changed to use verify.h's version.
9822         * lib/strtoimax.c: Likewise.
9823         * lib/utimecmp.c: Likewis.e
9824
9825         Sync from coreutils.
9826         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
9827         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
9828         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
9829         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
9830         bother returning ENOSYS if settimeofday or stime fails; just let
9831         them return whatever errno they want to return.
9832         * lib/utimens.c: Include unistd.h, for dup2.
9833         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
9834         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
9835
9836 2005-10-02  Jim Meyering  <jim@meyering.net>
9837
9838         Sync from coreutils.
9839         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
9840         from glibc-2.2.5 that fails for read-only files.
9841
9842 2005-10-02  Jim Meyering  <jim@meyering.net>
9843
9844         Sync from coreutils.
9845         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
9846         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
9847         `#if HAVE_CONFIG_H'.
9848         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
9849         Remove AT_FDCWD test.
9850         Do not consume the fd unless successful.
9851         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
9852         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
9853         block, so that we don't even try to compile it if settimeofday is
9854         available.  This works around a compilation failure on OSF1 V5.1,
9855         due to stime requiring a `long int*' while tv_sec is `int'.
9856
9857 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
9858
9859         Sync from coreutils.
9860         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
9861         against `yes', rather than just testing for nonempty.
9862
9863 2005-10-01  Simon Josefsson  <jas@extundo.com>
9864
9865         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
9866         and Darwin.
9867
9868         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
9869         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
9870         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
9871         freeaddrinfo and gai_strerror are declared by the POSIX headers.
9872         Check if struct addrinfo is declared.
9873
9874 2005-10-01  Simon Josefsson  <jas@extundo.com>
9875
9876         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
9877         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
9878         AI_* and EAI_* definitions.  Protect function declarations.
9879
9880 2005-10-01  Jim Meyering  <jim@meyering.net>
9881
9882         Sync from coreutils.
9883
9884         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
9885         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
9886         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
9887         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9888         in the inet and nsl libraries.  Required on Solaris 5.7.
9889
9890 2005-10-01  Jim Meyering  <jim@meyering.net>
9891
9892         Sync from coreutils.
9893         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9894         in the inet and nsl libraries.  Required on Solaris 5.7.
9895
9896 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
9897
9898         * lib/getdelim.c (getdelim): Remove unused variables.
9899
9900 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
9901
9902         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
9903         so that the code works even with ancient cpp.  Portability problem
9904         with GCC 2.7.2.1 reported by Thomas M.Ott.
9905
9906 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9907
9908         * modules/regex (Depends-on): Add strcase.
9909
9910         * modules/gethostname (Licence): Change from GPL to LGPL, since
9911         gethostname.c is a trivial implementation of a standard library
9912         function.
9913         * modules/poll (License): Change from GPL to LGPL, since it's
9914         derived from LGPL code.
9915
9916 2005-09-27  Jim Meyering  <jim@meyering.net>
9917
9918         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
9919         HAVE_CONFIG_H.
9920
9921         * lib/intprops.h (signed_type_or_expr__): Define.
9922         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
9923         for unsigned types.
9924
9925 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9926
9927         * lib/verify.h (verify_expr): Remove, replacing with:
9928         (verify_true): New macro that returns true instead of void.
9929         (verify_type__): Remove.
9930         (verify): Use verify_true rather than verify_type__.
9931
9932 2005-09-26  Bruno Haible  <bruno@clisp.org>
9933
9934         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
9935         is necessary.
9936         (lib_SOURCES): Remove mbchar.c.
9937         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
9938         (Files): Add m4/mbrtowc.m4.
9939         * modules/mbiter: Likewise.
9940         * modules/mbuiter: Likewise.
9941
9942 2005-09-26  Bruno Haible  <bruno@clisp.org>
9943
9944         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
9945         compile mbchar.c if they are not both present.
9946         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
9947         * m4/mbiter.m4 (gl_MBITER): Likewise.
9948         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
9949         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
9950         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
9951
9952 2005-09-25  Jim Meyering  <jim@meyering.net>
9953
9954         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
9955         also uses socklen_t.
9956
9957 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
9958
9959         * lib/utimens.c (ENOSYS): Define if not already defined.
9960         (futimens): Support having a null PATH if the file descriptor
9961         is nonnegative.
9962
9963         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
9964         Remove.
9965         (__attribute): Define to empty unless GCC 3.1 or later.
9966         This works around a core dump on OpenBSD 3.4, which has GCC
9967         2.95.3, which dumps core when given __attribute__(()).  It also
9968         simplifies other tests, since we really don't want to bother with
9969         worrying about which ancient version of GCC supported what.
9970         Original problem reported by Yoann Vandoorselaere, with part of
9971         the fix suggested by Derek Price.
9972
9973 2005-09-24  Jim Meyering  <jim@meyering.net>
9974
9975         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
9976         so we can once again use a positive bitfield width of 1 -- now we
9977         don't have to explain why we were using a bitfield width of 2.
9978
9979 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9980
9981         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
9982         and similarly for the other external symbols.  Problem reported
9983         by James Gallager.
9984
9985         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
9986         bug reported by Jim Meyering.
9987
9988         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
9989         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
9990         not needed, since socklen is a prerequisite module.
9991
9992 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9993
9994         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
9995         Problem reported by Eric Blake.
9996         (getaddrinfo): Initialize se so that it's not garbage.
9997         Redo internal storage allocation so that it doesn't make unportable
9998         assumptions about alignment.
9999         Fix a memory leak.
10000
10001         * lib/utimens.c (futimens): Use futimesat if available.
10002         Prefer it to futimes since it doesn't have the futimes bug.
10003
10004         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
10005         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
10006         Instead, declare a function that returns a pointer to an array,
10007         and use verify_type__ to declare the size of the array.
10008         Problem and germ of a solution reported by Bruno Haible.
10009         (verify_type__): Use 2, not 1, for bitfield size, to avoid
10010         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
10011
10012 2005-09-23  Jim Meyering  <jim@meyering.net>
10013
10014         Sync from coreutils.
10015         Correct build failure (socklen_t not defined) on at least
10016         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
10017         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
10018
10019 2005-09-23  Jim Meyering  <jim@meyering.net>
10020
10021         * modules/getaddrinfo (Depends-on): Add socklen.
10022
10023 2005-09-23  Bruno Haible  <bruno@clisp.org>
10024
10025         * tests/test-verify.c: New file.
10026
10027 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10028
10029         Sync from coreutils.
10030
10031         * modules/argmatch (Depends-on): Add verify.
10032         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
10033         unistd-safer.
10034         * modules/save-cwd (Depends-on): Likewise.
10035
10036         * modules/openat (Files): Add lib/openat-die.c.
10037         (Depends-on): Remove error, exitfail.
10038         Add dirname.
10039
10040         * modules/verify: New file.
10041         * MODULES.html.sh (Diagnostics <assert.h>): New section,
10042         with "verify" module.
10043
10044 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10045
10046         Sync from coreutils.
10047
10048         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
10049         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
10050         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
10051         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
10052         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
10053         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
10054         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
10055         Don't bother checking for string.h, stdlib.h, unistd.h.
10056         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
10057         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
10058         module's job.
10059         * m4/jm-macros.m4 (gl_MACROS): Likewise.
10060         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
10061
10062         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
10063         (gl_GETDATE): Use it.
10064
10065         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
10066
10067 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10068
10069         Sync from coreutils.
10070
10071         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10072         stat-time.h.
10073         * lib/argmatch.h: Include verify.h
10074         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10075         (ARGMATCH_ASSERT): Remove; unused.
10076         * lib/canonicalize.c: Assume STDC_HEADERS.
10077         * lib/exclude.c: Include "strcase.h".
10078         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10079         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10080         and stdio-safer.h.
10081         (getusershell): Call fopen, not fopen_safer.
10082         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10083         Do not include unistd-safer.h.
10084         (save_cwd): Don't call fd_safer; no longer needed
10085         now that we include fcntl--.h.
10086
10087         * lib/getdate.y (relative_time): New type.
10088         (RELATIVE_TIME_0): New constant.
10089         (parser_control): Use relative_time instead of doing it ourselves.
10090         (%union): Add new relative_time rel member.
10091         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10092         Now typeless.
10093         (relunit, relunit_snumber): Now of type rel.
10094         (zone, rel, relunit, get_date): Adjust to above changes.
10095
10096         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10097         Do not include unistd-safer.h.
10098         (getloadavg): Don't call fd_safer; no longer needed
10099         now that we include fcntl--.h.
10100
10101         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10102         (make_dir_parents): Treat ENOSYS like EEXIST.
10103
10104         Improve quality of diagnostics on restore_cwd failure.
10105         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10106         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10107         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10108         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10109         each time through the loop.  Do not diagnose restore_cwd failure;
10110         that is the caller's job (and perhaps the caller does not care).
10111
10112         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10113         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10114         If the file already exists but is not a directory, don't bother
10115         to try to make its parents.
10116         Close potential file descriptor leak if we can't chdir("/") (!).
10117         Don't always return true if chdir($PWD) fails; return true only
10118         if the requested action was done successfully (except for the
10119         chdir($PWD)).
10120         Don't log final directory unless we actually made it.
10121         Refactor to avoid duplicate code to fix up permissions.
10122         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10123
10124         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10125         to make it a bit faster and (I hope) clearer.
10126         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10127         Fix bug in formats like %2N.
10128
10129         * lib/verify.h: New file.
10130
10131 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10132
10133         Sync from coreutils.
10134         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10135
10136 2005-09-22  Jim Meyering  <jim@meyering.net>
10137
10138         Sync from coreutils.
10139
10140         * m4/lstat.m4 (gl_FUNC_LSTAT):
10141         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10142         Remove obsolete comment.
10143         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10144         * m4/xstrtod.m4: Likewise.
10145
10146         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10147
10148 2005-09-22  Jim Meyering  <jim@meyering.net>
10149
10150         Sync from coreutils.
10151
10152         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10153
10154         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10155         the .tm_year member, since otherwise gcc-4.0 would now warn about
10156         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10157
10158         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10159         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10160
10161         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10162         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10163         when run in a time zone for which daylight savings time is in effect
10164         for the starting date.
10165
10166         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
10167         stop us from restricting permissions of just-created absolute-named
10168         directories.
10169         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
10170         to restore initial working directory.
10171         * lib/mkdir-p.c (make_dir_parents): New parameter:
10172         different_working_dir, to tell caller if/when we change the working
10173         directory and are unable to return to the initial one.
10174         * lib/mkdir-p.h (make_dir_parents): Update prototype.
10175         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
10176         `return false'.  This fixes a bug introduced on 2004-07-30.
10177
10178         * lib/openat.c (fdopendir): Be sure to close the supplied
10179         file descriptor before returning.  This makes our replacement
10180         implementation a little closer to Solaris's, where fdopendir
10181         ties the file descriptor to the returned DIR* pointer.
10182         * lib/openat.c (unlinkat): New function.
10183         * lib/openat.h (unlinkat): Add prototype.
10184         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
10185         (openat_restore_fail): Rename from openat_restore_die.
10186         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
10187
10188         Provide an alternative to exiting immediately upon save_cwd or
10189         restore_cwd failure.  Now, an application can arrange e.g.,
10190         to perform a longjump in that case.
10191         * lib/openat.c: Include dirname.h.
10192         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
10193         (rpl_openat, fdopendir, fstatat): Call openat_save_die
10194         and openat_restore_die rather than calling error directly.
10195         Don't include "error.h" or "exitfail.h"; they're no longer needed.
10196
10197         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
10198         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
10199         define.
10200
10201         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
10202         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
10203                             int utc, int nanoseconds);
10204         Background:
10205         date should not have to allocate a megabyte of virtual memory to
10206         handle a format argument like +%1048575T.  When implemented with
10207         strftime, it must allocate such a buffer, use strftime to fill it
10208         in, print it, then free it.
10209         With fprintftime, it simply prints everything and exits.
10210         With no need for memory allocation, that's one fewer way to fail.
10211         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
10212         optional field width, not before, so we accept %9:z, not %:9z.
10213         (my_strftime): Be sure to use L_('x') for literals.
10214
10215         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
10216         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
10217         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
10218         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
10219         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
10220         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
10221         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
10222         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
10223         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
10224         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
10225         * lib/xgethostname.c, lib/xreadlink.c:
10226         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
10227
10228         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
10229         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
10230         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
10231         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10232         and don't include <sys/file.h>).
10233
10234 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
10235
10236         Sync from coreutils.
10237
10238         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
10239         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
10240         [!LDAV_DONE]: Avoid unused variable warning.
10241
10242 2005-09-21  Bruno Haible  <bruno@clisp.org>
10243
10244         * lib/unicodeio.h (unicode_to_mb): New declaration.
10245
10246 2005-09-20  Derek Price  <derek@ximbiot.com>
10247
10248         * lib/getaddrinfo.c: Don't include <netdb.h> included from
10249         getaddrinfo.h.
10250
10251 2005-09-20  Bruno Haible  <bruno@clisp.org>
10252
10253         * gnulib-tool: Remove trailing slashes from the values specified for
10254         --source-base, --m4-base, --tests-base, --aux-dir.
10255         Suggested by Simon Josefsson <jas@extundo.com>.
10256
10257 2005-09-20  Bruno Haible  <bruno@clisp.org>
10258
10259         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
10260         func_modules_to_filelist, func_import, func_create_testdir): Make all
10261         sorting results locale-independent, so that gnulib-cache.m4 doesn't
10262         change when gnulib-tool is invoked in a different locale.
10263
10264 2005-09-19  Simon Josefsson  <jas@extundo.com>
10265
10266         * m4/socklen.m4: Fix typo.
10267
10268 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10269
10270         Use a consistent style for including <config.h>.
10271         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
10272         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
10273         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
10274         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
10275         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
10276         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
10277         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
10278         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
10279         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
10280         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
10281         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
10282         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
10283         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
10284         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
10285         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
10286         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
10287         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
10288         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
10289         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
10290         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
10291         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
10292         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
10293         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
10294         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
10295         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
10296         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
10297         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
10298         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
10299         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
10300         lib/xstrtoumax.c, lib/yesno.c:
10301         Standardize inclusion of config.h.
10302         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
10303         lib/inttostr.h:  Removed inclusion of config.h from header files.
10304         * lib/inttostr.c:  Adjusted in-tree users.
10305         * lib/timespec.h: Remove superfluous warning to include config.h.
10306         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
10307         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
10308         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
10309         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
10310         config.h with HAVE_CONFIG_H.
10311
10312 2005-09-19  Jim Meyering  <jim@meyering.net>
10313
10314         * modules/pathmax (License): Change to LGPL.
10315
10316 2005-09-19  Derek Price  <derek@ximbiot.com>
10317
10318         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
10319
10320 2005-09-19  Bruno Haible  <bruno@clisp.org>
10321
10322         * gnulib-tool (import): Provide default for --tests-base.
10323
10324 2005-09-19  Bruno Haible  <bruno@clisp.org>
10325
10326         * doc/quote.texi: New file, extracted from gnulib.texi.
10327         * doc/ctime.texi: New file, extracted from gnulib.texi.
10328         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
10329         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
10330         * doc/gnulib.texi: Include them.
10331
10332 2005-09-18  Bruno Haible  <bruno@clisp.org>
10333
10334         Portability fix.
10335         * gnulib-tool (func_readlink): New function.
10336         (func_ln_if_changed): Use it.
10337
10338 2005-09-18  Bruno Haible  <bruno@clisp.org>
10339
10340         * gnulib-tool: Support --with-tests also with --import.
10341         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
10342         (func_import): Use variables $testsbase and $inctests. Emit a
10343         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
10344         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
10345         SUBDIRS += $testsdir.
10346         (func_create_testdir): Update.
10347
10348 2005-09-18  Bruno Haible  <bruno@clisp.org>
10349
10350         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
10351         instead of $dry_run.
10352         (func_cp_if_changed, func_mv_if_changed): Remove functions.
10353         (func_ln_if_changed): Don't handle dry-run here.
10354         (func_import): In dry-run mode, detect more precisely which actions
10355         would be performed, and don't use "...ing" verbs.
10356
10357 2005-09-18  Bruno Haible  <bruno@clisp.org>
10358
10359         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
10360         (func_import): Use join on two temporary files instead of three nested
10361         loops, in order to determine which files are new or old.
10362
10363 2005-09-18  Bruno Haible  <bruno@clisp.org>
10364
10365         * gnulib-tool (func_import): Comment out code that spits out the
10366         new files with --dry-run.
10367
10368 2005-09-18  Bruno Haible  <bruno@clisp.org>
10369
10370         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
10371
10372 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10373
10374         * lib/stat-time.h: New file.
10375         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
10376         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
10377         in a different way.
10378         (timespec_cmp): New function.
10379         * lib/utimecmp.c: Include stat-time.h.
10380         (SYSCALL_RESOLUTION): Depend on whether various struct stat
10381         members exist, not on the obsolescent ST_MTIM_NSEC.
10382         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
10383
10384 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10385
10386         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
10387
10388 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10389
10390         * MODULES.html.sh (File system functions): Add stat-time.
10391         * modules/stat-time: New file.
10392         * modules/timespec (Files): Remove m4/st_mtim.m4; this
10393         is now done in a different way, by the stat-time module.
10394         * modules/utimecmp (Depends-on): Add stat-time.
10395
10396 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10397
10398         * m4/st_mtim.m4: Remove.  Superseded by...
10399         * m4/stat-time.m4: New file.
10400         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
10401         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
10402
10403 2005-09-15  Derek Price  <derek@ximbiot.com>
10404
10405         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
10406
10407 2005-09-15  Derek Price  <derek@ximbiot.com>
10408
10409         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
10410         * lib/regex_internal.c: Ditto, using this...
10411         (__GNUC_PREREQ): ...new macro.
10412         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
10413         using...
10414         (__GNUC_PREREQ): ...this new macro.
10415
10416         * lib/strstr.h: Include string.h. Define strstr as a macro here.
10417
10418 2005-09-15  Derek Price  <derek@ximbiot.com>
10419             Paul Eggert  <eggert@cs.ucla.edu>
10420
10421         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
10422         changes, consolidating in...
10423         * lib/regex_internal.h: ...this file.
10424
10425 2005-09-13  Jim Meyering  <jim@meyering.net>
10426
10427         * lib/canon-host.c: Filter through gnu indent and reword comments
10428         slightly.
10429         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
10430
10431 2005-09-13  Derek Price  <derek@ximbiot.com>
10432
10433         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
10434         failure.
10435         Reported by Jim Meyering  <jim@meyering.net>.
10436
10437 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10438
10439         * lib/base64.c: Typo.
10440         (base64_encode): Put b64str in initialized data section.
10441
10442 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
10443
10444         Merge glibc and coreutils changes into gnulib, plus a few
10445         extra fixes.
10446         * lib/md5.c: Use #error rather than a string.
10447         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
10448         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
10449         (__attribute__): Define to empty for non recent-GCC.
10450         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
10451         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
10452         Renamed from their non-__ counterparts, with new macros replacing
10453         them if not _LIBC.  Add __THROW attribute.
10454         (rol): Remove.
10455         (struct md5_ctx): Align buffer if using GCC.
10456         * lib/sha1.h (struct sha1_ctx): Likewise.
10457         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
10458         The old name was backwards.
10459         (NOTSWAP): Remove; not used.
10460         (rol): New macro, moved here from md5.h.
10461         (sha1_process_block): Remove a FIXME that doesn't make sense.
10462
10463 2005-09-12  Derek Price  <derek@ximbiot.com>
10464
10465         Return usable errors from canon-host.
10466         * lib/canon-host.h: New file.
10467         * lib/canon-host.c (canon_host): Wrap...
10468         (canon_host_r): ...this new function, which now relies exclusively on
10469         getaddrinfo.
10470         (ch_strerror): New function.
10471         (last_cherror): New global.
10472         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
10473         interface.
10474         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
10475         void *.
10476         (freeaddrinfo): Free ai->ai_canonname when set.
10477
10478 2005-09-12  Derek Price  <derek@ximbiot.com>
10479
10480         Make canon-host require getaddrinfo.
10481         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
10482         AC_LIBSOURCE canon-host.h.  Call...
10483         (gl_PREREQ_CANON_HOST): ...this new function, which requires
10484         gl_GETADDRINFO.
10485         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
10486
10487 2005-09-12  Derek Price  <derek@ximbiot.com>
10488
10489         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
10490         LGPL.
10491         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
10492
10493 2005-09-12  Derek Price  <derek@ximbiot.com>
10494
10495         * lib/gai_strerror.c: Include config.h when available.  Include
10496         getaddrinfo.h before other headers to test interface.
10497         Reported by Larry Jones <lawrence.jones@ugs.com>.
10498
10499 2005-09-12  Derek Price  <derek@ximbiot.com>
10500             Paul Eggert  <eggert@cs.ucla.edu>
10501
10502         * modules/glob (Files): Add glob-libc.h.
10503
10504 2005-09-12  Derek Price  <derek@ximbiot.com>
10505             Paul Eggert  <eggert@cs.ucla.edu>
10506
10507         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
10508         glob_.h, glob-libc.h.
10509         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
10510
10511 2005-09-12  Derek Price  <derek@ximbiot.com>
10512             Paul Eggert  <eggert@cs.ucla.edu>
10513
10514         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
10515         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
10516         protecting things that should be done only in gnulib contexts.
10517         * lib/glob_.h: New file, containing only the glob things needed for
10518         gnulib.
10519         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
10520         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
10521         (glob, globfree, glob_pattern_p): Now defined simply in terms of
10522         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
10523         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
10524         and to respect the namespace rules better.
10525
10526 2005-09-08  Simon Josefsson  <jas@extundo.com>
10527
10528         * modules/socklen: New file.
10529
10530 2005-09-08  Simon Josefsson  <jas@extundo.com>
10531
10532         * m4/socklen.m4: New file.
10533
10534 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10535
10536         * modules/utimens (Files): Add m4/utimbuf.m4, since
10537         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
10538         Reported by Sergey Poznyakoff.
10539
10540 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10541
10542         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
10543         definitions, since that's the preferred style in glibc.
10544         Fix a minor spacing issue, and update copyright notice to match
10545         glibc's.
10546
10547 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10548
10549         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
10550
10551 2005-09-06  Simon Josefsson  <jas@extundo.com>
10552
10553         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
10554         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
10555
10556 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10557
10558         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
10559         warning.
10560
10561 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10562
10563         * config/srclist.txt: Add glibc bug 1302.
10564
10565 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
10566
10567         Change bitset word type from unsigned int to unsigned long int,
10568         as this has better performance on typical 64-bit hosts.
10569         Port bitset code to hosts with unusual word sizes.
10570         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
10571         (build_collating_symbol):
10572         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
10573         argument is a bitset.  This is merely a style issue, but it makes
10574         it clearer that an entire array is expected.
10575         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
10576         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
10577         Port to the case where bitset_word is not the same as unsigned int.
10578         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10579         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
10580         Likewise.
10581         * lib/regexec.c (check_dst_limits_calc_pos_1,
10582         check_subexp_matching_top):
10583         (build_trtable, group_nodes_into_DFAstates):
10584         Likewise.
10585         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
10586         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
10587         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
10588         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
10589         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
10590         * lib/regcomp.c (optimize_subexps, lower_subexp):
10591         Work even if bitset_word has holes in its bitwise representation.
10592         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
10593         * lib/regexec.c (check_dst_limits_calc_pos_1,
10594         check_subexp_matching_top):
10595         Likewise.
10596         * lib/regex_internal.c (re_string_reconstruct):
10597         Don't assume UCHAR_MAX == 255.
10598         * lib/regex_internal.h (bitset_set_all): Likewise.
10599         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
10600         All uses changed.
10601         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
10602         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
10603         All uses changed.
10604         (BITSET_WORD_MAX): New macro.
10605         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
10606         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
10607         (bitset_empty, bitset_copy):
10608         Prefer sizeof (bitset) to multiplying it out ourselves.
10609         (bitset_not_merge): Remove; unused.
10610         (bitset_contain): Return bool, not unsigned int with one bit on.
10611         All callers changed.
10612         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
10613         alignment than re_node_set; do this by defining a new internal
10614         type struct dests_alloc and using it to allocate memory.
10615
10616 2005-09-05  Bruno Haible  <bruno@clisp.org>
10617
10618         * gnulib-tool (func_import): Fix comparison in handling of symbolic
10619         links.
10620
10621 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
10622
10623         * modules/size_max (Makefile.am): Add size_max.h
10624
10625 2005-09-04  Derek Price  <derek@ximbiot.com>
10626
10627         * gnulib-tool (func_import): Fix reversed $symbolic logic.
10628
10629 2005-09-03  Simon Josefsson  <jas@extundo.com>
10630
10631         * gnulib-tool: Fix typo.
10632
10633 2005-09-03  Simon Josefsson  <jas@extundo.com>
10634
10635         * config/srclist.txt: Add glibc bug 1293.
10636
10637 2005-09-03  Derek Price  <derek@ximbiot.com>
10638
10639         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
10640         From Larry Jones <lawrence.jones@ugs.com>.
10641
10642 2005-09-02  Simon Josefsson  <jas@extundo.com>
10643
10644         * modules/socklen: New file.
10645
10646 2005-09-02  Simon Josefsson  <jas@extundo.com>
10647
10648         * modules/havelib: New module.
10649
10650         * modules/gettext, modules/iconv, modules/lock, modules/readline:
10651         Use havelib.
10652
10653 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10654
10655         Check for arithmetic overflow when calculating sizes, to prevent
10656         some buffer-overflow issues.  These patches are conservative, in the
10657         sense that when I couldn't determine whether an overflow was possible,
10658         I inserted a run-time check.
10659         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
10660         macros.
10661         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
10662         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
10663         (re_xnrealloc, re_x2nrealloc): New inline functions.
10664         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
10665         parse_bracket_exp):
10666         (build_equiv_class, build_charclass): Check for arithmetic overflow
10667         in size expression calculations.
10668         * lib/regex_internal.c (re_string_realloc_buffers):
10669         (build_wcs_upper_buffer, re_node_set_add_intersect):
10670         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
10671         (re_dfa_add_node, register_state): Likewise.
10672         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
10673         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
10674         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
10675         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
10676
10677 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10678
10679         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
10680         m4/ulonglong.m4.  Problem reported by Martin Lambers.
10681
10682 2005-09-02  Bruno Haible  <bruno@clisp.org>
10683
10684         Support for lib vs. lib64 distinction on biarch platforms.
10685         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
10686         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
10687         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
10688
10689 2005-09-02  Bruno Haible  <bruno@clisp.org>
10690
10691         * gnulib-tool (import): In the other first-use case, provide defaults
10692         as well.
10693
10694 2005-09-02  Bruno Haible  <bruno@clisp.org>
10695
10696         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
10697         patches not yet found in the latest gettext release.
10698
10699 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10700
10701         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
10702         to avoid a collision with bits/local_lim.h in glibc.
10703         All uses changed.  Problem reported by Dmitry V. Levin in
10704         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
10705
10706         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
10707         bugs in int versus size_t comparisons.
10708         (re_string_context_at): Fix bug where the code assumed that
10709         Idx is signed.
10710
10711         Use bool where appropriate.
10712         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
10713         All callers changed.
10714         (calc_eclosure_iter): Likewise, for ROOT arg.
10715         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
10716         (build_charclass_op): Likewise, for NON_MATCH arg.
10717         * lib/regex_internal.c (re_string_allocate, re_string_construct):
10718         (re_string_construct_common): Likewise, for ICASE arg.
10719         * lib/regexec.c (re_search_2_stub, re_search_stub):
10720         Likewise, for RET_LEN arg.
10721         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
10722         (set_regs): Likewise, for FL_BACKTRACK arg.
10723         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
10724         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
10725         (calc_eclosure_iter, parse_bracket_exp):
10726         Use bool for internal variables that are booleans.
10727         * lib/regexec.c (re_search_internal, check_matching,
10728         proceed_next_node):
10729         (set_regs, build_sifted_states, sift_states_bkref):
10730         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
10731         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10732         (find_collation_sequence_value):
10733         Likewise.
10734         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
10735         (re_node_set_compare):
10736         Return bool, not int. All callers changed.
10737         * lib/regexec.c (check_halt_node_context, check_dst_limits):
10738         (build_trtable, check_node_accept): Likewise.
10739         * lib/regex_internal.h: Include stdbool.h.
10740
10741         Fix bugs uncovered when converting to bool.
10742         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
10743         failure instead of charging ahead blindly.
10744         * lib/regex_internal.c (register_state): Likewise.
10745         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
10746         for freeing internal storage.
10747         (group_nodes_into_DFA_states): Use unsigned int, not int, for
10748         bitset pieces used as boolean, to avoid undefined behavior
10749         on hosts that do int overflow checking.
10750
10751 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10752
10753         * config/srclist.txt: Add glibc bugs 1285-1287.
10754
10755 2005-09-01  Jim Meyering  <jim@meyering.net>
10756
10757         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
10758         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
10759         Require gl_STAT_MACROS, too.
10760
10761 2005-09-01  Bruno Haible  <bruno@clisp.org>
10762
10763         * gnulib-tool (import): In the first-use case, provide defaults.
10764
10765 2005-09-01  Bruno Haible  <bruno@clisp.org>
10766
10767         * gnulib-tool (func_import): Remove the .tmp files.
10768
10769 2005-09-01  Bruno Haible  <bruno@clisp.org>
10770
10771         * gnulib-tool (func_import): Fix handling of symbolic links.
10772
10773 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10774
10775         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
10776         old glibc regex code mishandles strings longer than 2**31 bytes.
10777         This patch fixes this when the regex code is used in gnulib
10778         (i.e., outside glibc).
10779
10780         This patch should not affect the use of the regex code inside
10781         glibc.  No doubt this problem also needs to be handled for glibc
10782         as well, but the result will be an incompatible change to the
10783         glibc ABI, and the old ABI will have to be supported too.  That
10784         can be the the subject for another patch.
10785
10786         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
10787         governing whether the rest of this patch is active.  By default,
10788         the macro is disabled and the patch has no effect.
10789         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
10790         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
10791         (struct re_pattern_buffer, re_search, re_search_2, re_match):
10792         (re_match_2, re_set_registers): Use the new types.
10793         * lib/regex_internal.h (Idx, re_hashval_t): New types.
10794         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
10795         New macros.
10796         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
10797         (re_string_context_at, bin_tree_t, re_dfastate_t):
10798         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
10799         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
10800         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
10801         (re_string_char_size_at, re_string_wchar_at):
10802         (re_string_elem_size_at):
10803         Use the new types and macros to port to 64-bit hosts.
10804         Use unsigned types for internal values, so that the code
10805         mostly works even for arrays larger than SSIZE_MAX.
10806         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
10807         (search_duplicated_node, calc_eclosure_iter, fetch_number):
10808         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
10809         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
10810         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
10811         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
10812         (calc_inveclosure, parse_dup_op, build_range_exp):
10813         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
10814         (fetch_number, create_token_tree, mark_opt_subexp):
10815         Likewise.
10816         * lib/regex_internal.c (re_string_construct_common,
10817         create_ci_newstate):
10818         (create_cd_newstate, re_string_allocate, re_string_construct):
10819         (re_string_realloc_buffers, build_wcs_upper_buffer):
10820         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10821         (re_string_reconstruct, re_string_peek_byte_case):
10822         (re_string_fetch_byte_case, re_string_context_at):
10823         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10824         (re_node_set_init_copy, re_node_set_add_intersect):
10825         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10826         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10827         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10828         (re_acquire_state, re_acquire_state_context, register_state):
10829         Likewise.
10830         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
10831         search_cur_bkref_entry):
10832         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
10833         (re_search_internal, re_search_2_stub, re_search_stub)
10834         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
10835         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
10836         (update_cur_sifted_state, check_dst_limits):
10837         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10838         (check_subexp_limits, sift_states_bkref, merge_state_array):
10839         (check_subexp_matching_top, get_subexp, get_subexp_sub):
10840         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
10841         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10842         (expand_bkref_cache, check_node_accept_bytes):
10843         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
10844         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
10845         (acquire_init_state_context, check_halt_node_context):
10846         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
10847         (sift_states_backward, clean_state_log_if_needed):
10848         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
10849         (find_recover_state, transit_state_sb, transit_state_mb):
10850         (transit_state_bkref, build_trtable, match_ctx_clean):
10851         Likewise.
10852         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
10853         to work around an assumption that REG_MISSING is negative.
10854
10855         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
10856         (seek_collating_symbol_entry) [defined _LIBC]:
10857         (lookup_collation_sequence_value) [defined _LIBC]:
10858         (build_range_exp, build_collating_symbol) [defined _LIBC]:
10859         Use prototypes rather than old-style function definitions.
10860         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
10861         (transit_state_sb) [0]:
10862         (find_collation_sequence_value) [defined _LIBC]: Likewise.
10863
10864         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
10865         rm_eo.
10866
10867         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
10868         (optimize_subexps, lower_subexp):
10869         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
10870         since the signed shift might overflow.  Use 1u<<31 instead.
10871         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10872         Likewise.
10873         * lib/regexec.c (check_dst_limits_calc_pos_1,
10874         check_subexp_matching_top): Likewise.
10875
10876         * lib/regcomp.c (optimize_subexps, lower_subexp):
10877         Use CHAR_BIT rather than 8, for clarity.
10878         * lib/regexec.c (check_dst_limits_calc_pos_1):
10879         (check_subexp_matching_top): Likewise.
10880         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
10881         have to worry about portability issues when shifting it left.
10882         Remove no-longer-needed test for table_size > 0.
10883         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
10884         in a word, as the resulting behavior is undefined.
10885         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
10886         in one case, a <= should have been an <, and in another case the
10887         whole test was missing.
10888         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
10889         the standard name CHAR_BIT.
10890         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
10891         this is not true on one's complement and signed-magnitude hosts.
10892
10893         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
10894         next_last_offset.
10895         (struct re_dfa_t): Remove unused member states_alloc.
10896         * lib/regcomp.c (init_dfa): Don't initialize unused members.
10897
10898 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10899
10900         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
10901         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
10902         and large-file glibc and in 32-bit large-file Solaris.
10903
10904 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10905
10906         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
10907         lengths fit in regoff_t; this isn't true if regoff_t is the same
10908         width as size_t.
10909         * lib/regex.c (re_search_internal): 5th arg is LAST_START
10910         (= START + RANGE) instead of RANGE.  This avoids overflow
10911         problems when regoff_t is the same width as size_t.
10912         All callers changed.
10913         (re_search_2_stub): Check for overflow when adding the
10914         sizes of the two strings.
10915         (re_search_stub): Check for overflow when adding START
10916         to RANGE; if it occurs, substitute the extreme value.
10917
10918 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10919
10920         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
10921
10922 2005-08-31  Jim Meyering  <jim@meyering.net>
10923
10924         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
10925         a pointer-to-const.
10926         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
10927         (register_state): Likewise.
10928         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
10929         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10930         (group_nodes_into_DFAstates): Likewise.
10931
10932 2005-08-31  Jim Meyering  <jim@meyering.net>
10933
10934         * check-module: Add a FIXME comment.
10935
10936 2005-08-31  Eric Blake  <ebb9@byu.net>
10937
10938         * modules/unistd-safer (Files): Add unistd--.h.
10939         * modules/stdio-safer (Files): Add stdio--.h.
10940
10941 2005-08-31  Derek Price  <derek@ximbiot.com>
10942
10943         * lib/getdelim.c (getdelim): Return EOF on EOF.
10944         Reported by Larry Jones <lawrence.jones@ugs.com>.
10945
10946 2005-08-31  Bruno Haible  <bruno@clisp.org>
10947
10948         Avoid unnecessary diffs in the generated lib/Makefile.am.
10949         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
10950         the generated files.
10951         (func_import): Don't set cmd.
10952
10953 2005-08-31  Bruno Haible  <bruno@clisp.org>
10954
10955         * lib/strstr.c: Include <stddef.h>, for NULL.
10956         * lib/strcasestr.c: Likewise.
10957         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10958
10959 2005-08-31  Bruno Haible  <bruno@clisp.org>
10960
10961         * gnulib-tool: New option --macro-prefix.
10962         (func_import): Use macro_prefix.
10963         (import): Handle option --macro-prefix.
10964
10965 2005-08-31  Bruno Haible  <bruno@clisp.org>
10966
10967         * gnulib-tool (import): Rename most ac_* variables to cached_*.
10968         Also use new variables cached_lgpl, cached_libtool.
10969
10970 2005-08-31  Bruno Haible  <bruno@clisp.org>
10971
10972         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
10973         always instantiating them.
10974
10975 2005-08-31  Bruno Haible  <bruno@clisp.org>
10976
10977         * gnulib-tool (func_import): Read the previous cached settings
10978         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
10979         earlier added by gnulib but are now dropped. Warn when a gnulib file
10980         overwrites a non-gnulib file.
10981
10982 2005-08-31  Bruno Haible  <bruno@clisp.org>
10983
10984         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
10985         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
10986         projects that don't keep autogenerated files in CVS. Put into
10987         actioncmd only the specified modules, not the transitive closure.
10988
10989 2005-08-31  Bruno Haible  <bruno@clisp.org>
10990
10991         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
10992         Create directories that shall be filled.
10993         (import): Don't look for gl_* macros in configure.ac. Recurse across
10994         all directories containing a gnulib-cache.m4 files, if meaningful.
10995
10996 2005-08-31  Bruno Haible  <bruno@clisp.org>
10997
10998         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
10999         (import): Set seen_libtool when we see gl_LIBTOOL.
11000
11001 2005-08-31  Bruno Haible  <bruno@clisp.org>
11002
11003         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
11004         declaration macro definitions from generated gnulib.m4.
11005
11006 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
11007
11008         * lib/iconvme.h: Add prototype for iconv_alloc.
11009
11010 2005-08-29  Simon Josefsson  <jas@extundo.com>
11011
11012         * lib/iconvme.c: Fix errno.
11013
11014 2005-08-29  Bruno Haible  <bruno@clisp.org>
11015
11016         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
11017         that it works when the directory contains spaces.
11018
11019 2005-08-29  Bruno Haible  <bruno@clisp.org>
11020
11021         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
11022
11023 2005-08-29  Bruno Haible  <bruno@clisp.org>
11024
11025         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
11026         Emit more advice.
11027
11028 2005-08-29  Bruno Haible  <bruno@clisp.org>
11029         and Stepan Kasal  <kasal@ucw.cz>
11030
11031         * check-module: If more parameters are given, check each of them
11032         separately; add more exceptions, as noted by Jim Meyering.
11033         (check_module): New procedure.
11034         (%exempt_header): Now contains all exceptions.
11035
11036 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
11037
11038         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
11039
11040 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
11041
11042         * lib/iconvme.c: Split iconv_string into iconv_alloc.
11043
11044 2005-08-28  Bruno Haible  <bruno@clisp.org>
11045
11046         * m4/gnulib-tool.m4: New file.
11047
11048 2005-08-27  Jim Meyering  <jim@meyering.net>
11049
11050         * modules/unistd-safer (Files): Add pipe-safer.c.
11051         * modules/fcntl-safer (Files): Add creat-safer.c.
11052
11053 2005-08-27  Jim Meyering  <jim@meyering.net>
11054
11055         * m4/stdlib-safer.m4: New file.  From coreutils.
11056         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
11057         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
11058         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
11059         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
11060         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
11061
11062 2005-08-27  Jim Meyering  <jim@meyering.net>
11063
11064         * lib/fopen-safer.c: Merge minor changes from coreutils.
11065         * lib/dup-safer.c: Likewise.
11066         * lib/fd-safer.c: Likewise.
11067
11068         Merge from coreutils.
11069         * lib/stdio--.h: New file.
11070         * lib/stdlib--.h: New file.
11071         * lib/mkstemp-safer.c: New file.
11072
11073         GNU tar needs these.
11074         * lib/pipe-safer.c: New file.
11075         * lib/creat-safer.c: New file.
11076         * lib/fcntl--.h (creat): Define to creat_safer.
11077         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11078         * lib/unistd--.h (pipe): Define to pipe_safer.
11079         * lib/unistd-safer.h: Declare pipe_safer.
11080
11081 2005-08-26  Simon Josefsson  <jas@extundo.com>
11082
11083         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11084         Haible <bruno@clisp.org>.
11085
11086 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11087
11088         * lib/regex_internal.h: Remove all references to
11089         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11090         or better.
11091         (bitset_not, bitset_merge, bitset_not_merge):
11092         (bitset_mask, re_string_allocate, re_string_construct):
11093         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11094         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11095         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11096         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11097         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11098         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11099         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11100         (re_acquire_state_context):
11101         Remove unnecessary forward decls.
11102         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11103         Put __attribute at function definition,
11104         now that the function decl has been removed.
11105         * lib/regex_internal.c (re_string_peek_byte_case):
11106         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11107         Likewise.
11108
11109 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11110
11111         * m4/regex.m4: Add AC_PREREQ(2.50).
11112         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11113
11114 2005-08-25  Simon Josefsson  <jas@extundo.com>
11115
11116         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11117         __fsetlocking.
11118
11119 2005-08-25  Simon Josefsson  <jas@extundo.com>
11120
11121         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11122         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11123         GLIBC specific code.
11124
11125 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11126
11127         Make regex safe for g++.  This fixes one real bug (an "err"
11128         that should have been "*err").  g++ problem reported by
11129         Sam Steingold.
11130         * lib/regex_internal.h (re_calloc): New macro, consistent with
11131         re_malloc etc.  All callers of calloc changed to use re_calloc.
11132         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11133         not int.  All callers changed.
11134         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11135         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11136         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11137         (find_recover_state): Change "err" to "*err"; this fixes what
11138         appears to be a real bug.
11139         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11140         versus int.
11141
11142 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11143
11144         * modules/regex (Depends-on): Add malloc, since the code
11145         assumes that !malloc(0) means failure.
11146
11147 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11148
11149         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11150
11151         alloca modernization/simplification for regex.
11152         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11153         needs to be at the start of the file, and can be moved into
11154         regex_internal.h and simplified.
11155         * lib/regex_internal.h: Include <alloca.h>.
11156         (__libc_use_alloca) [!defined _LIBC]: New macro.
11157         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11158         now works outside glibc.
11159
11160 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11161
11162         * config/srclist.txt: Add glibc bugs 1241, 1245.
11163
11164 2005-08-25  Jim Meyering  <jim@meyering.net>
11165
11166         * lib/open-safer.c: Include <config.h>.
11167         Otherwise, we'd lose LARGEFILE support in any file using
11168         e.g. "fcntl--.h"
11169
11170 2005-08-25  Bruno Haible  <bruno@clisp.org>
11171
11172         * m4/minmax.m4: Require autoconf 2.52.
11173         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
11174         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
11175         alternatives of translit over the alphabet.
11176         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
11177
11178 2005-08-24  Simon Josefsson  <jas@extundo.com>
11179
11180         * tests/test-getpass.c: New file.
11181
11182 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11183
11184         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
11185         for GNU regex features.
11186
11187 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11188
11189         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
11190         * lib/regex.h (regerror): Likewise.
11191
11192         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
11193         requires this.  (The code never needed it.)
11194
11195         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
11196         All uses of recently-renamed identifiers changed to use the new,
11197         POSIX-compliant names.  The code will build and run just fine
11198         without these changes, but it's better to eat our own dog food
11199         and use the standard-conforming names.
11200
11201         * lib/regex.h: Fix a multitude of POSIX name space violations.
11202         These changes have an effect only for programs that define
11203         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
11204         do not change anything for programs compiled in the normal way.
11205         Also, there is no effect on the ABI.
11206
11207         (_REGEX_SOURCE): New macro.
11208         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
11209         defined and _GNU_SOURCE is not; this fixes a name space violation.
11210
11211         Rename the following macros to obey POSIX requirements.
11212         The old names are still visible as macros if _REGEX_SOURCE is defined.
11213         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
11214         RE_BACKSLASH_ESCAPE_IN_LISTS.
11215         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
11216         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
11217         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
11218         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
11219         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
11220         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
11221         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
11222         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
11223         (REG_INTERVALS): renamed from RE_INTERVALS.
11224         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
11225         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
11226         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
11227         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
11228         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
11229         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
11230         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
11231         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
11232         RE_UNMATCHED_RIGHT_PAREN_ORD.
11233         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
11234         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
11235         (REG_DEBUG): renamed from RE_DEBUG.
11236         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
11237         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
11238         unusual, since we can't clash with the POSIX REG_ICASE.
11239         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
11240         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
11241         (REG_NO_SUB): renamed from RE_NO_SUB.
11242         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
11243         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
11244         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
11245         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
11246         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
11247         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
11248         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
11249         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
11250         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
11251         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
11252         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
11253         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
11254         RE_SYNTAX_POSIX_MINIMAL_BASIC.
11255         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
11256         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
11257         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
11258         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
11259         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
11260         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
11261         (REG_FIXED): Renamed from REGS_FIXED.
11262         (REG_NREGS): Renamed from RE_NREGS.
11263
11264         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
11265         of other REG_* macros, since POSIX says the user is allowed to
11266         #undef these macros selectively.
11267
11268         (reg_errcode_t): Update comment stating what other tables need
11269         to be consistent.
11270
11271         Rename the following enum values to obey POSIX requirements.
11272         The old names are still visible as macros.
11273         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
11274         is not defined, since GNU is supposed to be a superset of POSIX as
11275         much as possible, and since we want reg_errcode_t to be a signed
11276         type for implementation consistency.
11277         (_REG_NOERROR): Renamed from REG_NOERROR.
11278         (_REG_NOMATCH): Renamed from REG_NOMATCH.
11279         (_REG_BADPAT): Renamed from REG_BADPAT.
11280         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
11281         (_REG_ECTYPE): Renamed from REG_ECTYPE.
11282         (_REG_EESCAPE): Renamed from REG_EESCAPE.
11283         (_REG_ESUBREG): Renamed from REG_ESUBREG.
11284         (_REG_EBRACK): Renamed from REG_EBRACK.
11285         (_REG_EPAREN): Renamed from REG_EPAREN.
11286         (_REG_EBRACE): Renamed from REG_EBRACE.
11287         (_REG_BADBR): Renamed from REG_BADBR.
11288         (_REG_ERANGE): Renamed from REG_ERANGE.
11289         (_REG_ESPACE): Renamed from REG_ESPACE.
11290         (_REG_BADRPT): Renamed from REG_BADRPT.
11291         (_REG_EEND): Renamed from REG_EEND.
11292         (_REG_ESIZE): Renamed from REG_ESIZE.
11293         (_REG_ERPAREN): Renamed from REG_ERPAREN.
11294         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
11295         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
11296         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
11297         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
11298
11299         (_REG_RE_NAME, _REG_RM_NAME): New macros.
11300         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
11301         changed.  But support the old name if the new one is not defined
11302         and if _REGEX_SOURCE.
11303
11304         Change the following member names in struct re_pattern_buffer.
11305         The old names are still supported if !_REGEX_SOURCE.
11306         The new names are always supported, regardless of _REGEX_SOURCE.
11307         (re_buffer): Renamed from buffer.
11308         (re_allocated): Renamed from allocated.
11309         (re_used): Renamed from used.
11310         (re_syntax): Renamed from syntax.
11311         (re_fastmap): Renamed from fastmap.
11312         (re_translate): Renamed from translate.
11313         (re_can_be_null): Renamed from can_be_null.
11314         (re_regs_allocated): Renamed from regs_allocated.
11315         (re_fastmap_accurate): Renamed from fastmap_accurate.
11316         (re_no_sub): Renamed from no_sub.
11317         (re_not_bol): Renamed from not_bol.
11318         (re_not_eol): Renamed from not_eol.
11319         (re_newline_anchor): Renamed from newline_anchor.
11320
11321         Change the following member names in struct re_registers.
11322         The old names are still supported if !_REGEX_SOURCE.
11323         The new names are always supported, regardless of _REGEX_SOURCE.
11324         (rm_num_regs): Renamed from num_regs.
11325         (rm_start): Renamed from start.
11326         (rm_end): Renamed from end.
11327
11328         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
11329         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
11330         Prepend __ to parameter names.
11331
11332         Undo yesterday's changes.
11333
11334 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11335
11336         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
11337         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
11338         lib/regex.c.
11339
11340 2005-08-24  Jim Meyering  <jim@meyering.net>
11341
11342         Sync from coreutils.
11343         * m4/fcntl-safer.m4: New file.
11344
11345         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
11346         and object files for this module.
11347
11348 2005-08-24  Jim Meyering  <jim@meyering.net>
11349
11350         Sync from coreutils.
11351         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
11352
11353 2005-08-24  Jim Meyering  <jim@meyering.net>
11354
11355         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
11356         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
11357
11358 2005-08-24  Jim Meyering  <jim@meyering.net>
11359
11360         * modules/fcntl-safer: New module.
11361         * modules/fts (Depends-on): Add fcntl-safer.
11362         * MODULES.html.sh (File descriptor based Input/Output):
11363         Add fcntl-safer.
11364
11365 2005-08-24  Bruno Haible  <bruno@clisp.org>
11366
11367         Support for unit test modules.
11368         * modules/README: Mention tests modules.
11369         * modules/TEMPLATE-TESTS: New file.
11370         * gnulib-tool: New options --extract-tests-module, --with-tests and
11371         --tests-base (unused for the moment).
11372         (testsbase, inctests): New variables.
11373         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
11374         (func_verify_module): Exclude TEMPLATE-TESTS.
11375         (func_verify_nontests_module, func_verify_tests_module): New functions.
11376         (func_get_dependencies): Add implicit dependency for tests modules.
11377         (func_get_tests_module): New function.
11378         (func_modules_transitive_closure): When --with-tests was specified,
11379         include the unit tests as well, unless explicitly avoided.
11380         (func_emit_lib_Makefile_am): Ignore the tests modules here.
11381         (func_emit_tests_Makefile_am): New function.
11382         (func_create_testdir): When --with-tests was specified, emit a
11383         tests/ directory.
11384         * MODULES.html.sh (Future developments): Update.
11385
11386 2005-08-24  Bruno Haible  <bruno@clisp.org>
11387
11388         * modules/tls-tests: New file.
11389         * tests/test-tls.c: New file, from GNU gettext.
11390
11391 2005-08-24  Bruno Haible  <bruno@clisp.org>
11392
11393         * modules/lock-tests: New file.
11394         * tests/test-lock.c: New file, from GNU gettext.
11395
11396 2005-08-24  Bruno Haible  <bruno@clisp.org>
11397
11398         * lib/lock.h: Add multiple inclusion guard.
11399         * lib/tls.h: Add multiple inclusion guard.
11400
11401 2005-08-24  Bruno Haible  <bruno@clisp.org>
11402
11403         * gnulib-tool: Add support for the --aux-dir option to
11404         --create-testdir, --create-megatestdir, --test, --megatest.
11405         (func_create_testdir, func_create_megatestdir): Optionally emit a
11406         AC_CONFIG_AUX_DIR directive.
11407         (create-testdir, create-megatestdir, test, megatest): Provide a
11408         default value for $auxdir.
11409
11410 2005-08-24  Bruno Haible  <bruno@clisp.org>
11411
11412         * gnulib-tool (import): Use compound statement instead of subshell
11413         where possible.
11414
11415 2005-08-24  Bruno Haible  <bruno@clisp.org>
11416
11417         * gnulib-tool (import): Change --aux-dir default to "build-aux".
11418
11419 2005-08-24  Bruno Haible  <bruno@clisp.org>
11420
11421         * gnulib-tool (func_version): Update.
11422
11423 2005-08-24  Bruno Haible  <bruno@clisp.org>
11424
11425         * gnulib-tool (func_import, func_create_testdir,
11426         func_create_megatestdir): Quote all autoconf macro arguments.
11427
11428 2005-08-24  Bruno Haible  <bruno@clisp.org>
11429
11430         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
11431         option --force, because --force causes the aclocal.m4 of each
11432         subdirectory to be newer than the corresponding config.h.in.
11433
11434 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11435
11436         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
11437         All contents moved to gl_REGEX.
11438         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
11439         assume that it does.
11440
11441 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11442
11443         * lib/regex.h (REG_NOSYS)
11444         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
11445         Define, since POSIX requires it as of 2001.
11446         (_REG_ENOSYS)
11447         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
11448         New private symbol, used to keep the enum signed in all cases.
11449         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
11450         Youngman in
11451         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
11452
11453         * lib/regex_internal.c (re_string_skip_chars, register_state):
11454         (calc_state_hash):
11455         Remove forward decls; no longer needed now that we use prototypes.
11456         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
11457         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
11458         (clean_state_log_if_needed): Likewise.
11459
11460 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11461
11462         * config/srclist.txt: Add glibc bugs 1231-1233.
11463
11464 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11465
11466         Fix problems reported by Sam Steingold in
11467         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
11468         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
11469         assumed that reg_errcode_t is a signed type, which is not
11470         necessarily true if _XOPEN_SOURCE is not defined.
11471         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
11472         since some compilers warn about it otherwise.
11473
11474 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11475
11476         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
11477         (init_word_char, create_initial_state, duplicate_node_closure):
11478         (fetch_token, peek_token_bracket, build_range_exp):
11479         (build_collating_symbol): Remove forward decls; no longer needed
11480         now that we use prototypes.
11481
11482         * lib/regcomp.c:
11483         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
11484         (re_compile_fastmap_iter, regcomp, regerror, regfree):
11485         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
11486         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
11487         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
11488         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
11489         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
11490         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
11491         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
11492         (build_range_exp, build_collating_symbol, parse_bracket_exp):
11493         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
11494         (build_charclass, build_charclass_op, fetch_number, create_tree):
11495         (create_token_tree, mark_opt_subexp, duplicate_tree):
11496         Use prototypes rather than old-style definitions.
11497
11498         * lib/regex_internal.c:
11499         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
11500         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
11501         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11502         (re_string_reconstruct, re_string_peek_byte_case):
11503         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
11504         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11505         (re_node_set_init_copy, re_node_set_add_intersect):
11506         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11507         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11508         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11509         (re_acquire_state, re_acquire_state_context, register_state):
11510         (create_ci_newstate, create_cd_newstate, free_state):
11511         Likewise.
11512         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
11513         re_search_2):
11514         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
11515         (re_search_internal, prune_impossible_nodes):
11516         (acquire_init_state_context, check_matching, static):
11517         (check_halt_node_context, check_halt_state_context, proceed_next_node):
11518         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
11519         (update_regs, sift_states_backward, build_sifted_states):
11520         (clean_state_log_if_needed, merge_state_array):
11521         (update_cur_sifted_state, add_epsilon_src_nodes):
11522         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
11523         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
11524         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
11525         (find_recover_state, check_subexp_matching_top, transit_state_mb):
11526         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
11527         (check_arrival, check_arrival_add_next_nodes):
11528         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11529         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11530         (check_node_accept_bytes, check_node_accept, extend_buffers):
11531         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
11532         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
11533         (sift_ctx_init):
11534         Likewise.
11535
11536         * lib/regex_internal.h:
11537         (re_string_allocate, re_string_construct, re_string_reconstruct):
11538         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
11539         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
11540         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
11541         (re_string_context_at, re_string_peek_byte_case):
11542         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
11543         is defined, since we now use prototypes always.
11544
11545         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
11546         C89 or better.  All uses removed.
11547
11548 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11549
11550         * config/srclist.txt: Add glibc bugs 1220-1227.
11551
11552 2005-08-20  Jim Meyering  <jim@meyering.net>
11553
11554         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
11555         of unused local, dfa.
11556
11557 2005-08-20  Bruno Haible  <bruno@clisp.org>
11558
11559         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
11560
11561 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11562
11563         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
11564         (re_node_set_insert_last, re_dfa_add_node):
11565         Rename local variables to avoid GCC shadowing warnings.
11566
11567 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11568
11569         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
11570         [defined lint]: Suppress bogus uninitialized-variable warnings.
11571
11572         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
11573         and let the caller return REG_ESPACE if out of space.  This
11574         removes an uninitialied-variable warning with GCC 4.0.1, and also
11575         avoids taking the address of a local variable.  All callers
11576         changed.
11577
11578 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11579
11580         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
11581         $LIBCSRC/posix/regexec.c.
11582         Add glibc bug 1217 for regcomp.c.
11583
11584 2005-08-19  Jim Meyering  <jim@meyering.net>
11585
11586         * lib/regexec.c (proceed_next_node): Redo local variables to
11587         avoid GCC shadowing warnings.
11588
11589 2005-08-18  Bruno Haible  <bruno@clisp.org>
11590
11591         * lib/strstr.c (strstr): Fix return value in multibyte case.
11592         * lib/strcasestr.c (strcasestr): Likewise.
11593
11594 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11595
11596         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
11597
11598 2005-08-17  Jim Meyering  <jim@meyering.net>
11599
11600         Make the %s format (seconds since the epoch) work for a negative
11601         number and when used with a zero-padded field width, e.g. %015s.
11602
11603         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
11604         label so that it precedes the code to set `digits'.  Otherwise,
11605         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
11606         print `00-22'.  Now, it prints `-0022', as it should.
11607
11608 2005-08-17  Bruno Haible  <bruno@clisp.org>
11609
11610         * modules/strstr (Files): Add m4/mbrtowc.m4.
11611         (Depends-on): Add mbuiter.
11612
11613 2005-08-17  Bruno Haible  <bruno@clisp.org>
11614
11615         * modules/strcasestr: New file.
11616         * MODULES.html.sh (String handling, based on ANSI C 89): Add
11617         strcasestr.
11618
11619 2005-08-17  Bruno Haible  <bruno@clisp.org>
11620
11621         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
11622
11623 2005-08-17  Bruno Haible  <bruno@clisp.org>
11624
11625         * modules/mbuiter: New file.
11626         * MODULES.html.sh (Extended multibyte and wide character utilities):
11627         Add mbuiter.
11628
11629 2005-08-17  Bruno Haible  <bruno@clisp.org>
11630
11631         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
11632         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
11633
11634 2005-08-17  Bruno Haible  <bruno@clisp.org>
11635
11636         * m4/strcasestr.m4: New file.
11637
11638 2005-08-17  Bruno Haible  <bruno@clisp.org>
11639
11640         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
11641         * lib/strstr.c: Completely rewritten, with multibyte locale support.
11642
11643 2005-08-17  Bruno Haible  <bruno@clisp.org>
11644
11645         * lib/strcasestr.h: New file.
11646         * lib/strcasestr.c: New file.
11647
11648 2005-08-17  Bruno Haible  <bruno@clisp.org>
11649
11650         * lib/strcasecmp.c: Use mbuiter.h.
11651
11652 2005-08-17  Bruno Haible  <bruno@clisp.org>
11653
11654         * lib/mbuiter.h: New file.
11655
11656 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
11657
11658         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
11659         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
11660         and gl_GETOPT are both invoked via different paths (as happens
11661         with GNU tar CVS because it uses both argp and getopt), the former
11662         wins.
11663
11664 2005-08-16  Bruno Haible  <bruno@clisp.org>
11665
11666         * modules/tls: New file.
11667         * MODULES.html.sh (Multithreading): Add tls.
11668
11669 2005-08-16  Bruno Haible  <bruno@clisp.org>
11670
11671         * modules/strnlen1: New file.
11672         * MODULES.html.sh (String handling): Add strnlen1.
11673
11674 2005-08-16  Bruno Haible  <bruno@clisp.org>
11675
11676         * modules/strcase (Files): Add m4/mbrtowc.m4.
11677         (Depends-on): Add strnlen1, mbchar.
11678
11679 2005-08-16  Bruno Haible  <bruno@clisp.org>
11680
11681         * modules/mbiter: New file.
11682         * MODULES.html.sh (Extended multibyte and wide character utilities):
11683         Add mbiter.
11684
11685 2005-08-16  Bruno Haible  <bruno@clisp.org>
11686
11687         * modules/mbfile: New file.
11688         * MODULES.html.sh (Extended multibyte and wide character utilities):
11689         Add mbfile.
11690
11691 2005-08-16  Bruno Haible  <bruno@clisp.org>
11692
11693         * modules/mbchar: New file.
11694         * MODULES.html.sh (Extended multibyte and wide character utilities):
11695         New section.
11696
11697 2005-08-16  Bruno Haible  <bruno@clisp.org>
11698
11699         * m4/tls.m4: New file, from GNU gettext.
11700
11701 2005-08-16  Bruno Haible  <bruno@clisp.org>
11702
11703         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
11704         always.
11705         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
11706
11707 2005-08-16  Bruno Haible  <bruno@clisp.org>
11708
11709         * m4/mbiter.m4: New file.
11710
11711 2005-08-16  Bruno Haible  <bruno@clisp.org>
11712
11713         * m4/mbfile.m4: New file.
11714
11715 2005-08-16  Bruno Haible  <bruno@clisp.org>
11716
11717         * m4/mbchar.m4: New file.
11718
11719 2005-08-16  Bruno Haible  <bruno@clisp.org>
11720
11721         * lib/tls.h: New file, from GNU gettext.
11722         * lib/tls.c: New file, from GNU gettext.
11723
11724 2005-08-16  Bruno Haible  <bruno@clisp.org>
11725
11726         * lib/strnlen1.h: New file.
11727         * lib/strnlen1.c: New file.
11728
11729 2005-08-16  Bruno Haible  <bruno@clisp.org>
11730
11731         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
11732         (mbi_init): Update.
11733         (mbi_avail, mbi_advance): Let the iteration end before the terminating
11734         NUL byte, not after it.
11735
11736 2005-08-16  Bruno Haible  <bruno@clisp.org>
11737
11738         * lib/strcase.h (strcasecmp): Add note in comments.
11739         * lib/strncasecmp.c: Use code from strcasecmp.c.
11740         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
11741         (strcasecmp): Work correctly in multibyte locales.
11742
11743 2005-08-16  Bruno Haible  <bruno@clisp.org>
11744
11745         * lib/mbiter.h: New file.
11746
11747 2005-08-16  Bruno Haible  <bruno@clisp.org>
11748
11749         * lib/mbfile.h: New file.
11750
11751 2005-08-16  Bruno Haible  <bruno@clisp.org>
11752
11753         * lib/mbchar.h: New file.
11754         * lib/mbchar.c: New file.
11755
11756 2005-08-16  Bruno Haible  <bruno@clisp.org>
11757
11758         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
11759         the valid ones. Makes the comparison operations transitive:
11760         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
11761         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
11762
11763 2005-08-15  Simon Josefsson  <jas@extundo.com>
11764
11765         * modules/ssize_t (License): Change to 'unlimited'.
11766
11767         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
11768
11769 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11770
11771         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
11772         Add comments for each pending glibc patch.
11773
11774 2005-08-15  Bruno Haible  <bruno@clisp.org>
11775
11776         * lib/regex.h (__restrict_arr): Don't define to __restrict if
11777         __cplusplus is defined.
11778
11779 2005-08-14  Jim Meyering  <jim@meyering.net>
11780
11781         Sync from coreutils.
11782
11783         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
11784         Use the hash-table-based cycle-detection code not just when
11785         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
11786         Reported by James Youngman in
11787         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
11788         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
11789         FTS_TIGHT_CYCLE_CHECK.
11790         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
11791         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
11792         once again.
11793         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
11794         * lib/fts.c (fd_safer): Remove decl.
11795         Include fcntl--.h rather than unistd-safer.h
11796         (fts_safe_changedir): Don't call fd_safer; no longer needed
11797         now that we include fcntl--.h.
11798
11799 2005-08-12  Simon Josefsson  <jas@extundo.com>
11800
11801         * modules/getndelim2: Use ssize_t module.
11802         * modules/getnline: Likewise.
11803         * modules/safe-read: Likewise.
11804         * modules/xreadlink: Likewise.
11805
11806         * modules/ssize_t: New file.
11807
11808 2005-08-12  Simon Josefsson  <jas@extundo.com>
11809
11810         * m4/readline.m4: Look for termcap, curses or ncurses if required.
11811
11812 2005-08-12  Simon Josefsson  <jas@extundo.com>
11813
11814         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11815         ssize_t.
11816
11817 2005-08-12  Simon Josefsson  <jas@extundo.com>
11818
11819         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
11820         readline, getdelim and check_version.
11821         (Support for systems lacking ISO C 99: Sizes of integer types):
11822         Add size_max.
11823
11824 2005-08-12  Bruno Haible  <bruno@clisp.org>
11825
11826         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
11827
11828 2005-08-11  Simon Josefsson  <jas@extundo.com>
11829
11830         * modules/readline: New file.
11831
11832         * modules/strnlen (Files): Add strnlen.h.
11833
11834 2005-08-11  Simon Josefsson  <jas@extundo.com>
11835
11836         * m4/readline.m4: New file.
11837
11838 2005-08-11  Simon Josefsson  <jas@extundo.com>
11839
11840         * lib/readline.h, readline.c: New file.
11841
11842 2005-08-11  Simon Josefsson  <jas@extundo.com>
11843
11844         * doc/gnulib.texi (Initial import, Finishing touches): Mention
11845         gl_AVOID.
11846
11847 2005-08-11  Bruno Haible  <bruno@clisp.org>
11848
11849         * lib/strnlen.h (strnlen): Change parameter name to match comment.
11850
11851 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
11852
11853         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
11854
11855 2005-08-10  Simon Josefsson  <jas@extundo.com>
11856
11857         * tests/test-iconvme.c: New file.
11858
11859 2005-08-10  Simon Josefsson  <jas@extundo.com>
11860
11861         * m4/strnlen.m4: New file.
11862
11863         * m4/strndup.m4: Don't check for strnlen declaration, done in
11864         strnlen.m4.
11865
11866 2005-08-10  Simon Josefsson  <jas@extundo.com>
11867
11868         * lib/strndup.c: Use strnlen.h.
11869
11870         * lib/strnlen.h: New file.
11871
11872 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11873
11874         * README: Typos.
11875
11876 2005-08-02  Simon Josefsson  <jas@extundo.com>
11877
11878         * modules/readline: New file.
11879
11880 2005-08-02  Simon Josefsson  <jas@extundo.com>
11881
11882         * modules/getdelim: New file.
11883
11884         * modules/getline: Rewrite, don't use getndelim2.
11885
11886 2005-08-02  Simon Josefsson  <jas@extundo.com>
11887
11888         * m4/getline.m4: Separate out getdelim stuff into separate module.
11889
11890         * m4/getdelim.m4: New file.
11891
11892 2005-08-02  Simon Josefsson  <jas@extundo.com>
11893
11894         * lib/getline.h, getline.c: Rewrite.
11895
11896         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
11897
11898 2005-07-31  Bruno Haible  <bruno@clisp.org>
11899
11900         * lib/lock.h (gl_lock_initializer): New macro.
11901         (gl_lock_define_initialized): Use it.
11902         (gl_rwlock_initializer): New macro.
11903         (gl_rwlock_define_initialized): Use it.
11904         (gl_recursive_lock_initializer): New macro.
11905         (gl_recursive_lock_define_initialized): Use it.
11906
11907 2005-07-30  Karl Berry  <karl@gnu.org>
11908
11909         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
11910         Report from Ben Pfaff, regarding getopt.
11911
11912 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
11913
11914         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
11915         normal way.
11916         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
11917         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
11918         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
11919         (gl_GETOPT): Use the new macros.  Most of the implementation
11920         is moved to the new macros.  This is for programs like Emacs
11921         that don't want all the functionality of gl_GETOPT.
11922
11923 2005-07-26  Bruno Haible  <bruno@clisp.org>
11924
11925         * m4/lock.m4: Update from GNU gettext.
11926
11927 2005-07-26  Bruno Haible  <bruno@clisp.org>
11928
11929         * lib/lock.h: Update from GNU gettext.
11930         * lib/lock.c: Update from GNU gettext.
11931
11932 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
11933
11934         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
11935         obsolescent AC_TRY_RUN.  Include the default includes files, for
11936         'exit'.
11937
11938 2005-07-24  Bruno Haible  <bruno@clisp.org>
11939
11940         * modules/visibility: New file.
11941         * MODULES.html.sh (Misc): Add visibility.
11942
11943 2005-07-24  Bruno Haible  <bruno@clisp.org>
11944
11945         * m4/visibility.m4: New file.
11946
11947 2005-07-24  Bruno Haible  <bruno@clisp.org>
11948
11949         * doc/visibility.texi: New file.
11950
11951 2005-07-22  Bruno Haible  <bruno@clisp.org>
11952
11953         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
11954         $(ALLOCA_H), redundant through BUILT_SOURCES.
11955         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
11956         redundant through BUILT_SOURCES.
11957         * modules/byteswap (Makefile.am): Remove explicit dependency on
11958         $(BYTESWAP_H), redundant through BUILT_SOURCES.
11959         * modules/fnmatch (Makefile.am): Remove explicit dependency on
11960         $(FNMATCH_H), redundant through BUILT_SOURCES.
11961         * modules/getopt (Makefile.am): Remove explicit dependency on
11962         $(GETOPT_H), redundant through BUILT_SOURCES.
11963         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
11964         redundant through BUILT_SOURCES.
11965         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
11966         redundant through BUILT_SOURCES.
11967         * modules/stdbool (Makefile.am): Remove explicit dependency on
11968         $(STDBOOL_H), redundant through BUILT_SOURCES.
11969         * modules/stdint (Makefile.am): Remove explicit dependency on
11970         $(STDINT_H), redundant through BUILT_SOURCES.
11971         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
11972         Remove explicit dependency on $(SYSEXITS_H).
11973         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
11974
11975 2005-07-18  Simon Josefsson  <jas@extundo.com>
11976
11977         * lib/check-version.c (check_version): Accept identical versions too.
11978
11979 2005-07-18  Bruno Haible  <bruno@clisp.org>
11980
11981         * modules/lock: New file.
11982         * MODULES.html.sh (Multithreading): New section.
11983
11984 2005-07-18  Bruno Haible  <bruno@clisp.org>
11985
11986         * m4/lock.m4: New file, from GNU gettext.
11987
11988 2005-07-18  Bruno Haible  <bruno@clisp.org>
11989
11990         * lib/lock.h: New file, from GNU gettext.
11991         * lib/lock.c: New file, from GNU gettext.
11992
11993 2005-07-18  Bruno Haible  <bruno@clisp.org>
11994
11995         * lib/lock.h (gl_once_t): New type.
11996         (gl_once_define, gl_once): New macros.
11997         * lib/lock.c (fresh_once): New variable.
11998         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
11999         functions.
12000
12001 2005-07-16  Simon Josefsson  <jas@extundo.com>
12002
12003         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
12004         workaround, suggested by Bruno.
12005
12006 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12007
12008         * modules/xalloc (Depends-on): Add xalloc-die.
12009         * modules/xvasprintf (Depends-on): Add xalloc-die.
12010
12011 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12012
12013         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
12014         with a minor change.
12015
12016 2005-07-15  Bruno Haible  <bruno@clisp.org>
12017
12018         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
12019         When using lib/poll.c, define poll as rpl_poll.
12020
12021 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
12022
12023         * modules/argp (Depends-on): Remove unlocked-io.
12024
12025 2005-07-14  Derek Price  <derek@ximbiot.com>
12026
12027         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
12028         for glob symlink bug.
12029
12030 2005-07-14  Bruno Haible  <bruno@clisp.org>
12031
12032         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
12033         Instead, test for *_unlocked function declarations directly.
12034
12035 2005-07-11  Simon Josefsson  <jas@extundo.com>
12036
12037         * modules/size_max: New file.
12038
12039         * modules/xsize: Depend on size_max module for size_max.m4.
12040
12041 2005-07-11  Simon Josefsson  <jas@extundo.com>
12042
12043         * lib/size_max.h: New file.
12044
12045 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
12046
12047         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
12048         copyright symbol and the year.
12049         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
12050         (version_etc_va): Use parameterized copyright notice.
12051         Reword to conform to the current GNU coding standards.
12052
12053 2005-07-11  Karl Berry  <karl@gnu.org>
12054
12055         * doc/gnulib.texi (Quoting): new node.
12056         (Initial import): more info, from Patrice.
12057
12058 2005-07-11  Bruno Haible  <bruno@clisp.org>
12059
12060         * gnulib-tool (func_usage): Document option --avoid.
12061         (Command line options): Handle --avoid.
12062         (func_acceptable): New function.
12063         (func_modules_transitive_closure): Use it.
12064
12065 2005-07-11  Bruno Haible  <bruno@clisp.org>
12066
12067         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
12068         Reported by Jim Meyering.
12069
12070 2005-07-10  Bruno Haible  <bruno@clisp.org>
12071
12072         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12073         Needed when size_t is smaller than 'unsigned int'.
12074         Reported by Paul Eggert.
12075
12076 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12077
12078         * modules/argp (Depends-on): Add unlocked-io
12079
12080 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12081
12082         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12083         block of defines.
12084
12085 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12086
12087         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12088         fix now.
12089
12090 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12091         and Paul Eggert  <eggert@cs.ucla.edu>
12092
12093         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12094         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12095
12096 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12097
12098         * modules/regex (Files): Add lib/regex_internal.c,
12099         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12100         (Depends-on): Add extensions.
12101         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12102
12103 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12104
12105         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12106         pathconf.
12107         * m4/same.m4 (gl_SAME): Likewise.
12108         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12109
12110         * m4/regex.m4: Adjust to new libc regex implementation.
12111         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12112         all the .c and .h parts of (the new) regex.
12113         Quote the m4 stuff better.
12114         Check for RE_ICASE bug of old gnulib.
12115         Check for REG_STARTEND of recent libc.
12116         Rename local variables from jm_* to gl_*.
12117         Quote operand of "test -f".
12118         Say "recent enough" version of libc, not "version 2".
12119         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12120         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12121         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12122         Remove check for btowc, isascii.
12123         Require AM_LANGINFO_CODESET.
12124
12125 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12126
12127         * lib/regex.c, regex.h: Sync from libc.
12128         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12129         * lib/regexec.c:
12130         New files, synced from libc, except that regex_internal.h
12131         currently has a small porting fix.
12132
12133 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12134
12135         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12136         regex_internal.c, regexec.c.
12137         Add regex_internal.h too, but as a comment, since the libc version
12138         is currently broken in gnulib mode.
12139
12140 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12141
12142         Support programs like Emacs that use gnulib but not gettext.
12143         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12144         * modules/gettext-h: New file.
12145         * modules/gettext (Files): Remove lib/gettext.h.
12146         (Depends-on): Add gettext-h.
12147         (Makefile.am): Remove lib_SOURCES.
12148         * modules/argmatch, modules/c-stack, modules/closeout:
12149         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12150         * modules/execute, modules/file-type, modules/getaddrinfo:
12151         * modules/getopt, modules/human, modules/javacomp:
12152         * modules/javaexec, modules/mkdir-p, modules/obstack:
12153         * modules/openat, modules/pagealign_alloc, modules/pipe:
12154         * modules/quotearg, modules/regex, modules/rpmatch:
12155         * modules/unicodeio, modules/userspec, modules/version-etc:
12156         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12157         * modules/xsetenv:
12158         Depend on gettext-h, not gettext.
12159
12160 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12161
12162         * gnulib-tool (func_import): Add support for 'public domain' license.
12163         * modules/alloca, modules/atexit, modules/memmove:
12164         Now public domain, not GPL.
12165         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
12166         * modules/realloc, modules/strerror, modules/strtod:
12167         Now LGPL, not GPL.
12168
12169 2005-07-05  Bruno Haible  <bruno@clisp.org>
12170
12171         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
12172         autoconf CVS. Needed for mingw.
12173
12174 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12175
12176         Remove the dependency of the strftime module on the tzset module.
12177         * modules/strftime (Depends-on): Remove dependency on tzset.
12178
12179 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12180
12181         Remove the dependency of the strftime module on the tzset module.
12182         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
12183         gl_FUNC_TZSET_CLOBBER.
12184
12185 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12186
12187         Remove the dependency of the strftime module on the tzset module.
12188         * lib/strftime.c (my_strftime)
12189         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
12190         Copy the input structure, to work around some of the bug with
12191         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
12192         Solaris releases, you should also use the tzset module, but we won't
12193         require it as a dependency any more since we don't want LGPLed code
12194         to depend on GPLed code.
12195
12196 2005-07-02  Jim Meyering  <jim@meyering.net>
12197
12198         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
12199         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
12200         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
12201         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
12202
12203 2005-07-02  Jim Meyering  <jim@meyering.net>
12204
12205         * lib/backupfile.c (backup_args): Change a `0' to NULL.
12206
12207 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12208
12209         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
12210         declares only 'struct timespec;' (!).
12211
12212 2005-07-01  Jim Meyering  <jim@meyering.net>
12213
12214         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
12215         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
12216         * lib/save-cwd.c, tempname.c:
12217         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
12218         and don't include <sys/file.h>).
12219
12220 2005-06-29  Jim Meyering  <jim@meyering.net>
12221
12222         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
12223         type name.  Use the variable name instead.
12224         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
12225         Likewise.
12226
12227 2005-06-28  Simon Josefsson  <jas@extundo.com>
12228
12229         * modules/check-version (Files): Add check-version.m4.
12230
12231 2005-06-28  Simon Josefsson  <jas@extundo.com>
12232
12233         * m4/check-version.m4: New file, suggested by Jim Meyering
12234         <jim@meyering.net>.
12235
12236 2005-06-28  Simon Josefsson  <jas@extundo.com>
12237
12238         * lib/check-version.h, lib/check-version.c: New files.
12239
12240 2005-06-28  Simon Josefsson  <jas@extundo.com>
12241
12242         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
12243         collision with global variable.  Better indentation.  Don't
12244         increment buffer pointer beyond buffer end.  Based on comments
12245         from Paul Eggert <eggert@cs.ucla.edu>.
12246
12247         * lib/base64.h: Indent.
12248
12249 2005-06-28  Simon Josefsson  <jas@extundo.com>
12250
12251         * doc/gnulib.texi (Library version handling): New section.
12252
12253 2005-06-28  Jim Meyering  <jim@meyering.net>
12254
12255         * check-module (find_included_lib_files): Hard-code another
12256         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
12257         but modules/fts-lgpl (correctly) does not list those files.
12258
12259         * modules/canonicalize (Files): Add lib/pathmax.h.
12260
12261 2005-06-25  Simon Josefsson  <jas@extundo.com>
12262
12263         * modules/check-version: New file.
12264
12265 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12266
12267         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
12268         initializer of struct addrinfo, as an indication that we don't
12269         care how many members the structure has.
12270
12271 2005-06-24  Derek Price  <derek@ximbiot.com>
12272         and Bruno Haible  <bruno@clisp.org>
12273
12274         Remove stat module & update lstat.
12275         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
12276         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
12277         * m4/stat.m4: Remove this file.
12278
12279 2005-06-24  Derek Price  <derek@ximbiot.com>
12280         and Bruno Haible  <bruno@clisp.org>
12281
12282         Remove stat module & update lstat.
12283         * lib/stat.c: Remove this file...
12284         (slash_aware_lstat): ...moving this content and its support...
12285         * lib/lstat.c (rpl_lstat): ...into here.
12286         * lib/lstat.h: New file.
12287
12288 2005-06-24  Derek Price  <derek@ximbiot.com>
12289         and Bruno Haible  <bruno@clisp.org>
12290
12291         Remove stat module & update lstat.
12292         * config/srclist.txt (libc sources): Remove stat.
12293
12294 2005-06-24  Derek Price  <derek@ximbiot.com>
12295         and Bruno Haible  <bruno@clisp.org>
12296
12297         Remove stat module & update lstat.
12298         * MODULES.html.sh (stat): Remove.
12299         * MODULES.html: Regenerated.
12300         * modules/lstat (Description): Correct function name.
12301         (Files): Add "lstat.h".
12302         (Depends-on): Remove stat, add xalloc, stat-macros.
12303         * modules/stat: Remove this file.
12304         (Include): Add "lstat.h", remove <sys/stat.h>.
12305
12306 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12307
12308         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
12309         (ranged_convert): Don't save conversion in a temporary struct.
12310         This causes a warning with GCC 4.0.0, and anyway in the typical
12311         case it's not worth the extra 100 bytes or so of code.
12312         (ranged_convert, __mktime_internal): When calling a function via a
12313         pointer P, use P () rather than (*P) (), as we now assume C89 or
12314         better.
12315
12316 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12317
12318         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
12319         "who -r" failed to give output.  Problem reported by Tim Waugh.
12320
12321         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
12322         (xcalloc): Use it to avoid needless tests.
12323         Problem reported by Jim Meyering.
12324
12325 2005-06-20  Derek Price  <derek@ximbiot.com>
12326
12327         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
12328         unnecessary for Autoconfs > 2.59c.
12329
12330 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12331
12332         * lib/argp.h (__option_is_short): Check upper limit of
12333         __key. Isprint() requires its argument to have the value
12334         of an unsigned char or EOF.
12335
12336 2005-06-16  Jim Meyering  <jim@meyering.net>
12337
12338         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
12339         when either N or S is zero.
12340
12341 2005-06-16  Derek Price  <derek@ximbiot.com>
12342
12343         * m4/bison.m4: Declare YACC & YFLAGS precious.
12344
12345 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
12346
12347         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
12348         multibyte string or pattern, fall back on unibyte matching.
12349         Problem reported by James Youngman.
12350
12351 2005-06-08  Bruno Haible  <bruno@clisp.org>
12352
12353         * modules/csharpcomp: New file.
12354         * MODULES.html.sh (C#): Add csharpcomp.
12355
12356 2005-06-08  Bruno Haible  <bruno@clisp.org>
12357
12358         * m4/csharpcomp.m4: New file, from GNU gettext.
12359
12360 2005-06-08  Bruno Haible  <bruno@clisp.org>
12361
12362         * lib/csharpcomp.h: New file, from GNU gettext.
12363         * lib/csharpcomp.c: New file, from GNU gettext.
12364         * lib/csharpcomp.sh.in: New file, from GNU gettext.
12365
12366 2005-06-08  Bruno Haible  <bruno@clisp.org>
12367
12368         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
12369         warning on mingw.
12370
12371 2005-06-07  Derek Price  <derek@ximbiot.com>
12372
12373         Sync from CVS.
12374         * lib/glob_.h: Indent nested #ifdef.
12375
12376 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12377
12378         Sync from coreutils.
12379         Use "file name" when talking about file names, instead of "filename"
12380         or "path", as per the GNU coding standards.
12381         * lib/mkdir-p.c: Renamed from makepath.c.
12382         (make_dir_parents): Renamed from make_path.  All callers changed.
12383         * lib/mkdir-p.h: Likewise.  All includers changed.
12384         * lib/filenamecat.c: Renamed from path-concat.c.
12385         (file_name_concat): Renamed from path_concat.  All callers changed.
12386         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
12387         * lib/filenamecat.h: Likewise.  All includers changed.
12388         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
12389         in comments or local variable names.
12390         * lib/basename.c: Likewise.
12391         * lib/canonicalize.c, canonicalize.h: Likewise.
12392         * lib/dirname.c, dirname.h: Likewise.
12393         * lib/euidaccess.c: Likewise.
12394         * lib/exclude.c: Likewise
12395         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
12396         * lib/fsusage.c, fsuage.h: Likewise.
12397         * lib/fts.c, fts_.h: Likewise.
12398         * lib/getcwd.c: Likewise.
12399         * lib/getloadavg.c: Likewise.
12400         * lib/mkstemp.c: Likewise.
12401         * lib/mountlist.c, mountlist.h: Likewise.
12402         * lib/openat.c, openat.h: Likewise.
12403         * lib/readlink-stub.c: Likewise.
12404         * lib/readutmp.c, readutmp.h: Likewise.
12405         * lib/rename.c: Likewise.
12406         * lib/rmdir.c: Likewise.
12407         * lib/same.c: Likewise.
12408         * lib/savedir.c: Likewise.
12409         * lib/stripslash.c: Likewise.
12410         * lib/tempname.c: Likewise.
12411         * lib/xreadlink.c: Likewise.
12412         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
12413         All uses changed.
12414         * lib/exclude.h: Likewise.
12415
12416         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
12417         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12418         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
12419         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12420         * lib/pathmax.h: Include <limits.h> unconditionally, since other
12421         files have been getting away with it for years (MORE/BSD 4.3
12422         is extinct now).
12423         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
12424         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12425
12426         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
12427         Define to 256, not 255, as per modern POSIX.
12428
12429 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12430
12431         Sync from coreutils.
12432         Use "file name" when talking about file names, instead of "filename"
12433         or "path", as per the GNU coding standards.
12434         * MODULES.html.sh: mkdir-p renamed from makepath.
12435         filenamecat renamed from path-concat.
12436         * modules/filenamecat: Renamed from modules/path-concat.
12437         (Files): filenamecat.h and filenamecat.c renamed from
12438         path-concat.h and path-concat.c.
12439         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
12440         (Include): filenamecat.h, not path-concat.h.
12441         * modules/mkdir-p: Renamed from modules/makepath.
12442         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
12443         makepath.c.
12444         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
12445         (Include): mkdir-p.h, not makepath.h.
12446
12447 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12448
12449         Sync from coreutils.
12450         * m4/mkdir-p.m4: Renamed from makepath.m4.
12451         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
12452         Rename files from makepath.c to mkdir-p.c, and from
12453         makepath.h to mkdir-p.h.
12454         * m4/filenamecat.m4: Renamed from path-concat.m4.
12455         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
12456         Rename files from path-concat.c to filenamecat.c,
12457         and from path-concat.h to filenamecat.h.
12458         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
12459         "file name" in local variables or comments.
12460         * m4/rename.m4: Likewise.
12461
12462 2005-06-01  Bruno Haible  <bruno@clisp.org>
12463
12464         * modules/csharpexec: New file.
12465         * MODULES.html.sh (C#): New section.
12466
12467 2005-06-01  Bruno Haible  <bruno@clisp.org>
12468
12469         * m4/csharp.m4: New file, from GNU gettext.
12470         * m4/csharpexec.m4: New file, from GNU gettext.
12471
12472 2005-06-01  Bruno Haible  <bruno@clisp.org>
12473
12474         * lib/csharpexec.h: New file, from GNU gettext.
12475         * lib/csharpexec.c: New file, from GNU gettext.
12476         * lib/csharpexec.sh.in: New file, from GNU gettext.
12477
12478 2005-05-31  Derek Price  <derek@ximbiot.com>
12479             Paul Eggert  <eggert@cs.ucla.edu>
12480
12481         Sync from cvs.
12482         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12483
12484 2005-05-31  Derek Price  <derek@ximbiot.com>
12485             Paul Eggert  <eggert@cs.ucla.edu>
12486
12487         Sync from cvs.
12488         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12489
12490 2005-05-29  Derek Price  <derek@ximbiot.com>
12491
12492         * config/srclist.txt (glob_.h, glob.c): Add these files.
12493
12494 2005-05-29  Derek Price  <derek@ximbiot.com>
12495
12496         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
12497         * modules/glob: New file.
12498         * modules/getlogin_r: Add link to POSIX spec in description.
12499
12500 2005-05-29  Derek Price  <derek@ximbiot.com>
12501             Paul Eggert  <eggert@cs.ucla.edu>
12502
12503         * m4/glob.m4: New file.
12504
12505 2005-05-29  Derek Price  <derek@ximbiot.com>
12506             Paul Eggert  <eggert@cs.ucla.edu>
12507
12508         * lib/glob_.h, lib/glob.c: New files.
12509
12510 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12511
12512         * modules/fts (Files): Remove m4/inttypes-pri.m4.
12513         * modules/fts-lgpl (Depends-on): Remove gettext.
12514
12515 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12516
12517         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
12518         and don't require gt_INTTYPES_PRI.
12519
12520 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12521
12522         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
12523
12524         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
12525         the configuration hassle isn't worth it.
12526         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
12527         (LONGEST_MODIFIER, PRIuMAX): Remove.
12528
12529 2005-05-27  Bruno Haible  <bruno@clisp.org>
12530
12531         * lib/getlogin_r.h: Remove second include of <stddef.h>.
12532
12533 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
12534
12535         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
12536         _POSIX_PTHREAD_SEMANTICS for Solaris.
12537
12538 2005-05-25  Derek Price  <derek@ximbiot.com>
12539
12540         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
12541
12542 2005-05-25  Derek Price  <derek@ximbiot.com>
12543             Paul Eggert  <eggert@cs.ucla.edu>
12544
12545         * modules/getlogin_r, m4/getlogin_r.m4: New files.
12546         * lib/getlogin_r.c, getlogin_r.h: New files.
12547
12548 2005-05-25  Bruno Haible  <bruno@clisp.org>
12549             Derek Price  <derek@ximbiot.com>
12550
12551         * lib/getlogin_r.h: Simplify API documentation.
12552
12553 2005-05-23  Derek Price  <derek@ximbiot.com>
12554
12555         * modules/minmax (Files): Add m4/minmax.m4.
12556         (configure.ac): Add gl_MINMAX.
12557
12558 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12559
12560         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
12561         so that unistd-safer.h (GPL'ed code) need not be included.
12562
12563 2005-05-22  Bruno Haible  <bruno@clisp.org>
12564
12565         * m4/minmax.m4: New file.
12566         Based on a patch by Derek Price <derek@ximbiot.com>.
12567
12568 2005-05-22  Bruno Haible  <bruno@clisp.org>
12569
12570         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
12571         (INT64_MIN): Fix definition.
12572         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
12573
12574         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
12575         NEED_SIGNED_INT_TYPES.
12576
12577         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
12578         HAVE_SYSTEM_INTTYPES.
12579
12580 2005-05-22  Bruno Haible  <bruno@clisp.org>
12581
12582         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
12583         Also include <sys/param.h> if it defines MIN, MAX.
12584         Based on a patch by Derek Price <derek@ximbiot.com>.
12585
12586 2005-05-21  Jim Meyering  <jim@meyering.net>
12587
12588         * modules/fts (Files): Add m4/inttypes-pri.m4.
12589         (Depends-on): Add lstat and remove gettext.  Alphabetize.
12590
12591 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12592
12593         New fts module.
12594         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
12595         (setup_dir, free_dir): New functions.
12596         (enter_dir, leave_dir): Define trivial
12597         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
12598         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
12599         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
12600         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
12601         Move to fts-cycle.c.
12602         (fts_open): Use setup_dir.
12603         (fts_close): Use free_dir.
12604         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
12605         This adds a label and some gotos, but the alternatives were messier.
12606         Check for memory allocation failure when entering a dir.
12607         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
12608         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
12609         (FTS): New member fts_cycle, that is a union that contains the
12610         old active_dir_ht and cycle_state.  All uses changed to mention
12611         fts_cycle.ht and fts_cycle.state.
12612         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
12613         fts.c, with the following changes:
12614         (setup_dir, free_dir): New functions.
12615         (enter_dir): Now returns bool.  Return true if successful, false
12616         if memory exhausted.  All callers changed.
12617         Do not bother partly cleaning up on
12618         memory allocation failure; that is free_dir's job.
12619         However, free ad if hash_insert fails, to avoid memory leak.
12620         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
12621         fts->fts_options to see which union member to use.
12622
12623 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12624
12625         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
12626         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
12627
12628 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12629
12630         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
12631
12632 2005-05-20  Jim Meyering  <jim@meyering.net>
12633
12634         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
12635         Now a macro, to pacify GCC.
12636
12637 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12638
12639         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
12640         of -1.
12641
12642 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12643
12644         * lib/chown.c (rpl_chown): Return -1 on failure.
12645
12646 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12647
12648         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
12649         Don't check for stddef.h.
12650         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
12651         don't use its results.
12652         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
12653         since we include them unconditionally.  Don't require
12654         AM_STDBOOL_H, since stdbool is a prerequisite.
12655         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
12656         since we assume C89 or better.
12657         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
12658         as we don't use their results.
12659         Don't check for fchdir, memmove, memset, strrchr, as we use
12660         them unconditionally.
12661         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
12662         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
12663
12664 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12665
12666         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
12667         Include <stddef.h> unconditionally, since we assume C89 now.
12668         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
12669         * lib/fts.c: Include fts_.h first, to check interface.
12670         Do not include intprops.h; no longer needed.
12671         Include cycle-check.h and hash.h, since fts_.h no longer does.
12672         Remove unnecessary casts of closedir to void.
12673         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
12674         decide whether to decrement nlinks.
12675         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
12676         (FTS): Use struct hash_table * instead of Hash_table, so that
12677         we no longer need to include hash.h here.
12678
12679 2005-05-18  Jim Meyering  <jim@meyering.net>
12680
12681         * modules/dirfd (License): Change to LGPL.  Most of the code
12682         is already in the public domain.
12683
12684 2005-05-18  Jim Meyering  <jim@meyering.net>
12685
12686         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
12687         Reported by Yoann Vandoorselaere.
12688
12689 2005-05-17  Jim Meyering  <jim@meyering.net>
12690
12691         * m4/fts.m4: New file, from coreutils.
12692
12693 2005-05-17  Jim Meyering  <jim@meyering.net>
12694
12695         * lib/fts.c, lib/fts_.h: New files, from coreutils.
12696
12697 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12698
12699         Sync from coreutils.
12700         * m4/unlinkdir.m4: New file.
12701
12702 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12703
12704         Sync from coreutils.
12705         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
12706         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
12707         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
12708         White space changes only.
12709         * lib/makepath.c (make_path): Port to hosts where leading "//" is
12710         special.
12711         * lib/yesno.c: Include getline.h, not ctype.h.
12712         (yesno): Don't remove leading white space; POSIX doesn't allow it.
12713         Use getline to remove arbitrary restriction on response length.
12714
12715 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12716
12717         * config/srclist-update: Spell out "Street" in FSF postal
12718         mail address; this is the style the FSF seems to prefer.
12719
12720         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
12721         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
12722         this updates FSF postal mail address.
12723
12724         Sync from coreutils.
12725         * modules/unlinkdir: New file.
12726         * modules/yesno (Depends-on): Add getline.
12727         * MODULES.html.sh (File system functions): Add unlinkdir.
12728
12729 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12730
12731         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
12732         lib/strsep.h:
12733         Change the initial comment to refer to GPL, not LGPL.
12734         gnulib-tool will change it to LGPL as needed.
12735
12736         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
12737         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
12738         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
12739         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
12740         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
12741         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
12742         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
12743         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
12744         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
12745         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
12746         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
12747         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
12748         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
12749         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
12750         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
12751         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
12752         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
12753         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
12754         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
12755         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
12756         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
12757         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
12758         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
12759         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
12760         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
12761         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
12762         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
12763         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
12764         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
12765         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
12766         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
12767         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
12768         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
12769         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
12770         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
12771         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
12772         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
12773         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
12774         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
12775         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
12776         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
12777         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
12778         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
12779         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
12780         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
12781         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
12782         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
12783         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
12784         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
12785         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
12786         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
12787         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
12788         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
12789         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
12790         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
12791         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
12792         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
12793         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
12794         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
12795         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
12796         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
12797         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
12798         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
12799         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
12800         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
12801         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
12802         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
12803         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
12804         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
12805         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
12806         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
12807         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
12808         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
12809         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
12810         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
12811         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
12812         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
12813         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
12814         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
12815         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
12816         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
12817         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
12818         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
12819         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
12820         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
12821         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
12822         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
12823         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
12824         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
12825         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
12826         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
12827         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
12828         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
12829         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
12830         lib/yesno.c, lib/yesno.h:
12831         Update FSF postal mail address.
12832
12833 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12834
12835         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
12836         tests/test-memmem.c, tests/test-stpncpy.c:
12837         Update FSF postal mail address.
12838
12839 2005-05-13  Bruno Haible  <bruno@clisp.org>
12840
12841         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
12842         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
12843         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
12844         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
12845         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
12846         Add support for 64-bit integers in the MSVC compiler.
12847
12848 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12849
12850         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
12851
12852 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
12853
12854         * gnulib-tool (func_import): Sort and uniquify recommended includes.
12855
12856 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
12857
12858         * doc/getdate.texi (General date syntax): Don't say that date
12859         date --iso-8601=ns generates acceptable dates; it doesn't yet.
12860         Problem reported by Nic Ferrier.
12861
12862 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12863
12864         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
12865         specified in ai_socktype. Fix invalid ai_protocol
12866         check. ai_protocol is usually set to 0 or depending on
12867         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
12868         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
12869         ai_socktype / ai_protocol in the returned addrinfo structure.
12870
12871 2005-05-10  Simon Josefsson  <jas@extundo.com>
12872
12873         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
12874         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12875
12876 2005-05-10  Karl Berry  <karl@gnu.org>
12877
12878         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
12879         (from http://www.gnu.org/licenses).
12880         * doc/COPYING.LIB: also rename to COPYING.LESSER.
12881         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
12882         fdl.texi suffices.
12883
12884 2005-05-10  Karl Berry  <karl@gnu.org>
12885
12886         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
12887         (COPYING.DOC): remove.
12888
12889         * config/srclist-update: new FSF address.
12890
12891 2005-05-10  Derek Price  <derek@ximbiot.com>
12892
12893         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
12894         possible.
12895
12896 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12897             Bruno Haible  <bruno@clisp.org>
12898
12899         * modules/inet_ntop: New file.
12900         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12901         inet_ntop.
12902
12903 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12904             Bruno Haible  <bruno@clisp.org>
12905
12906         * m4/inet_ntop.m4: New file.
12907
12908 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12909             Bruno Haible  <bruno@clisp.org>
12910
12911         * lib/inet_ntop.h: New file.
12912         * lib/inet_ntop.c: New file, from glibc with modifications.
12913
12914 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
12915
12916         * modules/time_r (License): Change to LGPL.
12917         * modules/extensions (License): Change to LGPL.  Actually,
12918         the license is more permissive than that, but currently gnulib-tool
12919         doesn't know how to handle more-permissive licenses.
12920
12921         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
12922         Problem reported by Dave Love.
12923
12924 2005-05-08  Jim Meyering  <jim@meyering.net>
12925
12926         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
12927         blank.
12928
12929 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
12930
12931         * modules/argmatch (Depends-on): Add stdbool.
12932         * modules/backupfile (Depends-on): Likewise.
12933         * modules/chdir-long (Depends-on): Likewise.
12934         * modules/closeout (Depends-on): Likewise.
12935         * modules/cycle-check (Depends-on): Likewise.
12936         * modules/dirname (Depends-on): Likewise.
12937         * modules/fnmatch (Depends-on): Likewise.
12938         * modules/fsusage (Depends-on): Likewise.
12939         * modules/fwriteerror (Depends-on): Likewise.
12940         * modules/getcwd (Depends-on): Likewise.
12941         * modules/getloadavg (Depends-on): Likewise.
12942         * modules/hard-locale (Depends-on): Likewise.
12943         * modules/makepath (Depends-on): Likewise.
12944         * modules/mountlist (Depends-on): Likewise.
12945         * modules/nanosleep (Depends-on): Likewise.
12946         * modules/posixtm (Depends-on): Likewise.
12947         * modules/quotearg (Depends-on): Likewise.
12948         * modules/readtokens (Depends-on): Likewise.
12949         * modules/readtokens0 (Depends-on): Likewise.
12950         * modules/readutmp (Depends-on): Likewise.
12951         * modules/save-cwd (Depends-on): Likewise.
12952         * modules/strftime (Depends-on): Likewise.
12953         * modules/userspec (Depends-on): Likewise.
12954         * modules/utimecmp (Depends-on): Likewise.
12955         * modules/xgetcwd (Depends-on): Likewise.
12956         * modules/xnanosleep (Depends-on): Likewise.
12957         * modules/xstrtod (Depends-on): Likewise.
12958         * modules/yesno (Depends-on): Likewise.
12959
12960 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
12961
12962         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
12963         needless checks.
12964
12965 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12966
12967         Merge from coreutils.  Among other things,
12968         add bulletproofing for cases where stdin, stdout, or stderr are closed.
12969         * lib/fd-safer.c: New file.
12970         * lib/fcntl-safer.h, open-safer.c: Remove.
12971         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
12972         * lib/dup-safer.c: Include unistd-safer.h first.
12973         Don't include errno.h.
12974         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
12975         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
12976         * lib/file-type.c: Rely on file-type.h change.
12977         * lib/getloadavg.c: Include unistd-safer.h.
12978         (getloadavg): Use safer open.
12979         * lib/getusershell.c: Include "stdio-safer.h".
12980         (getusershell): Use safer fopen.
12981         * lib/long-options.c (long_options): Use NULL rather than 0.
12982         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
12983         'free'.
12984         * lib/modechange.c: Likewise.
12985         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
12986         (MODE_DONE): New constant.
12987         (struct mode_change): Remove 'next' member.
12988         (make_node_op_equals): New function; like the old one of the
12989         same name, except it allocates an array.
12990         (mode_compile, mode_create_from_ref): Use it.
12991         (mode_compile): Allocate result as an array, not a linked list.
12992         Parse octal string ourself, so that we catch mistakes like "+0".
12993         (mode_adjust): Arg is an array, not a linked list.
12994         * lib/modechange.c: Include stat-macros.h, xalloc.h.
12995         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
12996         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
12997         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
12998         Remove.  This is now stat-macros.h's job.
12999         (talloc): Remove.  All callers replaced by xalloc, so that
13000         our invokers don't have to worry about reporting memory failures.
13001         (make_node_op_equals): Remove.
13002         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13003         New constants.
13004         (struct mode_change): Moved here from modechange.h.
13005         (mode_append_entry): Remove.
13006         (mode_compile): Remove MASKED_OPS arg, since it encouraged
13007         apps to have incorrect behavior.  Use simpler algorithm for head
13008         and tail.  Don't futz with umask; that's now the job of mode_adjust.
13009         Detect more invalid usages rather than having somewhat-random behavior.
13010         Don't insert an "a=" action, as that leads to incorrect behavior.
13011         (mode_compile, mode_create_from_ref): Return NULL on error instead
13012         of an enum, since now there's only one way to have an error.  All
13013         callers changed.
13014         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
13015         at the correct time.  Simplify calculation of "+u" and its ilk.
13016         Don't mishandle "+X".
13017         (mode_free): Remove "register" and localize decls.
13018         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13019         (struct mode_change): Move to modechange.c; callers don't
13020         need to see this stuff.
13021         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
13022         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
13023         (mode_change, mode_adjust): Reflect the new signatures noted above.
13024         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
13025         that might redefine system include files.
13026         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
13027         (my_usleep): Use NULL rather than (void *) 0.
13028         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
13029         Use siginterrupt to specify that system calls should be interrupted.
13030         (rpl_nanosleep): Move initialization of suspended closer to call of
13031         my_usleep.
13032         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
13033         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
13034         (desirable_utmp_entry): New function.
13035         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
13036         using x2nrealloc, to simplify logic.
13037         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
13038         size calculation.  Do not assume utmp file is a regular file.
13039         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
13040         (READ_UTMP_CHECK_PIDS): New constant.
13041         * lib/save-cwd.c: Include unistd-safer.h.
13042         (save_cwd): Use fd_safer.
13043         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
13044         [!_LIBC] Include "stat-macros.h" instead.
13045         * lib/unistd-safer.h (fd_safer): New decl.
13046
13047 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13048
13049         * modules/getloadavg (Depends-on): Add unistd-safer.
13050         * modules/getusershell (Depends-on): Add stdio-safer.
13051         * modules/lstat (Depends-on): Remove xalloc.
13052         * modules/mkstemp (Depends-on): Add stat-macros.
13053         * modules/modechange (Depends-on): Remove xstrtol.
13054         Add stat-macros, xalloc.
13055         * modules/save-cwd (Depends-on): Add unistd-safer.
13056         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
13057         * modules/unistd-safer (Files): Add lib/fd-safer.c
13058         (Makefile.am): Remove lib_SOURCES.
13059
13060         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
13061         Remove fcntl-safer; unistd-safer supersedes it.
13062
13063 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13064
13065         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
13066         AC_HEADER_STAT.
13067         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
13068         (gl_PREREQ_CHOWN): Remove.
13069         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
13070         it.  Don't require AC_HEADER_STAT.
13071         (gl_PREREQ_LSTAT): Remove.
13072         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13073         Don't require AC_HEADER_STAT.
13074         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13075         (gl_PREREQ_RMDIR): Remove.
13076         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13077         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13078         the stat-macros module a prerequisite.
13079         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13080         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13081         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13082         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13083         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13084         variable names.
13085         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13086         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13087         variable prefixes.
13088         * m4/fcntl-safer.m4: Remove.
13089         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13090         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13091         Invoke gl_PREREQ_FD_SAFER.
13092         (gl_PREREQ_FD_SAFER): New macro.
13093         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13094         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13095         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13096         Remove duplicate call to AC_LIBOBJ(readutmp).
13097         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13098
13099         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13100         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13101
13102 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13103
13104         * MODULES.html.sh (Misc): Add byteswap.
13105
13106 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13107
13108         * modules/getcwd (Depends-on): Add extensions.
13109         * modules/openat (Depends-on): Likewise.
13110
13111 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13112
13113         * modules/byteswap: New file.
13114
13115 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13116
13117         * m4/byteswap.m4: New file.
13118
13119 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13120
13121         * lib/byteswap_.h: New file.
13122
13123 2005-04-25  Karl Berry  <karl@gnu.org>
13124
13125         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13126
13127 2005-04-25  Albert Chin  <china@thewrittenword.com>
13128
13129         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13130         Toolkit C bug.
13131
13132 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13133
13134         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13135         (func_ln_if_changed) Remove forcibly for no error message
13136         in case file does not exist.
13137
13138 2005-04-19  Simon Josefsson  <jas@extundo.com>
13139
13140         * gnulib-tool (Options): Make --symlink mean --symbolic.
13141
13142 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13143
13144         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13145
13146 2005-04-16  Simon Josefsson  <jas@extundo.com>
13147
13148         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13149
13150 2005-04-15  Simon Josefsson  <jas@extundo.com>
13151
13152         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13153
13154 2005-04-15  Simon Josefsson  <jas@extundo.com>
13155
13156         * gnulib-tool: Rename --symlink to --symbolic.
13157
13158 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13159
13160         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13161         symbolic links to files instead of copying/moving.  Add --aux-dir,
13162         specifying directory relative --dir where auxiliary build tools
13163         are placed.
13164
13165 2005-04-14  Bruno Haible  <bruno@clisp.org>
13166
13167         * modules/allocsa (License): Change to LGPL.
13168         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13169
13170 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13171
13172         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
13173         that "UTC +1 second" continues to work.  Problem reported
13174         by Dmitry V. Levin.
13175         (relunit_snumber): New rule.
13176         (relunit): Use it.
13177
13178 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13179
13180         * lib/getdate.y (universal_time_zone_table): New constant.
13181         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
13182         universal_time_zone_table.
13183         (lookup_zone): Prefer universal_time_zone_table to
13184         local_time_zone_table, so that "GMT" time stamps are allowed in
13185         London during the summer.  Problem reported by Ian Abbott.
13186
13187 2005-04-12  Jim Meyering  <jim@meyering.net>
13188
13189         * lib/human.c (humblock): Set *options even when returning due to
13190         xstrtoumax conversion failure.  Thanks to a used-uninitialized
13191         warning from gcc-4.
13192
13193 2005-04-09  Jim Meyering  <jim@meyering.net>
13194
13195         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
13196         -Wuninitialized: initialize tm0.tm_year.
13197
13198 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
13199
13200         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
13201         count, since there's no maximum.  All uses changed.
13202         Add member dsts_seen.
13203         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
13204         not being INT_MAX.
13205         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
13206         Use pc_rels_seen to decide whther a date is absolute.
13207
13208         * lib/getdate.y (number): Don't overwrite year.
13209         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
13210         check.
13211
13212 2005-04-02  Simon Josefsson  <jas@extundo.com>
13213
13214         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
13215         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
13216
13217 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
13218
13219         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
13220         where no absolute path name can be longer than PATH_MAX.
13221
13222 2005-03-27  Jim Meyering  <jim@meyering.net>
13223
13224         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
13225
13226 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
13227
13228         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
13229         "one's complement" -> "ones' complement" in comment, as per Knuth.
13230         "value of type" -> "type or expression" in comment.
13231         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
13232
13233 2005-03-26  Jim Meyering  <jim@meyering.net>
13234
13235         Comment nits.
13236         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
13237         Correct typos: s/or/of/.
13238
13239 2005-03-26  Jim Meyering  <jim@meyering.net>
13240
13241         * modules/check-include-files: Move to ../ and rename to...
13242         * check-module: ...this.
13243
13244 2005-03-25  Jim Meyering  <jim@meyering.net>
13245
13246         * modules/xvasprintf (Files): Add xalloc.h.
13247
13248 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
13249
13250         * modules/gettext (Files): config/config.rpath ->
13251         build-aux/config.rpath
13252         * modules/iconv (Files): Likewise.
13253         Problem reported by Oskar Liljeblad.
13254
13255 2005-03-23  Jim Meyering  <jim@meyering.net>
13256
13257         * modules/check-include-files: New script to check for
13258         missing dependencies, multiple includes, etc.
13259
13260         * modules/c-strtold (Depends-on): Add xalloc.
13261         * modules/c-strtod (Depends-on): Add xalloc.
13262         * modules/hash (Depends-on): Add xalloc.
13263         (Files): Remove lib/xalloc.h.
13264
13265         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
13266         * modules/userspec (Files): Add lib/inttostr.h.
13267
13268 2005-03-23  Jim Meyering  <jim@meyering.net>
13269
13270         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
13271
13272 2005-03-22  Jim Meyering  <jim@meyering.net>
13273
13274         * modules/stat-macros: New module.
13275         * modules/canonicalize, modules/euidaccess, modules/file-type,
13276         * modules/filemode, modules/lchown, modules/makepath,
13277         * modules/rmdir, modules/stat: Depend on new stat-macros module
13278         rather than listing lib/stat-macros.h manually.
13279         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
13280
13281 2005-03-22  Jim Meyering  <jim@meyering.net>
13282
13283         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
13284
13285 2005-03-22  Bruno Haible  <bruno@clisp.org>
13286
13287         * config/srclist.txt: Replace target directory 'config' with
13288         'build-aux'.
13289         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
13290         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
13291         ../build-aux/.
13292
13293 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
13294
13295         * modules/chdir-long (Depends-on): Add mempcpy.
13296
13297         * modules/acl, modules/backupfile, modules/c-strtod,
13298         modules/c-strtold, modules/canon-host, modules/canonicalize,
13299         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
13300         modules/exclude, modules/exitfail, modules/file-type,
13301         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
13302         modules/getdate, modules/getline, modules/getpagesize,
13303         modules/getpass, modules/getugroups, modules/group-member,
13304         modules/hard-locale, modules/hash, modules/human, modules/idcache,
13305         modules/inttostr, modules/long-options, modules/makepath,
13306         modules/md5, modules/memcasecmp, modules/memcoll,
13307         modules/modechange, modules/mountlist, modules/path-concat,
13308         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
13309         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
13310         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
13311         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
13312         modules/strftime, modules/strndup, modules/strverscmp,
13313         modules/timespec, modules/unlocked-io, modules/userspec,
13314         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
13315         modules/yesno:
13316         Remove lib_SOURCES line from Makefile.am section, as this is now
13317         done automatically by the corresponding Autoconf macro.
13318
13319 2005-03-21  Jim Meyering  <jim@meyering.net>
13320
13321         Changes imported from coreutils.
13322
13323         * lib/cycle-check.c: Don't include xalloc.h.
13324
13325         * lib/path-concat.c: Don't include assert.h.
13326         (path_concat): Remove assertion that would have triggered
13327         for ABASE starting with more than one slash.
13328         Reported by Andreas Schwab.
13329
13330         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
13331         properly when ABASE is an absolute file name.
13332         Correct the description of this function.
13333         Include <assert.h>.
13334         Add an assertion and a test driver.
13335         This fixes a bug introduced on 2004-07-02.
13336         Andreas Schwab reported the resulting failure of cp --parents:
13337         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
13338
13339 2005-03-21  Jim Meyering  <jim@meyering.net>
13340
13341         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
13342         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
13343
13344 2005-03-21  Jim Meyering  <jim@meyering.net>
13345         and  Paul Eggert  <eggert@cs.ucla.edu>
13346
13347         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
13348         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
13349         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
13350         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
13351         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
13352         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
13353         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
13354         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
13355         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
13356         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
13357         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
13358         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
13359         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
13360         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
13361         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
13362         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
13363         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
13364         for these modules.
13365
13366 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
13367
13368         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
13369         (which shouldn't happen), generate nothing instead of returning 0
13370         immediately, so that nstrftime (NULL, ...) doesn't return 0.
13371
13372 2005-03-16  Bruno Haible  <bruno@clisp.org>
13373
13374         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
13375         HAVE_LONGLONG_64BIT.
13376
13377 2005-03-16  Bruno Haible  <bruno@clisp.org>
13378
13379         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
13380         HAVE_LONGLONG_64BIT.
13381
13382 2005-03-16  Bruno Haible  <bruno@clisp.org>
13383
13384         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
13385         HAVE_LONGLONG_64BIT.
13386
13387 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13388
13389         * lib/strftime.c (my_strftime): Prepend space to format so that we can
13390         reliably distinguish strftime failure from empty output on POSIX
13391         hosts.
13392
13393 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13394
13395         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
13396         (iconv_string): Don't guess a size-zero buffer, as that might cause
13397         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
13398         result would be 'too large', where 'too large' is (heuristically)
13399         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
13400         overflow concerns.  This will prevent some unwanted malloc failures
13401         when the inputs are very large.
13402
13403 2005-03-15  Karl Berry  <karl@gnu.org>
13404
13405         * config/srclist.txt (config.rpath): from gettext.
13406         * config/config.rpath: update.
13407
13408 2005-03-15  Bruno Haible  <bruno@clisp.org>
13409
13410         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
13411         to 'negate'.
13412
13413         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
13414         variable.
13415
13416         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
13417         results.
13418
13419 2005-03-14  Simon Josefsson  <jas@extundo.com>
13420
13421         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
13422         <fx@gnu.org>.
13423
13424 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
13425
13426         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
13427         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
13428         intprops.h.
13429         * lib/strtol.c: Likewise.
13430
13431 2005-03-14  Jim Meyering  <jim@meyering.net>
13432
13433         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
13434         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
13435         to be nonzero so that we (and caller) can detect the difference
13436         between a valid zero-length expansion and an error return, even
13437         when the underlying strftime fails before writing anything into
13438         that location.
13439
13440 2005-03-14  Bruno Haible  <bruno@clisp.org>
13441
13442         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
13443         Update from GNU gettext 0.14.3.
13444
13445 2005-03-10  Jim Meyering  <jim@meyering.net>
13446
13447         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
13448
13449 2005-03-10  Jim Meyering  <jim@meyering.net>
13450
13451         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
13452         so that this module works on systems without fchdir.
13453
13454 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
13455
13456         Factor int-properties macros into a single file, except for
13457         glibc-related files.
13458         * lib/intprops.h: New file.
13459         * lib/getloadavg.c: Include it instead of limits.h.
13460         (INT_STRLEN_BOUND): Remove.
13461         * lib/human.c: Include intprops.h.
13462         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
13463         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
13464         302/1000.
13465         * lib/inttostr.h: Include intprops.h instead of limits.h.
13466         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
13467         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
13468         for consistency with intprops.h.
13469         (time_t_is_integer, twos_complement_arithmetic): Use them.
13470         * lib/sig2str.h: Include <signal.h>, intprops.h.
13471         (INT_STRLEN_BOUND): Remove.
13472         * lib/strftime.c (TYPE_SIGNED): Remove.
13473         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
13474         * lib/strtol.c: Adjust comments to match intprops.h.
13475         * lib/userspec.c: Include intprops.h.
13476         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
13477         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
13478         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
13479         instead of rolling our own expressions.
13480         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
13481
13482         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
13483         instead of int.
13484         (my_strftime): Do not mishandle years close to INT_MAX, by doing
13485         the right thing even if adding 1900 would overflow.  Similarly
13486         for tm_mon + 1 and tm_yday + 1.
13487         Make %Y always equivalent to %C%y, and similarly for %G and %g.
13488         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
13489         (DO_SIGNED_NUMBER): New macro.
13490         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
13491
13492 2005-03-07  Bruno Haible  <bruno@clisp.org>
13493
13494         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
13495
13496 2005-03-07  Bruno Haible  <bruno@clisp.org>
13497
13498         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
13499
13500 2005-03-04  Derek R. Price  <derek@ximbiot.com>
13501
13502         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
13503         (func_import): Only replace files via --import when they have actually
13504         changed.
13505
13506 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13507
13508         * m4/mmap-anon.m4: New file.
13509         * m4/pagealign_alloc.m4: New file.
13510
13511 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13512             Bruno Haible  <bruno@clisp.org>
13513
13514         * modules/pagealign_alloc: New file.
13515         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
13516
13517 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13518             Bruno Haible  <bruno@clisp.org>
13519
13520         * lib/pagealign_alloc.h: New file.
13521         * lib/pagealign_alloc.c: New file.
13522
13523 2005-03-03  Bruno Haible  <bruno@clisp.org>
13524
13525         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
13526         Use an all-permissive copyright notice, recommended by RMS.
13527
13528 2005-03-02  Bruno Haible  <bruno@clisp.org>
13529
13530         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
13531         of AIX, the replacement has to be done only after <string.h> is
13532         included, therefore not in config.h. stpncpy.h does the replacement,
13533         and stpncpy.c uses it.
13534
13535 2005-03-02  Bruno Haible  <bruno@clisp.org>
13536
13537         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
13538         stpncpy.c uses it.
13539
13540 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13541
13542         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
13543         The workaround isn't strictly needed for POSIX conformance, and
13544         it's too much of a pain to configure and maintain.  We'll ask
13545         people to fix their kernels instead.
13546         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
13547         (NANOSLEEP_BUG_WORKAROUND): Remove.
13548         (xnanosleep): Remove the workaround.
13549
13550 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13551
13552         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
13553         Reported by Derek Price.
13554         (Include): Add "timespec.h".
13555
13556         * modules/xnanosleep (Depends-on): Remove gethrxtime.
13557
13558 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13559
13560         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
13561         to detect nanosleep bug.
13562
13563 2005-03-01  Bruno Haible  <bruno@clisp.org>
13564
13565         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
13566
13567 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13568
13569         * modules/gethrxtime: New file.
13570         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
13571         (Depends-on): Add gethrxtime.
13572         (configure.ac): Add gl_XNANOSLEEP.
13573         (Makefile.am): Remove lib_SOURCES line.
13574
13575 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13576
13577         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
13578         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
13579
13580 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13581
13582         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
13583         * lib/timespec.h (gettime): Return void, since it always
13584         succeeds now.  All uses changed.
13585         * lib/gettime.c (gettime) Likewise.
13586         [HAVE_NANOTIME]: Prefer nanotime.
13587         Assume gettimeofday succeeds, as POSIX requires.
13588         Assime time () succeeds, since other code already does.
13589         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
13590         (timespec_subtract): Remove.
13591         (NANOSLEEP_BUG_WORKAROUND): New constant.
13592         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
13593         things considerably.  Use it only on GNU/Linux hosts, since the
13594         workaround shouldn't be needed elsewhere.
13595
13596 2005-02-24  Bruno Haible  <bruno@clisp.org>
13597
13598         * modules/gettext (Files): Add m4/glibc2.m4.
13599
13600 2005-02-24  Bruno Haible  <bruno@clisp.org>
13601
13602         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
13603         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
13604         * m4/progtest.m4:
13605         Update from GNU gettext 0.14.2.
13606         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
13607
13608 2005-02-24  Bruno Haible  <bruno@clisp.org>
13609
13610         * lib/localcharset.c: Update from GNU gettext 0.14.2.
13611         * lib/config.charset: Update from GNU gettext 0.14.2.
13612
13613 2005-02-24  Bruno Haible  <bruno@clisp.org>
13614
13615         * lib/gettext.h: Update from GNU gettext 0.14.2.
13616
13617 2005-02-23  Simon Josefsson  <jas@extundo.com>
13618
13619         * m4/iconvme.m4: New file.
13620
13621 2005-02-23  Jim Meyering  <jim@meyering.net>
13622
13623         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
13624         change.
13625         Thanks to Bruno Haible for catching it.
13626
13627 2005-02-22  Simon Josefsson  <jas@extundo.com>
13628
13629         * modules/iconvme: New file.
13630
13631         * MODULES.html.sh: Add iconvme.
13632
13633 2005-02-22  Simon Josefsson  <jas@extundo.com>
13634
13635         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
13636
13637 2005-02-22  Simon Josefsson  <jas@extundo.com>
13638
13639         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
13640
13641 2005-02-22  Jim Meyering  <jim@meyering.net>
13642
13643         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
13644         s/ifndef/ifdef/.
13645
13646 2005-02-20  Neil Conway  <neilc@samurai.com>
13647
13648         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
13649         returned by OSX/Darwin if the specified buffer is not large
13650         enough for the hostname.
13651
13652 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13653
13654         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
13655         pass it to _help, otherwise the latter coredumps trying to
13656         dereference state.root_argp.
13657
13658 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13659
13660         * modules/chdir-long (Depends-on): Add memrchr.
13661         * modules/memrchr (Files): Add lib/memrchr.h.
13662         (Include): "memrchr.h".
13663
13664 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13665
13666         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
13667
13668 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13669
13670         * lib/memrchr.h: New file.
13671         * lib/chdir-long.c: Include it.
13672         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
13673         Don't bother including stddef.h.
13674
13675 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
13676
13677         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
13678         inclusion.
13679         Include <sys/types.h>, for dev_t.
13680         (ME_DUMMY, ME_REMOTE): Move from here....
13681         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
13682         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
13683         Dmitry V. Levin.
13684         Include mountlist.h first, to test the interface.
13685
13686 2005-01-29  Bruno Haible  <bruno@clisp.org>
13687
13688         * lib/progname.c (program_name): Initialize.
13689         Needed when linking statically on MacOS X.
13690
13691 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13692
13693         Sync from coreutils.
13694         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
13695         (Depends-on): Add c-strtod.
13696         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
13697
13698 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13699
13700         Sync from coreutils.
13701         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
13702
13703         Remove files that are specific to coreutils.
13704         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
13705
13706 2005-01-28  Bruno Haible  <bruno@clisp.org>
13707
13708         * modules/javacomp: New file.
13709         * MODULES.html.sh (Java): Add javacomp.
13710
13711 2005-01-28  Bruno Haible  <bruno@clisp.org>
13712
13713         * m4/javacomp.m4: New file, from GNU gettext.
13714
13715 2005-01-28  Bruno Haible  <bruno@clisp.org>
13716
13717         * lib/javacomp.sh.in: New file, from GNU gettext.
13718         * lib/javacomp.h: New file, from GNU gettext.
13719         * lib/javacomp.c: New file, from GNU gettext.
13720
13721 2005-01-26  Simon Josefsson  <jas@extundo.com>
13722
13723         * lib/gai_strerror.c: Use GPL in header.
13724
13725 2005-01-26  Bruno Haible  <bruno@clisp.org>
13726
13727         * modules/javaexec: New file.
13728         * MODULES.html.sh (Java): Add javaexec.
13729
13730 2005-01-26  Bruno Haible  <bruno@clisp.org>
13731
13732         * m4/javaexec.m4: New file, from GNU gettext.
13733
13734 2005-01-26  Bruno Haible  <bruno@clisp.org>
13735
13736         * lib/javaexec.sh.in: New file, from GNU gettext.
13737         * lib/javaexec.h: New file, from GNU gettext.
13738         * lib/javaexec.c: New file, from GNU gettext.
13739
13740 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13741
13742         * modules/lchown (Depends-on): Remove lchown.h
13743
13744 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13745
13746         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
13747         must be defined if the header file was not found, in order
13748         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
13749
13750 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13751
13752         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
13753         initializers for struct pentry_state.
13754         (__argp_error): Check return value of __asprintf
13755         (__argp_failure): Translate error message
13756
13757         * lib/argp-parse.c: Removed braces around the expansion of N_()
13758
13759 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13760
13761         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
13762         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
13763         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
13764         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
13765         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
13766         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
13767         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
13768         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
13769         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
13770         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
13771         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
13772         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
13773         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
13774         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
13775         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
13776         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
13777         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
13778         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
13779         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
13780         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
13781         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
13782         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
13783         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
13784         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
13785         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
13786         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
13787         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
13788         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
13789         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
13790         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
13791         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
13792         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
13793         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
13794         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
13795         xstrtol.m4, xstrtoumax.m4, yesno.m4:
13796         Use an all-permissive copyright notice, recommended by RMS.
13797
13798 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
13799
13800         * modules/chdir-long (Depends-on): Remove mempcpy.
13801
13802 2005-01-21  Jim Meyering  <jim@meyering.net>
13803
13804         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
13805         same value as for Solaris 9.
13806
13807         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
13808         component length.  This included changing the parameter to be
13809         of type `char *' rather than `char const *'.
13810         * lib/chdir-long.h (chdir_long): Update prototype.
13811
13812         * lib/openat.c (fdopendir, fstatat): New functions.
13813         * lib/openat.h: Include headers required for use of DIR and struct
13814         stat.
13815         [AT_SYMLINK_NOFOLLOW]: Define.
13816         (fdopendir, fstatat): Add prototypes.
13817
13818 2005-01-21  Bruno Haible  <bruno@clisp.org>
13819
13820         * modules/classpath: New file.
13821         * MODULES.html.sh (Java): Add classpath.
13822
13823 2005-01-21  Bruno Haible  <bruno@clisp.org>
13824
13825         * lib/classpath.h: New file, from GNU gettext.
13826         * lib/classpath.c: New file, from GNU gettext.
13827
13828 2005-01-20  Simon Josefsson  <jas@extundo.com>
13829
13830         * modules/version-etc-fsf: New file.
13831
13832 2005-01-20  Simon Josefsson  <jas@extundo.com>
13833
13834         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
13835         * lib/version-etc.c: Remove version_etc_copyright.
13836         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
13837         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
13838
13839 2005-01-20  Simon Josefsson  <jas@extundo.com>
13840
13841         * lib/base64.h (isbase64): Add.
13842
13843         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
13844         using a unsigned prototype, don't inline.
13845         (base64_decode): Use it.
13846
13847 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13848
13849         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
13850         it.
13851
13852 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13853
13854         * lib/save-cwd.c (save_cwd): Remove code to support the case
13855         where fchdir is missing or flaky.
13856
13857 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13858
13859         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
13860
13861 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
13862
13863         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
13864         AC_LIBSOURCES now does this.
13865         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
13866         with new ullong_max module.
13867
13868 2005-01-19  Bruno Haible  <bruno@clisp.org>
13869
13870         * modules/sh-quote: New file.
13871         * MODULES.html.sh (Executing programs): Add sh-quote.
13872
13873 2005-01-19  Bruno Haible  <bruno@clisp.org>
13874
13875         * lib/sh-quote.h: New file, from GNU gettext.
13876         * lib/sh-quote.c: New file, from GNU gettext.
13877
13878 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13879
13880         Merge from coreutils.
13881         * m4/ullong_max.m4: New file.
13882         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
13883         (gl_MACROS): Assume localeconv exists.
13884
13885 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13886
13887         Merge changes from coreutils, as described below in several
13888         changelogs dated today.
13889
13890         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
13891         (O_DIRECTORY): Remove; not needed here, since "." must be
13892         a directory.  All uses removed.
13893         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
13894         universal on Suns, and we also need to test for IRIX.
13895         Revamp code to use 'if' rather than '#if'.
13896         Avoid unnecessary comparison of cwd->desc to 0.
13897
13898         * lib/utimens.c (futimens): Robustify the previous patch, by checking
13899         for known valid error numbers rather than observed invalid ones.
13900
13901 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13902
13903         * modules/ullong_max: New file.
13904
13905         * modules/chdir-long, modules/openat: New files.
13906         * modules/save-cwd (Depends-on): Depend on chdir-long.
13907         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
13908
13909 2005-01-18  Jim Meyering  <jim@meyering.net>
13910
13911         Merge from coreutils.
13912         * m4/chdir-long.m4, m4/openat.m4: New files.
13913         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
13914         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
13915         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
13916         is sane and DOES follow symlinks.  Besides, testing 20 different
13917         systems found no broken chown implementations.
13918         Prompted by a change in rsync's copy of this macro.
13919         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
13920
13921         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
13922
13923         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
13924         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
13925         NULL-means-set-to-current-time semantics.
13926         Remove temporary file immediately, rather than waiting
13927         for configure's at-exit trap code to do it.
13928
13929 2005-01-18  Jim Meyering  <jim@meyering.net>
13930
13931         * lib/version-etc.c (version_etc_copyright): Update copyright date.
13932
13933         * lib/utimens.c (futimens): Account for the fact that futimes
13934         can also fail with errno == ENOSYS or errno == ENOENT.
13935         Patch from Dmitry V. Levin.
13936
13937         Change the name of the robust chdir function from chdir to chdir_long.
13938         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
13939         (restore_cwd): Use chdir_long, not chdir.
13940         * lib/chdir-long.c: Renamed from chdir.c.
13941         * lib/chdir-long.h: Renamed from chdir.h.
13942         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
13943         Hurd.
13944
13945 2005-01-18  Bruno Haible  <bruno@clisp.org>
13946
13947         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
13948         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
13949         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
13950         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
13951         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
13952         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
13953         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
13954         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
13955         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
13956         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
13957         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
13958         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
13959         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
13960         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
13961         Use an all-permissive copyright notice, recommended by RMS.
13962
13963 2005-01-18  Bob Proulx  <bob@proulx.com>
13964
13965         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
13966         simplify offsetof() macro construct to avoid compile failure with
13967         native HP-UX 11.0 ANSI C compiler.
13968
13969 2005-01-17  Bruno Haible  <bruno@clisp.org>
13970
13971         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
13972         redundant because stpncpy.m4 takes care of it.
13973
13974 2005-01-17  Bruno Haible  <bruno@clisp.org>
13975
13976         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
13977
13978 2005-01-17  Bruno Haible  <bruno@clisp.org>
13979
13980         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
13981         used.
13982
13983 2005-01-17  Bruno Haible  <bruno@clisp.org>
13984
13985         * lib/fwriteerror.h (fwriteerror): Change specification to include
13986         fclose.
13987         * lib/fwriteerror.c: Include <stdbool.h>.
13988         (fwriteerror): At the end, close the file stream. Record whether
13989         stdout was already closed.
13990
13991 2005-01-17  Bruno Haible  <bruno@clisp.org>
13992
13993         * lib/execute.c (environ): Declare if needed.
13994         * lib/pipe.c (environ): Likewise.
13995         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
13996
13997 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13998
13999         * modules/argp: Depend on vsnprintf
14000
14001 2005-01-10  Jim Meyering  <jim@meyering.net>
14002
14003         * modules/closeout (Depends-on): Add atexit.
14004
14005 2005-01-06  Bruno Haible  <bruno@clisp.org>
14006
14007         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
14008
14009 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14010
14011         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
14012         definitions to be after all include files, to avoid collisions.
14013         Problem reported by Bob Proulx.
14014
14015 2005-01-04  Jim Meyering  <jim@meyering.net>
14016
14017         Changes imported from coreutils.
14018         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
14019         as the mkstemp template, use a temporary directory and an
14020         8.3-friendly template to avoid trouble on systems like DJGPP.
14021         Reported by Juan M. Guerrero via Stepan Kasal.
14022         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
14023         close. Remove the temporary directory right away, rather than waiting
14024         for configure's at-exit trap code to do it.
14025         Suggestion from Stepan Kasal.
14026
14027 2005-01-01  Simon Josefsson  <jas@extundo.com>
14028
14029         * gnulib-tool: Print #include directives when --import'ing.
14030
14031 2004-12-28  Simon Josefsson  <jas@extundo.com>
14032
14033         * tests/test-base64.c: Include required header files.  Remove
14034         unused variables.
14035
14036 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14037
14038         * modules/error (Depends-on): Remove gettext.
14039
14040 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14041
14042         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
14043         not needed.  This removes a dependency on the gettext module.
14044         [defined _LIBC]: Do not include <libintl.h>; not needed.
14045
14046 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14047
14048         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
14049         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
14050
14051 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14052
14053         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
14054         HAVE_DECL_STRTOLD.
14055
14056 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14057
14058         * modules/getdate (Depends-on): Remove alloca-opt.
14059
14060 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14061
14062         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
14063
14064 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14065
14066         * lib/argp-parse.c: Include <stddef.h>.
14067         (alignof, alignto): New macros.
14068         (parser_init): Don't assume that void * is aligned sufficiently
14069         for struct option.
14070
14071         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14072         need to extend the stack.
14073         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14074         large.
14075
14076 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14077
14078         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14079
14080 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14081
14082         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14083         (2004-10-24) change.  Apparently this was a false alarm.
14084
14085         * modules/getdate: Depend on alloca-opt, not alloca.
14086
14087 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14088
14089         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14090         Remove now-obsolete comment about AIX.
14091         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14092         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14093         (YYMAXDEPTH): New macro.
14094
14095 2004-12-18  Simon Josefsson  <jas@extundo.com>
14096
14097         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14098
14099 2004-12-18  Bruno Haible  <bruno@clisp.org>
14100
14101         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14102
14103 2004-12-18  Bruno Haible  <bruno@clisp.org>
14104
14105         * lib/fatal-signal.c (fatal_signals): Make non-const.
14106         (init_fatal_signals): New function.
14107         (uninstall_handlers, install_handlers): Ignore signals that were set to
14108         SIG_IGN.
14109         (at_fatal_signal): Call init_fatal_signals.
14110         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14111         SIG_IGN.
14112         Reported by Paul Eggert.
14113
14114 2004-12-18  Bruno Haible  <bruno@clisp.org>
14115
14116         * doc/alloca.texi: New file.
14117         * doc/alloca-opt.texi: New file.
14118
14119 2004-12-17  Jim Meyering  <jim@meyering.net>
14120
14121         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14122         Otherwise, install-sh could exit with improper exit status when
14123         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14124
14125 2004-12-16  Simon Josefsson  <jas@extundo.com>
14126
14127         * tests/test-base64.c: Add license.
14128
14129 2004-12-15  Stepan Kasal  <address@hidden>
14130
14131         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14132
14133 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14134
14135         * modules/getcwd (Files): Add m4/d-ino.m4.
14136         Suggested by Mark D. Baushke.
14137
14138 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14139
14140         * lib/getdate.y (textint): New member "negative".
14141         (time_zone_hhmm): New function.
14142         Expect 14 shift-reduce conflicts, not 13.
14143         (o_colon_minutes): New rule.
14144         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14145         (yylex): Set the "negative" member of signed numbers.
14146
14147 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14148
14149         * doc/getdate.texi (Time of day items, Time zone items):
14150         Describe new formats +00:00, UTC+00:00.
14151
14152 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14153
14154         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14155         spurious "-l"s.  Problem reported by Stepan Kasal.
14156
14157 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14158
14159         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14160         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14161
14162 2004-12-04  Simon Josefsson  <jas@extundo.com>
14163
14164         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
14165         Vandoorselaere <yoann@prelude-ids.org>.
14166
14167 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14168
14169         Changes imported from coreutils.
14170         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
14171         exist.
14172         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
14173
14174 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14175
14176         Changes imported from coreutils.
14177         * lib/hard-locale.c: Assume <locale.h> exists.
14178         Include "strdup.h".
14179         (GLIBC_VERSION): New macro.
14180         (hard_locale): Assume setlocale exists.
14181         Rewrite to avoid #ifdef.
14182         Use strdup rather than malloc + strcpy.
14183         * lib/human.c: Assume <locale.h> exists.
14184         (human_readable): Assume localeconv exists.
14185
14186 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14187
14188         * modules/hard-locale (Depends-on): Add strdup.
14189
14190 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14191
14192         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
14193         convert T2, not T.  (Imported from libc.)
14194
14195 2004-11-30  Simon Josefsson  <jas@extundo.com>
14196
14197         * modules/restrict (License): Change to LGPL.
14198
14199 2004-11-30  Simon Josefsson  <jas@extundo.com>
14200
14201         * m4/restrict.m4: Add copyright and copying conditions.
14202
14203 2004-11-30  Simon Josefsson  <jas@extundo.com>
14204
14205         * m4/base64.m4: New file.
14206
14207 2004-11-30  Simon Josefsson  <jas@extundo.com>
14208
14209         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
14210         base64.
14211
14212         * tests/test-base64.c: New file.
14213
14214         * modules/base64: New file.
14215
14216 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14217
14218         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
14219         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
14220
14221         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
14222
14223 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14224
14225         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
14226         (__getcwd.c): Don't restore errno; glibc doesn't.
14227         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
14228         first, falling back to our code only if its results look suspicious.
14229         Ensure that the resulting buffer is only as large as necessary.
14230
14231         * lib/readutmp.c: Include readutmp.h first.
14232         Include <errno.h>, since readutmp.h no longer does that.
14233         * lib/readutmp.h: Don't include <errno.h>,
14234         <sys/param.h>, <time.h>; not needed to establish interface.
14235         (errno): Remove decl.
14236         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
14237         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
14238         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
14239
14240 2004-11-28  Simon Josefsson  <jas@extundo.com>
14241
14242         * lib/base64.h, base64.c: New file.
14243
14244 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
14245
14246         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
14247
14248 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
14249
14250         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
14251         (Depends-on): Remove pathmax, same.  Add mempcpy.
14252         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
14253         (Makefile.am): Append getcwd.h to lib_SOURCES.
14254         (Include): Add getcwd.h.
14255         (Maintainer): Change from Jim Meyering to "all, glibc",
14256         since getdate now uses intended-for-glibc code.
14257         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
14258         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
14259
14260 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14261
14262         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
14263         HP's ANSI C compiler.
14264         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
14265         Declaring int functions causes warnings on some modern systems and
14266         shouldn't be needed to compile on ancient ones.
14267         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
14268         defined.
14269
14270         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
14271         with the following changes.
14272         (__set_errno): Parenthesize properly.
14273         Include <stdbool.h>.
14274         (MIN, MAX, MATCHING_INO): New macros.
14275         (__getcwd): Define with prototype, not K&R form.
14276         Use heuristics to allocate default buffer on stack if possible.
14277         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
14278         behavior, and to avoid the PATH_MAX limit when computing
14279         ../../../../...
14280         Use MATCHING_INO to compare inode number to file.
14281         Check for arithmetic overflow in size calculations.
14282         Fix bug in reallocation of dot array that caused getcwd to fail
14283         on directories nested deeper than 75.
14284         Be more careful about saving errno on error.
14285         Do not use realloc; use only free+malloc, as this is a bit
14286         more flexible and avoids a needless copy operation.
14287         Do not inspect st_dev and st_ino for symbolic links; POSIX
14288         doesn't specify the latter.
14289         Check for closedir errors.
14290         Avoid needless casts.
14291         Use "#ifdef weak_alias" around weak_alias, to be like other
14292         glibc code.
14293         The following changes to getcwd.c have effect only when used in
14294         gnulib; they have no effect inside glibc proper.
14295         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
14296         as alloca isn't used.
14297         (alloca, __alloca): Likewise.
14298         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
14299         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
14300         unconditionally, as gnulib assumes C89 or better.
14301         Do not include <sys/param.h>.
14302         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
14303         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
14304         better.
14305         (NULL) [!defined NULL]: Remove; we assume C89 or better.
14306         Include <dirent.h> in a way that is compatible with modern Autoconf.
14307         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
14308         New macros, if not already defined.
14309         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
14310         Use "_LIBC", not "defined _LIBC", for consistency.
14311         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
14312         a mempcpy module.
14313         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
14314         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
14315         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
14316         credit only to Jim Meyering and adjust the copyright dates.
14317         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
14318         <stdlib.h>, <unistd.h>, "pathmax.h".
14319         Instead, include "xgetcwd.h" (first) and "getcwd.h".
14320         (INITIAL_BUFFER_SIZE): Remove.
14321         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
14322
14323 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14324
14325         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
14326         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
14327         Use the _ONCE methods, for efficiency.
14328         Check for fcntl.h.  In test program, include <errno.h>
14329         and <fcntl.h> if available.  Remove old K&R cruft from
14330         test program.  Check for common errors in GNU/Linux,
14331         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
14332         don't do AC_LIBOBJ, as that's getcwd.m4's job.
14333         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
14334         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
14335         name accordingly.
14336         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
14337         accommodate new getcwd.c.
14338         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
14339         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
14340         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
14341         that's all we need now.
14342
14343 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14344
14345         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
14346         argp-parse.c depends on getopt internals, that means we should
14347         always use our getopt, to be on the safe side.
14348         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
14349         order not to spoil the result of an eventual previous invocation
14350         of gl_GETOPT_SUBSTITUTE.
14351
14352 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14353
14354         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
14355         redefinition warnings. To avoid them, include the defines
14356         in `#if !defined __need_getopt ... #endif'. The only place
14357         where __getopt_argv_const is used is in definitions
14358         of getopt_long and getopt_long_only below, which are as well
14359         protected by `#ifndef __need_getopt'.
14360         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
14361         __need_getopt after including <stdio.h> and <unistd.h> These
14362         headers might have defined it.
14363
14364 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14365
14366         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
14367
14368 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14369
14370         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
14371         (futimens): New function, which uses futimes if available.
14372         (futimens, utimens): Support timespec==NULL, with same semantics
14373         as utime and utimens.
14374         * lib/utimens.h (futimens): New decl.
14375
14376 2004-11-23  Jim Meyering  <jim@meyering.net>
14377
14378         * lib/getopt_.h: Remove trailing blanks.
14379
14380 2004-11-23  Jim Meyering  <jim@meyering.net>
14381
14382         * lib/__fpending.c: Add comment.
14383
14384 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
14385
14386         * modules/canonicalize (Depends-on): Add xreadlink.
14387         Problem reported by James Youngman.
14388
14389 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
14390
14391         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
14392         New macros.
14393         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
14394         optopt): Use them instead of invoking ## directly; otherwise, the
14395         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
14396
14397 2004-11-19  Bruno Haible  <bruno@clisp.org>
14398
14399         * lib/strtok_r.c: Move comments from here...
14400         * lib/strtok_r.h: ... to here.
14401
14402 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14403
14404         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
14405         implementations that mishandle size_t overflow.
14406
14407 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14408
14409         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
14410         might fail.  Problem reported by Yoann Vandoorselaere.
14411         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
14412         implementations that mishandle size_t overflow.
14413
14414 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14415
14416         * modules/canon-host (Depends-on): Add strdup.
14417
14418 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14419
14420         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
14421
14422 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14423
14424         * lib/canon-host.c: Include "strdup.h".
14425         (canon_host): Use getaddrinfo if available, so that IPv6 works.
14426         Use strdup instead of malloc/strcpy to duplicate strings.
14427
14428         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
14429         (human_space_before_unit): New constant.
14430         * lib/human.c (human_readable): Support it.
14431
14432         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
14433         (xgetcwd): Set errno correctly when failing.
14434         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
14435         the failure is actually due to a PATH_MAX problem.
14436
14437         Further getopt changes to make it more likely that glibc will
14438         buy the changes back.
14439         * lib/getopt.c (POSIXLY_CORRECT): New constant.
14440         (getopt): Use it, so to preserve glibc semantic
14441         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
14442         when compiling for libc.
14443         * lib/getopt_.h (__getopt_argv_const): Bring it back.
14444         (getopt_long, getopt_long_only): Use it.
14445
14446         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14447         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
14448         (getopt): Argv is now char * const *, as per standard.
14449         (_getopt_internal_r, _getopt_internal): Argv is now char **,
14450         not char *__getopt_argv_const *.
14451         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14452         _getopt_long_only_r): Likewise.
14453         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
14454         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14455         _getopt_long_r, _getopt_long_only_r): Likewise.
14456         * lib/getopt_.h (__getopt_argv_const): Remove.
14457         (getopt): Argv is now char * const *, as per standard.
14458
14459         * lib/getdate.y (tORDINAL): New token.
14460         (day, relunit): Allow it for relative times.
14461         (relative_time_table): Use tORDINAL for ordinals.
14462
14463 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14464
14465         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
14466         Document that "second" isn't allowed as an ordinal number.
14467
14468 2004-11-16  Jim Meyering  <jim@meyering.net>
14469
14470         * modules/closeout (Depends-on): Add fpending.
14471
14472 2004-11-15  Jim Meyering  <jim@meyering.net>
14473
14474         * lib/closeout.c: Include "__fpending.h" once again.
14475         Include <stdbool.h>.
14476         (close_stdout): Don't fail just because stdout was closed initially,
14477         since some programs don't write to stdout in the normal course of
14478         operation (other than --version and --help), and we don't want this
14479         function to make e.g. `touch file >&-' fail.
14480         But do fail if it was closed and someone has tried to write to it.
14481         E.g., `printf foo >&-' must fail.
14482
14483 2004-11-13  Jim Meyering  <jim@meyering.net>
14484
14485         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
14486
14487 2004-11-12  Simon Josefsson  <jas@extundo.com>
14488
14489         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
14490         small doc fix is still pending.
14491
14492 2004-11-11  Simon Josefsson  <jas@extundo.com>
14493
14494         * modules/strtok_r: New file.
14495
14496         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14497         strtok_r.
14498
14499 2004-11-11  Simon Josefsson  <jas@extundo.com>
14500
14501         * m4/strtok_r.m4: New file.
14502
14503         * m4/getopt.m4: Replace opterr.
14504
14505 2004-11-11  Simon Josefsson  <jas@extundo.com>
14506
14507         * lib/strtok_r.h, strtok_r.c: New file.
14508
14509 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14510
14511         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
14512         of replacing opterr, getopt, etc.  This should handle the
14513         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
14514
14515 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14516
14517         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
14518         we can stop lying to compilers about the constness of argv when we
14519         are compiled outside glibc.
14520         (getopt, getopt_long, getopt_long_only): Use it.
14521         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14522         _getopt_internal, getopt): Likewise.
14523         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14524         _getopt_long_only_r): Likewise.
14525         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14526         _getopt_long_r, _getopt_long_only_r): Likewise.
14527
14528         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
14529         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
14530         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
14531         the other external symbols.
14532         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
14533         declaration, since the above renaming now works around collisions.
14534
14535 2004-11-11  Jim Meyering  <jim@meyering.net>
14536
14537         * lib/linebreak.c: Remove trailing blanks.
14538         * lib/alloca_.h: Likewise.
14539         * lib/acosl.c: Likewise.
14540         * lib/euidaccess.c: Likewise.
14541         * lib/allocsa.h: Likewise.
14542
14543 2004-11-10  Simon Josefsson  <jas@extundo.com>
14544
14545         * m4/getaddrinfo.m4: New file.
14546
14547 2004-11-10  Simon Josefsson  <jas@extundo.com>
14548
14549         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
14550
14551 2004-11-10  Simon Josefsson  <jas@extundo.com>
14552
14553         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14554         getaddrinfo.
14555
14556         * modules/getaddrinfo: New file.
14557
14558 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14559
14560         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
14561
14562 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14563
14564         * lib/mktime.c (SHR): New macro, which is a portable
14565         substitute for >> that should work even on Crays.
14566         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
14567         Problem reported by Mark D. Baushke in
14568         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
14569         * lib/getdate.y (SHR): Likewise.
14570         (tm_diff): Use it.
14571         * lib/strftime.c (SHR): Likewise.
14572         (tm_diff): Use it.
14573         * lib/quotearg.c (struct quoting_options): Use unsigned int for
14574         quote_these_too, so that right shifts are well defined.  All uses
14575         changed.
14576
14577 2004-11-10  Jim Meyering  <jim@meyering.net>
14578
14579         Ensure that no close failure goes unreported.
14580         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
14581         return early when it seems there's nothing to flush.
14582         Don't include __fpending.h.
14583
14584 2004-11-10  Jim Meyering  <jim@meyering.net>
14585
14586         * modules/closeout (Depends-on): Remove fpending.
14587
14588 2004-11-10  Jim Meyering  <jim@meyering.net>
14589
14590         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
14591
14592 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14593
14594         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
14595         gl_FUNC_STRFTIME.
14596         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
14597         and AC_REQUIRE when possible, to avoid duplicate checks.
14598         Check for <wchar.h>.
14599
14600 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14601
14602         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
14603
14604 2004-11-09  Bruno Haible  <bruno@clisp.org>
14605
14606         * m4/sockpfaf.m4: New file.
14607
14608 2004-11-05  Bruno Haible  <bruno@clisp.org>
14609
14610         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
14611         Reported by Mark D. Baushke <mdb@cvshome.org>.
14612
14613 2004-11-04  Bruno Haible  <bruno@clisp.org>
14614
14615         2004-09-11  Bruno Haible  <bruno@clisp.org>
14616                 * allocsa.valgrind: New file.
14617         2004-02-06  Bruno Haible  <bruno@clisp.org>
14618                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
14619                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
14620                 Reported by Christopher Seip <chris.seip@hp.com>.
14621
14622 2004-11-04  Bruno Haible  <bruno@clisp.org>
14623
14624         * modules/allocsa (Files): Add lib/allocsa.valgrind.
14625         (Makefile.am): Distribute it.
14626
14627 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
14628
14629         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
14630         with errno == ERANGE if the buffer is too small.
14631         Problem reported by Mark D. Baushke.
14632
14633 2004-11-03  Albert Chin  <china@thewrittenword.com>
14634             Paul Eggert  <eggert@cs.ucla.edu>
14635
14636         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
14637         equivalent, substitute $ac_type for equivalent type rather than
14638         blindly using uint32_t *always* which won't work if uint32_t is not
14639         available.  Define _UINT32_T to work around typedef of uint32_t if
14640         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
14641         2.5.1.
14642
14643 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14644
14645         * m4/jm-macros.m4: Sync from coreutils.
14646         (gl_MACROS): Check for mbrlen, for pathchk.
14647         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
14648
14649 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14650
14651         * lib/xreadlink.c (MAXSIZE): New macro.
14652         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
14653         size does not exceed MAXSIZE.  Avoid cast.
14654         As suggested by Mark D. Baushke in
14655         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
14656         if readlink fails with buffer size just under MAXSIZE, try again
14657         with MAXSIZE.
14658
14659 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14660
14661         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
14662
14663 2004-11-02  Derek R. Price  <derek@ximbiot.com>
14664         and  Paul Eggert  <eggert@cs.ucla.edu>
14665
14666         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
14667         (get_date): Overparenthesize to avoid GCC warning.
14668
14669 2004-11-02  Bruno Haible  <bruno@clisp.org>
14670
14671         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
14672         returns void.
14673
14674 2004-11-02  Bruno Haible  <bruno@clisp.org>
14675
14676         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
14677         function returns void.
14678
14679 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14680
14681         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
14682         fflush_unlocked, flockfile, funlockfile, funlockfile,
14683         fputs_unlocked, putc_unlocked.
14684
14685 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14686
14687         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14688         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
14689         already declared.
14690
14691 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14692
14693         * modules/getdate (Files): Add doc/getdate.texi.
14694         (Depends-on): Add setenv, xalloc.
14695
14696 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14697
14698         * lib/getdate.y: Add support for TZ="foo" within a date string.
14699         Fix some bugs near time_t boundaries.  Reject dates with
14700         out-of-range components, e.g., "Sept 31".
14701         Include <stdlib.h>, "setenv.h", "xalloc.h".
14702         (ISDIGIT_LOCALE): Remove; unused.
14703         Note that the TZ and time functions used here are not reentrant.
14704         (mktime_ok, get_tz): New functions.
14705         (TZBUFSIZE): New constant.
14706         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
14707         This requires that we sometimes generate our own TZ="XXX..." setting.
14708
14709 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14710
14711         * doc/getdate.texi: New file, from coreutils with modifications for
14712         the new TZ parsing.
14713
14714 2004-10-27  Derek R. Price  <derek@ximbiot.com>
14715
14716         * lib/mktime.c (not_equal_tm): Remove redundant check.
14717
14718 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14719
14720         * modules/regex (lib_SOURCES): Add regex.c.
14721         Reported by James Youngman in
14722         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
14723
14724 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14725
14726         * lib/getdate.y: Use Bison 1.875 features, and some minor
14727         code cleanups.  This change does not affect semantics.
14728         Don't include <stdlib.h>; no longer needed.
14729         Don't include unlocked-io.h; only the "#if TEST" code uses
14730         stdio, and performance isn't crucial there.
14731         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
14732         Bison 1.875 features as described below.
14733         All uses of "PC." replaced by "pc->".
14734         (YYSTYPE): Add a forward declaration.
14735         (yylex, yyerror): Use full prototypes in forward decls.
14736         Use "%pure-parser" rather than obsolescent "%pure_parser".
14737         Use %parse-param and %lex-param instead of obsolescent
14738         YYPARSE_PARAM and YYLEX_PARAM.
14739         (meridian_table, month_and_day_table, time_units_table,
14740         relative_time_table, time_zone_table, military_table,
14741         lookup_zone, lookup_word, get_date):
14742         Use NULL instead of 0 where appropriate.
14743         (to_hour): Avoid abort (), to avoid a dependency on
14744         stdlib.h.
14745         (yyerror, yylex): Now accepts parser_control * arg.
14746         (main) [TEST]: Use '\0' rather than 0 for char.
14747
14748 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14749
14750         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
14751
14752 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14753
14754         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
14755         It's now the caller's responsibility to handle the case where
14756         !HAVE_GETPAGESIZE && !defined getpagesize.
14757
14758         * lib/mktime.c (leapyear): Arg is long int, not int.
14759
14760 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
14761
14762         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
14763
14764 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
14765
14766         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
14767         missing.  Problem reported by James Youngman.
14768
14769 2004-10-16  Simon Josefsson  <jas@extundo.com>
14770
14771         * gnulib-tool: Fix comments.  Fix parse problem.
14772         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
14773
14774 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
14775
14776         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
14777         implementation of getopt_long.  Problem reported by Alexander Taler in:
14778         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
14779
14780 2004-10-15  Bruno Haible  <bruno@clisp.org>
14781
14782         * gnulib-tool: Untabify. Initialize supplied_libname.
14783         (func_usage): More homogenous output.
14784         (func_modules_transitive_closure, func_modules_to_filelist,
14785         func_emit_lib_Makefile_am): New functions.
14786         (func_import): New function, extracted from big case statement. Use
14787         func_get_license, func_modules_transitive_closure,
14788         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
14789         opt_lgpl. Don't use test -a, as it's not portable.
14790         (func_create_testdir): Use func_modules_transitive_closure,
14791         func_modules_to_filelist, func_emit_lib_Makefile_am.
14792
14793 2004-10-15  Bruno Haible  <bruno@clisp.org>
14794
14795         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
14796
14797 2004-10-15  Bruno Haible  <bruno@clisp.org>
14798
14799         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
14800         the portions belonging to each module.
14801         Suggested by Derek Robert Price <derek@ximbiot.com>.
14802
14803 2004-10-12  Simon Josefsson  <jas@extundo.com>
14804
14805         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14806         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
14807         to real functions.
14808
14809 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14810
14811         * modules/vsnprintf: New file.
14812
14813 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14814
14815         * m4/vsnprintf.m4: New file.
14816
14817 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14818
14819         * lib/vsnprintf.h: New file.
14820         * lib/vsnprintf.c: New file.
14821
14822 2004-10-11  Bruno Haible  <bruno@clisp.org>
14823
14824         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
14825         vsnprintf.
14826
14827 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14828
14829         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
14830
14831 2004-10-07  Bruno Haible  <bruno@clisp.org>
14832
14833         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
14834         fits into the provided buffer.
14835
14836 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14837
14838         * lib/diacrit.c, diacrit.h: Add GPL notice.
14839
14840         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
14841         notice.
14842         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
14843         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
14844         This avoids a potential constant-folding bug.
14845
14846 2004-10-05  Bruno Haible  <bruno@clisp.org>
14847
14848         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
14849         for the declaration of strsep.
14850
14851 2004-10-05  Bruno Haible  <bruno@clisp.org>
14852
14853         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
14854
14855 2004-10-04  Simon Josefsson  <jas@extundo.com>
14856
14857         * modules/memmem: New file.
14858         * tests/test-memmem.c: New file.
14859         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
14860
14861 2004-10-04  Simon Josefsson  <jas@extundo.com>
14862
14863         * m4/memmem.m4: New file.
14864
14865 2004-10-04  Simon Josefsson  <jas@extundo.com>
14866
14867         * lib/memmem.h: New file.
14868         * lib/memmem.c: New file, taken from glibc.
14869
14870 2004-10-04  Simon Josefsson  <jas@extundo.com>
14871
14872         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
14873         '#ifdef USE_UNLOCKED_IO'.
14874
14875 2004-10-04  Simon Josefsson  <jas@extundo.com>
14876
14877         * config/srclist.txt: Add memmem from glibc.
14878
14879 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14880
14881         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
14882
14883         * modules/argmatch, modules/argp, modules/closeout, modules/error,
14884         modules/exclude, modules/getdate, modules/getline,
14885         modules/getndelim2, modules/getpass, modules/getpass-gnu,
14886         modules/getusershell, modules/linebuffer, modules/md5,
14887         modules/mountlist, modules/posixtm, modules/readtokens,
14888         modules/readutmp, modules/regex, modules/sha1,
14889         modules/version-etc, modules/yesno:
14890         Remove dependency on unlocked-io.
14891
14892 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14893
14894         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
14895
14896         * m4/unlocked-io.m4: Add copyright notice.
14897         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
14898
14899 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14900
14901         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
14902         * lib/xmalloc.c (xmemdup): Likewise.
14903         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
14904         XFREE): Remove these long-obsolescent macros.
14905         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
14906         * lib/xstrdup.c: Remove.
14907
14908         * lib/regex.c (re_comp): Cast gettext return value to char *,
14909         Problem reported by Martin Neitzel via Mark D. Baushke.
14910
14911 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14912
14913         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
14914         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
14915         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
14916         regex.c, sha1.c, version-etc.c, yesno.c:
14917         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
14918         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
14919         the includer's responsibility.
14920
14921         Sync from coreutils.
14922
14923         * lib/modechange.c (mode_compile): Don't decrement a pointer that
14924         points to the start of a string, as the C Standard says the
14925         resulting behavior is undefined.
14926
14927         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
14928         simple -> simple_backups, numbered_existing ->
14929         numbered_existing_backups, numbered -> numbered_backups
14930         to avoid shadowing problems.  All uses changed.
14931         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
14932         * lib/backupfile.c (check_extension, numbered_backup):
14933         Rename locals to avoid shadowing 'basename'.
14934         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
14935         once.
14936
14937         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
14938         * lib/.cvsignore: Add getopt.h.
14939
14940 2004-10-04  Bruno Haible  <bruno@clisp.org>
14941
14942         * modules/README: New file.
14943         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
14944         not a module.
14945
14946 2004-10-02  Jim Meyering  <jim@meyering.net>
14947
14948         * lib/dirfd.h, getpagesize.h: Add copyright notice.
14949
14950 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14951
14952         * modules/strsep: New file.
14953
14954 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14955
14956         * m4/strsep.m4: New file.
14957
14958 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14959
14960         * lib/strsep.h: New file.
14961         * lib/strsep.c: New file.
14962
14963 2004-10-01  Simon Josefsson  <jas@extundo.com>
14964
14965         * lib/snprintf.c (snprintf): Handle size==0.
14966
14967 2004-10-01  Simon Josefsson  <jas@extundo.com>
14968             Bruno Haible  <bruno@clisp.org>
14969
14970         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
14971         (snprintf): Declare 'args'.
14972
14973 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
14974
14975         * lib/snprintf.c: Remove comments as to why each header is needed.
14976
14977 2004-10-01  Bruno Haible  <bruno@clisp.org>
14978
14979         * MODULES.html.sh: Add strsep.
14980
14981 2004-09-30  Simon Josefsson  <jas@extundo.com>
14982
14983         * modules/snprintf: New file.
14984
14985 2004-09-30  Simon Josefsson  <jas@extundo.com>
14986
14987         * m4/snprintf.m4: New file.
14988
14989 2004-09-30  Simon Josefsson  <jas@extundo.com>
14990
14991         * lib/snprintf.h, lib/snprintf.c: New files.
14992
14993 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14994
14995         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
14996         (hol_entry_help): Never translate an empty string.
14997         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
14998         * lib/argp.h (OPTION_NO_TRANS): New option.
14999
15000 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15001
15002         * modules/argp (Maintainer): Replace Simon Josefsson
15003         by Sergey Poznyakoff.
15004
15005 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15006
15007         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
15008         changes merged back into glibc.
15009
15010 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15011
15012         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
15013
15014 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
15015
15016         * lib/xvasprintf.c: Include xalloc.h.
15017         (xvasprintf): Use xalloc_die, not xmalloc_die.
15018
15019 2004-09-29  Bruno Haible  <bruno@clisp.org>
15020
15021         * modules/alloca-opt: New file, derived from modules/alloca.
15022         * modules/allocsa: Depend on alloca-opt instead of alloca.
15023         * modules/setenv: Likewise.
15024         * modules/vasnprintf: Likewise.
15025         * MODULES.html.sh: Add alloca-opt.
15026
15027 2004-09-28  Simon Josefsson  <jas@extundo.com>
15028
15029         * gnulib-tool: New parameter --lgpl, to asseert that modules are
15030         LGPL, and to replace license template from GPL to LGPL.
15031
15032 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15033
15034         * modules/dummy: Change license to LGPL.
15035
15036 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15037
15038         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
15039
15040 2004-09-24  Simon Josefsson  <jas@extundo.com>
15041
15042         * modules/minmax (License): Change from GPL to LGPL.
15043
15044 2004-09-23  Simon Josefsson  <jas@extundo.com>
15045
15046         * gnulib-tool (--import): Typo.
15047
15048 2004-09-23  Simon Josefsson  <jas@extundo.com>
15049
15050         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
15051
15052 2004-09-22  Bruno Haible  <bruno@clisp.org>
15053
15054         * modules/*: Add 'License' field.
15055         * gnulib-tool: Accept --extract-license option.
15056         (func_get_license): New function.
15057
15058 2004-09-21  Bruno Haible  <bruno@clisp.org>
15059
15060         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
15061         Reported by Simon Josefsson.
15062
15063 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15064
15065         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
15066         gl_AC_TYPE_LONG_LONG.
15067
15068 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15069
15070         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15071
15072 2004-09-18  Simon Josefsson  <jas@extundo.com>
15073         and  Paul Eggert  <eggert@cs.ucla.edu>
15074
15075         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15076         calls with autoreconf.  Define GL_LIB.
15077
15078 2004-09-14  Karl Berry  <karl@gnu.org>
15079
15080         * config/srclist.txt: unsync setenv.c, sigh.
15081
15082 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15083
15084         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15085         Problem reported by Bruno Haible in:
15086         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15087
15088 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15089
15090         * config/srclist.txt: Comment out argp-pvh.c.
15091
15092 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15093
15094         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15095         in case some system header has #define'd it.  Problem reported by
15096         Soeren D. Schulze in
15097         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15098
15099 2004-09-09  Karl Berry  <karl@gnu.org>
15100
15101         * regex.[ch]: delete from the root.  These were supposed to be
15102                 synced with emacs cvs, but this has not happened for about
15103                 a year, and anyway nothing else uses emacs regex.[ch].
15104                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15105                 lib/regex[.ch] is untouched.
15106
15107 2004-09-09  Bruno Haible  <bruno@clisp.org>
15108
15109         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15110
15111 2004-09-09  Bruno Haible  <bruno@clisp.org>
15112
15113         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15114         modifications.
15115         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15116
15117 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15118
15119         * modules/xvasprintf: New file.
15120         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15121
15122 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15123
15124         * lib/xvasprintf.h: New file.
15125         * lib/xvasprintf.c: New file.
15126         * lib/xasprintf.c: New file.
15127
15128 2004-09-08  Bruno Haible  <bruno@clisp.org>
15129
15130         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15131
15132 2004-09-08  Bruno Haible  <bruno@clisp.org>
15133
15134         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15135         length is > INT_MAX.
15136         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15137         more.
15138
15139 2004-09-08  Bruno Haible  <bruno@clisp.org>
15140
15141         * lib/stdint_.h: New file, taken from GNU clisp.
15142
15143 2004-09-08  Bruno Haible  <bruno@clisp.org>
15144             Oskar Liljeblad  <oskar@osk.mine.nu>
15145
15146         * modules/stdint: New file.
15147         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15148
15149 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15150
15151         Import from coreutils.
15152         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15153         strings on unbounded length.  alloca's performance benefits aren't
15154         that important here.
15155         (V_STRDUP): Remove.
15156         (parse_with_separator): New function, with most of the internals
15157         of the old parse_user_spec.  Allow user to omit both user and group,
15158         for compatibility with FreeBSD.
15159         Clone only the user name, not the entire spec.
15160         Do not set *uid, *gid unless entirely successful.
15161         Avoid memory leak in some failing cases.
15162         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15163         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
15164         (parse_user_spec): Rewrite to use parse_with_separator.
15165
15166 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15167
15168         * modules/userspec: Don't depend on alloca.
15169
15170 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15171
15172         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
15173
15174 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
15175
15176         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
15177         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
15178         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
15179
15180 2004-08-16  Simon Josefsson  <jas@extundo.com>
15181
15182         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
15183         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
15184         Add --dry-run for --import.
15185         Let user provided command line parameters override configure.ac
15186         settings.
15187
15188 2004-08-12  Simon Josefsson  <jas@extundo.com>
15189
15190         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
15191         as discussed with Paul Eggert in threads rooted at
15192         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
15193         and
15194         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
15195         Before, the test was empty, and relied on ELIDE_CODE in source
15196         code.)
15197         (gl_PREREQ_GETOPT): New macro.
15198         (gl_GETOPT): Use them.
15199
15200 2004-08-12  Simon Josefsson  <jas@extundo.com>
15201
15202         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
15203         * lib/getopt_.h: Renamed from getopt.h.
15204
15205 2004-08-12  Simon Josefsson  <jas@extundo.com>
15206
15207         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
15208         Change default library name from libfoo to libgnu.
15209         Now, if you have a configure.ac that says:
15210                 gl_SOURCE_BASE(gl)
15211                 gl_M4_BASE(gl/m4)
15212                 gl_MODULES(error getopt etcetera)
15213                 gl_INIT
15214         you can import all you need by running:
15215                 ../gnulib/gnulib-tool --import
15216
15217         * modules/getopt (Files): Rename getopt.h to getopt_.h.
15218         (Makefile.am): Rewrite, use logic from argz.
15219         (Include): Use <getopt.h> instead of "getopt.h".
15220
15221 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15222
15223         * modules/argp (Files): Add m4/unlocked-io.m4.
15224         (Depends-on): Add extensions.
15225
15226 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15227
15228         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
15229         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
15230         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
15231         Check for program_invocation_name, program_invocation_short_name,
15232         flockfile, funlockfile, features.h, _getopt_long_only_r.
15233
15234 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15235
15236         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
15237         its complicated substitute.
15238         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
15239         and program_invocation_name.
15240         (__argp_basename) [!_LIBC]: Remove; the only use was
15241         replaced by its body.
15242         (__argp_short_program_name): Change condition from
15243         !defined __argp_short_program_name to
15244         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
15245         to match argp-namefrob.h.
15246         (__argp_failure): Don't assume strerror_r returns char *.
15247         * lib/argp-parse.c (N_): Define unconditionally.
15248         (argp_default_options): Fill out initializers with 0 to avoid
15249         gcc warnings.
15250
15251 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15252
15253         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
15254         getopt1.c.
15255
15256 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15257
15258         Merge from coreutils.
15259
15260         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
15261
15262         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
15263         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
15264
15265 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15266
15267         Merge from coreutils.
15268
15269         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
15270         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
15271         for Reliant Unix 5.43.
15272
15273         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
15274         (union fooround): Use uintmax_t, not long int.
15275         The rest is a merge from libc:
15276         [defined _LIBC]: Include <shlib-compat.h>.
15277         (_obstack) [defined _LIBC]: Remove after 2.3.4.
15278
15279         * lib/settime.c (settime): Recode to avoid warning with
15280         Sun Forte C 6U2.
15281
15282         * lib/strverscmp.c: Convert to UTF-8.
15283
15284 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15285
15286         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
15287         m4/uintmax_t.m4.
15288
15289 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15290
15291         * modules/xalloc-die: New file.
15292         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
15293
15294         * modules/md5 (Files): Add m4/uint32_t.m4.
15295         * modules/sha1: Renamed from modules/sha.
15296         (Files):
15297         Rename lib/sha.h to lib/sha1.h.
15298         Rename lib/sha.c to lib/sha1.c.
15299         Rename m4/sha.m4 to m4/sha1.m4.
15300         (lib_SOURCES): Likewise.
15301         (configure.ac): Rename gl_SHA to gl_SHA1.
15302         (Include): sha.h -> sha1.h.
15303
15304 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15305
15306         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
15307         * m4/sha1.m4: Renamed from sha.m4.
15308         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
15309
15310 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15311
15312         * lib/obstack.h (obstack_empty_p):
15313         Don't assume that chunk->contents is suitably aligned.
15314         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
15315         Likewise. Problem reported by Benno in
15316         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
15317
15318         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
15319         readable.  This could be improved further but it'd take some work.
15320
15321 2004-08-08  Simon Josefsson  <jas@extundo.com>
15322
15323         * modules/xgethostname (Depends-on): Remove exit and error (not
15324         used).
15325
15326         * modules/getpass-gnu: Add getpass.h.
15327         (Depends-on): Add stdbool.
15328         * modules/getpass: Add getpass.h.
15329
15330 2004-08-08  Simon Josefsson  <jas@extundo.com>
15331
15332         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
15333         Check getpass declaration.
15334
15335 2004-08-08  Simon Josefsson  <jas@extundo.com>
15336
15337         * lib/xgethostname.c: Don't include error.h (not used).
15338
15339         * lib/getpass.h: Add.
15340         * lib/getpass.c: Include getpass.h first.
15341
15342 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
15343
15344         * lib/xalloc-die.c: New file.
15345         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
15346         All uses removed.
15347         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
15348         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
15349         xalloc-die.c.
15350         (_, N_, xalloc_die): Move to xalloc-die.c.
15351         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
15352         so that we needn't mess with xalloc_msg_memory_exhausted.
15353
15354         * lib/sha1.h: Renamed from sha.h.
15355         (SHA1_H): Renamed from _SHA_H.
15356         (sha1_ctx): Renamed from sha_ctx.
15357         (sha1_init_ctx): Renamed from sha_init_ctx.
15358         (sha1_process_block): Renamed from sha_process_block.
15359         (sha1_process_bytes): Renamed from sha_process_bytes.
15360         (sha1_finish_ctx): Renamed from sha_finish_ctx.
15361         (sha1_read_ctx): Renamed from sha_read_ctx.
15362         (sha1_stream): Renamed from sha_stream.
15363         (sha1_buffer): Renamed from sha_buffer.
15364         * lib/sha1.c: Likewise; renamed from sha.c.
15365         Do not include <sys/types.h>.
15366         Include <stddef.h> rather than <stdlib.h>.
15367
15368 2004-08-08  Bruno Haible  <bruno@clisp.org>
15369
15370         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
15371         FILESYSTEM_PREFIX_LEN.
15372         * lib/progreloc.c: Likewise.
15373         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
15374
15375 2004-08-06  Simon Josefsson  <jas@extundo.com>
15376
15377         * modules/progname (Depends-on): Don't depend on stdbool.
15378
15379 2004-08-06  Simon Josefsson  <jas@extundo.com>
15380
15381         * modules/getsubopt: New file.
15382         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15383         getsubopt.
15384
15385 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15386
15387         More merge from coreutils.
15388
15389         * m4/utimens.m4, m4/utimecmp.m4: New files.
15390         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
15391         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
15392         prereq.m4, sha.m4: Import changes from coreutils.
15393
15394 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15395
15396         More merge from coreutils.
15397         * modules/raise, modules/readtokens0, modules/utimens:
15398         * modules/utimecmp, module/xnanosleep: New files.
15399         * modules/strftime: Add lib/strftime.h.
15400         Change include from <time.h> to "strftime.h".
15401         * modules/yesno: Add lib/yesno.h.
15402         * modules/backupfile: Remove lib/addext.c.
15403         * modules/euidaccess: Add stat-macros.h.
15404         * modules/canonicalize, modules/euidaccess,
15405         modules/filemode, modules/lchown, modules/makepath,
15406         modules/rmdir, modules/stat: Likewise.
15407
15408 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15409
15410         Merge from tar.
15411         * lib/argp-help.c (make_hol, hol_append): Don't assume that
15412         SIZE_MAX is a valid preprocessor constant.
15413         (__argp_basename): Change from "#ifndef _LIBC"
15414         to "#ifndef __argp_short_program_name", so that
15415         we don't compile these functions for tar.
15416
15417         More merges from coreutils.
15418         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
15419         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
15420         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
15421         * lib/addext.c: Remove; no longer needed.
15422         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
15423         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
15424         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
15425         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
15426         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
15427         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
15428         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
15429         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
15430         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
15431         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
15432         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
15433         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
15434         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
15435         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
15436         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
15437         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
15438         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
15439         Import changes from coreutils.
15440
15441 2004-08-05  Simon Josefsson  <jas@extundo.com>
15442
15443         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
15444
15445 2004-08-05  Simon Josefsson  <jas@extundo.com>
15446
15447         * m4/getsubopt.m4: New file.
15448
15449 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15450
15451         Merge from coreutils.
15452
15453         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
15454         * m4/getcwd-path-max.m4: New files.
15455
15456         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
15457         FILESYSTEM_PREFIX_LEN ->
15458         FILE_SYSTEM_PREFIX_LEN.
15459         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
15460         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
15461         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
15462         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
15463
15464         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
15465         prerequisite modules now handle the DOS stuff.
15466         Don't check for unistd.h.
15467
15468 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15469
15470         Merge from coreutils.
15471
15472         * lib/.gdb-history: Remove; this doesn't belong here.
15473
15474         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
15475         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
15476         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
15477         * lib/getcwd.c: New files.
15478
15479         * lib/dirname.h: Include <stdbool.h>.
15480         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
15481         for consistency with POSIX terminology.  All uses changed.
15482         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
15483         (strip_trailing_slashes): Use bool for booleans.
15484         * lib/stripslash.c (strip_trailing_slashes): Likewise.
15485
15486         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
15487         sometimes returns a positive errno value even when it succeeds.
15488         (print_errno_message) [!LIBC]: Fall back on strerror if
15489         __strerror_r fails.
15490
15491         * lib/path-concat.c (mempcpy): Don't define if a system header defines
15492         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
15493         (longest_relative_suffix): New function.
15494         (path_concat): Use it.  Assume first argument is not NULL.
15495         Port to DOS.  Omit redundant separators.
15496         Report an error instead of returning NULL.
15497         Use mempcpy instead of memcpy.
15498         (xpath_concat): Remove: not declared or used.
15499
15500         * lib/same.h: Include <stdbool.h>
15501         (same_name): Return bool, not int.
15502         * lib/same.c (same_name): Likewise.
15503         (errno): Don't declare; we assume C89 or better now.
15504
15505         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
15506         if not already defined.
15507
15508         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
15509         * lib/dup-safer.c (errno): Likewise.
15510
15511 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15512
15513         Merge from coreutils.
15514         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
15515         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
15516         * modules/path-concat: Don't depend on strdup.
15517
15518 2004-08-03  Simon Josefsson  <jas@extundo.com>
15519
15520         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
15521         * lib/progname.h: Don't include stdbool.h.
15522
15523 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15524
15525         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
15526         * MODULES.html.sh (func_all_modules): Remove fatal.
15527
15528 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15529
15530         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
15531
15532 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15533
15534         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
15535         working.
15536
15537 2004-08-02  Simon Josefsson  <jas@extundo.com>
15538
15539         * lib/getsubopt.h: New file, with comments from Bruno Haible.
15540         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
15541         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
15542
15543 2004-08-01  Simon Josefsson  <jas@extundo.com>
15544
15545         * lib/xgetdomainname.c: Include stdlib.h, for free().
15546
15547 2004-07-19  Bruno Haible  <bruno@clisp.org>
15548
15549         * MODULES.html.sh (func_all_modules): Add dummy.
15550
15551 2004-07-16  Simon Josefsson  <jas@extundo.com>
15552
15553         * modules/dummy: New file.
15554
15555 2004-07-16  Simon Josefsson  <jas@extundo.com>
15556
15557         * lib/dummy.c: New file.
15558
15559 2004-07-16  Bruno Haible  <bruno@clisp.org>
15560
15561         * lib/backupfile.h: Add extern "C" for C++.
15562         * lib/closeout.h: Likewise.
15563         * lib/copy-file.h: Likewise.
15564         * lib/findprog.h: Likewise.
15565         * lib/full-write.h: Likewise.
15566         * lib/pathname.h: Likewise.
15567         * lib/progname.h: Likewise.
15568         * lib/stpcpy.h: Likewise.
15569         * lib/stpncpy.h: Likewise.
15570         * lib/strcase.h: Likewise.
15571         * lib/strstr.h: Likewise.
15572         * lib/xalloc.h: Likewise.
15573
15574         * lib/mbswidth.h: Add extern "C" for C++.
15575         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
15576
15577 2004-07-13  Robert Millan  <robertmh@gnu.org>
15578
15579         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
15580
15581 2004-07-09  Simon Josefsson  <jas@extundo.com>
15582
15583         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
15584         failed without this.)
15585
15586 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15587
15588         * modules/chown (Files): Add lib/fchown-stub.c, since
15589         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
15590
15591 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15592
15593         * lib/fchown-stub.c: New file.
15594
15595 2004-06-24  Jim Meyering  <jim@meyering.net>
15596
15597         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
15598
15599 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15600
15601         * modules/argz: Omit "#include".
15602
15603         * MODULES.html.sh (func_all_modules): Add calloc, to match
15604         2004-06-01 addition of calloc module.
15605
15606 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15607
15608         * m4/argz.m4: New file, which is autoupdated from libtool.
15609
15610 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15611
15612         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
15613         libtool.
15614
15615 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15616
15617         * config/srclist-update: Don't insist on "USA." before the
15618         close-comment, as libtool omits the period and puts the */ on a
15619         separate line.
15620         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
15621         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
15622
15623 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
15624
15625         * modules/argz: New file.
15626         * MODULES.html.sh (func_all_modules): Add argz.
15627
15628 2004-06-12  Jim Meyering  <jim@meyering.net>
15629         and  Paul Eggert  <eggert@cs.ucla.edu>
15630
15631         * modules/hash (Files): Add lib/xalloc.h.
15632         * modules/pipe (Depends-on): Add wait-process.
15633         * modules/stat (Depends-on): Add xalloc.
15634         * modules/userspec (Files): Add lib/userspec.h.
15635         * modules/xstrto
15636
15637         Upgrade from gettext-0.13.
15638         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
15639         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
15640         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
15641
15642 2004-06-10  Jim Meyering  <jim@meyering.net>
15643
15644         * lib/calloc.c: New file.
15645
15646 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
15647
15648         * lib/getdate.y (yylex): Allow space between sign and number.
15649         Problem reported by Dan Jacobson.
15650
15651 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15652
15653         Merge from coreutils CVS.
15654
15655         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
15656         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
15657         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
15658         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
15659         xstrtol.m4: Fix copyright date and/or serial number.
15660
15661         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
15662         See if we need an fchown replacement.
15663         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
15664         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
15665         and use the replacement function if we detect either defect.
15666
15667         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
15668         gl_UTIMECMP.
15669
15670 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15671         and  Jim Meyering  <jim@meyering.net>
15672
15673         Merge from coreutils CVS.
15674
15675         * lib/stat-macros.h: New file, with contents from file-type.h
15676         and coreutils' system.h.
15677         * lib/file-type.c: Include "stat-macros.h".
15678         * lib/file-type.h (file_type): Move all macro definitions to new file,
15679         stat-macros.h.
15680
15681         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
15682         Wrap old code with this conditional.
15683         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
15684         function that does not dereference symlinks.
15685         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
15686
15687         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
15688         dependency problems.
15689         (xreadlink): Accept new arg SIZE, for efficiency.
15690         All decls and uses changed.
15691         * lib/xreadlink.h: Include <stddef.h>, for size_t.
15692
15693         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
15694         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
15695
15696         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
15697         sysexits.h.
15698
15699 2004-06-01  Jim Meyering  <jim@meyering.net>
15700
15701         * m4/calloc.m4: New file.
15702
15703 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
15704
15705         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
15706         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
15707         Also, fix a typo in a diagnostic.
15708
15709 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15710
15711         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
15712         or AC_FUNC_REALLOC.
15713
15714 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15715
15716         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
15717         macros to be defined.
15718         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
15719         the allocator returns NULL because the requested size is zero.
15720
15721 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
15722
15723         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
15724         var.  Add comment explaining why libc still defines it.  This
15725         merges the following patch from glibc:
15726         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
15727
15728 2004-05-20  Andreas Schwab  <schwab@suse.de>
15729
15730         * m4/free.m4: Replace free if it not known to work, not the other
15731         way round.
15732
15733 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
15734
15735         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
15736         present in glibc since revision 1.1 of this file.
15737         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
15738         obstack_alignment_mask, obstack_alloc, obstack_base,
15739         obstack_blank, obstack_blank_fast, obstack_chunk_size,
15740         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
15741         obstack_grow0, obstack_init, obstack_int_grow,
15742         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
15743         obstack_next_free, obstack_object_size, obstack_ptr_grow,
15744         obstack_ptr_grow_fast, obstack_room): Remove declarations of
15745         nonexistent functions.
15746
15747 2004-05-18  Karl Berry  <karl@gnu.org>
15748
15749         * config/srclist.txt: break link for vasnprintf.c.
15750
15751 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15752
15753         Port obstack to the AS/400, where pointers are 16 bytes wide and
15754         you cannot cast an integer to a valid pointer.  This patch is
15755         currently waiting to be integrated into glibc; see
15756         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
15757
15758         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
15759         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
15760         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
15761         (struct obstack): temp member is now a union of a pointer and
15762         an integer, instead of an integer.  All integer uses changed.
15763         This does not affect the physical layout of struct obstack,
15764         except on hosts (like the AS/400) where the size or alignment of
15765         void * is greater than that of ptrdiff_t.
15766         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
15767         __STDC__)]: Store temporary in pointer member of union, not
15768         integer member.
15769         * lib/obstack.c: Include <stddef.h>, for offsetof.
15770         (struct fooalign): Remove; it doesn't need a name.
15771         (union fooround): Change double to long double, and add void *.
15772         (DEFAULT_ALIGNMENT): Use offsetof to compute.
15773         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
15774         not a macro.  Hence the values are always int; so remove all
15775         casts-to-int in uses.
15776
15777 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15778
15779         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
15780         we can get this patch merged into glibc.
15781
15782 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15783             Paul Eggert  <eggert@cs.ucla.edu>
15784
15785         * m4/argp: Depend on alloca.
15786
15787 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15788             Paul Eggert  <eggert@cs.ucla.edu>
15789
15790         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
15791         freecoding.
15792
15793 2004-05-17  Bruno Haible  <bruno@clisp.org>
15794
15795         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
15796         precision that consists of a '.' followed by an empty digit string.
15797         Patch by Tor Lillqvist <tml@iki.fi>.
15798
15799 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15800
15801         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
15802         for backward compatibility with older code.  We need our own
15803         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
15804         it under some other name, and our alloca.h will define it.
15805
15806 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15807             Derek Price  <derek@ximbiot.com>
15808
15809         * lib/alloca.c: Include <alloca.h>, to get our interface.
15810         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
15811         include <alloca.h> first.  Use C89 prototype for alloca; this
15812         requires including <stddef.h> for size_t.  Use extern "C" if C++.
15813         Use #elif for simplicity, since we can assume C89 now.
15814         Don't try to source the system alloca.h since it will not be found
15815         and to prevent recursively including its replacement.
15816         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
15817         * lib/regex.c: Likewise.
15818
15819 2004-05-16  Derek Price  <derek@ximbiot.com>
15820             Paul Eggert  <eggert@cs.ucla.edu>
15821
15822         getline cleanup.  This changes the getndelim2 API: both order of
15823         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
15824         no delimiter).
15825
15826         * lib/getline.c: Don't include stddef.h or stdio.h, since our
15827         interface does that.
15828         (getline): Always use getdelim, so that we don't have two
15829         copies of this code.
15830         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
15831         if available.
15832         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
15833         (GETNDELIM2_MAXIMUM): New macro.
15834         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
15835         instead of the old practice of delim2==0.  All callers changed.
15836         Return -1 on overflow, instead of returning junk.
15837         Do not set *linesize unless allocation succeeds.
15838         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
15839         that we include sys/types.h.
15840         * lib/getnline.h: Likewise.
15841         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
15842         (getndelim2): Reorder arguments.
15843         * lib/getnline.c (getnline, getndelim):
15844         Don't discard the NMAX argument.
15845         (getnline): Invoke getndelim, to avoid code duplication.
15846         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
15847         of (size_t) -1 by callers of the getnline family.
15848
15849 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15850
15851         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
15852         Check for gettimeofday.
15853         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
15854         Check for settimeofday, stime.
15855
15856 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15857
15858         * lib/nanosleep.c (suspended): Change its type from int to
15859         sig_atomic_t volatile.
15860         (first_call): Make it private to rpl_nanosleep, and have it
15861         be zero initially as that's a bit faster.
15862         (my_usleep): Round up fractional times instead of truncating them,
15863         as this is the usual meaning for 'sleep'.
15864
15865         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
15866         doesn't work.
15867         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
15868         (ENOSYS): Define if not defined.
15869         (settime): Fall back on stime if it exists and settimeofday fails.
15870         But don't bother with fallbacks if a method fails with errno == EPERM.
15871
15872 2004-05-11  Jim Meyering  <jim@meyering.net>
15873
15874         Prior to this change, the save_cwd caller required read access to the
15875         current directory on most systems (ones with the fchdir function).
15876
15877         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
15878         fails, try write-only, and finally, resort to using xgetcwd.
15879
15880 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
15881
15882         * lib/obstack.c, obstack.h: Import changes from libc.
15883
15884 2004-04-28  Bruno Haible  <bruno@clisp.org>
15885
15886         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
15887         also implicitly appends .exe to executables.
15888         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
15889         accepts Windows pathnames.
15890         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15891         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15892         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15893         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15894         Reported by Derek Robert Price <derek@ximbiot.com>.
15895
15896 2004-04-21  Karl Berry  <karl@gnu.org>
15897
15898         * config/srclist.txt (localcharset.c): break sync.
15899
15900 2004-04-20  Paul Eggert  <eggert@twinsun.com>
15901
15902         * m4/host-os.m4: Add a copyright notice.
15903
15904 2004-04-20  Jim Meyering  <jim@meyering.net>
15905
15906         Change UTILS_ to gl_ in AC_DEFINE'd names.
15907         Change utils_- and jm_-prefixed variables, too.
15908         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
15909         UTILS_FUNC_MKDIR_TRAILING_SLASH.
15910         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
15911
15912         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
15913         Don't emit trailing blanks.
15914         Also rename jm_-prefixed variables to have gl_ prefix.
15915
15916         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
15917         Also rename jm_-prefixed variables to have gl_ prefix.
15918
15919         * m4/jm-macros.m4: Reflect the renamings.
15920         * m4/prereq.m4: Likewise.
15921
15922 2004-04-20  Jim Meyering  <jim@meyering.net>
15923
15924         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
15925         memory.
15926
15927 2004-04-20  Jim Meyering  <jim@meyering.net>
15928             Bruno Haible  <bruno@clisp.org>
15929
15930         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
15931         memory when realloc fails.
15932
15933 2004-04-19  Jim Meyering  <jim@meyering.net>
15934
15935         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
15936         now that readutmp.c may call `free (0)'.
15937
15938 2004-04-19  Bruno Haible  <bruno@clisp.org>
15939
15940         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
15941         * m4/inttypes_h.m4: Likewise.
15942         * m4/stdint_h.m4: Likewise.
15943         * m4/intmax_t.m4: Likewise.
15944         * m4/uintmax_t.m4: Likewise.
15945
15946 2004-04-18  Jim Meyering  <jim@meyering.net>
15947
15948         * m4/prereq.m4: Don't forbid jm_ prefix.
15949
15950         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
15951         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
15952         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
15953         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
15954         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
15955         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
15956         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
15957         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
15958         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
15959         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
15960         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
15961         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
15962         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
15963         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
15964         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
15965         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
15966         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
15967         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
15968         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
15969
15970 2004-04-18  Jim Meyering  <jim@meyering.net>
15971
15972         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
15973         failure, don't leak memory and do call END_UTMP_ENT.
15974
15975 2004-04-16  Jim Meyering  <jim@meyering.net>
15976
15977         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
15978         coreutils' stat program.
15979         (gl_PREREQ): Don't require jm_PREREQ_STAT.
15980
15981 2004-04-11  Paul Eggert  <eggert@twinsun.com>
15982
15983         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
15984         C89.
15985         (CHAR_BIT): Remove, since we assume C89.
15986         Include <stdint.h> if available, as per current Autoconf CVS advice.
15987
15988 2004-03-31  Jim Meyering  <jim@meyering.net>
15989
15990         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
15991         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
15992         * m4/xalloc.m4: Likewise.
15993
15994 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15995
15996         Merge from coreutils.
15997
15998         * m4/inttostr.m4: New file.
15999         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
16000         Require AM_STDBOOL_H and gl_TIMESPEC instead.
16001         Require gl_CLOCK_TIME.
16002         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
16003
16004 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16005
16006         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
16007         not bool, to be more consistent with Unix conventions.
16008         Suggested by Bruno Haible.
16009
16010         Merge from coreutils.
16011
16012         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
16013         * lib/umaxtostr.c: New files.
16014
16015         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
16016         the usual <time.h> dance.
16017         (get_date): Change signature to support fractional time stamps.
16018         All callers changed.
16019         * lib/getdate.y: Include "getdate.h" first, as we can now
16020         assume C89 and don't need to worry about 'const'.
16021         Similarly, include "unlocked-io.h" near start, not in middle.
16022         Include <limits.h>.
16023         (textint.value): Use long int rather than int.
16024         (textint.digits): Use size_t rather than int.
16025         (BILLION, LOG10_BILLION): New constants.
16026         (parser_control): New member rel_ns.  Members day_ordinal,
16027         time_zone, month, day, hour, minutes, rel_year, rel_month,
16028         rel_day, rel_hour, rel_minutes, rel_seconds
16029         are now long int, not int.  Member seconds is now struct timespec,
16030         not int.  New member timespec_seen.  Members dates_seen, days_seen,
16031         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
16032         not int.
16033         (%union.intval): Now long int, not int.
16034         New member timespec.
16035         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
16036         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
16037         (spec): Now is a timespec or an item list.
16038         (timespec, items): New nonterminals.
16039         (time, rel, relunit, number, get_date):
16040         Add support for fractional seconds.
16041         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
16042         (gmtime, localtime, mktime): Remove decls; not needed with C89.
16043         (to_hour): First arg is now long int, not int.
16044         (to_year): Returns long int, not int.
16045         Don't treat year -70 like 70.
16046         (tm_diff): Returns long int, not int.
16047         (lookup_word): Use bool instead of int when appropriate.
16048         (yylex): Use size_t for count, not int.
16049         Detect overflow when parsing large integer constants.
16050         Add support for fractions.
16051         (get_date): Make pointers 'const' if possible.
16052         Use more-portable code to detect integer overflow.
16053         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
16054         Don't use ctime; it's not reliable if the year has >4 digits.
16055
16056         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
16057         This is for compatibility with BSD.
16058
16059         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
16060         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
16061         From coreutils' system.h.
16062
16063         * lib/userspec.c: Don't include "posixver.h".
16064         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
16065         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
16066         compatible extension.  Simplify code by removing a boolean int
16067         that was always nonzero if a string was nonnull.
16068
16069 2004-03-30  Jim Meyering  <jim@meyering.net>
16070
16071         Merge from coreutils.
16072
16073         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16074         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16075         on some systems one must include <grp.h> before it.
16076         Reported by Christian Krackowizer.
16077
16078 2004-03-30  Jim Meyering  <jim@meyering.net>
16079
16080         Merge from coreutils.
16081
16082         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16083
16084         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16085         an empty input stream.
16086
16087         * lib/readtokens.c: Include <stdbool.h>.
16088         (readtoken): Use `size_t' rather than int/long.
16089         All callers adjusted.
16090         Use `bool' rather than `int' where appropriate.
16091         Use memset rather than an explicit loop.
16092         Use x2nrealloc rather than xrealloc.
16093         Allow the use of `\0' as a delimiter.
16094         (readtokens): Likewise.
16095         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16096
16097 2004-03-30  Jim Meyering  <jim@meyering.net>
16098
16099         * m4/realloc.m4: Remove file, since now it does no more than
16100         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16101         the `configure.ac' section of module/realloc.
16102         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16103
16104 2004-03-30  Bruno Haible  <bruno@clisp.org>
16105
16106         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16107         nonnull.
16108
16109 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16110
16111         Merge changes to getloadavg.c from coreutils and Emacs.
16112
16113         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16114         Define to an expression, not to the empty string.
16115         Include cloexec.h and xalloc.h.
16116         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16117         Use set_cloexec_flag rather than rolling our own.
16118         * lib/cloexec.c, lib/cloexec.h: New files.
16119
16120 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16121
16122         * m4/cloexec.m4: New file.
16123
16124 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16125
16126         * lib/getopt.h: Sync with libc CVS.
16127
16128 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16129             Bruno Haible  <bruno@clisp.org>
16130
16131         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16132         mbswidth.
16133
16134 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16135             Bruno Haible  <bruno@clisp.org>
16136
16137         * lib/mbswidth.h: Include <wchar.h> only if
16138         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16139         <wchar.h>.
16140         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16141
16142 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16143
16144         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16145         Sync with libc CVS.
16146         * lib/getopt_int.h: New file, also synced from libc.
16147
16148 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16149
16150         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16151         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16152         Bring back getopt.c, getopt.h, getopt1.c.
16153
16154 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16155
16156         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16157         All uses changed.  Check for sa_sigaction member; this fixes
16158         a bug first reported by Jason Andrade in
16159         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16160
16161 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16162
16163         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
16164         '#if' expressions.  Unlike the code it replaces, it does not
16165         depend on (defined _SC_PAGESIZE).  However, it does depend on
16166         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
16167         first reported by Jason Andrade in
16168         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16169
16170 2004-02-25  Simon Josefsson  <jas@extundo.com>
16171
16172         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
16173
16174 2004-02-25  Simon Josefsson  <jas@extundo.com>
16175
16176         * lib/strdup.h: New file.
16177         * lib/strdup.c: Include it.
16178         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
16179         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
16180
16181 2004-02-23  Karl Berry  <karl@gnu.org>
16182
16183         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
16184         (from fencepost.gnu.org:/gd/gnuorg).
16185
16186 2004-02-23  Karl Berry  <karl@gnu.org>
16187
16188         * config/srclistvars.sh (GNUORG) [karl]: redefine.
16189         * config/srclist.txt: add maintain/standards documents.
16190
16191 2004-02-18  Bruno Haible  <bruno@clisp.org>
16192
16193         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
16194         Reported by Derek Robert Price <derek@ximbiot.com>.
16195
16196 2004-02-16  Karl Berry  <karl@gnu.org>
16197
16198         * config/mkinstalldirs, install-sh: update from automake.
16199
16200 2004-02-06  Karl Berry  <karl@gnu.org>
16201
16202         * m4/po.m4: update from gettext 0.14.1.
16203
16204 2004-02-06  Karl Berry  <karl@gnu.org>
16205
16206         * lib/config.charset: update from gettext 0.14.1.
16207
16208 2004-02-05  Paul Eggert  <eggert@twinsun.com>
16209
16210         Add comments and code, prompted by suggestions from Bruno Haible
16211         for sh-quote.
16212         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
16213         describing the enum quoting_style values.
16214         * lib/quotearg.c (quotearg_alloc): New function.
16215         (quotearg_buffer_restyled): Treat lone { and } as special.
16216         Treat = as special.  Work around bug with older shells
16217         that "see" a '\' that is really the 2nd byte of a multibyte char.
16218         Quote empty string with shell_quoting_style.
16219
16220 2004-02-03  Bruno Haible  <bruno@clisp.org>
16221
16222         * m4/pipe.m4: New file, from GNU gettext.
16223
16224 2004-02-03  Bruno Haible  <bruno@clisp.org>
16225
16226         * lib/pipe.h: New file, from GNU gettext.
16227         * lib/pipe.c: New file, from GNU gettext.
16228
16229 2004-01-27  Bruno Haible  <bruno@clisp.org>
16230
16231         * m4/execute.m4: New file, from GNU gettext.
16232
16233 2004-01-27  Bruno Haible  <bruno@clisp.org>
16234
16235         * lib/execute.h: New file, from GNU gettext.
16236         * lib/execute.c: New file, from GNU gettext.
16237         * lib/w32spawn.h: New file, from GNU gettext.
16238
16239 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16240
16241         Merge from diffutils.
16242
16243         * lib/file-type.c (file_type): Add typed memory objects.
16244         * lib/file-type.h (S_TYPEISTMO): New macro.
16245
16246         * lib/c-stack.h (c_stack_action): Remove argv argument.
16247         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
16248         (die): Don't calculate message unless segv_action returns.
16249         (get_stack_location, min_address_from_argv, max_address_from_argv,
16250         volatile stack_base, volatile_stack_size): Remove.
16251         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
16252         that every segmentation violation is a stack overflow.  (Ouch!)
16253         See Debian bug 136249 (still outstanding) for more info about why
16254         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
16255
16256 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16257
16258         Exit-status fix from coreutils.
16259
16260         Use exit_failure consistently in place of EXIT_FAILURE,
16261         so that program exit statuses are consistent on failure.
16262
16263         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
16264         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
16265         * lib/argmatch.h: Comment fix to match the above.
16266         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
16267         Now a macro referring to exit_failure, instead of a separate
16268         variable.  Include "exitfail.h" to get it.
16269         * lib/xstrtol.h: Include "exitfail.h".
16270         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
16271
16272         * lib/long-options.c (parse_long_options): Use prototype
16273         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
16274         for clarity.
16275
16276 2004-01-21  Jim Meyering  <jim@meyering.net>
16277
16278         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
16279         so as not to conflict with a different-sized __mktime_internal
16280         function in GNU libc.
16281         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
16282         Problem building statically-linked `ls' reported by Michael Brunnbauer.
16283
16284 2004-01-20  Karl Berry  <karl@gnu.org>
16285
16286         * config/config.guess: update from config.
16287
16288         * config/srclistvars.sh: GNUWWWLICENSES for karl.
16289
16290 2004-01-20  Bruno Haible  <bruno@clisp.org>
16291
16292         Safer stack allocation.
16293         * lib/setenv.c: Include allocsa.h.
16294         (alloca): Remove fallback definition.
16295         (freea): Remove macro.
16296         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
16297         instead of freea.
16298
16299 2004-01-20  Bruno Haible  <bruno@clisp.org>
16300
16301         * m4/eealloc.m4: New file, from GNU gettext.
16302
16303 2004-01-20  Bruno Haible  <bruno@clisp.org>
16304
16305         * m4/allocsa.m4: New file, from GNU gettext.
16306
16307 2004-01-20  Bruno Haible  <bruno@clisp.org>
16308
16309         * lib/xallocsa.h: New file, from GNU gettext.
16310         * lib/xallocsa.c: New file, from GNU gettext.
16311
16312 2004-01-20  Bruno Haible  <bruno@clisp.org>
16313
16314         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
16315
16316 2004-01-20  Bruno Haible  <bruno@clisp.org>
16317
16318         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
16319         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
16320         specially.
16321
16322 2004-01-20  Bruno Haible  <bruno@clisp.org>
16323
16324         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
16325         patch.
16326
16327 2004-01-20  Bruno Haible  <bruno@clisp.org>
16328
16329         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
16330
16331 2004-01-20  Bruno Haible  <bruno@clisp.org>
16332
16333         * lib/eealloc.h: New file.
16334
16335 2004-01-20  Bruno Haible  <bruno@clisp.org>
16336
16337         * lib/binary-io.h: Avoid warnings on Cygwin.
16338
16339 2004-01-20  Bruno Haible  <bruno@clisp.org>
16340
16341         * lib/allocsa.h: New file, from GNU gettext.
16342         * lib/allocsa.c: New file, from GNU gettext.
16343
16344 2004-01-18  Karl Berry  <karl@gnu.org>
16345
16346         * doc/gpl.texi, doc/lgpl.texi: new files.
16347
16348 2004-01-18  Karl Berry  <karl@gnu.org>
16349
16350         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
16351         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
16352
16353 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16354
16355         Merge from coreutils.
16356
16357         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
16358         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
16359         (gl_DEFAULT_POSIX2_VERSION): Move
16360         the documentation from 'configure' into 'config.hin',
16361         so that 'configure --help' isn't burdened by it and
16362         we don't have to worry about its formatting there.
16363         Reword the documentation so that it's more succinct
16364         and can be run together into a single paragraph.
16365         * m4/same.m4 (gl_SAME): Check for pathconf.
16366
16367 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16368
16369         Merge from coreutils.
16370
16371         * lib/posixver.c: Include posixver.h.
16372
16373         * lib/same.c: Include <stdbool.h>, <limits.h>.
16374         (_POSIX_NAME_MAX): Define if not defined.
16375         (MIN): New macro.
16376         (same_name): If file names are silently truncated, report
16377         that the file names are the same if they are the same after
16378         the silent truncation.
16379
16380         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
16381         conversion function.
16382         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
16383         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
16384         longer needed.
16385
16386 2004-01-15  Jim Meyering  <jim@meyering.net>
16387
16388         Merge from coreutils.
16389
16390         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
16391         if no library is required.
16392         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
16393         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
16394         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
16395         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
16396         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
16397         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
16398         value, $ac_cv_search_crypt, if it's "none required".
16399         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
16400         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
16401         not gl_FUNC_GETLOADAVG.
16402         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
16403         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
16404
16405 2004-01-15  Jim Meyering  <jim@meyering.net>
16406
16407         Merge from coreutils.
16408
16409         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
16410         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
16411         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
16412
16413         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
16414         optional configure-time default.
16415
16416         * lib/version-etc.c (version_etc_copyright): Update copyright date.
16417
16418         * lib/xreadlink.c (xreadlink): Correct outdated comment.
16419
16420 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
16421
16422         Merge from coreutils.
16423
16424         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
16425         value, $ac_cv_search_nanosleep, if it's "none required".
16426
16427 2004-01-14  Paul Eggert  <eggert@twinsun.com>
16428
16429         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
16430         with like-named macro in fnmatch.c.
16431         (EXT): Use an internal constant instead.
16432
16433         Merge fnmatch patches from glibc.
16434         * lib/fnmatch.c (mbsinit): Remove define.
16435         Add libc_hidden_ver (__fnmatch, fnmatch).
16436         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
16437         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
16438
16439 2004-01-14  Karl Berry  <karl@gnu.org>
16440
16441         * config/install-sh: update from automake.
16442
16443 2004-01-13  Karl Berry  <karl@gnu.org>
16444
16445         * config/install-sh: update from automake.
16446
16447 2004-01-09  Karl Berry  <karl@gnu.org>
16448
16449         * config/install-sh: update from automake.
16450
16451 2004-01-05  Karl Berry  <karl@gnu.org>
16452
16453         * config/config.{sub,guess}: update from config.
16454
16455 2003-12-31  Karl Berry  <karl@gnu.org>
16456
16457         * config/depcomp: update from automake.
16458
16459 2003-12-14  Karl Berry  <karl@gnu.org>
16460
16461         * lib/config.charset: update from gettext-runtime.
16462
16463 2003-12-03  Paul Eggert  <eggert@twinsun.com>
16464
16465         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
16466         Bug reported by Alfred M. Szmidt.
16467
16468 2003-12-03  Bruno Haible  <bruno@clisp.org>
16469
16470         * m4/gettext.m4: Upgrade from gettext-0.13.
16471         * m4/po.m4: Upgrade from gettext-0.13.
16472         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
16473         * m4/intmax.m4: New file, from gettext-0.13.
16474         * m4/printf-posix.m4: New file, from gettext-0.13.
16475
16476 2003-11-29  Karl Berry  <karl@gnu.org>
16477
16478         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
16479
16480 2003-11-25  Paul Eggert  <eggert@twinsun.com>
16481             Bruno Haible  <bruno@clisp.org>
16482
16483         * lib/printf-parse.h: Don't include sys/types.h.
16484         (ARG_NONE): New macro.
16485         (char_directive): Change type of *arg_index fields to size_t.
16486         * lib/printf-parse.c: Don't include sys/types.h.
16487         (SSIZE_MAX): Remove macro.
16488         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
16489         Remove unnecessary overflow check.
16490         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
16491         fields.
16492
16493 2003-11-25  Bruno Haible  <bruno@clisp.org>
16494
16495         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
16496
16497 2003-11-25  Bruno Haible  <bruno@clisp.org>
16498
16499         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
16500         gt_TYPE_SSIZE_T.
16501
16502 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16503
16504         * modules/alloca: Remove dependency on xalloc.
16505
16506 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16507
16508         * lib/alloca.c: Remove dependency on xalloc module.
16509         (xalloc_die): Remove.
16510         (memory_full) [!defined emacs]: New macro.
16511         [!defined emacs]: Don't include xalloc.h.
16512         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
16513         address arithmetic overflows.  Change datatypes a bit to avoid
16514         unnecessary casts.
16515
16516 2003-11-22  Jim Meyering  <jim@meyering.net>
16517
16518         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
16519         s/size/size_t/.
16520
16521 2003-11-21  Karl Berry  <karl@gnu.org>
16522
16523         * config/config.{sub,guess}: update from config.
16524
16525 2003-11-18  Karl Berry  <karl@gnu.org>
16526
16527         * config/config.{sub,guess}: update from config.
16528
16529         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
16530
16531 2003-11-17  Paul Eggert  <eggert@twinsun.com>
16532
16533         * README: Mention that S+T cannot overflow if S is the size of
16534         an existing object and T is sufficiently small.
16535
16536 2003-11-17  Jim Meyering  <jim@meyering.net>
16537
16538         On systems without utime and without a utimes function capable of
16539         dealing with a NULL struct utimbuf* argument, this utime replacement
16540         could -- in unusual circumstances -- leak a file descriptor.
16541         * lib/utime.c: Include <unistd.h> and <errno.h>.
16542         (utime_null): Be sure to close `fd' and to preserve errno.
16543         Reported by Geoff Collyer via Arnold Robbins.
16544
16545 2003-11-17  Bruno Haible  <bruno@clisp.org>
16546
16547         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
16548         (Depends-on): Add xsize.
16549
16550 2003-11-17  Bruno Haible  <bruno@clisp.org>
16551
16552         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
16553
16554 2003-11-17  Bruno Haible  <bruno@clisp.org>
16555
16556         * lib/vasnprintf.c (alloca): Remove fallback definition.
16557         (freea): Remove definition.
16558         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
16559         Reported by Paul Eggert.
16560
16561 2003-11-16  Paul Eggert  <eggert@twinsun.com>
16562             Bruno Haible  <bruno@clisp.org>
16563
16564         Protect against address arithmetic overflow.
16565         * lib/printf-args.h: Include stddef.h.
16566         (arguments): Change type of field 'count' to size_t.
16567         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
16568         'unsigned int' where appropriate.
16569         * lib/printf-parse.h: Include sys/types.h.
16570         (char_directive): Change type of *arg_index fields to ssize_t.
16571         (char_directives): Change type of fields 'count', max_*_length to
16572         size_t.
16573         * lib/printf-parse.c: Include sys/types.h and xsize.h.
16574         (SSIZE_MAX): Define fallback value.
16575         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
16576         instead of 'int' where appropriate. Check a_allocated, d_allocated
16577         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
16578         * lib/vasnprintf.c: Include xsize.h.
16579         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
16580         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
16581         overflow. Avoid wraparound when converting a width or precision from
16582         decimal to binary.
16583
16584 2003-11-16  Bruno Haible  <bruno@clisp.org>
16585
16586         Update from GNU gettext.
16587         * lib/printf-parse.c: Generalize to it can be compiled for wide
16588         strings.
16589         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
16590         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
16591         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
16592         SNPRINTF): New macros.
16593         Don't include <alloca.h> if the file is used inside libintl.
16594         (local_wcslen): New function, for Solaris 2.5.1.
16595         (VASNPRINTF): Use it instead of wcslen.
16596
16597 2003-11-16  Bruno Haible  <bruno@clisp.org>
16598
16599         * lib/xsize.h (xmax): New function.
16600         (xsum, xsum3, xsum4): Declare as "pure" functions.
16601
16602 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16603
16604         * modules/xalloc (Files): Undo latest change, since xalloc.h
16605         no longer needs SIZE_MAX or PTRDIFF_MAX.
16606
16607 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16608
16609         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
16610         gl_PTRDIFF_MAX.
16611
16612 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16613
16614         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
16615         "return", to pacify some unknown compiler.  Problem reported
16616         by Joerg Schilling.
16617
16618 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16619
16620         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
16621         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
16622         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
16623         heuristic is just as accurate as far as we know, and it removes a
16624         dependency on size_max.m4 and ptrdiff_max.m4.
16625
16626 2003-11-11  Bruno Haible  <bruno@clisp.org>
16627
16628         * modules/xsize (Files): Add m4/size_max.m4.
16629         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
16630
16631 2003-11-11  Bruno Haible  <bruno@clisp.org>
16632
16633         * m4/size_max.m4: New file.
16634         * m4/ptrdiff_max.m4: New file.
16635         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
16636         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
16637         (gl_XALLOC): Invoke it.
16638
16639 2003-11-11  Bruno Haible  <bruno@clisp.org>
16640
16641         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
16642         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
16643         defined.
16644
16645 2003-11-10  Paul Eggert  <eggert@twinsun.com>
16646
16647         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
16648         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
16649         rejected some allocations of exactly SIZE_MAX - 2 bytes.
16650         From Bruno Haible.
16651         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
16652         not (size_t) -1, since it's defined here.
16653
16654 2003-11-09  Karl Berry  <karl@gnu.org>
16655
16656         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
16657
16658 2003-11-06  Paul Eggert  <eggert@twinsun.com>
16659
16660         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
16661         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
16662         Reject sizes of exactly SIZE_MAX bytes.
16663         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
16664         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
16665
16666 2003-11-05  Bruno Haible  <bruno@clisp.org>
16667
16668         * lib/xsize.h: Include limits.h, to avoid a possible collision with
16669         SIZE_MAX defined in <limits.h> on Solaris.
16670
16671 2003-11-04  Jim Meyering  <jim@meyering.net>
16672
16673         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
16674         variable names, rather than @VAR@.
16675         * modules/poll: Likewise.
16676
16677 2003-11-04  Bruno Haible  <bruno@clisp.org>
16678
16679         * modules/xsize: New file.
16680         * modules/linebreak: Depend on xsize.
16681         * MODULES.html.sh (func_all_modules): Add xsize.
16682
16683 2003-11-04  Bruno Haible  <bruno@clisp.org>
16684
16685         * m4/xsize.m4: New file.
16686
16687 2003-11-04  Bruno Haible  <bruno@clisp.org>
16688
16689         * lib/xsize.h: New file.
16690         * lib/linebreak.c: Include xsize.h.
16691         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
16692         argument for overflow.
16693         Suggested by Paul Eggert.
16694
16695 2003-11-03  Karl Berry  <karl@gnu.org>
16696
16697         * config/config.{guess,sub}: update from config.
16698
16699 2003-11-03  Jim Meyering  <jim@meyering.net>
16700
16701         * modules/userspec (lib_SOURCES): Add userspec.h.
16702         (Include): Add "userspec.h".
16703         Improve description.
16704
16705 2003-11-03  Jim Meyering  <jim@meyering.net>
16706
16707         * lib/userspec.c: Include "userspec.h".
16708         * lib/userspec.h: New file.
16709
16710 2003-11-03  Bruno Haible  <bruno@clisp.org>
16711
16712         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
16713
16714 2003-11-03  Bruno Haible  <bruno@clisp.org>
16715
16716         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
16717         available, to avoid (extremely rare) race condition.
16718         Suggested by Paul Eggert.
16719
16720 2003-11-02  Karl Berry  <karl@gnu.org>
16721
16722         * config/srclist.txt (vasprintf.c): sync broken, sigh.
16723
16724 2003-10-31  Paul Eggert  <eggert@twinsun.com>
16725
16726         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
16727         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
16728         (read_filesystem_list): Set and use me_type_malloced.
16729         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
16730         whatever the type happens to be), for brevity and consistency.
16731         Check for size calculation overflow on Alphas running OSF/1.
16732
16733 2003-10-31  Jim Meyering  <jim@meyering.net>
16734
16735         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
16736
16737         * lib/linebuffer.c: Include <string.h> for declaration of memset.
16738
16739 2003-10-30  Paul Eggert  <eggert@twinsun.com>
16740             Bruno Haible  <bruno@clisp.org>
16741
16742         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
16743         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
16744
16745 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16746
16747         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
16748         netbsd*-gnu*.  Suggested by Robert Millan.
16749
16750 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16751
16752         * modules/group-member: Depend on stdbool.
16753
16754 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16755
16756         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
16757
16758 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16759
16760         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
16761         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
16762         after the 'gnu' in these cases.  This fixes some bugs in the
16763         previous change, and is based on suggestions by Robert Millan.
16764
16765 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16766
16767         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
16768         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
16769         no longer needed.
16770         * lib/quotearg.c (quotearg_n_options): Use it.
16771         * lib/group-member.c: Include <stdbool.h>.
16772         (free_group_info): Arg is now const *; don't free arg.
16773         (get_group_info): Now returns bool and accepts struct group_info *,
16774         rather than returning a malloc'ed struct group_info *.
16775         All uses changed.  Check for overflow in internal size calculation.
16776
16777         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
16778         rather than xmalloc/xrealloc.
16779         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
16780         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
16781         conformance bug: the old code used a pointer after freeing the
16782         storage that it addressed.
16783         * lib/hash.c (hash_initialize): Simplify the code by using
16784         xalloc_oversized rather than doing it by hand.
16785         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
16786         the buffer preserved.  Use free and xmalloc instead.
16787         * lib/quotearg.c (quotearg_n_options): Likewise.
16788         Use a simpler test for size overflow.  Don't use xalloc_oversized
16789         because unsigned int might be wider than size_t (!); this suggests
16790         that we should switch from unsigned int to size_t for slot numbers.
16791
16792 2003-10-28  Paul Eggert  <eggert@twinsun.com>
16793
16794         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
16795         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
16796         NetBSD kernels.  Requested by Richard Stallman.
16797
16798 2003-10-27  Paul Eggert  <eggert@twinsun.com>
16799
16800         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
16801         to allocate the returned structure.  Do not allocate a subarray,
16802         as x2nrealloc will do that.
16803         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
16804         instead of xnrealloc.
16805         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
16806
16807 2003-10-27  Bruno Haible  <bruno@clisp.org>
16808
16809         * lib/stdbool_.h: Better support for BeOS.
16810
16811 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16812
16813         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
16814         now uses inline.
16815
16816 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16817
16818         * lib/xalloc.h (xalloc_oversized): New static inline function, for
16819         callers that want to do their own size-overflow checking.  Include
16820         <stdbool.h>, since xalloc_oversized returns bool.
16821         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
16822         to use xalloc_oversized.
16823
16824         Add two functions x2realloc, x2nrealloc, for programs that grow
16825         arrays dynamically by doubling their sizes.
16826         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
16827         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
16828         New functions.
16829
16830         Port to C99 semantics for 'inline' of external functions.
16831         Bug reported by Bruno Haible.
16832         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
16833         with the old contents of xnmalloc.
16834         (xnmalloc, xmalloc): Use it.
16835         (xnrealloc_inline): New static inline function,
16836         with the old contents of xnrealloc.
16837         (xnrealloc, xrealloc): Use it.
16838
16839         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
16840         that.
16841
16842 2003-10-26  Karl Berry  <karl@gnu.org>
16843
16844         * config/srclist.txt (COPYING.DOC): no longer available from
16845         /gd/gnuorg; don't know where the ultimate source is.
16846
16847 2003-10-25  Paul Eggert  <eggert@twinsun.com>
16848
16849         Fix several address-calculation bugs in the hash modules,
16850         plus some minor code cleanup.
16851
16852         * lib/hash.h: Include <stdbool.h>, for bool.
16853         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
16854         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
16855         hash_get_n_entries, hash_get_max_bucket_length,
16856         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
16857         hash_rehash): Use size_t rather than unsigned.
16858         * lib/hash.c (struct hash_table, hash_get_n_buckets,
16859         hash_get_n_buckets_used, hash_get_n_entries,
16860         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
16861         hash_get_entries, hash_do_for_each, hash_string, is_prime,
16862         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
16863         Likewise.
16864         (SIZE_MAX): Define if not defined.
16865         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
16866         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
16867         hash_print):
16868         Use const * when possible.
16869         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
16870         (check_tuning): Fix bug: if tuning parameters were very close to
16871         0 or 1, rounding errors could have caused subscript violations.
16872         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
16873         (hash_initialize): Add 'fail:' label
16874         to free table and return NULL, and use it to simplify code.
16875         Use calloc rather than clearing the storage ourself.
16876         (hash_initialize, hash_rehash): Check for arithmetic overflow in
16877         buffer size calculations.
16878         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
16879         Include <stddef.h>, for size_t.
16880         * lib/hash-pjw.c (hash_pjw): Likewise.
16881         Switch to method described by Bruno Haible.
16882         Include <limits.h>, for CHAR_BIT.
16883         (SIZE_BITS): New macro.
16884
16885 2003-10-23  Paul Eggert  <eggert@twinsun.com>
16886
16887         * m4/getline.m4 (AM_FUNC_GETLINE):
16888         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
16889         hosts.  Problem reported by Derek Robert Price in
16890         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
16891         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
16892         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
16893
16894 2003-10-21  Paul Eggert  <eggert@twinsun.com>
16895
16896         * lib/getndelim2.c (getndelim2): When size calculation overflows,
16897         ceiling the allocation at NMAX bytes rather than silently
16898         discarding input bytes before NMAX is reached.  This makes
16899         a difference only if NMAX exceeds SIZE_MAX / 2.
16900
16901         * lib/obstack.c: Merge from glibc.
16902         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
16903         Add libc_hidden_def (_obstack_newchunk).
16904         (_obstack_free) [! defined _LIBC]: Remove.
16905         [defined _LIBC]: Make a strong alias from obstack_free, rather than
16906         a clone of the function body.
16907         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
16908         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
16909
16910         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
16911         glibc.
16912         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
16913         arg to memcpy.
16914
16915         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
16916         (obstack_ptr_grow_fast, obstack_int_grow_fast):
16917         Don't use lvalue casts, as GCC plans to remove support for them
16918         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
16919         was also present in the non-GCC version, indicating that this
16920         code had always been buggy and had never been widely used.
16921         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
16922         Use the fast variant of each macro, rather than copying the
16923         definiens of the fast variant; that way, we'll be more likely to
16924         catch future bugs in the fast variants.
16925
16926 2003-10-20  Bruno Haible  <bruno@clisp.org>
16927
16928         * modules/wait-process: New file.
16929         * MODULES.html.sh (func_all_modules): Add wait-process.
16930
16931 2003-10-20  Bruno Haible  <bruno@clisp.org>
16932
16933         * m4/wait-process.m4: New file.
16934
16935 2003-10-20  Bruno Haible  <bruno@clisp.org>
16936
16937         * lib/wait-process.h: New file, from GNU gettext.
16938         * lib/wait-process.c: New file, from GNU gettext.
16939
16940 2003-10-19  Jim Meyering  <jim@meyering.net>
16941
16942         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
16943         HPUX 10.20.
16944
16945 2003-10-18  Karl Berry  <karl@gnu.org>
16946
16947         * config/config.guess: update from config.
16948
16949 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16950
16951         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
16952         (getgroups): First arg is int, not size_t.
16953         Don't let 'free' mangle errno.
16954
16955 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16956
16957         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
16958
16959 2003-10-16  Karl Berry  <karl@gnu.org>
16960
16961         * config/config.{guess,sub}: update from config.
16962
16963 2003-10-16  Jim Meyering  <jim@meyering.net>
16964
16965         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
16966         memcpy.
16967
16968 2003-10-15  Paul Eggert  <eggert@twinsun.com>
16969
16970         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
16971         (SIZE_MAX): Remove.
16972         (new_exclude, add_exclude_file): Initial size no longer needs to
16973         be a power of 2.
16974         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
16975         our own address arithmetic overflow checking.
16976
16977         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
16978         (fnmatch): Do not alloca more than 2000 wide characters;
16979         instead, use malloc for large buffers.
16980         Check for address arithmetic overflow, and return -1
16981         with errno set to ENOMEM in that case.
16982         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
16983         (NEW_PATTERN): Do not alloca more than 8000 bytes;
16984         instead, return -1.  Check for address arithmetic overflow.
16985
16986 2003-10-14  Paul Eggert  <eggert@twinsun.com>
16987
16988         Handle invalid suffixes and overflow independently, so that
16989         callers can treat them independently as needed.  Fix some bugs in
16990         suffix handling, e.g., "100k@" was not diagnosed as an invalid
16991         suffix for a human-readable blocksize.  The major caller-visible
16992         change is the addition of a new
16993         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
16994         that both overflow and suffix chars were found.
16995
16996         * lib/human.c (humblock): Don't check separately for invalid suffix
16997         char; that is xstrtoumax's job (now that its bug is fixed).
16998         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
16999         INTMAX_MAX]: New macros.
17000         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
17001         TYPE_MAXIMUM): New macros.
17002         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
17003         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
17004         if overflow occurs, as it's what __strtol does and it's more useful
17005         in practice.
17006         (__xstrtol): If __strtol reports some error other than ERANGE,
17007         reflect it to the caller as LONGINT_INVALID.  If it reports
17008         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
17009         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
17010         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
17011         value.
17012         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
17013         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
17014         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
17015         [defined UINTMAX_MAX]: New macros.
17016
17017 2003-10-14  Bruno Haible  <bruno@clisp.org>
17018
17019         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
17020
17021 2003-10-14  Bruno Haible  <bruno@clisp.org>
17022
17023         * m4/sig_atomic_t: New file, from GNU gettext.
17024         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
17025
17026 2003-10-14  Bruno Haible  <bruno@clisp.org>
17027
17028         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
17029         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
17030         Also use volatile where needed.
17031
17032 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17033
17034         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
17035         Change maintainer from Bruno Haible to 'all'.
17036
17037 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17038
17039         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
17040
17041 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17042
17043         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
17044         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
17045         and define in terms of the other primitives.
17046         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
17047         (SIZE_MAX): Define if not already defined.
17048         (array_size_overflow): New function.
17049         (xalloc_die): Abort instead of exiting if 'error' returns.
17050         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
17051         (xmalloc, xrealloc): Use them.
17052         (xcalloc): Check for address arithmetic overflow.
17053         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
17054         a bit faster than strcpy.
17055
17056 2003-10-10  Simon Josefsson  <jas@extundo.com>
17057
17058         * modules/argp (Depends-on): Add restrict and strcase.
17059
17060 2003-10-10  Simon Josefsson  <jas@extundo.com>
17061
17062         * m4/argp.m4: Add AC_C_INLINE.
17063
17064 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17065
17066         Merge getpass from libc, plus a few fixes.
17067
17068         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
17069         Include <stdbool.h>.
17070         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17071         __fsetlocking to empty.
17072         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17073         do include <bits/libc-lock.h>.
17074         Do not include <fcntl.h>; not needed.
17075         [_LIBC]: Include <wchar.h>.
17076         (NOTCANCEL_MODE): New macro.
17077         (flockfile, funlockfile) [_LIBC]: New macros.
17078         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17079         [!_LIBC]: New macros.
17080         (call_fclose): New function.
17081         (getpass): Use it.  Save tty stream separately; this simplifies the
17082         code and makes it more reliable if stdin happens to equal stdout.
17083         Invoke __fsetlocking on tty.
17084         Handle thread cancellation if needed.
17085         Namespace cleanup (use __tcgetattr, __getline).
17086         Use bool for Booleans.
17087         [USE_IN_LIBIO]: Handle wide streams.
17088         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17089         stream might go where.
17090
17091         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17092         doesn't have to include <stdio.h> before us.
17093         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17094         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17095         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17096         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17097         if not declared, so that we can use getpass.c code from libc without
17098         rewriting it.
17099         (flockfile, ftrylockfile, funlockfile): New macros.
17100
17101 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17102
17103         * modules/getpass: Depend on stdbool.
17104
17105 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17106
17107         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17108
17109 2003-10-07  Karl Berry  <karl@gnu.org>
17110
17111         * config/config.{guess,sub}: update from config.
17112
17113 2003-10-06  Jim Meyering  <jim@meyering.net>
17114             Bruno Haible  <bruno@clisp.org>
17115
17116         This lets translators provide better translations for the
17117         "Written by ..." part of --version output.
17118         * lib/version-etc.h: Include stdarg.h.
17119         (version_etc_copyright): Declare as readonly.
17120         (version_etc): Make this function variadic with a NULL-terminated list
17121         of author name strings.
17122         (version_etc_va): New declaration.
17123         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17124         (version_etc_copyright): Declare as readonly.
17125         (version_etc_va): New function. Provide a different translatable string
17126         for each possible number of authors < 10. Abbreviate when there are 10
17127         authors or more.
17128         (version_etc): Make this function variadic. Call version_etc_va.
17129         Suggestion from Gary V. Vaughan.
17130
17131         * lib/long-options.h (parse_long_options): Change prototype: the
17132         authors string is moved to the end and becomes variadic.
17133         * lib/long-options.c: Include stdarg.h.
17134         (parse_long_options): Make this function variadic, too.
17135         Call version_etc_va, not version_etc.
17136
17137 2003-10-06  Bruno Haible  <bruno@clisp.org>
17138
17139         * modules/version-etc-2: Remove file.
17140         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17141
17142 2003-10-06  Bruno Haible  <bruno@clisp.org>
17143
17144         * modules/fatal-signal: New file.
17145         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17146
17147 2003-10-06  Bruno Haible  <bruno@clisp.org>
17148
17149         * m4/fatal-signal.m4: New file.
17150         * m4/signalblocking.m4: New file, from GNU gettext.
17151
17152 2003-10-06  Bruno Haible  <bruno@clisp.org>
17153
17154         * lib/version-etc-2.h: Remove file.
17155         * lib/version-etc-2.c: Remove file.
17156
17157 2003-10-06  Bruno Haible  <bruno@clisp.org>
17158
17159         * lib/fatal-signal.h: New file, from GNU gettext.
17160         * lib/fatal-signal.c: New file, from GNU gettext.
17161
17162 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17163
17164         * README: Rework advice for preventing empty .o files.
17165         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
17166         not <sys/types.h>.
17167
17168 2003-10-04  Karl Berry  <karl@gnu.org>
17169
17170         * lib/argp*: update from libc.
17171
17172 2003-10-04  Karl Berry  <karl@gnu.org>
17173
17174         * config/config.{guess,sub}: update from config.
17175
17176 2003-10-02  Bruno Haible  <bruno@clisp.org>
17177
17178         * modules/lchown (Include): Add lchown.h.
17179         * modules/time_r (Include): Use "..." syntax.
17180         * modules/xgetdomainname (Include): Add xgetdomainname.h.
17181
17182 2003-10-01  Simon Josefsson  <jas@extundo.com>
17183
17184         * MODULES.html.sh (func_all_modules): Move gethostname from section
17185         'based on' to section 'lacking' POSIX:2001.
17186
17187 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
17188
17189         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
17190         to output mode on the same stream.
17191
17192 2003-09-29  Paul Eggert  <eggert@twinsun.com>
17193
17194         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
17195         Fix arg typo in previous patch.
17196
17197 2003-09-28  Jim Meyering  <jim@meyering.net>
17198
17199         * lib/error.c: Correct cpp indentation.
17200
17201 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17202
17203         * modules/free: New file.
17204
17205 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17206
17207         * m4/free.m4: New file.
17208
17209 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17210
17211         * lib/minmax.h (MIN, MAX)
17212         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
17213         Omit the special code that used __typeof__, since we worry that
17214         it could be more trouble than it's worth.  See:
17215         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
17216         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
17217
17218         * lib/free.c: New file.
17219
17220 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
17221
17222         Trivial fixes to Makefile.am parts of module listings.
17223         * modules/strstr: Append strstr.h to lib_SOURCES.
17224         * modules/strcase: Likewise, for strcase.h.
17225
17226 2003-09-27  Karl Berry  <karl@gnu.org>
17227
17228         * config/mkinstalldirs: update from automake.
17229
17230 2003-09-26  Paul Eggert  <eggert@twinsun.com>
17231
17232         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
17233         (error_tail): Do not loop, reallocating temporary buffer, since
17234         the output cannot contain more wide characters than the input
17235         contains bytes, the size must be big enough already.  This avoids
17236         one potential size overflow calculation.  Check for size overflow
17237         when calculating temporary buffer size.  Free temporary buffer
17238         when done, if it was allocated with malloc; this plugs a memory
17239         leak.  Remove casts from void * to pointers, that are no longer
17240         needed now that we're assuming C89 or better.
17241
17242         Merge error changes from glibc.
17243
17244         * lib/error.c, error.h: Update copyright notice header to match glibc.
17245         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
17246         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
17247         Disable cancellation while printing error.
17248         * lib/error.h: Prepend __ to parameter names.
17249
17250 2003-09-26  Jim Meyering  <jim@meyering.net>
17251
17252         * lib/error.c (error_tail): Move some declarations
17253         into inner scope where the local variables are used.
17254
17255 2003-09-26  Bruno Haible  <bruno@clisp.org>
17256
17257         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
17258         stpncpy().
17259         Don't define stpncpy through config.h; it's now done through stpncpy.h.
17260
17261 2003-09-26  Bruno Haible  <bruno@clisp.org>
17262
17263         * lib/stpncpy.h (gnu_stpncpy): New declaration.
17264         (stpncpy): Define as alias for gnu_stpncpy.
17265         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
17266
17267 2003-09-25  Simon Josefsson  <jas@extundo.com>
17268
17269         * lib/xgetdomainname.h: New file.
17270         * lib/xgetdomainname.c: New file.
17271
17272 2003-09-25  Simon Josefsson  <jas@extundo.com>
17273             Bruno Haible  <bruno@clisp.org>
17274
17275         * modules/getdomainname: New file.
17276         * modules/xgetdomainname: New file.
17277         * MODULES.html.sh (func_all_modules): Add getdomainname,
17278         xgetdomainname.
17279
17280 2003-09-25  Simon Josefsson  <jas@extundo.com>
17281             Bruno Haible  <bruno@clisp.org>
17282
17283         * m4/getdomainname.m4: New file.
17284
17285 2003-09-25  Simon Josefsson  <jas@extundo.com>
17286             Bruno Haible  <bruno@clisp.org>
17287
17288         * lib/getdomainname.h: New file.
17289         * lib/getdomainname.c: New file.
17290
17291 2003-09-25  Karl Berry  <karl@gnu.org>
17292
17293         * lib/argp-fmtstream.c, argp-help.c: update from libc.
17294
17295 2003-09-25  Karl Berry  <karl@gnu.org>
17296
17297         * config/install-sh: update from automake.
17298
17299 2003-09-25  Bruno Haible  <bruno@clisp.org>
17300
17301         * modules/version-etc-2: New file, from modules/version-etc with
17302         modifications.
17303         * MODULES.html.sh (func_all_modules): Add version-etc-2.
17304
17305 2003-09-25  Bruno Haible  <bruno@clisp.org>
17306
17307         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
17308         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
17309
17310 2003-09-24  Simon Josefsson  <jas@extundo.com>
17311
17312         * modules/xgethostname: Add xgethostname.h.
17313
17314 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17315
17316         * lib/linebuffer.c (freebuffer): Don't free the argument, just
17317         the buffer associated with the argument.  Bug reported by
17318         Simon Josefsson.
17319
17320 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17321
17322         * README: Document assumptions that 'int' is at least 32 bits
17323         wide, that integer arithmetic is 2's complement without overflow,
17324         that there are no holes in integer values, that adding sizes of
17325         two nonoverlapping objects can't overflow, and that all-bits-zero
17326         yields scalar zero.  Fix spelling and capitalization typos.
17327
17328 2003-09-19  Karl Berry  <karl@gnu.org>
17329
17330         * lib/argp.h: update from libc.
17331
17332 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17333
17334         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
17335         to avoid spurious warnings like "AC_RUN_IFELSE was called before
17336         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
17337
17338 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17339
17340         * gnulib-tool: Use "test -h", not "test -L", for portability
17341         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
17342         (tags_regexp): Remove, since \| doesn't conform to POSIX.
17343         (sed_extract_prog): Issue s commands one-by-one, rather than
17344         using \| in one s command.
17345
17346 2003-09-16  Paul Eggert  <eggert@twinsun.com>
17347
17348         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
17349         input error, instead of returning NULL the next time we are called
17350         (and therefore losing track of errno).
17351
17352 2003-09-16  Bruno Haible  <bruno@clisp.org>
17353
17354         * gnulib-tool (func_create_testdir): Warn about duplicated
17355         dependencies.
17356
17357 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17358
17359         * modules/argmatch, modules/fatal, modules/obstack,
17360         modules/xalloc, modules/xgethostname: Sort dependencies by
17361         importance, not alphabetically.
17362
17363 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17364
17365         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
17366         fails, so that the caller gets the proper errno.
17367
17368         * lib/readutmp.c (read_utmp): Likewise.
17369         Check for fstat error.  Close stream and free storage
17370         when failing.
17371
17372 2003-09-14  Karl Berry  <karl@gnu.org>
17373
17374         * config/srclist.txt (strdup.c): disable for c89 changes.
17375
17376 2003-09-14  Jim Meyering  <jim@meyering.net>
17377
17378         * lib/getloadavg.c: Correct cpp indentation.
17379         * lib/strdup.c: Likewise.
17380         * lib/vasnprintf.c: Likewise.
17381
17382 2003-09-14  Bruno Haible  <bruno@clisp.org>
17383
17384         * modules/fwriteerror: New file.
17385         * MODULES.html.sh (func_all_modules): Add fwriteerror.
17386
17387 2003-09-14  Bruno Haible  <bruno@clisp.org>
17388
17389         * lib/fwriteerror.h: New file.
17390         * lib/fwriteerror.c: New file.
17391
17392 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17393
17394         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
17395         modules/xgethostname, modules/xalloc: Depend on exit.
17396
17397 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17398
17399         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
17400
17401         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
17402         and AC_MINIX, too, so that their extensions are available.
17403
17404         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
17405         This macro has been superseded by gl_BACKUPFILE.
17406
17407         More patches to assume C89 or better.
17408
17409         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
17410
17411         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
17412         unconditionally.
17413         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
17414         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
17415         Include <string.h>, <stdlib.h> unconditionally.
17416         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
17417         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
17418         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
17419         headers or for string.h.
17420         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
17421         or strtoul.
17422
17423         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
17424         headers.
17425         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
17426         * m4/userspec.m4 (gl_USERSPEC): Likewise.
17427         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
17428         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
17429         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17430         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
17431         memcpy, memset.
17432         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
17433         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
17434         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
17435         strtol.
17436         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
17437         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
17438         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
17439         strtoul.
17440
17441 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17442
17443         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
17444         * lib/obstack.c [!defined _LIBC]: Likewise.
17445         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
17446         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
17447         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
17448
17449         More changes to assume C89 or better.
17450
17451         * lib/error.c (error_tail): Assume vprintf.
17452
17453         * lib/argmatch.c (getenv): Remove decl.
17454         * lib/progreloc.c (get_full_program_name): Define via prototype.
17455         * lib/setenv.c (clearenv): Likewise.
17456         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
17457         needed.
17458         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
17459         (malloc, memcpy): Remove decls.
17460         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
17461         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
17462         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17463         (memcpy): Remove macro.
17464         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
17465         (__P): Remove.  All uses removed.
17466         (PTR): Remove.  All uses changed to void *.
17467         (CHAR_BIT, NULL): Remove.
17468         (spaces, zeros, memset_space, memset_zero)
17469         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
17470         Remove.
17471         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
17472         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
17473         Define with prototype.
17474         Remove now-unnecessary prototype decl.
17475         (extra_args_spec): Assume ANSI C.  All uses changed.
17476         (extra_args_spec_iso): Remove.
17477         (my_strftime, emacs_strftimeu): Define via prototype.
17478         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
17479         unconditionally.
17480         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
17481         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
17482         (strtoul, strtol): Remove decls.
17483         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
17484         LONG_MAX): Remove.
17485         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17486         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
17487         (LOCALE_PARAM_PROTO): New macro.
17488         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
17489         (INTERNAL (strtol), strtol): Define with a prototype.
17490         (PARAMS): Remove.  All uses removed.
17491         * lib/tempname.c: Include <string.h> unconditionally.
17492         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
17493         * lib/xgethostname.c (main): Define with a prototype.
17494         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
17495         Include <stdlib.h> unconditionally.
17496         (calloc, malloc, realloc, free): Remove decls.
17497         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
17498         Include <stdlib.h> unconditionally.  Sort include file names.
17499         (strtod): Remove.
17500         (xstrtod): Define with a prototype.
17501         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
17502         (strtol, strtoul): Remove decls.
17503
17504 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17505
17506         More patches to assume C89 or better.
17507         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
17508         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
17509         string.h, memchr, STDC_HEADERS.
17510
17511 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17512
17513         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
17514         Include <stdlib.h>, <string.h> unconditionally.
17515         Remove now-unnecessary cast to char *.
17516         * lib/strnlen.c: Include <string.h> unconditionally.
17517         * lib/yesno.c (yesno): Define with a prototype.
17518
17519 2003-09-11  Bruno Haible  <bruno@clisp.org>
17520
17521         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
17522
17523 2003-09-10  Jim Meyering  <jim@meyering.net>
17524
17525         * lib/error.c: Correct indentation of cpp directives.
17526
17527 2003-09-10  Bruno Haible  <bruno@clisp.org>
17528
17529         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
17530         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
17531         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
17532         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
17533         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
17534         <stdlib.h> and <string.h> checks.
17535         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
17536         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
17537
17538 2003-09-10  Bruno Haible  <bruno@clisp.org>
17539
17540         * lib/strcspn.c: Include <string.h> unconditionally.
17541         * lib/strpbrk.c: Include <string.h> unconditionally.
17542         * lib/strstr.c: Include <string.h> unconditionally.
17543         * lib/unicodeio.c: Include <string.h> unconditionally.
17544         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
17545         * lib/unsetenv.c: Likewise.
17546         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
17547         * lib/yesno.c: Include <stdlib.h> unconditionally.
17548         (rpmatch): Add prototype.
17549
17550 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17551
17552         More patches to assume C89 or better.
17553         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
17554         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
17555         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
17556         or for string.h.
17557         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
17558         stdlib.h.
17559         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
17560         C headers.
17561         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
17562         string.h.
17563         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
17564         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
17565         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
17566         or for string.h.
17567         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
17568         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
17569         C headers.
17570         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
17571         memcpy.
17572         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
17573         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
17574         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
17575         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
17576         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
17577         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
17578         string.h, free.
17579         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
17580         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
17581         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
17582         C headers, or for string.h.
17583         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
17584         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
17585         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
17586         headers, memory.h, stdlib.h, string.h, strings.h.
17587         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
17588         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
17589         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
17590         strchr.
17591         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
17592         headers, memory.h, string.h.
17593         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
17594         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
17595         free.
17596         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
17597         headers.
17598         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
17599         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
17600         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
17601         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
17602         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
17603
17604 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17605
17606         More K&R removal.
17607
17608         * lib/acosl.c (main): Use a prototype.
17609         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
17610         tanl.c: Likewise.
17611
17612         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
17613
17614         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
17615         (getopt, etopt_long, getopt_long_only, _getopt_internal)
17616         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
17617         with a prototype.
17618         * lib/getopt.c (const): Remove macro.
17619         Include <string.h> unconditionally.
17620         (my_index): Remove; all uses changed to strchr.
17621         (strlen): Remove decl.
17622         (exchange): Remove forward decl; no longer needed.
17623         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
17624         Define with prototype.
17625         * lib/getopt1.c (const): Remove macro.
17626         (getopt_long, getopt_long_only, main): Define with prototype.
17627
17628         * lib/getugroups.c: Include <string.h> unconditionally.
17629
17630         * lib/getusershell.c: Include <stdlib.h> unconditionally.
17631         (getusershell, setusershell, endusershell, readname, main):
17632         Define with prototypes.
17633
17634         * lib/group-member.c: Include group-member.h first.
17635         Include <stdlib.h> unconditionally.
17636
17637         * lib/hard-locale.c: Include hard-locale.h first.
17638         Include <stdlib.h>, <string.h> unconditionally.
17639
17640         * lib/hash.c (free, malloc): Remove decls.
17641         Include <stdlib.h> unconditionally.
17642
17643         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
17644         (getenv): Do not declare.
17645
17646         * lib/idcache.c: Include <string.h> unconditionally.
17647
17648         * lib/long-options.c: Include long-options.h first, to test interface.
17649         Include <stdlib.h> unconditionally.
17650
17651         * lib/makepath.c: Include makepath.h first, to test interface.
17652         Include <stdlib.h> and <string.h> unconditionally.
17653
17654         * lib/linebuffer.c: Include <stdlib.h>.
17655         (free): Remove decl.
17656
17657         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
17658         stddef.h. rpl_malloc returns void *, not char *.
17659         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
17660         prototype.
17661
17662         * lib/md5.h: Include <limits.h> unconditionally.
17663         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
17664         (__P): Remove; all uses removed.
17665         * lib/md5.c: Include "md5.h" first.
17666         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
17667         md5_buffer, md5_process_bytes, md5_process_block):
17668         Define with prototypes.
17669         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
17670         * lib/sha.c: Include "sha.h" first.
17671         Include <stdlib.h>, <string.h> unconditionally.
17672
17673         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
17674         * lib/memcmp.c (__ptr_t): Likewise.
17675         * lib/memrchr.c (__ptr_t): Likewise.
17676         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
17677         Include <string.h> unconditionally.
17678         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
17679         * lib/memchr.c: Include <stdlib.h> unconditionally.
17680         * lib/memchr.c (LONG_MAX): Remove.
17681         * lib/memrchr.c (LONG_MAX): Likewise.
17682         * lib/memchr.c (__memchr): Define via a prototype.
17683         * lib/memrchr.c (__memrchr): Likewise.
17684         * lib/memcmp.c (__P): Remove, and remove all uses.
17685         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
17686         Remove forward decls; no longer needed.
17687         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
17688         Use types required by C89 in prototype.
17689
17690         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
17691         * lib/savedir.c: Likewise.
17692         * lib/mkdir.c (free): Remove decl.
17693         * lib/rmdir.c (rmdir): Define with a prototype.
17694         * lib/savedir.c: Include savedir.h first, to test interface.
17695
17696         * lib/mktime.c (STDC_HEADERS): Remove.
17697         Include <stdlib.h>, <string.h> unconditionally.
17698
17699         * lib/modechange.c: Include <stdlib.h> unconditionally.
17700         (malloc): Remove decl.
17701
17702         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
17703         (free): Remove decl.
17704
17705         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
17706         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
17707         (This type really should be intptr_t, but that's a C99ism.)
17708         (_obstack_memcpy): Remove: all uses changed to memcpy.
17709         Include <string.h> unconditionally.
17710         (struct obstack): Assume __STDC__ for types of members
17711         chunkfun, freefun, extra_arg.
17712         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
17713         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
17714         obstack_begin, obstack_specify_allocation,
17715         obstack_specify_allocation_with_arg, obstack_chunkfun,
17716         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
17717         Remove unprototyped decls and the macros that use them.
17718         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
17719         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
17720         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
17721         (defined __STDC__ && __STDC__)]:
17722         Remove nonprototyped code.
17723         Include <stdlib.h> unconditionally.
17724         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
17725         _obstack_allocated_p, _obstack_free, obstack_free,
17726         _obstack_memory_used, print_and_abort):
17727         Define using prototypes.
17728         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
17729         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
17730         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
17731         obstack_next_free, obstack_object_size, obstack_room) [0]:
17732         Remove unused, unprototyped code.
17733
17734         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
17735
17736         * lib/physmem.c (physmem_total, physmem_available, main): Define
17737         with prototypes.
17738
17739         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
17740         (main): Define with a prototype.
17741
17742         * lib/posixver.c (getenv): Remove decl.
17743
17744         * lib/putenv.c (malloc): Returns void *, not char *.
17745         Include <string.h> unconditionally.
17746         (strchr, memcpy, NULL): Do not define.
17747
17748         * lib/readtokens.c: Include readtokens.h first, to test interface.
17749         Include <stdlib.h>, <string.h> unconditionally.
17750         (init_tokenbuffer): Define with a prototype.
17751
17752         * lib/regex.c (PARAMS): Remove.  All uses removed.
17753         All uses of _RE_ARGS removed, too.
17754         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
17755         unconditionally.
17756         (bzero): Assume memset exists.
17757         (memcmp, memcpy, NULL): Remove.
17758         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
17759         char, or assignments to local vars of type signed char.
17760         (init_syntax_once, PREFIX(extract_number_and_incr),
17761         PREFIX(print_partial_compiled_pattern),
17762         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
17763         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
17764         PREFIX(regex_grow_registers), PREFIX(regex_compile),
17765         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
17766         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
17767         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
17768         wcs_compile_range, byte_compile_range, truncate_wchar,
17769         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
17770         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
17771         count_mbs_length, wcs_re_match_2_internal,
17772         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
17773         PREFIX(alt_match_null_string_p),
17774         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
17775         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
17776         regfree, PREFIX(extract_number)): Define with prototype.  Remove
17777         now-unnecessary declaration, if any.
17778         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
17779         regcomp, regexec):
17780         Remove now-unnecessary casts among pointer types.
17781         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
17782
17783         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
17784         (free): Remove decl.
17785
17786         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
17787
17788         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
17789         (free): Remove decl.
17790
17791         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
17792         * lib/xgetcwd.c: Likewise.
17793
17794         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
17795         (free): Remove decl.
17796
17797         * lib/strchrnul.c (strchrnul): Define with a prototype.
17798         Fix bug: c_in was not converted to char before searching.
17799
17800         The following changes are not K&R related:
17801
17802         * lib/group-member.h: Include <sys/types.h>, so that this file is
17803         self-contained.
17804         * lib/makepath.h: Likewise.
17805
17806         * lib/getusershell.c (readname, default_index, line_size, readname):
17807         Use size_t, not int, for sizes.
17808         (readname): If the size overflows, report an error instead of
17809         looping forever.
17810
17811 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17812
17813         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
17814         libc.
17815
17816 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17817
17818         * README: New section: portability guidelines.
17819
17820 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17821
17822         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
17823         C89 spec.
17824
17825 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17826
17827         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
17828
17829 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17830
17831         Assume C89 or better; remove K&R cruft.
17832         A few of these changes were first proposed by Derek Robert Price
17833         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
17834
17835         * lib/addext.c: Include <string.h> unconditionally.
17836         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
17837         Don't declare getenv or malloc.
17838
17839         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
17840         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
17841         (NULL): Remove.
17842         (find_stack_direction, alloca): Use prototypes.
17843
17844         * lib/atexit.c (atexit): Define using a prototype.
17845
17846         * lib/basename.c, dirname.c, stripslash.c:
17847         Include <string.h> unconditionally.
17848
17849         * lib/bcopy.c: Include <stddef.h>.
17850         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
17851
17852         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
17853
17854         * lib/error.h (error, error_at_line, error_print_progname)
17855         [! (defined (__STDC__) && __STDC__)]: Remove decls.
17856         * lib/error.c: Include error.h first, to check interface.
17857         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17858         (VA_START): Remove; all uses changeed to va_start.
17859         (exit, strerror): Remove decls.
17860         (error_print_progname): Prototype uncondionally.
17861         Don't include <errno.h>; no longer needed.
17862         (private_strerror): Remove.
17863         (error_tail): Always define.
17864         (error, error_at_line): Assume C89 or better; always use prototypes.
17865         * lib/fatal.c: Include "fatal.h" first, to test interface.
17866         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17867         (VA_START): Remove; all uses changed to va_start.
17868         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
17869         this case.
17870         (exit): Remove decl.
17871         (fatal): Prototype unconditionally.  Assume va_start works.
17872         Abort at end, to pacify gcc.
17873
17874         * lib/euidaccess.c (main): Define with a prototype.
17875
17876         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
17877
17878         * lib/exitfail.c: Include <stdlib.h> unconditionally.
17879
17880         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
17881         prototypes.
17882         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
17883         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
17884         (getenv): Remove decl.
17885         (fnmatch): Define using a prototype.
17886         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
17887         (FCT): Define using a prototype.
17888
17889         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
17890
17891         * lib/gethostname.c: Include <stddef.h>.
17892         (gethostname): Define with prototype.  Length is size_t, not int.
17893
17894 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17895
17896         Assume C89 or better; remove K&R cruft.
17897         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
17898         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
17899         string.h, getenv, malloc.
17900         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
17901         headers.
17902         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
17903         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
17904         do not check for strerror.
17905         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
17906         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
17907         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
17908         do not check for doprnt or vprintf.
17909         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
17910         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
17911
17912 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17913
17914         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
17915         getversion.c should have been removed then, but was accidentally
17916         preserved.
17917
17918         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
17919         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
17920
17921 2003-09-08  Karl Berry  <karl@gnu.org>
17922
17923         * config/config.sub, config.guess, srclistvars.sh: update from savannah
17924                 config, forget about prep.
17925
17926         * config/depcomp, missing: update from automake.
17927
17928 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17929
17930         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
17931         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17932
17933 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17934
17935         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
17936         copy_tm_result.  Bug reported by Simon Josefsson in
17937         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17938
17939 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17940
17941         * m4/time_r.m4: New file.
17942         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
17943         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
17944         is. Check for timegm declaration.
17945         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
17946         Do not check for gmtime_r.
17947         Replace mktime if __mktime_internal does not exist and if mktime
17948         hasn't been replaced already.
17949
17950 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17951
17952         * lib/time_r.c, lib/time_r.h: New files.
17953
17954         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
17955         __localtime_r.
17956         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
17957         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
17958
17959         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
17960         __gmtime_r.
17961         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
17962         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
17963         Include <time_r.h>.
17964
17965         * lib/timegm.c: Switch to glibc implementation, with the following
17966         changes:
17967         [defined HAVE_CONFIG_H]: Include <config.h>.
17968         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
17969         (__mktime_internal) [!defined _LIBC]: New decl.
17970         (__gmtime_r) [!defined _LIBC]: New macro and function.
17971         (timegm): Use a prototype, since gnulib assumes C89.
17972         Do not bother declaring tmp to be const, as it's not really usefu.
17973         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
17974         (timegm): Declare only if HAVE_DECL_TIMEGM.
17975
17976 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17977
17978         * MODULES.html.sh (func_all_modules): Add time_r.
17979         * modules/time_r: New file.
17980         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
17981         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
17982
17983 2003-09-03  Paul Eggert  <eggert@twinsun.com>
17984
17985         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
17986         Bug reported by Lute Kamstra in
17987         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
17988
17989         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
17990         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
17991         course with correspondingly smaller numbers for tomorrow and
17992         yesterday.  From Tadayoshi Funaba.  Originally installed into
17993         sh-utils on 1999-08-07, but the patch got lost (I guess during the
17994         coreutils merge?).
17995
17996 2003-08-31  Simon Josefsson  <jas@extundo.com>
17997
17998         * modules/timegm: New file.
17999         * MODULES.html.sh (func_all_modules): Add timegm.
18000
18001 2003-08-31  Simon Josefsson  <jas@extundo.com>
18002
18003         * m4/timegm.m4: New file.
18004
18005 2003-08-31  Simon Josefsson  <jas@extundo.com>
18006
18007         * lib/timegm.h: New file.
18008         * lib/timegm.c: New file.  Based on
18009         wget-1.8.2/src/http.c:mktime_from_utc.
18010
18011 2003-08-31  Karl Berry  <karl@gnu.org>
18012
18013         * lib/argp.h: update from libc.
18014
18015 2003-08-28  Bruno Haible  <bruno@clisp.org>
18016
18017         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
18018         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
18019         followed by '#define fnmatch fnmatch_posix' gives an error.
18020
18021 2003-08-28  Bruno Haible  <bruno@clisp.org>
18022
18023         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
18024         warning on QNX, which defines O_BINARY to 000000.
18025
18026 2003-08-27  Jim Meyering  <jim@meyering.net>
18027
18028         * m4/mkstemp.m4: Require that the system mkstemp be able to create
18029         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
18030         would fail after 32.  Reported by Danny Levinson.  Details here:
18031         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
18032
18033 2003-08-24  Bruno Haible  <bruno@clisp.org>
18034
18035         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
18036         MSVC7 <stdio.h> is included later.
18037
18038 2003-08-22  Simon Josefsson  <jas@extundo.com>
18039
18040         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
18041
18042 2003-08-20  Karl Berry  <karl@gnu.org>
18043
18044         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
18045
18046 2003-08-20  Bruno Haible  <bruno@clisp.org>
18047
18048         * modules/progname: New file.
18049         * MODULES.html.sh (func_all_modules): Add progname.
18050
18051 2003-08-20  Bruno Haible  <bruno@clisp.org>
18052
18053         * lib/progname.h: New file, from GNU gettext.
18054         * lib/progname.c: New file, from GNU gettext.
18055         * lib/progreloc.c: New file, from GNU gettext.
18056
18057 2003-08-19  Jim Meyering  <jim@meyering.net>
18058
18059         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
18060         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
18061
18062 2003-08-19  Bruno Haible  <bruno@clisp.org>
18063
18064         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
18065         more.
18066
18067 2003-08-19  Bruno Haible  <bruno@clisp.org>
18068
18069         * lib/xstrdup.c: Assume <string.h> exists.
18070
18071 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18072
18073         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18074         in makefile rules.
18075
18076 2003-08-18  Jim Meyering  <jim@meyering.net>
18077
18078         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18079         * m4/lib-ld.m4: Likewise.
18080
18081 2003-08-18  Jim Meyering  <jim@meyering.net>
18082
18083         * lib/setenv.h: Indent nested cpp directive.
18084         * lib/vasnprintf.c: Remove trailing blanks.
18085
18086 2003-08-17  Simon Josefsson  <jas@extundo.com>
18087
18088         * modules/xstrndup: New file.
18089         * MODULES.html.sh (func_all_modules): Add xstrndup.
18090
18091 2003-08-17  Simon Josefsson  <jas@extundo.com>
18092
18093         * modules/argp: Fix autoconf macro name. Add more dependencies.
18094
18095 2003-08-17  Simon Josefsson  <jas@extundo.com>
18096
18097         * m4/xstrndup.m4: New file.
18098
18099 2003-08-17  Simon Josefsson  <jas@extundo.com>
18100
18101         * m4/argp.m4: New file.
18102
18103 2003-08-17  Simon Josefsson  <jas@extundo.com>
18104             Bruno Haible  <bruno@clisp.org>
18105
18106         * lib/xstrndup.h: New file.
18107         * lib/xstrndup.c: New file.
18108
18109 2003-08-17  Bruno Haible  <bruno@clisp.org>
18110
18111         * modules/strndup (Files, Include): Add lib/strndup.h.
18112
18113 2003-08-17  Bruno Haible  <bruno@clisp.org>
18114
18115         * modules/euidaccess (Files): Add lib/euidaccess.h.
18116
18117 2003-08-17  Bruno Haible  <bruno@clisp.org>
18118
18119         * lib/strndup.h: New file.
18120
18121 2003-08-17  Bruno Haible  <bruno@clisp.org>
18122
18123         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18124         like AC_GNU_SOURCE.
18125         * modules/extensions (configure.ac): Comment out the invocation of
18126         gl_USE_SYSTEM_EXTENSIONS.
18127
18128 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18129
18130         Merges from coreutils, etc.
18131         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18132         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18133         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18134         fixing a typo.
18135         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18136         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18137
18138 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18139
18140         Document merge from coreutils.
18141         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18142         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18143         * modules/utime: Add m4/utimes-null.m4.
18144
18145 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18146
18147         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18148         space, undoing this 2003-08-12 change:
18149         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18150
18151 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18152
18153         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18154         strtoul.c from libc, undoing this 2003-08-12 change:
18155         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18156
18157 2003-08-16  Jim Meyering  <jim@meyering.net>
18158
18159         Merges from coreutils.
18160         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18161         prefix.  Adjust cache variables similarly.  Create 500 rather than
18162         just 300 files, to exercise bug on Darwin6.5, too.
18163         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
18164         $missing_dir.
18165         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
18166         AM_SYS_POSIX_TERMIOS.
18167         Reported by mkc@mathdogs.com.
18168         Also change use of $am_cv_sys_posix_termios
18169         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
18170         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
18171         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
18172         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
18173         in /proc/mounts until it finds one with matching device number.  This
18174         is unnecessary when the FILE argument *is* a mount point.  No stat call
18175         is necessary in that case.  So, disable the statvfs-testing code on
18176         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
18177         as RedHat bug# 84846.
18178         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18179         to 1MB, so as not to render systems with no stack size limit (e.g.,
18180         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18181         Include <unistd.h>.  On some systems,
18182         it is required for the definition of _SC_PAGESIZE.
18183
18184 2003-08-16  Jim Meyering  <jim@meyering.net>
18185
18186         Merge from coreutils.
18187         * lib/xstrtoimax.c: #else #if -> #elif.
18188         * lib/xstrtoumax.c: Likewise.
18189
18190 2003-08-16  Jim Meyering  <jim@meyering.net>
18191
18192         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
18193         * m4/utimes.m4: Removed.
18194         * m4/utimes-null.m4: Renamed from utimes.m4.
18195
18196         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18197         to 1MB, so as not to render systems with no stack size limit (e.g.,
18198         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18199         Include <unistd.h>.  On some systems,
18200         it is required for the definition of _SC_PAGESIZE.
18201
18202 2003-08-16  Jim Meyering  <jim@meyering.net>
18203         and Paul Eggert  <eggert@cs.ucla.edu>
18204
18205         Merges from coreutils, etc.
18206
18207         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
18208         using the latest version from cvs.  This avoids problems with #line
18209         directives using a vendor (Sun) compiler.
18210         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
18211         Don't set GETGROUPS_LIB here; now it's
18212         done via getgroups.m4's wrapper function.
18213         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
18214         rather than just in sh-util/configure.in, so that the
18215         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
18216         same.
18217         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
18218         AC_FUNC_GETLOADAVG where to find getloadavg.c.
18219         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
18220         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
18221         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
18222         Remove code that is now done by the newly-required macros.
18223         Append $(EXEEXT) to DF_PROG.
18224         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
18225         Do not invoke or require the following here,
18226         since prereq.m4 or some gnulib .m4 now does this for us:
18227         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
18228         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
18229         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
18230         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
18231         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
18232         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
18233         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
18234         AC_FUNC_OBSTACK.
18235         Do not replace the following functions, as this is now the job
18236         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
18237         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
18238         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
18239         atexit getpass, strdup, getpagesize.
18240         Replace 'raise'.
18241         Do not check for the following functions, as this is now the job
18242         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
18243         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
18244         setregid.
18245         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
18246         Check for sys/sysctl.h.
18247         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
18248         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
18249         of checking for ssize_t ourselves.
18250
18251         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
18252         Require every macro that gnulib/modules/* suggests for us.
18253         (jm_PREREQ_ADDEXT): New macro.
18254         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
18255         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
18256
18257         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
18258         (gl_PHYSMEM): Use it.
18259         Also check for `table' function.
18260         Check for new headers and functions.
18261         Add check for sys/sysmp.h.
18262         With suggestions from Kaveh Ghazi.
18263         Ignore headers that are present but cannot be compiled.  This
18264         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
18265         C 5.4.
18266
18267 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18268
18269         Document merge from coreutils.
18270         * modules/userspec: Depend on posixver.
18271         * modules/strftime: Depend on tzset.
18272
18273 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18274
18275         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
18276         rather than tab, after '#' in shell-script copyright notices.
18277         Suggested by Bruno Haible.
18278
18279 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18280
18281         * config/srclist-update: Use three spaces, rather than tab, after '#'
18282         in shell-script copyright notices.  Suggested by Bruno Haible.
18283         Remove unnecessary parenthesization in regular expression.
18284
18285 2003-08-15  Jim Meyering  <jim@meyering.net>
18286
18287         Merge from coreutils.
18288         * lib/xgethostname.c: Include <stdlib.h>.
18289         (xghostname): Don't exit for anything other than memory-related
18290         failure; just return NULL.
18291         * lib/userspec.c: Include "posixver.h".
18292         (parse_user_spec): Accept `.' as a separator only
18293         in pre-POSIX-200112 mode.
18294         * lib/strtoimax.c: Use #elif rather than #else #if.
18295         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
18296         Remove function, now that we can rely on a working tzset function.
18297         [!_LIBC]: Ensure that the required autoconf test has been run.
18298         [!defined _NL_CURRENT && HAVE_STRFTIME]:
18299         Use underlying_strftime for %r.
18300         * lib/sha.c: Merge in some clean-up and optimization changes from
18301         glibc.
18302         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
18303         Ensure that it is a multiple of 64.
18304         Rearrange loop exit tests so as to avoid performing an
18305         additional fread after encountering an error or EOF.
18306         * lib/realloc.c: Update copyright date.
18307
18308 2003-08-15  Jim Meyering  <jim@meyering.net>
18309         and Paul Eggert  <eggert@twinsun.com>
18310
18311         Merge from coreutils.
18312         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
18313         member but strut utmpx does not.  Needed for AIX 4.3.3.
18314         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
18315
18316 2003-08-15  Jim Meyering  <jim@meyering.net>
18317         and Paul Eggert  <eggert@cs.ucla.edu>
18318
18319         Merges from coreutils, etc.
18320         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
18321         Require gl_FUNC_TZSET_CLOBBER.
18322         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
18323         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
18324         members.
18325
18326 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18327
18328         Help the merge from coreutils.
18329         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
18330         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
18331         * m4/tzset.m4: Use it too.
18332
18333 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18334
18335         * modules/tzset: New file.
18336
18337 2003-08-14  Jim Meyering  <jim@meyering.net>
18338
18339         Merges from coreutils.
18340         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
18341         variable names, rather than @FNMATCH_H@.
18342         * modules/alloca: Likewise for $(ALLOCA_H).
18343
18344         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
18345         the three copies of the literal target, `fnmatch.h'.
18346         * modules/alloca (alloca.h): Likewise.
18347
18348 2003-08-14  Jim Meyering  <jim@meyering.net>
18349
18350         Merge from coreutils.
18351         * m4/tzset.m4: New file.
18352         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
18353         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
18354         otherwise, AIX 5.1 systems would end up using the latter.
18355         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
18356         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
18357         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
18358         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
18359
18360 2003-08-14  Jim Meyering  <jim@meyering.net>
18361
18362         Merge from coreutils.
18363         * lib/obstack.h: Whitespace changes.
18364         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
18365         and xcalloc return values.
18366         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
18367         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
18368         hang on OSF/1 5.1 for DIR on both local and remote file systems.
18369         Reported by (and fix confirmed by) Nelson H. F. Beebe.
18370         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18371         error from mntctl.
18372         Use mntctl's return value to drive the entry-processing loop, since
18373         we can't rely on the value of the vmt_length member in the last
18374         entry.  On some systems doing so could result in exhausting
18375         virtual memory.  Based in part on a patch from Mike Jetzer.
18376
18377 2003-08-14  Jim Meyering  <jim@meyering.net>
18378         and Paul Eggert  <eggert@twinsun.com>
18379
18380         Merges from coreutils, plus other fixes.
18381         * lib/physmem.c: Merge in portability changes from gcc/libiberty
18382         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
18383         for credits and details.  Thanks to Kaveh Ghazi for helping
18384         to keep these files in sync.
18385         (ARRAY_SIZE): Define it.
18386         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
18387         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
18388         (memcasecmp): Don't assume size_t fits in unsigned int.
18389         Remove casts and duplicate code.
18390         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
18391         (memcpy): Remove definition.
18392         Merge in some clean-up and optimization changes from glibc.
18393         [BLOCKSIZE]: Move definition to top of file.
18394         Ensure that it is a multiple of 64.
18395         Rearrange loop exit tests so as to avoid performing an
18396         additional fread after encountering an error or EOF.
18397         * lib/md5.h (md5_uintptr): Define.
18398         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
18399         return to the initial working directory.  Preserve errno
18400         for caller.
18401         * lib/idcache.c: Include "xalloc.h".
18402         (xmalloc, xrealloc): Remove decls.
18403         (getuser): Remove casts no longer required in C89.
18404         * lib/human.c: Include stdio.h, for sprintf.
18405         * lib/group-member.c: Include "xalloc.h".
18406         (xmalloc, xrealloc): Remove decls.
18407         (get_group_info): Remove casts no longer required in C89.
18408         * lib/getusershell.c (readname): Remove casts no longer required in
18409         C89.
18410         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
18411         * lib/getline.c: Whitespace fix, from coreutils.
18412
18413 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18414
18415         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
18416         Check for isascii.
18417
18418         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18419         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18420         Undo previous (whitespace-only) change.
18421
18422 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18423
18424         * lib/exclude.c: Include <ctype.h>
18425         (IN_CTYPE_DOMAIN): New macro.
18426         (is_space): New fn.
18427         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
18428         and empty lines.
18429
18430         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18431         Undo previous (whitespace-only) change.
18432
18433 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18434
18435         * config/srclist-update: Change update back to the old behavior,
18436         leaving whitespace alone.  Use one 'sed' command rather than a
18437         pipeline.
18438         (fixlicense): Now a variable, not a function.
18439         (remove_trailing_blanks): Remove.
18440         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
18441         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18442         Undo previous (whitespace-only) change.
18443
18444 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18445
18446         Merge from coreutils.
18447         * modules/euidaccess: Add lib_SOURCES, include for new
18448         file euidaccess.h
18449
18450 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18451
18452         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18453         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18454         Normalize leading white space and remove trailing white space.
18455
18456         Merge from coreutils
18457         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
18458
18459         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
18460         0.12.1.  These files are now being upgraded automatically by
18461         ../config/srclist-update.
18462
18463 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18464
18465         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18466         Normalize leading white space and remove trailing white space.
18467         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
18468         notice, as per ../config/srclist-update.
18469
18470         Merge from coreutils.
18471         * lib/euidaccess.h: New file.
18472         * lib/euidaccess.c: Include it.
18473         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
18474         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
18475         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
18476
18477 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18478
18479         * config/srclist-update: Add copyright notice.
18480         (remove_id_lines, remove_trailing_blanks): New constants.
18481         (fixfile): Use them to normalize spacing a bit in copied files.
18482         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18483         Normalize leading white space and remove trailing white space.
18484
18485         * config/texinfo.tex: Sync with texinfo.
18486
18487         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
18488         strtoul.c from libc, to merge coreutils whitespace changes.
18489
18490         * config/srclist.txt: Get the following m4 files from gettext:
18491         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
18492         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
18493         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
18494         wint_t.m4.
18495
18496 2003-08-12  Karl Berry  <karl@gnu.org>
18497
18498         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
18499         been made.
18500
18501 2003-08-11  Paul Eggert  <eggert@twinsun.com>
18502
18503         * modules/gnu-source, m4/gnu-source.m4:
18504         Remove; we're assuming Autoconf 2.54 or later now.
18505         Suggested by Bruno Haible.
18506         * MODULES.html.sh (func_all_modules): Remove gnu-source.
18507
18508 2003-08-11  Bruno Haible  <bruno@clisp.org>
18509
18510         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
18511
18512 2003-08-11  Bruno Haible  <bruno@clisp.org>
18513
18514         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
18515         (vasnprintf): Use it instead of wcslen.
18516
18517 2003-08-11  Bruno Haible  <bruno@clisp.org>
18518
18519         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
18520         value to ensure that _Bool promotes to int. Use #define for _Bool when
18521         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
18522
18523 2003-08-10  Karl Berry  <karl@gnu.org>
18524
18525         * lib/regex.h: update from libc (whitespace fix).
18526
18527 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18528
18529         Merge some files from coreutils.  These changes were
18530         originally made by Jim Meyering.
18531         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
18532         many older Unixes require this.
18533         * lib/alloca.c (alloca): Remove cast to argument of free;
18534         no longer needed in C89.
18535         * lib/alloca_.h, regex.h: Fix white space to match
18536         what GNU indent does.
18537
18538 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18539
18540         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
18541         apparently Emacs's Unicode mode got confused before my 2003-08-05
18542         checkin.
18543
18544 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18545
18546         * m4/extensions.m4: New file.
18547         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
18548         Require gl_USE_SYSTEM_EXTENSIONS.
18549         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
18550         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
18551
18552 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18553
18554         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
18555         * modules/extensions, modules/gnu-source: New files.
18556         * modules/timespec, modules/unlocked-io: Depend on extensions.
18557
18558 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18559
18560         * modules/restrict: New file.
18561         * MODULES.html.sh (func_all_modules): Add restrict.
18562         * modules/regex: Depend on restrict.
18563
18564 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18565
18566         * m4/restrict.m4: New file.
18567         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
18568
18569 2003-08-07  Bruno Haible  <bruno@clisp.org>
18570
18571         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
18572         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
18573
18574 2003-08-07  Bruno Haible  <bruno@clisp.org>
18575
18576         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
18577         makes the module 'getndelim2' compatible with the module 'getline'.
18578
18579 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18580
18581         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
18582         byte with "\201" to avoid glitches when editing that source file
18583         with multi-gnome-terminal.
18584
18585 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18586
18587         * lib/bumpalloc.h: Remove.
18588
18589 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18590
18591         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
18592         * modules/bumpalloc: Remove.
18593
18594 2003-08-04  Paul Eggert  <eggert@twinsun.com>
18595
18596         * lib/getloadavg.c: Change copyright notice and spacing to conform to
18597         GNU coding style.
18598
18599         Merge from coreutils.
18600         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
18601         1. From glibc.
18602         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
18603         from Karl Berry, implemented by Jim Meyering.
18604         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
18605         from Dmitry V. Levin.
18606         Remove anachronistic cast of xrealloc.
18607         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
18608         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
18609         type. Otherwise, it wouldn't compile with at least /bin/cc on
18610         ymp-cray-unicos9.0.2.X.
18611         Combine two mostly-identical uses of alloca into one.
18612         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
18613
18614 2003-08-04  Dave Love  <d.love@dl.ac.uk>
18615
18616         [From Emacs.]
18617
18618         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
18619         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
18620         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
18621         obsolete NLIST_NAME_UNION.
18622         [__GNU__]: Undef BSD and FSCALE.
18623         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
18624
18625 2003-08-03  Paul Eggert  <eggert@twinsun.com>
18626
18627         * lib/stdbool_.h (_Bool): Make it signed char, instead of
18628         an enum type, so that it's guaranteed to promote to int.  See:
18629         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
18630
18631 2003-08-03  Karl Berry  <karl@gnu.org>
18632
18633         * config/depcomp: update from automake.
18634
18635 2003-07-31  Paul Eggert  <eggert@twinsun.com>
18636
18637         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
18638         (strerror): Don't assume that a printable int fits in 14 bytes.
18639
18640 2003-07-31  Bruno Haible  <bruno@clisp.org>
18641
18642         * modules/getpass-gnu: New file.
18643         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
18644
18645 2003-07-31  Bruno Haible  <bruno@clisp.org>
18646
18647         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
18648
18649 2003-07-24  Karl Berry  <karl@gnu.org>
18650
18651         * config/missing: update from automake.
18652
18653 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
18654             Bruno Haible  <bruno@clisp.org>
18655
18656         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
18657         * lib/getline.c (getline, getdelim): Likewise.
18658         Remove _GNU_SOURCE define; now it's defined in config.h through
18659         m4/getline.m4.
18660
18661 2003-07-23  Karl Berry  <karl@gnu.org>
18662
18663         * config/config.sub: update from prep.
18664
18665 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18666
18667         * modules/xalloc (Depends-on): Add exitfail.
18668         * modules/xmemcoll: Likewise.
18669
18670 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18671
18672         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
18673         over-parenthesization in macros.
18674
18675         Sync with coreutils.
18676
18677         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
18678         required by C99.
18679
18680         Use `exit_failure' for xalloc and xmemcoll instead of their own
18681         private exit-failure variables.
18682         * lib/xalloc.h (xalloc_exit_failure): Remove.
18683         * lib/xmalloc.c: Likewise.  Include exitfail.h.
18684         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
18685         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
18686         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
18687         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
18688
18689 2003-07-20  Jim Meyering  <jim@meyering.net>
18690
18691         * modules/closeout (Depends-on): Add exitfail.
18692         Suggestion from Bruno Haible.
18693
18694 2003-07-19  Karl Berry  <karl@gnu.org>
18695
18696         * config/config.sub: update from prep.
18697
18698 2003-07-18  Paul Eggert  <eggert@twinsun.com>
18699
18700         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
18701         Remove.
18702         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
18703         to test that it can stand by itself.  Include "exitfail.h".
18704         Clients should set exit_failure instead.
18705         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
18706
18707 2003-07-18  Bruno Haible  <bruno@clisp.org>
18708
18709         * modules/getndelim2: New file.
18710         * modules/getline: Share files with module getndelim2.
18711         * modules/getnline: Depend on getndelim2 instead of sharing files with
18712         it. Add getnline.c to lib_SOURCES.
18713         * MODULES.html.sh (func_all_modules): Add getndelim2.
18714
18715 2003-07-18  Bruno Haible  <bruno@clisp.org>
18716
18717         * m4/getndelim2.m4: New file.
18718         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
18719         invoke gl_PREREQ_GETNDELIM2.
18720         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
18721         gl_PREREQ_GETNDELIM2.
18722         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
18723         gl_GETNDELIM2.
18724
18725 2003-07-18  Bruno Haible  <bruno@clisp.org>
18726
18727         * lib/getndelim2.h: New file.
18728         * lib/getndelim2.c: Make into a module of its own. Include config.h,
18729         getndelim2.h.
18730         (getndelim2): Make non-static. Change return type to ssize_t.
18731         * lib/getline.h: Change argument names.
18732         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
18733         * lib/getnline.c: Include getndelim2.h.
18734
18735 2003-07-18  Andreas Schwab  <schwab@suse.de>
18736
18737         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
18738
18739 2003-07-17  Karl Berry  <karl@gnu.org>
18740
18741         * config/config.sub: update from prep.
18742
18743 2003-07-17  Bruno Haible  <bruno@clisp.org>
18744
18745         * modules/getnline: New file.
18746         * modules/getline: Add lib/getndelim2.c to source file list.
18747         * MODULES.html.sh (func_all_modules): Add getnline.
18748
18749 2003-07-17  Bruno Haible  <bruno@clisp.org>
18750
18751         * m4/getnline.m4: New file.
18752
18753 2003-07-17  Bruno Haible  <bruno@clisp.org>
18754
18755         * m4/Makefile.am.in: Remove file.
18756         * m4/Makefile.am: Remove file.
18757         * m4/Makefile.in: Remove file.
18758
18759 2003-07-17  Bruno Haible  <bruno@clisp.org>
18760
18761         * lib/getnline.h: New file.
18762         * lib/getnline.c: New file.
18763         * lib/getndelim2.c: New file, extracted from getline.c.
18764         (getndelim2): Renamed from getdelim2, with added nmax argument.
18765         * lib/getline.c: Include getndelim2.c.
18766         (getdelim2): Moved out to getndelim2.c.
18767         (getline, getdelim): Update.
18768
18769 2003-07-17  Bruno Haible  <bruno@clisp.org>
18770
18771         * lib/Makefile.am: Remove file.
18772         * lib/Makefile.in: Remove file.
18773
18774 2003-07-17  Bruno Haible  <bruno@clisp.org>
18775
18776         * configure.in: Remove file.
18777         * Makefile.in: Remove file.
18778
18779 2003-07-17  Bruno Haible  <bruno@clisp.org>
18780
18781         * MODULES.html.sh: Put the </BODY> right before </HTML>.
18782
18783 2003-07-16  Karl Berry  <karl@gnu.org>
18784
18785         * config/srclist-update: was running fixlicense twice, which caused
18786                 texinfo.tex to be nullified for some reason.  Simplify,
18787                 $gplsrc is no longer needed as far as I can see?
18788
18789 2003-07-16  Jim Meyering  <jim@meyering.net>
18790
18791         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
18792
18793 2003-07-15  Paul Eggert  <eggert@twinsun.com>
18794
18795         * config/srclist.txt: Get the following files from gettext-runtime/intl
18796         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
18797         ref-del.sin.  From Bruno Haible.
18798         * config/srclist-update (fixfile): Change grep pattern again, since the
18799         previous fix didn't work (there was another trailing $).  Use
18800         '[$]' to escape the $s.
18801
18802 2003-07-15  Karl Berry  <karl@gnu.org>
18803
18804         * lib/vasnprintf.c: update from gettext.
18805
18806 2003-07-15  Karl Berry  <karl@gnu.org>
18807
18808         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
18809         gets expanded when surrounded by '$'.
18810
18811 2003-07-15  Jim Meyering  <jim@meyering.net>
18812
18813         * modules/save-cwd: Don't depend on error.  From Derek Price.
18814
18815 2003-07-15  Jim Meyering  <jim@meyering.net>
18816
18817         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
18818
18819 2003-07-14  Simon Josefsson  <jas@extundo.com>
18820
18821         * modules/mempcpy: New file.
18822         * MODULES.html.sh (func_all_modules): Add mempcpy.
18823
18824 2003-07-14  Simon Josefsson  <jas@extundo.com>
18825
18826         * m4/mempcpy.m4: New file.
18827
18828 2003-07-14  Simon Josefsson  <jas@extundo.com>
18829
18830         * lib/mempcpy.h: New file.
18831         * lib/mempcpy.c: New file.
18832
18833 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18834
18835         * modules/getdate, modules/posixtm: Depend on mktime.
18836
18837 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18838
18839         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
18840         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
18841         unicodeio.c, unicodeio.h, unlocked-io.h:
18842         Switch from LGPL to GPL.
18843
18844 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18845
18846         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
18847         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
18848         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
18849         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
18850         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
18851         updated automatically by ../config/srclist-update.  This changes
18852         their license from LPGL to GPL.
18853
18854 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18855
18856         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
18857         assumed to refer to the root of the most recent stable gettext version.
18858         * config/srclistvars.sh: Add defaults for eggert.
18859         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
18860         Match "This program" as well as "The program".  This is needed
18861         for gettext.
18862
18863 2003-07-14  Jim Meyering  <jim@meyering.net>
18864
18865         Don't emit diagnostics.  Let callers do that.
18866         * lib/save-cwd.c: Don't include "error.h".
18867         (save_cwd): Don't call error.  Ensure that errno is valid
18868         when returning nonzero.
18869
18870         * lib/save-cwd.h (restore_cwd): Update prototype.
18871         * lib/save-cwd.c (restore_cwd): Remove two parameters.
18872         Simplify.  Don't call error upon failure.  Let callers do that.
18873         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
18874         when auditing is enabled.  But don't bother updating the #if.
18875
18876 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
18877
18878         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
18879         it breaks C++ compilation.
18880         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
18881
18882 2003-07-10  Simon Josefsson  <jas@extundo.com>
18883
18884         * modules/strchrnul (Makefile.am): Add strchrnul.h.
18885
18886 2003-07-10  Jim Meyering  <jim@meyering.net>
18887
18888         * m4/clock_time.m4: Remove trailing blank.
18889         * m4/intmax_t.m4: Likewise.
18890
18891 2003-07-10  Jim Meyering  <jim@meyering.net>
18892
18893         * lib/vasnprintf.c: Remove trailing blanks.
18894         Make cpp indentation consistent.
18895
18896 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18897
18898         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
18899         posixver.c, strftime.c, strnlen.c, strverscmp.c:
18900         Switch from LGPL to GPL.
18901
18902 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18903
18904         * config/srclist.txt: Sort sublists.  Add
18905         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
18906         that differ from gnulib for one reason or another; we'd like this list
18907         to be smaller but for now let's document what we have.
18908
18909 2003-07-08  Paul Eggert  <eggert@twinsun.com>
18910
18911         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
18912         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
18913         and sweeter "eval x=$x".
18914         * config/srclist.txt: Get lib/argp* from glibc.
18915
18916 2003-07-07  Paul Eggert  <eggert@twinsun.com>
18917
18918         * lib/mktime.c: Fix some boundary cases and remove need for floating
18919         point.
18920
18921         Issue a compile-time diagnostic if time_t is floating point, or if
18922         two's complement arithmetic is not in effect, or if arithmetic
18923         right shift does not propagate the sign.  These assumptions were
18924         all in the original code but they weren't checked.
18925
18926         (TIME_T_MIDPOINT, verify): New macros.
18927         (__isleap): Remove; it has integer overflow problems.
18928         (leapyear): New function, without those problems.
18929         (ydhms_tm_diff): Remove; splitting into two parts.
18930         (ydhms_diff): New function, containing the arithmetic part of
18931         the old ydhms_tm_diff function.  Issue a compile-time
18932         diagnostic if we are not using C99 integer division.
18933         Avoid casts when possible.
18934         (guess_time_tm): New function, containing the checking part of
18935         the old ydhms_tm_diff function.  Return the new value, rather than
18936         the difference between it and the old.  Accept a new argument T
18937         so that *T specifies the old value.  Check for overflow in the result.
18938
18939         (__mktime_internal): Use a time_t offset, not a long int offset.
18940         This undoes the 2003-06-04 change, which is no longer needed now
18941         that we have better overflow checking.
18942         (localtime_offset): Likewise.
18943
18944         (__mktime_internal): Avoid harmful overflow on hosts where time_t
18945         and long are 64-bit but int is only 32-bit.
18946         (ydhms_diff): Use long int to store year1 and yday1.
18947         Issue a compile-time diagnostic if long int is not wide enough.
18948
18949         (__mktime_internal): Use long int to store adjusted year and yday.
18950         Use plain C rather than preprocessor commands, if that doesn't
18951         affect efficiency.
18952         Check for overflow (and try to repair) after each probe
18953         rather than checking only at the very end.  This avoids some bugs
18954         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
18955         does not equal GMT offset at maximum time).
18956         Use integer to check for overflow rather than floating point; this
18957         is more portable to non-IEEE hosts, and is a tad faster.
18958         When we detect that we are oscillating between two values,
18959         don't check whether tm_isdst has the requested value, since
18960         we already know the answer.  When tm_isdst has the wrong value,
18961         use a different heuristic to find the right one, based on the
18962         extreme values actually observed in practice in tz2003a,
18963         rather than the (overly optimistic) "previous 3 calendar quarters".
18964
18965         (not_equal_tm, print_tm, check_result): Use "const T" rather than
18966         "T const" to accommodate glibc style.
18967         (check_result): Use less-confusing report format.  "long" -> "long int.
18968         (main): Likewise.
18969         Don't loop if the iteration overflows time_t.
18970         Allow a negative step in the iteration.
18971
18972 2003-07-06  Karl Berry  <karl@gnu.org>
18973
18974         * config/depcomp: update from automake.
18975         * config/config.sub: update from prep.
18976
18977 2003-07-03  Karl Berry  <karl@gnu.org>
18978
18979         * config/config.guess: update from prep.
18980
18981 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18982
18983         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
18984         xreadlink.c now includes it unconditionally.
18985
18986 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18987
18988         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
18989         having it depend on HAVE_SYS_TYPES_H.
18990
18991 2003-07-01  Bruno Haible  <bruno@clisp.org>
18992
18993         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
18994         <sys/types.h> should be sufficient.
18995         Reported by Paul Eggert.
18996
18997 2003-06-26  Karl Berry  <karl@gnu.org>
18998
18999         * config/depcomp: update from automake.
19000
19001 2003-06-26  Bruno Haible  <bruno@clisp.org>
19002
19003         * modules/human: Depend on module stdbool.
19004
19005 2003-06-25  Bruno Haible  <bruno@clisp.org>
19006
19007         * modules/readlink: New file.
19008         * modules/xreadlink: Depend on it.
19009         * MODULES.html.sh (func_all_modules): Add readlink.
19010
19011 2003-06-25  Bruno Haible  <bruno@clisp.org>
19012
19013         * m4/readlink.m4: New file.
19014
19015 2003-06-25  Bruno Haible  <bruno@clisp.org>
19016
19017         * lib/readlink.c: New file.
19018
19019 2003-06-22  Karl Berry  <karl@gnu.org>
19020
19021         * config/srclist.txt: update mkinstalldirs from automake.
19022         * config/mkinstalldirs: update.
19023
19024 2003-06-22  Bruno Haible  <bruno@clisp.org>
19025
19026         Portability to mingw32.
19027         * m4/ssize_t.m4: New file, from GNU gettext.
19028         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
19029         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
19030
19031 2003-06-22  Bruno Haible  <bruno@clisp.org>
19032
19033         * modules/safe-read: Add m4/ssize_t.m4.
19034         * modules/xreadlink: Add m4/ssize_t.m4.
19035
19036 2003-06-20  Bruno Haible  <bruno@clisp.org>
19037
19038         Assume C89, so PARAMS isn't needed.
19039         * lib/unicodeio.h (PARAMS): Remove.
19040         * lib/unicodeio.c: Don't use PARAMS.
19041
19042 2003-06-18  Karl Berry  <karl@gnu.org>
19043
19044         * config/config.{guess,sub}: update from prep.
19045
19046 2003-06-18  Jim Meyering  <jim@meyering.net>
19047
19048         Merge changes from coreutils.
19049         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
19050         Remove explicit declarations of xmalloc and realloc.
19051         Include xalloc.h.
19052         (read_utmp): Remove anachronistic cast of xmalloc.
19053
19054 2003-06-17  Paul Eggert  <eggert@twinsun.com>
19055
19056         Assume C89, so PARAMS isn't needed.
19057         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
19058         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
19059         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
19060         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
19061         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
19062         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
19063         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
19064         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
19065         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
19066         lib/xstrtod.h, lib/xstrtol.h: Likewise.
19067         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
19068         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
19069         no longer needed. Anyway, config.h should always be included before any
19070         other file.
19071
19072 2003-06-11  Simon Josefsson  <jas@extundo.com>
19073
19074         * modules/sysexits: New file.
19075         * MODULES.html.sh (func_all_modules): Add sysexits.
19076
19077 2003-06-11  Simon Josefsson  <jas@extundo.com>
19078
19079         * lib/sysexit_.h: New file.
19080
19081 2003-06-11  Derek Price  <derek@ximbiot.com>
19082
19083         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19084         necessary.
19085
19086 2003-06-11  Bruno Haible  <bruno@clisp.org>
19087
19088         * m4/sysexits.m4: New file.
19089
19090 2003-06-10  Simon Josefsson  <jas@extundo.com>
19091
19092         * lib/argp.h: New file, from glibc.
19093         * lib/argp-ba.c: New file, from glibc.
19094         * lib/argp-eexst.c: New file, from glibc.
19095         * lib/argp-fmtstream.c: New file, from glibc.
19096         * lib/argp-fmtstream.h: New file, from glibc.
19097         * lib/argp-fs-xinl.c: New file, from glibc.
19098         * lib/argp-help.c: New file, from glibc.
19099         * lib/argp-namefrob.h: New file, from glibc.
19100         * lib/argp-parse.c: New file, from glibc.
19101         * lib/argp-pv.c: New file, from glibc.
19102         * lib/argp-pvh.c: New file, from glibc.
19103         * lib/argp-xinl.c: New file, from glibc.
19104
19105 2003-06-10  Simon Josefsson  <jas@extundo.com>
19106
19107         * modules/strchrnul: New file.
19108
19109 2003-06-10  Simon Josefsson  <jas@extundo.com>
19110
19111         * modules/argp: New file.
19112
19113 2003-06-10  Simon Josefsson  <jas@extundo.com>
19114
19115         * m4/strchrnul.m4: New file.
19116
19117 2003-06-10  Simon Josefsson  <jas@extundo.com>
19118
19119         * lib/strchrnul.h: New file.
19120         * lib/strchrnul.c: New file.
19121
19122 2003-06-10  Bruno Haible  <bruno@clisp.org>
19123
19124         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19125
19126 2003-06-07  Karl Berry  <karl@gnu.org>
19127
19128         * config/config.{guess,sub}: update from prep.
19129
19130 2003-06-07  Jim Meyering  <jim@meyering.net>
19131
19132         * modules/strtod: Use $(...) notation, not @...@ for
19133         AC_REPLACE'd variables.
19134         * modules/localcharset: Likewise.
19135
19136 2003-06-07  Jim Meyering  <jim@meyering.net>
19137
19138         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19139         in place of my name in the copyright comment.
19140         Remove definition and uses of __P.
19141
19142         From coreutils.
19143         * lib/stat.c: Don't declare xmalloc explicitly.
19144         Instead, include "xalloc.h".
19145         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19146         xrealloc, and xcalloc return values.
19147         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19148         Improve comment.
19149         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19150
19151 2003-06-07  Bruno Haible  <bruno@clisp.org>
19152
19153         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19154         avoid AC_CONFIG_LINKS.
19155         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19156         fnmatch.h, to avoid AC_CONFIG_LINKS.
19157         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19158
19159 2003-06-07  Bruno Haible  <bruno@clisp.org>
19160
19161         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19162         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19163         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19164         directory.
19165         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
19166         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19167         directory.
19168
19169 2003-06-06  Jim Meyering  <jim@meyering.net>
19170
19171         Merge from coreutils.
19172         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
19173         Consolidate declarations and initializations of *_base* locals.
19174
19175         Merge from coreutils.
19176         This avoids a core dump on systems without GNU putenv,
19177         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
19178         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
19179         (unsetenv): New static function, from GNU libc.
19180         (rpl_putenv): Use it.
19181
19182         * lib/modechange.c: Remove trailing blanks.
19183
19184         Merge from coreutils.
19185         * lib/fsusage.c: Remove declaration of statfs.
19186         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
19187
19188         * lib/posixtm.c: Include <stdbool.h> unconditionally.
19189
19190 2003-06-06  Jim Meyering  <jim@meyering.net>
19191
19192         * lib/stdbool_.h: Renamed from stdbool.h.in.
19193
19194 2003-06-06  Jim Meyering  <jim@meyering.net>
19195             Bruno Haible  <bruno@clisp.org>
19196
19197         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
19198         Adjust Makefile.am snippet not to redirect directly to target.
19199         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
19200
19201 2003-06-05  Paul Eggert  <eggert@twinsun.com>
19202
19203         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
19204         mismatch, look in future quarters as well as past.  This fixes a
19205         bug when processing fall-backwards gaps immediately after a long
19206         period of daylight-saving time.
19207
19208         * lib/mktime.c: Assume freestanding C89 or better.
19209         (HAVE_LIMITS_H): Remove.  Assume it's 1.
19210         (__P): Remove; not used.
19211         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
19212         (mktime, not_equal_tm, print_tm, check_result,
19213         main): Use prototypes.  Use const * where appropriate.
19214         (main): Fix typo in testing code that uncovered by above changes.
19215         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
19216
19217 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19218
19219         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
19220         locale.h, localeconv.  This merges changes from coreutils.
19221
19222         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
19223         It can be removed after the next Autoconf is released.
19224         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
19225         needed.
19226
19227 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19228
19229         * lib/mktime.c: Fix Debian bug 177940
19230         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
19231         (localtime_offset): Now long int, not time_t, because we want it
19232         to be guaranteed to be signed.  All uses changed.
19233         (__mktime_internal): If overflow would occur when adding offset,
19234         don't add it.
19235
19236         Merge 'human' changes from coreutils.  Rewrite to support
19237         locale-specific notations like thousands separators.
19238         * lib/human.c: Simplify authorship notice.
19239         Include human.h immediately after config.h.
19240         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
19241         <limits.h>: Do not include, since human.h does.
19242         (SIZE_MAX, UINTMAX_MAX): New macros.
19243         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
19244         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
19245         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
19246         (power_letter): Renamed from suffixes.
19247         (generate_suffix_backwards): Remove.
19248         (adjust_value): Now takes int style (because of human.h changes)
19249         and long double value (for greater precision on some platforms).
19250         (group_number): New function.
19251         (human_readable): Use it.  Use integer options, not enum.
19252         Put the options before the sizes in the arg list.
19253         Support all the new options.
19254         The old human_readable function has been removed;
19255         use inttostr.h instead.
19256         (human_readable, default_block_size, humblock):
19257         Use uintmax_t, not int, for block sizes.
19258         (human_readable_inexact, block_size_types): Remove.
19259         (block_size_opts): New constant.
19260         (human_options): Renamed from human_block_size, with new signature
19261         that allows block sizes up to UINTMAX_MAX.  All callers changed.
19262         * lib/human.h: Add copyright and authorship notice.
19263         Include <limits.h> and <stdbool.h> unconditionally.
19264         (PARAMS): Remove.  All uses removed.
19265         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
19266         (enum human_inexact_style): Remove tag; now a nameless enum.
19267         (human_floor, human_ceiling, human_round_to_even): Now have
19268         values 2, 0, 1 rather than -1, 1, 0.
19269         (human_group_digits, human_suppress_point_zero, human_autoscale,
19270         human_base_1024, human_SI, human_B): New constants.
19271         (human_readable_inexact, human_block_size): Remove.
19272         (human_readable): Size args are now uintmax_t, not int.
19273         (human_options): New decl.
19274
19275         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
19276         unnecessary now that we assume C89 or better.  This change
19277         imported from coreutils.
19278
19279         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19280         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
19281         in the 2003-05-30 sync from glibc.
19282
19283         .h files should stand alone, but we shouldn't include <sys/types.h>
19284         if we can get away with just <stddef.h>.
19285
19286         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
19287         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
19288         rather than <sys/types.h>, as we merely need size_t.
19289         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
19290         to get size_t.
19291         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
19292         Include <stdio.h>, to get FILE.
19293         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
19294         memcasecmp.h has included <stddef.h> and all we need is size_t.
19295         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
19296         our interface, instead of including <sys/types.h>
19297
19298 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19299
19300         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
19301         now, as glibc mktime is buggy on non-glibc systems.
19302
19303 2003-06-03  Karl Berry  <karl@gnu.org>
19304
19305         * config/config.sub: update from prep.
19306
19307 2003-06-02  Paul Eggert  <eggert@twinsun.com>
19308
19309         [from coreutils]
19310         Fix some minor time-related bugs with POSIX time arguments.
19311         Some valid time stamps were being rejected (notably -1, and
19312         time stamps before 1900 on 64-bit hosts).  And some invalid
19313         time stamps were being accepted, e.g. September 31.
19314
19315         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
19316         that we can return (time_t) -1 successfully.
19317         * lib/posixtm.c: Likewise.
19318         [HAVE_STDBOOL_H]: Include <stdbool.h>.
19319         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
19320         (t): Remove static var.
19321         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
19322         of static var.  All uses changed.
19323         (year): Do not reject years before 1900; they can occur with
19324         64-bit time_t.
19325         (posix_time_parse): Do not check for out-of-range components;
19326         that is now the caller's responsibility, since our checks were
19327         only approximations.
19328         (posixtime): Use mktime to check for out-of-range components,
19329         since it knows them exactly.
19330         If mktime returns (time_t) -1, check whether an error actually occurred
19331         by invoking localtime on -1.
19332         (main) [TEST_POSIXTIME]: Check for input data errors, and report
19333         posixtime failures better.
19334         Improve the test data (in comments only).
19335
19336 2003-06-02  Karl Berry  <karl@gnu.org>
19337
19338         * config/mkinstalldirs (version): new variable.
19339         (--version): new option.
19340         (usage): improve message.
19341
19342 2003-05-30  Karl Berry  <karl@gnu.org>
19343
19344         * lib/mktime.c: update from libc.
19345
19346 2003-05-30  Bruno Haible  <bruno@clisp.org>
19347
19348         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
19349         * config/config.rpath: Upgrade to gettext-0.12.1.
19350
19351 2003-05-30  Bruno Haible  <bruno@clisp.org>
19352
19353         * m4/gettext.m4: Upgrade to gettext-0.12.1.
19354         * m4/nls.m4: New file, from gettext-0.12.1.
19355         * m4/po.m4: New file, from gettext-0.12.1.
19356         * m4/progtest.m4: Upgrade to gettext-0.12.1.
19357
19358 2003-05-30  Bruno Haible  <bruno@clisp.org>
19359
19360         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
19361         * lib/localcharset.h: Likewise.
19362         * lib/localcharset.c: Likewise.
19363
19364 2003-05-29  Karl Berry  <karl@gnu.org>
19365
19366         * config/config.rpath: update from gettext.
19367
19368 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19369
19370         Assume the headers required for C89 freestanding compilers.
19371         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
19372         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
19373         * m4/human.m4 (gl_HUMAN): Likewise.
19374         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
19375         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
19376         * m4/userspec.m4 (gl_USERSPEC): Likewise.
19377         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
19378         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
19379         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
19380
19381 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19382
19383         Assume the headers required for C89 freestanding compilers.
19384         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
19385         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
19386         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
19387         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
19388         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
19389         define, since <limits.h> is guaranteed to do that.
19390         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
19391         * lib/exclude.c: Include <stdbool.h> unconditionally.
19392         * lib/tempname.c: Include <stddef.h> unconditionally.
19393         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
19394         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
19395         <stddef.h> does that.
19396         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
19397         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
19398         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
19399         needed.
19400         * lib/xstrtol.c: Likewise.
19401         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
19402         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
19403
19404         * lib/addext.c (addext): Use assignment rather than cast, to avoid
19405         warnings on some platforms.
19406
19407         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19408         arbitrarily.
19409
19410 2003-05-26  Jim Meyering  <jim@meyering.net>
19411
19412         Merge in a change from coreutils:
19413         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
19414         that is guaranteed to be `no'.  Use `no_such_member' to indicate
19415         that condition, rather than `-1' which is slightly misleading.
19416         Change the name of the cache variable to have the gl_ prefix.
19417         Prompted by a patch from Richard Dawe for DJGPP.
19418
19419 2003-05-24  Karl Berry  <karl@gnu.org>
19420
19421         * config/config.guess: update from prep.
19422
19423 2003-05-22  Karl Berry  <karl@gnu.org>
19424
19425         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
19426
19427 2003-05-20  Karl Berry  <karl@gnu.org>
19428
19429         * config/config.guess: update from prep.
19430
19431 2003-05-18  Karl Berry  <karl@gnu.org>
19432
19433         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
19434         might actually be set by the user.
19435
19436         * config/depcomp, install-sh, mdate-sh: update from automake.
19437
19438 2003-05-17  Bruno Haible  <bruno@clisp.org>
19439
19440         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
19441         invalid expansion for AC_EGREP_CPP.
19442         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
19443         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
19444         Suggested by Akim Demaille <akim@epita.fr> in
19445         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
19446
19447 2003-05-12  Jim Meyering  <jim@meyering.net>
19448
19449         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
19450         the space-padded-by-default conversion specifiers, %e, %k, %l.
19451
19452 2003-05-12  Bruno Haible  <bruno@clisp.org>
19453
19454         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
19455         the string is longer than 4 KB.
19456
19457 2003-05-11  Karl Berry  <karl@gnu.org>
19458
19459         * config/config.{guess,sub}: update from prep.
19460
19461 2003-05-09  Bruno Haible  <bruno@clisp.org>
19462
19463         * modules/error: Add m4/strerror_r.m4 to file list.
19464
19465 2003-05-03  Bruno Haible  <bruno@clisp.org>
19466
19467         Upgrade to Unicode-4.0.
19468         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
19469         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
19470         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
19471         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
19472         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
19473         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
19474         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
19475         Change width of U+E0100..U+E01EF from 1 to 0.
19476
19477 2003-04-25  Jim Meyering  <jim@meyering.net>
19478
19479         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
19480         of type size_t, not int.
19481
19482 2003-04-25  Bruno Haible  <bruno@clisp.org>
19483
19484         * lib/copy-file.c: Include <stddef.h>, for size_t.
19485
19486 2003-04-21  Paul Eggert  <eggert@twinsun.com>
19487
19488         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
19489         code which expansion is under static control.  Patch imported from
19490         Akim Demaille's patch to Bison; see
19491         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
19492
19493 2003-04-14  Bruno Haible  <bruno@clisp.org>
19494
19495         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
19496
19497 2003-04-11  Jim Meyering  <jim@meyering.net>
19498
19499         Merge changes from Coreutils.
19500
19501         2003-03-22  Jim Meyering  <jim@meyering.net>
19502
19503         * lib/strftime.c (widen): Cast alloca return value to proper type.
19504
19505         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
19506
19507         From GNU libc.
19508         * lib/strftime.c (my_strftime): Handle very large width
19509         specifications for numeric values correctly.  Improve checks for
19510         overflow.
19511
19512         2003-01-19  Jim Meyering  <jim@meyering.net>
19513
19514         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
19515         definitions.
19516         (nl_get_alt_digit) [! defined my_strftime]: Define.
19517         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
19518         _nl_get_alt_digit and _nl_get_walt_digit.
19519
19520         * lib/strftime.c (my_strftime): Merge in locale-related changes from
19521         libc. These changes have no effect outside of _LIBC.
19522
19523 2003-04-10  Bruno Haible  <bruno@clisp.org>
19524
19525         * modules/findprog: New file.
19526         * MODULES.html.sh (func_all_modules): Add it.
19527
19528 2003-04-10  Bruno Haible  <bruno@clisp.org>
19529
19530         * m4/findprog.m4: New file.
19531         * m4/eaccess.m4: New file.
19532
19533 2003-04-10  Bruno Haible  <bruno@clisp.org>
19534
19535         * lib/findprog.h: New file, from GNU gettext.
19536         * lib/findprog.c: New file, from GNU gettext.
19537
19538 2003-04-05  Jim Meyering  <jim@meyering.net>
19539
19540         Merge changes from Coreutils.
19541
19542         * lib/exclude.h (PARAMS): Remove definition and uses.
19543         * lib/exclude.c: Remove uses of `PARAMS'.
19544
19545         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
19546         Add test-cases for DOS filenames. Declare program_name.
19547         (main): Set up program_name.  Patch by Rich Dawe.
19548
19549         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19550         error from mntctl.
19551         Use mntctl's return value to drive the entry-processing loop, since
19552         we can't rely on the value of the vmt_length member in the last
19553         entry.  On some systems doing so could result in exhausting
19554         virtual memory.  Based in part on a patch from Mike Jetzer.
19555
19556 2003-04-04  Bruno Haible  <bruno@clisp.org>
19557
19558         * modules/linebreak: New file.
19559         * MODULES.html.sh (func_all_modules): Add it.
19560
19561 2003-04-04  Bruno Haible  <bruno@clisp.org>
19562
19563         * m4/linebreak.m4: New file.
19564
19565 2003-04-04  Bruno Haible  <bruno@clisp.org>
19566
19567         * lib/linebreak.h: New file, from GNU gettext.
19568         * lib/linebreak.c: New file, from GNU gettext with slight
19569         modifications.
19570         * lib/lbrkprop.h: New file, from GNU gettext.
19571
19572 2003-04-03  Bruno Haible  <bruno@clisp.org>
19573
19574         * modules/utf8-ucs4: New file.
19575         * modules/utf16-ucs4: New file.
19576         * modules/ucs4-utf8: New file.
19577         * modules/ucs4-utf16: New file.
19578         * MODULES.html.sh (func_all_modules): Add them.
19579
19580 2003-04-03  Bruno Haible  <bruno@clisp.org>
19581
19582         * m4/utf-ucs4.m4: New file.
19583         * m4/ucs4-utf.m4: New file.
19584
19585 2003-04-03  Bruno Haible  <bruno@clisp.org>
19586
19587         * lib/utf8-ucs4.h: New file, from GNU gettext.
19588         * lib/utf16-ucs4.h: New file, from GNU gettext.
19589         * lib/ucs4-utf8.h: New file, from GNU gettext.
19590         * lib/ucs4-utf16.h: New file, from GNU gettext.
19591
19592 2003-04-02  Bruno Haible  <bruno@clisp.org>
19593
19594         * modules/binary-io: New file.
19595         * MODULES.html.sh (func_all_modules): Add it.
19596
19597 2003-04-02  Bruno Haible  <bruno@clisp.org>
19598
19599         * lib/binary-io.h: New file, from GNU gettext.
19600
19601 2003-04-01  Bruno Haible  <bruno@clisp.org>
19602
19603         * modules/pathname: New file.
19604         * MODULES.html.sh (func_all_modules): Add it.
19605
19606 2003-04-01  Bruno Haible  <bruno@clisp.org>
19607
19608         * lib/pathname.h: New file, from GNU gettext.
19609         * lib/concatpath.c: New file, from GNU gettext.
19610
19611 2003-03-30  Bruno Haible  <bruno@clisp.org>
19612
19613         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
19614
19615 2003-03-30  Bruno Haible  <bruno@clisp.org>
19616
19617         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
19618         function chown() doesn't exist.
19619
19620 2003-03-28  Bruno Haible  <bruno@clisp.org>
19621
19622         * modules/copy-file: New file.
19623         * MODULES.html.sh (func_all_modules): Add it.
19624
19625 2003-03-28  Bruno Haible  <bruno@clisp.org>
19626
19627         * m4/copy-file.m4: New file.
19628
19629 2003-03-28  Bruno Haible  <bruno@clisp.org>
19630
19631         * lib/copy-file.h: New file, from GNU gettext.
19632         * lib/copy-file.c: New file, from GNU gettext.
19633
19634 2003-03-18  Jim Meyering  <jim@meyering.net>
19635
19636         * lib/quote.c (quote_n): Fix typo in comment.
19637
19638 2003-03-18  Bruno Haible  <bruno@clisp.org>
19639
19640         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
19641         checking.
19642         * m4/onceonly_2_57.m4: Likewise.
19643
19644 2003-03-17  Bruno Haible  <bruno@clisp.org>
19645
19646         * m4/onceonly.m4: Require autoconf 2.54 or newer.
19647         (m4_quote): Remove macro.
19648         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
19649
19650 2003-03-14  Jim Meyering  <jim@meyering.net>
19651
19652         Merge changes from Coreutils.
19653         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
19654         to be const, in order to avoid warnings.
19655         (obstack_room): Likewise.
19656         (obstack_empty_p): Likewise.
19657
19658 2003-03-14  Bruno Haible  <bruno@clisp.org>
19659
19660         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
19661         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
19662
19663 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19664
19665         Merge changes from Bison.
19666         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
19667         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
19668         when compiling Bison 1.875's `bitset bset = obstack_alloc
19669         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
19670         * lib/hash.c: Include <stdbool.h> unconditionally.
19671
19672 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19673
19674         * m4/onceonly.m4 (m4_quote): New macro.
19675         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
19676         Quote AC_FOREACH variable-expansions properly.
19677
19678 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19679
19680         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
19681
19682 2003-03-09  Paul Eggert  <eggert@twinsun.com>
19683
19684         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
19685         Reported by Bruce Becker; see:
19686         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
19687
19688 2003-03-03  Paul Eggert  <eggert@twinsun.com>
19689             Bruno Haible  <bruno@clisp.org>
19690
19691         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
19692         Reported by John Hughes, see
19693         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
19694
19695 2003-02-20  Bruno Haible  <bruno@clisp.org>
19696
19697         * MODULES.html.sh (func_all_modules): Add poll.
19698
19699 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19700
19701         * modules/poll: New file.
19702
19703 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19704
19705         * lib/poll_.h: New file.
19706         * lib/poll.c: New file.
19707
19708 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19709
19710         * m4/poll.m4: New file.
19711
19712 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19713
19714         * modules/mathl: New file.
19715
19716 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19717
19718         * lib/mathl.h: New file.
19719         * lib/acosl.c: New file.
19720         * lib/asinl.c: New file.
19721         * lib/atanl.c: New file.
19722         * lib/ceill.c: New file.
19723         * lib/cosl.c: New file.
19724         * lib/expl.c: New file.
19725         * lib/floorl.c: New file.
19726         * lib/frexpl.c: New file.
19727         * lib/ldexpl.c: New file.
19728         * lib/logl.c: New file.
19729         * lib/sincosl.c: New file.
19730         * lib/sinl.c: New file.
19731         * lib/sqrtl.c: New file.
19732         * lib/tanl.c: New file.
19733         * lib/trigl.c: New file.
19734         * lib/trigl.h: New file.
19735
19736 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19737
19738         * m4/mathl.m4: New file.
19739
19740 2003-02-18  Bruno Haible  <bruno@clisp.org>
19741
19742         * MODULES.html.sh (func_all_modules): Add mathl.
19743
19744 2003-02-17  Bruno Haible  <bruno@clisp.org>
19745
19746         * modules/mkdtemp: New module.
19747         * MODULES.html.sh (func_all_modules): Add it.
19748
19749 2003-02-17  Bruno Haible  <bruno@clisp.org>
19750
19751         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
19752
19753 2003-02-17  Bruno Haible  <bruno@clisp.org>
19754
19755         * lib/mkdtemp.h: New file, from GNU gettext.
19756         * lib/mkdtemp.c: New file, from GNU gettext.
19757
19758 2003-02-02  Jim Meyering  <jim@meyering.net>
19759
19760         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
19761         e.g. glibc-2.2.93.
19762
19763 2003-01-31  Bruno Haible  <bruno@clisp.org>
19764
19765         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
19766         'rpl_rename'.
19767         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
19768         'rpl_strnlen'.
19769         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
19770         'rpl_strtod'.
19771         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
19772         'rpl_utime'.
19773
19774 2003-01-31  Bruno Haible  <bruno@clisp.org>
19775
19776         * lib/rename.c: #undef rename before defining rpl_rename.
19777         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
19778
19779 2003-01-30  Bruno Haible  <bruno@clisp.org>
19780
19781         * modules/vasnprintf, modules/vasprintf: New modules.
19782         * MODULES.html.sh (func_all_modules): Add them.
19783
19784 2003-01-30  Bruno Haible  <bruno@clisp.org>
19785
19786         * m4/signed.m4: New file, from GNU gettext.
19787         * m4/longdouble.m4: New file, from GNU gettext.
19788         * m4/wchar_t.m4: New file, from GNU gettext.
19789         * m4/wint_t.m4: New file, from GNU gettext.
19790         * m4/vasnprintf.m4: New file.
19791         * m4/vasprintf.m4: New file.
19792
19793 2003-01-30  Bruno Haible  <bruno@clisp.org>
19794
19795         * lib/printf-args.h: New file, from GNU gettext.
19796         * lib/printf-args.c: New file, from GNU gettext.
19797         * lib/printf-parse.h: New file, from GNU gettext.
19798         * lib/printf-parse.c: New file, from GNU gettext.
19799         * lib/vasnprintf.h: New file, from GNU gettext.
19800         * lib/vasnprintf.c: New file, from GNU gettext.
19801         * lib/asnprintf.c: New file, from GNU gettext.
19802         * lib/vasprintf.h: New file, from GNU gettext with modifications.
19803         * lib/vasprintf.c: New file, from GNU gettext.
19804         * lib/asprintf.c: New file, from GNU gettext.
19805
19806 2003-01-29  Bruno Haible  <bruno@clisp.org>
19807
19808         * modules/stpncpy: New module.
19809         * MODULES.html.sh (func_all_modules): Add it.
19810
19811 2003-01-29  Bruno Haible  <bruno@clisp.org>
19812
19813         * m4/stpncpy.m4: New file.
19814
19815 2003-01-29  Bruno Haible  <bruno@clisp.org>
19816
19817         * lib/stpncpy.h: New file, from GNU gettext with modifications.
19818         * lib/stpncpy.c: New file, from GNU gettext with modifications.
19819
19820 2003-01-28  Bruno Haible  <bruno@clisp.org>
19821
19822         * modules/c-ctype: New module.
19823         * MODULES.html.sh (func_all_modules): Add it.
19824
19825 2003-01-28  Bruno Haible  <bruno@clisp.org>
19826
19827         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
19828         Paul Eggert.
19829         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
19830         Paul Eggert.
19831
19832 2003-01-27  Bruno Haible  <bruno@clisp.org>
19833
19834         * modules/xsetenv: New module.
19835         * MODULES.html.sh (func_all_modules): Add it.
19836
19837 2003-01-27  Bruno Haible  <bruno@clisp.org>
19838
19839         * lib/xsetenv.h: New file, from GNU gettext.
19840         * lib/xsetenv.c: New file, from GNU gettext.
19841
19842 2003-01-23  Jim Meyering  <jim@meyering.net>
19843
19844         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
19845         from working on systems without dirfd (at least Irix and OSF1/Tru64).
19846
19847 2003-01-23  Bruno Haible  <bruno@clisp.org>
19848
19849         * modules/minmax: New module.
19850         * MODULES.html.sh (func_all_modules): Add it.
19851
19852 2003-01-23  Bruno Haible  <bruno@clisp.org>
19853
19854         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
19855         Eggert.
19856
19857 2003-01-22  Bruno Haible  <bruno@clisp.org>
19858
19859         * modules/exit: New module.
19860         * MODULES.html.sh (func_all_modules): Add it.
19861
19862 2003-01-22  Bruno Haible  <bruno@clisp.org>
19863
19864         * lib/exit.h: New file, from GNU gettext.
19865
19866 2003-01-19  Bruno Haible  <bruno@clisp.org>
19867
19868         * gnulib-tool: Recognize option --extract-maintainer.
19869         (func_get_maintainer): New function.
19870         * modules/*: Add Maintainer entry.
19871
19872 2003-01-16  Jim Meyering  <jim@meyering.net>
19873
19874         * m4/regex.m4: The `regex' struct is both input and output.
19875         Initialize it before each use.  Patch by Tim Waugh.
19876
19877 2003-01-16  Bruno Haible  <bruno@clisp.org>
19878
19879         * MODULES.html.sh: Add a table of contents. Add the module name as
19880         leftmost column. Add hyperlinks.
19881
19882 2003-01-15  Bruno Haible  <bruno@clisp.org>
19883
19884         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
19885
19886 2003-01-15  Bruno Haible  <bruno@clisp.org>
19887
19888         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
19889         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
19890         suffix.
19891
19892 2003-01-15  Bruno Haible  <bruno@clisp.org>
19893
19894         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
19895
19896 2003-01-15  Bruno Haible  <bruno@clisp.org>
19897
19898         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
19899         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
19900
19901 2003-01-14  Jim Meyering  <jim@meyering.net>
19902
19903         * lib/same.c (same_name): Tweak a comment.
19904
19905 2003-01-14  Bruno Haible  <bruno@clisp.org>
19906
19907         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
19908         when a string comparison is sufficient.
19909
19910 2003-01-14  Bruno Haible  <bruno@clisp.org>
19911
19912         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
19913         'unsigned int'.
19914
19915 2003-01-14  Bruno Haible  <bruno@clisp.org>
19916
19917         * lib/hash-pjw.c: Add comment about low quality of this function.
19918
19919 2003-01-13  Bruno Haible  <bruno@clisp.org>
19920
19921         * modules/stpcpy: Distribute lib/stpcpy.h.
19922         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
19923
19924 2003-01-13  Bruno Haible  <bruno@clisp.org>
19925
19926         * modules/*: Add a description.
19927         * modules/strpbrk: Fix Makefile.am snippet.
19928         * modules/strtoimax: Fix dependencies.
19929         * modules/strtoumax: Likewise.
19930
19931 2003-01-13  Bruno Haible  <bruno@clisp.org>
19932
19933         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
19934         * modules/alloca (Makefile.am): All object files depend on alloca.h.
19935         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
19936
19937 2003-01-13  Bruno Haible  <bruno@clisp.org>
19938
19939         * gnulib-tool (func_create_testdir): Store config/* files in the main
19940         directory.
19941         * config.rpath: Move to ...
19942         * config/config.rpath: ... here.
19943         * modules/gettext: Contains config/config.rpath, not config.rpath.
19944         * modules/iconv: Likewise.
19945
19946 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19947
19948         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19949         to avoid collisions with libcurses and libreadline.
19950
19951         * m4/getstr.m4: Remove.
19952         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
19953
19954 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19955
19956         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19957         to avoid collisions with libcurses and libreadline.
19958
19959         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
19960         * lib/getstr.h, getstr.c: Remove.
19961         * lib/getline.c: Include "getline.h", to check interface.
19962         Move body of old getstr.c here: this defines MIN_CHUNK and
19963         declares getdelim2, which is renamed from getstr.
19964         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
19965
19966         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
19967         All uses changed.
19968         * lib/linebuffer.h: Likewise.
19969         (readline): Remove backward-compatibility macro.
19970
19971 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19972
19973         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19974         to avoid collisions with libcurses and libreadline.
19975         * getstr: Remove.
19976         * MODULES.html.sh: Remove getstr.
19977         * modules/getline: Depend on unlocked-io, not getstr.
19978
19979 2003-01-12  Jim Meyering  <jim@meyering.net>
19980
19981         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
19982
19983 2003-01-10  Bruno Haible  <bruno@clisp.org>
19984
19985         * modules/alloca: Change Makefile.am requirements. Simplify Include
19986         requirements. Add lib/alloca_.h to file list.
19987
19988 2003-01-10  Bruno Haible  <bruno@clisp.org>
19989
19990         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
19991
19992 2003-01-10  Bruno Haible  <bruno@clisp.org>
19993
19994         * lib/alloca_.h: New file.
19995         * lib/getdate.y: Unconditionally include alloca.h.
19996         * lib/makepath.c: Likewise.
19997         * lib/setenv.c: Likewise.
19998         * lib/userspec.c: Likewise.
19999
20000 2003-01-09  Karl Berry  <karl@gnu.org>
20001
20002         * MODULES.html.sh: include `dirname $0` in PATH, to find
20003         gnulib-tool.
20004
20005 2003-01-09  Bruno Haible  <bruno@clisp.org>
20006
20007         * modules/stdbool: Change configure.ac, Makefile.am requirements.
20008         Simplify Include requirements. Add lib/stdbool.h.in to file list.
20009
20010 2003-01-09  Bruno Haible  <bruno@clisp.org>
20011
20012         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
20013
20014 2003-01-09  Bruno Haible  <bruno@clisp.org>
20015
20016         * lib/stdbool.h.in: New file.
20017
20018 2003-01-09  Bruno Haible  <bruno@clisp.org>
20019
20020         * gnulib-tool (func_all_modules): Ignore files ending in ~.
20021         * MODULES.html.sh: Likewise.
20022
20023 2003-01-08  Jim Meyering  <jim@meyering.net>
20024
20025         * lib/full-write.c: Undefine and define-away `const' after inclusion
20026         of errno.h, not before.  Suggestion from Bruno Haible.
20027
20028 2003-01-08  Bruno Haible  <bruno@clisp.org>
20029
20030         * modules/full-read: Depend on full-write.
20031
20032 2003-01-08  Bruno Haible  <bruno@clisp.org>
20033
20034         * lib/safe-read.c: Include specification header first, to ensure its
20035         selfcontainedness.
20036         * lib/full-write.c: Likewise.
20037
20038 2003-01-07  Jim Meyering  <jim@meyering.net>
20039
20040         * lib/full-write.c: Rework so that it may serve to define full_read,
20041         too.
20042         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
20043
20044 2003-01-07  Bruno Haible  <bruno@clisp.org>
20045
20046         * lib/strtoimax.c: Include <stdint.h> as an alternative to
20047         <inttypes.h>.
20048         * lib/xstrtol.h: Likewise.
20049         * lib/xstrtoimax.c: Likewise.
20050         * lib/xstrtoumax.c: Likewise.
20051         * lib/human.h: Likewise.
20052
20053         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
20054         on systems that have <inttypes.h> but not <stdint.h>.
20055
20056 2003-01-07  Bruno Haible  <bruno@clisp.org>
20057
20058         * MODULES.html.sh: Add copyright notice.
20059         (missed_files): Omit CVS directory entries.
20060         (func_module): Make it work with sed-3.02.
20061         * MODULES.txt: Remove file.
20062
20063 2003-01-06  Jim Meyering  <jim@meyering.net>
20064
20065         * lib/version-etc.c: Update year in translatable copyright string.
20066
20067 2003-01-03  Karl Berry  <karl@gnu.org>
20068
20069         * config/config.{guess,sub}: update from prep.
20070
20071 2003-01-02  Karl Berry  <karl@gnu.org>
20072
20073         * doc/COPYING.DOC: belatedly updated to 1.2.
20074
20075 2003-01-01  Karl Berry  <karl@gnu.org>
20076
20077         * gnulib-tool (func_verify_module): report module name $module in
20078         error message, not $1.
20079         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20080         be created, only if it doesn't exist.
20081         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20082
20083 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20084
20085         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20086
20087 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20088
20089         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20090         memcmp if strcoll doesn't work.
20091
20092 2002-12-31  Bruno Haible  <bruno@clisp.org>
20093
20094         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20095         nonempty.
20096
20097 2002-12-31  Bruno Haible  <bruno@clisp.org>
20098
20099         * lib/memcoll.c (STRCOLL): New macro.
20100         (memcoll): Use it.
20101
20102 2002-12-31  Bruno Haible  <bruno@clisp.org>
20103
20104         * lib/localcharset.h: New file.
20105         * lib/localcharset.c: Include it.
20106         * lib/unicodeio.c: Likewise.
20107
20108 2002-12-31  Bruno Haible  <bruno@clisp.org>
20109
20110         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20111         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20112
20113 2002-12-31  Bruno Haible  <bruno@clisp.org>
20114
20115         * lib/getline.h: Include <stddef.h>, for size_t.
20116
20117         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20118         * lib/unicodeio.c: Don't include <stddef.h>.
20119
20120 2002-12-31  Bruno Haible  <bruno@clisp.org>
20121
20122         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20123         HAVE_TM_ZONE.
20124
20125 2002-12-24  Karl Berry  <karl@gnu.org>
20126
20127         * config/config.guess: update from prep.
20128
20129 2002-12-24  Bruno Haible  <bruno@clisp.org>
20130
20131         General infrasructure.
20132         * m4/README: Rewritten.
20133         * m4/onceonly.m4: New file.
20134         * m4/onceonly_2_57.m4: New file.
20135
20136         Module atexit.
20137         * m4/atexit.m4: New file.
20138
20139         Module strtod.
20140         * m4/strtod.m4: New file.
20141
20142         Module strtol.
20143         * m4/strtol.m4: New file.
20144
20145         Module strtoul.
20146         * m4/strtoul.m4: New file.
20147
20148         Module memchr.
20149         * m4/memchr.m4: New file.
20150
20151         Module memcmp.
20152         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20153         (jm_FUNC_MEMCMP): Invoke it.
20154
20155         Module memcpy.
20156         * m4/memcpy.m4: New file.
20157
20158         Module memmove.
20159         * m4/memmove.m4: New file.
20160
20161         Module memset.
20162         * m4/memset.m4: New file.
20163
20164         Module strcspn.
20165         * m4/strcspn.m4: New file.
20166
20167         Module strpbrk.
20168         * m4/strpbrk.m4: New file.
20169
20170         Module strstr.
20171         * m4/strstr.m4: New file.
20172
20173         Module strerror.
20174         * m4/strerror.m4: New file.
20175
20176         Module mktime.
20177         * m4/mktime.m4: Renamed from jm-mktime.m4.
20178         (gl_PREREQ_MKTIME): New macro.
20179         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
20180
20181         Module malloc.
20182         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
20183         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
20184         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
20185
20186         Module realloc.
20187         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
20188         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
20189         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
20190
20191         Module strftime.
20192         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
20193         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
20194         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
20195         gl_TM_GMTOFF.
20196         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
20197
20198         Module xalloc.
20199         * m4/xalloc.m4: New file.
20200
20201         Module alloca.
20202         * m4/alloca.m4: New file.
20203
20204         Module putenv.
20205         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
20206         (jm_FUNC_PUTENV): Invoke it.
20207
20208         Module setenv.
20209         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
20210         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
20211         when invoked twice.
20212         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
20213         gt_FUNC_SETENV.
20214
20215         Module memrchr.
20216         * m4/memrchr.m4: New file.
20217
20218         Module stpcpy.
20219         * m4/stpcpy.m4: New file.
20220
20221         Module strcase.
20222         * m4/strcase.m4: New file.
20223
20224         Module strdup.
20225         * m4/strdup.m4: New file.
20226
20227         Module strnlen.
20228         * m4/strnlen.m4: New file.
20229
20230         Module strndup.
20231         * m4/strndup.m4: New file.
20232
20233         Module xstrtod.
20234         * m4/xstrtod.m4: New file.
20235
20236         Module xstrtol.
20237         * m4/xstrtol.m4: New file.
20238
20239         Module getdate.
20240         * m4/getdate.m4: New file.
20241
20242         Module unlocked-io.
20243         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
20244         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
20245         * m4/jm-glibc-io.m4n: Remove file.
20246
20247         Module long-options.
20248         * m4/long-options.m4: New file.
20249
20250         Module md5.
20251         * m4/md5.m4: New file.
20252
20253         Module sha.
20254         * m4/sha.m4: New file.
20255
20256         Module getstr.
20257         * m4/getstr.m4: New file.
20258
20259         Module getline.
20260         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
20261         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
20262         <sys/types.h>, for size_t. Use the function name gnu_getline, not
20263         simply getline. Infoke gl_PREREQ_GETLINE.
20264
20265         Module obstack.
20266         * m4/obstack.m4: New file.
20267
20268         Module hash.
20269         * m4/hash.m4: New file.
20270
20271         Module readtokens.
20272         * m4/readtokens.m4: New file.
20273
20274         Module strverscmp.
20275         * m4/strverscmp.m4: New file.
20276
20277         Module stdbool.
20278         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
20279         OSF/1.
20280
20281         Module strtoll.
20282         * m4/strtoll.m4: New file.
20283
20284         Module strtoull.
20285         * m4/strtoull.m4: New file.
20286
20287         Module strtoimax.
20288         * m4/strtoimax.m4: New file.
20289
20290         Module strtoumax.
20291         * m4/strtoumax.m4: New file.
20292
20293         Module xstrtoimax.
20294         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
20295         jm_AC_PREREQ_XSTRTOIMAX.
20296         Moved the strtol prerequisites to strtol.m4.
20297         Moved the strtoll prerequisites to strtoll.m4.
20298         Moved the strtoimax prerequisites to strtoimax.m4.
20299
20300         Module xstrtoumax.
20301         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
20302         jm_AC_PREREQ_XSTRTOUMAX.
20303         Moved the strtoul prerequisites to strtoul.m4.
20304         Moved the strtoull prerequisites to strtoull.m4.
20305         Moved the strtoumax prerequisites to strtoumax.m4.
20306
20307         Module chown.
20308         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
20309         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
20310
20311         Module dup2.
20312         * m4/dup2.m4: New file.
20313
20314         Module ftruncate.
20315         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
20316         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
20317
20318         Module getgroups.
20319         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
20320         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
20321
20322         Module gettimeofday.
20323         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
20324         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
20325         gl_PREREQ_GETTIMEOFDAY.
20326
20327         Module mkdir.
20328         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
20329         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
20330
20331         Module mkstemp.
20332         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
20333         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
20334         jm_AC_TYPE_UINTMAX_T.
20335         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
20336
20337         Module stat.
20338         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
20339         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
20340
20341         Module lstat.
20342         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
20343         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
20344
20345         Module timespec.
20346         * m4/timespec.m4 (gl_TIMESPEC): New macro.
20347         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
20348         * m4/st_mtim.m4: Indentation.
20349
20350         Module nanosleep.
20351         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
20352         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
20353         gl_PREREQ_NANOSLEEP.
20354
20355         Module regex.
20356         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
20357         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
20358         (gl_REGEX): New macro.
20359
20360         Module rename.
20361         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
20362         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
20363
20364         Module rmdir.
20365         * m4/rmdir.m4: New file.
20366
20367         Module utime.
20368         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
20369         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
20370         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
20371
20372         Module dirname.
20373         * m4/dirname.m4: New file.
20374
20375         Module getopt.
20376         * m4/getopt.m4: New file.
20377
20378         Module unistd-safer.
20379         * m4/unistd-safer.m4: New file.
20380
20381         Module fnmatch.
20382         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
20383         declaration.
20384         (gl_PREREQ_FNMATCH_EXTRA): New macro.
20385         (gl_FUNC_FNMATCH_POSIX): New macro.
20386         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
20387         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
20388         simply fnmatch.
20389
20390         Module exclude.
20391         * m4/exclude.m4: New file.
20392
20393         Module human.
20394         * m4/human.m4: New file.
20395
20396         Module acl.
20397         * m4/acl.m4: Nop.
20398
20399         Module backupfile.
20400         * m4/backupfile.m4: New file.
20401         * m4/d-ino.m4: Indentation.
20402
20403         Module fsusage.
20404         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
20405         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
20406         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
20407
20408         Module dirfd.
20409         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
20410         requirements.
20411
20412         Module euidaccess.
20413         * m4/euidaccess.m4: New file.
20414
20415         Module file-type.
20416         * m4/file-type.m4: New file.
20417
20418         Module fileblocks.
20419         * m4/fileblocks.m4: New file.
20420
20421         Module filemode.
20422         * m4/filemode.m4: New file.
20423
20424         Module isdir.
20425         * m4/isdir.m4: New file.
20426
20427         Module lchown.
20428         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
20429         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
20430
20431         Module makepath.
20432         * m4/makepath.m4: New file.
20433
20434         Module modechange.
20435         * m4/modechange.m4: New file.
20436
20437         Module mountlist.
20438         * m4/mountlist.m4: New file.
20439         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
20440         Indentation.
20441
20442         Module path-concat.
20443         * m4/path-concat.m4: New file.
20444
20445         Module pathmax.
20446         * m4/pathmax.m4: New file.
20447
20448         Module same.
20449         * m4/same.m4: New file.
20450
20451         Module save-cwd.
20452         * m4/save-cwd.m4: New file.
20453
20454         Module savedir.
20455         * m4/savedir.m4: New file.
20456
20457         Module xgetcwd.
20458         * m4/xgetcwd.m4: New file.
20459         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
20460
20461         Module xreadlink.
20462         * m4/xreadlink.m4: New file.
20463
20464         Module safe-read.
20465         * m4/safe-read.m4: New file.
20466
20467         Module safe-write.
20468         * m4/safe-write.m4: New file.
20469
20470         Module closeout.
20471         * m4/closeout.m4: New file.
20472
20473         Module stdio-safer.
20474         * m4/stdio-safer.m4: New file.
20475
20476         Module getpass.
20477         * m4/getpass.m4: New file.
20478
20479         Module getugroups.
20480         * m4/getugroups.m4: New file.
20481
20482         Module group-member.
20483         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
20484         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
20485
20486         Module idcache.
20487         * m4/idcache.m4: New file.
20488
20489         Module userspec.
20490         * m4/userspec.m4: New file.
20491
20492         Module gettime.
20493         * m4/clock_time.m4: New file.
20494         * m4/gettime.m4: New file.
20495
20496         Module settime.
20497         * m4/settime.m4: New file.
20498
20499         Module posixtm.
20500         * m4/posixtm.m4: New file.
20501
20502         Module gethostname.
20503         * m4/gethostname.m4: New file.
20504
20505         Module canon-host.
20506         * m4/canon-host.m4: New file.
20507
20508         Module gettext.
20509         * m4/codeset.m4: New file, from gettext-0.11.5.
20510         * m4/gettext.m4: New file, from gettext-0.11.5.
20511         * m4/glibc21.m4: New file, from gettext-0.11.5.
20512         * m4/iconv.m4: New file, from gettext-0.11.5.
20513         * m4/intdiv0.m4: New file, from gettext-0.11.5.
20514         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
20515         * m4/inttypes.m4: New file, from gettext-0.11.5.
20516         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
20517         * m4/isc-posix.m4: New file, from gettext-0.11.5.
20518         * m4/lcmessage.m4: New file, from gettext-0.11.5.
20519         * m4/lib-ld.m4: New file, from gettext-0.11.5.
20520         * m4/lib-link.m4: New file, from gettext-0.11.5.
20521         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
20522         * m4/progtest.m4: New file, from gettext-0.11.5.
20523         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
20524         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
20525         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
20526
20527         Module localcharset.
20528         * m4/localcharset.m4: New file.
20529
20530         Module hard-locale.
20531         * m4/hard-locale.m4: New file.
20532
20533         Module mbswidth.
20534         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
20535         onceonly macros.
20536         * m4/mbrtowc.m4: Add comment.
20537
20538         Module memcasecmp.
20539         * m4/memcasecmp.m4: New file.
20540
20541         Module memcoll.
20542         * m4/memcoll.m4: New file.
20543
20544         Module unicodeio.
20545         * m4/unicodeio.m4: New file.
20546
20547         Module rpmatch.
20548         * m4/rpmatch.m4: New file.
20549
20550         Module yesno.
20551         * m4/yesno.m4: New file.
20552
20553         Module exitfail.
20554         * m4/exitfail.m4: New file.
20555
20556         Module c-stack.
20557         * m4/c-stack.m4 (gl_C_STACK): New macro.
20558         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
20559
20560         Module error.
20561         * m4/error.m4 (gl_ERROR): New macro.
20562         (jm_PREREQ_ERROR): Use onceonly macros.
20563
20564         Module fatal.
20565         * m4/fatal.m4: New file.
20566
20567         Module getloadavg.
20568         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
20569         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
20570
20571         Module getpagesize.
20572         * m4/getpagesize.m4: New file.
20573
20574         Module getusershell.
20575         * m4/getusershell.m4: New file.
20576
20577         Module physmem.
20578         * m4/physmem.m4: New file.
20579
20580         Module posixver.
20581         * m4/posixver.m4: New file.
20582
20583         Module quotearg.
20584         * m4/quotearg.m4: New file.
20585
20586         Module quote.
20587         * m4/quote.m4: New file.
20588
20589         Module readutmp.
20590         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
20591
20592         Module sig2str.
20593         * m4/sig2str.m4: New file.
20594
20595         Other.
20596         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
20597         ulonglong.m4.
20598         * m4/intmax_t.m4: New file.
20599         * m4/d-type.m4: Indentation.
20600         * m4/jm-macros.m4: Update.
20601         * m4/prereq.m4 (jm_PREREQ): Update.
20602         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
20603         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
20604         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
20605         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
20606         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
20607         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
20608         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
20609         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
20610         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
20611         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
20612         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
20613         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
20614         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
20615         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
20616         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
20617         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
20618         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
20619         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
20620         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
20621
20622 2002-12-24  Bruno Haible  <bruno@clisp.org>
20623
20624         * MODULES.txt: Update according to m4/ changes.
20625
20626         Module gettext.
20627         * config.rpath: New file, from gettext-0.11.5.
20628
20629         * modules/*: New module descriptions.
20630         * gnulib-tool: New file.
20631         * MODULES.html.sh: New file.
20632
20633 2002-12-21  Karl Berry  <karl@gnu.org>
20634
20635         * doc/fdl.texi: update to version 1.2.
20636
20637 2002-12-19  Karl Berry  <karl@gnu.org>
20638
20639         * config/config.guess: update from prep.
20640
20641 2002-12-18  Bruno Haible  <bruno@clisp.org>
20642
20643         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
20644         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
20645
20646 2002-12-17  Bruno Haible  <bruno@clisp.org>
20647
20648         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
20649         stdlib.h, string.h.
20650
20651 2002-12-17  Bruno Haible  <bruno@clisp.org>
20652
20653         * lib/canon-host.c (strdup): Remove unused declaration.
20654
20655         * lib/fsusage.c: Include full_read.h.
20656         (get_fs_usage): Use full_read instead of safe_read.
20657
20658         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
20659
20660 2002-12-12  Karl Berry  <karl@gnu.org>
20661
20662         * config/config.guess: update from prep.
20663
20664 2002-12-11  Bruno Haible  <bruno@clisp.org>
20665
20666         * m4/setenv.m4: New file, from gettext-0.11.5.
20667
20668 2002-12-11  Bruno Haible  <bruno@clisp.org>
20669
20670         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
20671         not unsetenv().
20672         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
20673         modifications:
20674
20675         2002-12-11  Bruno Haible  <bruno@clisp.org>
20676
20677                 * setenv.c (alloca): Fall back to malloc.
20678                 (freea): New macro.
20679                 (setenv): Use freea() to free memory allocated with alloca().
20680
20681         2002-11-13  Bruno Haible  <bruno@clisp.org>
20682
20683                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
20684                 function declarations.
20685                 * unsetenv.c (unsetenv): Likewise.
20686
20687         2002-03-04  Bruno Haible  <bruno@clisp.org>
20688
20689                 Portability to AIX 4.3.3.
20690                 * unsetenv.c: New file, extracted from setenv.c.
20691                 * setenv.c: Move the unsetenv() function to unsetenv.c.
20692
20693         2001-12-20  Bruno Haible  <bruno@clisp.org>
20694
20695                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
20696                 use malloc instead. For SunOS 4.
20697
20698         2001-12-11  Bruno Haible  <bruno@clisp.org>
20699
20700                 * setenv.c: Declare alloca.
20701                 (compar_fn_t): New typedef.
20702                 (KNOWN_VALUE, STORE_VALUE): Use it.
20703
20704         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
20705         setenv.h.
20706
20707 2002-12-10  Paul Eggert  <eggert@twinsun.com>
20708
20709         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
20710         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
20711         Choose values that are less likely to collide with system fnmatch
20712         options.
20713         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
20714         defined (e.g., a pure POSIX system).
20715         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
20716         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
20717
20718 2002-12-06  Paul Eggert  <eggert@twinsun.com>
20719
20720         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
20721         a pain in practice to deal with generated m4 files.  This change
20722         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
20723
20724         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
20725         and jm-glibc-io.m4, as they are no longer a special case.
20726         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
20727         kludge and the auto-generation stuff.  Check only whether the
20728         functions are declared, not whether they exist, since older hosts
20729         that don't declare the functions can't use the optimization anyway.
20730
20731 2002-12-06  Jim Meyering  <jim@meyering.net>
20732
20733         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
20734
20735         Merge in changes from libc's misc/error.c, in preparation
20736         for the merge of gnulib's changes back into libc.
20737
20738         * lib/error.c (_): Define only if not already defined.
20739         Move definition to follow all #include directives.
20740         Include unlocked-io.h only if !_LIBC.
20741         [_LIBC]: Include <libio/libioP.h>.
20742         [USE_IN_LIBIO]: Include <libio/iolibio.h>
20743         (fflush): Tweak definition to use INTUSE.
20744         (putc): Define.
20745
20746 2002-12-05  Paul Eggert  <eggert@twinsun.com>
20747
20748         * lib/alloca.c [defined emacs]: Include "lisp.h".
20749         (xalloc_die) [defined emacs]: New macro.
20750         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
20751         [! defined emacs]: Include <xalloc.h>.
20752         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
20753         (pointer): Typedef to POINTER_TYPE *.
20754         (malloc): Remove decl; we now always use xmalloc.
20755         (alloca): Use old-style definition, since Emacs needs this.
20756         Check for arithmetic overflow when computing combined size.
20757
20758 2002-12-04  Paul Eggert  <eggert@twinsun.com>
20759
20760         Do not generate unlocked-io.h automatically, since it's easier to
20761         maintain it by hand.
20762
20763         * lib/unlocked-io.h: New file, from GNU diffutils,
20764         but with proper copyright notice and attribution.
20765         * lib/gen-uio: Remove.
20766         * lib/Makefile.am: Add copyright notice.
20767         (libfetish_a_SOURCES): Add unlocked-io.h.
20768         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
20769         (DISTCLEANFILES, io_functions): Remove macros.
20770         (EXTRA_DIST): Remove gen_uio.
20771         (unlocked-io.h): Remove rule.
20772
20773 2002-12-04  Jim Meyering  <jim@meyering.net>
20774
20775         Reflect the fact that stat.c and lstat.c are no longer generated.
20776         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
20777         (DISTCLEANFILES): Likewise.
20778         (EXTRA_DIST): Likewise.
20779         (all_local): Don't depend on stat.c or lstat.c.
20780         (stat.c, lstat.c): Remove rules.
20781         (EXTRA_DIST): Remove xstat.in.
20782
20783         * lib/xstat.in: Remove file.  Contents moved into stat.c.
20784         * lib/stat.c: New file.  Contents mostly from xstat.in.
20785         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
20786         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
20787
20788         * lib/safe-read.c: Rework so that it may serve to define safe_write,
20789         too.
20790         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
20791
20792 2002-12-03  Jim Meyering  <jim@meyering.net>
20793
20794         * lib/safe-read.c, safe-write.c: Change variable names and comments,
20795         but not semantics, to minimize the differences between these two files.
20796         (safe_read): Change comment to mention SAFE_READ_ERROR.
20797
20798         * lib/safe-read.c (IS_EINTR): Define.
20799         (safe_read): Use IS_EINTR in place of in-function cpp directives.
20800
20801 2002-12-02  Jim Meyering  <jim@meyering.net>
20802
20803         * lib/safe-read.c (EINTR): Define.
20804         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
20805         (INT_MAX): Provide fallback.
20806         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
20807
20808         * lib/safe-read.h (SAFE_READ_ERROR): Define.
20809
20810 2002-12-02  Bruno Haible  <bruno@clisp.org>
20811
20812         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
20813         Define, taken from safe-read.c.
20814         (INT_MAX): Provide fallback.
20815         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
20816         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
20817
20818         * lib/safe-read.c (EINTR): Remove definition.
20819         (safe_read): Don't use EINTR if it is absent.
20820
20821 2002-12-01  Jim Meyering  <jim@meyering.net>
20822
20823         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
20824         zero.
20825         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
20826
20827 2002-11-27  Paul Eggert  <eggert@twinsun.com>
20828
20829         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
20830         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
20831         with `if (! (value < limit)) abort ();', for readability.
20832
20833 2002-11-26  Karl Berry  <karl@gnu.org>
20834
20835         * lib/strdup.c: copy from libc again, with jim's ok.
20836         * lib/.cppi-disable: re-add strdup.c
20837
20838 2002-11-25  Karl Berry  <karl@gnu.org>
20839
20840         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
20841         instead of "strtol.c".
20842
20843 2002-11-25  Karl Berry  <karl@gnu.org>
20844
20845         * config/install-sh: update from automake for variable quoting, $0 in
20846         error msgs, etc.
20847
20848         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
20849         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
20850         entry.
20851
20852 2002-11-25  Jim Meyering  <jim@meyering.net>
20853
20854         * lib/mktime.c: Sync from libc, now that it has the latest fix.
20855
20856 2002-11-24  Karl Berry  <karl@gnu.org>
20857
20858         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
20859         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
20860
20861 2002-11-24  Jim Meyering  <jim@meyering.net>
20862
20863         Update from coreutils:
20864
20865         * lib/mktime.c: Merge in changes from libc.
20866
20867         Avoid a link-time failure on some Linux systems.
20868         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
20869         (otherwise).
20870         (__mon_yday): Declare with the STATIC attribute.
20871         (__mktime_internal): Likewise.
20872         Based on a report from Greg Schafer.
20873
20874 2002-11-23  Jim Meyering  <jim@meyering.net>
20875
20876         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
20877         Use `unsigned', not `int', as type of index.
20878
20879         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
20880
20881         * lib/fsusage.c: Remove unneeded parentheses around operands of
20882         `defined'.
20883
20884 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20885
20886         * lib/quotearg.h: Allow multiple inclusion by surrounding with
20887         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
20888         so that we can be included first.
20889         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
20890         * lib/quotearg.c: Include quotearg.h immediately after config.h.
20891         No need to include stddef.h or sys/types.h any more.
20892         Surround local include files with "", not "<>".
20893         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
20894         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
20895         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
20896         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20897         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20898         (ISPRINT): Remove; no longer needed now that we assume C89.
20899
20900         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
20901         Preserve errno.
20902
20903         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
20904         quotearg_char): Use SIZE_MAX rather than
20905         (size_t) -1 when we are talking about "infinity".
20906
20907         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
20908
20909 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20910
20911         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
20912         hint that one should use `if (! x) abort ();' rather than `assert
20913         (x);', and anyway it's one less thing to worry about configuring.
20914         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
20915         hash_rehash, hash_insert): Use abort rather than assert.
20916
20917 2002-11-22  Bruno Haible  <bruno@clisp.org>
20918
20919         * lib/safe-read.h: Assume C89. Add comments.
20920         (safe_read): Change return type to size_t.
20921         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
20922         byte counts > SSIZE_MAX correctly.
20923         * lib/safe-write.h: New file.
20924         * lib/safe-write.c: New file.
20925         * lib/full-read.h: New file.
20926         * lib/full-read.c: New file.
20927         * lib/full-write.h: Assume C89. Add comments.
20928         * lib/full-write.c: Include safe-write.h.
20929         (full_write): Rewritten to use safe_write.
20930         Suggested by Jim Meyering and Paul Eggert.
20931
20932 2002-11-21  Jim Meyering  <jim@meyering.net>
20933
20934         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
20935
20936         Merge in changes from the coreutils.
20937
20938         2002-09-25  Paul Eggert  <eggert@twinsun.com>
20939         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
20940         <stdint.h>.
20941         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
20942         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
20943         int.  Work more efficiently if X is the same width as uintmax_t.
20944         Do not compare X to -1, to avoid bogus compiler warning.
20945         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
20946         Don't assume that f_frsize and f_bsize are the same type.
20947
20948         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
20949         warning on FreeBSD.
20950
20951         * lib/makepath.c (make_path): Restore umask *before* creating the final
20952         component.
20953         (make_path): Minor reformatting.
20954
20955         * lib/xmalloc.c: Adjust to work with new autoconf macros,
20956         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
20957         HAVE_MALLOC/HAVE_REALLOC.
20958
20959         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
20960         dummy ones.  At least on GNU/Linux systems, `auto' means something
20961         else.
20962         From Michael Stone.
20963
20964 2002-11-21  Bruno Haible  <bruno@clisp.org>
20965
20966         Remove case insensitive option matching.
20967         * lib/argmatch.h (argcasematch): Remove declaration.
20968         (ARGCASEMATCH): Remove macro.
20969         (__xargmatch_internal): Remove case_sensitive argument.
20970         (XARGMATCH): Update.
20971         (XARGCASEMATCH): Remove macro.
20972         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
20973         case_sensitive argument.
20974         (argcasematch): Remove function.
20975         (__xargmatch_internal): Remove case_sensitive argument.
20976         (main): Use XARGMATCH instead of XARGCASEMATCH.
20977
20978         * lib/xmalloc.c: Change compile-time error message. Add comment about
20979         required autoconf version.
20980
20981 2002-11-20  Paul Eggert  <eggert@twinsun.com>
20982
20983         Merge argmatch cleanups from Bison.  Assume C89.
20984
20985         * lib/argmatch.c: Include config.h here, not in argmatch.h.
20986         Include stdlib.h, for EXIT_FAILURE.
20987         Always include <string.h>, since we assume C89.
20988         (EXIT_FAILURE): Remove pre-C89 bug workaround.
20989         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
20990         Include <stddef.h> instead, since it's all we need for size_t.
20991         (PARAMS): Remove.  All uses removed.
20992         (ARRAY_CARDINALITY): Do not bother to #undef.
20993         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
20994         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20995         Remove unnecessary parentheses.
20996         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20997         Insert necessary parentheses.
20998         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
20999         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
21000
21001 2002-11-19  Bruno Haible  <bruno@clisp.org>
21002
21003         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
21004         * lib/mbswidth.h: Include <stddef.h>, for size_t.
21005
21006         * lib/mbswidth.h (PARAMS): Remove macro.
21007         (mbswidth, mbsnwidth): Use ANSI C function declarations.
21008         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
21009
21010         * lib/gcd.h (PARAMS): Remove macro.
21011         (gcd): Use ANSI C function declarations.
21012         * lib/gcd.c (gcd): Likewise.
21013
21014 2002-11-15  Bruno Haible  <bruno@clisp.org>
21015
21016         * lib/strcspn.c: Include <stddef.h>.
21017         (strcspn): Use ANSI C function declaration. Change return type to
21018         size_t. Use NULL.
21019         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
21020         (strpbrk): Use NULL.
21021         * lib/strpbrk.h (PARAMS): Remove macro.
21022         (strpbrk): Use ANSI C function declaration.
21023         * lib/strstr.c: Don't include <sys/types.h>.
21024         * lib/strstr.h (PARAMS): Remove macro.
21025         (strstr): Use ANSI C function declarations.
21026
21027 2002-11-14  Karl Berry  <karl@gnu.org>
21028
21029         * config/mkinstalldirs: `do' on separate line, instead of
21030         `for var; do'.
21031
21032 2002-11-06  Bruno Haible  <bruno@clisp.org>
21033
21034         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
21035         * lib/gcd.c (gcd): Likewise.
21036
21037 2002-11-05  Bruno Haible  <bruno@clisp.org>
21038
21039         * lib/gcd.h: New file, from gettext-0.11.5.
21040         * lib/gcd.c: New file, from gettext-0.11.5.
21041
21042 2002-11-05  Bruno Haible  <bruno@clisp.org>
21043
21044         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21045         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21046         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21047         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21048
21049         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
21050         <libintl.h>.
21051         * lib/makepath.c: Include gettext.h instead of <locale.h> and
21052         <libintl.h>.
21053
21054         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
21055         * lib/human.c: Include gettext.h instead of <libintl.h>.
21056         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
21057         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
21058         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
21059         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
21060         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
21061         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
21062         (textdomain): Remove definition.
21063         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
21064
21065         * lib/long-options.c: Remove include of <libintl.h> and definition of
21066         _.
21067         * lib/same.c: Remove include of <libintl.h> and definition of _.
21068
21069 2002-11-04  Owen Taylor  <otaylor@redhat.com>
21070
21071         * lib/config.charset: A few additions for Solaris.
21072
21073 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21074
21075         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21076         * lib/localcharset.c (locale_charset): Declare as extern "C".
21077
21078 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21079
21080         * lib/config.charset: msdos in uk_UA uses CP1125.
21081
21082 2002-11-04  Bruno Haible  <bruno@clisp.org>
21083
21084         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21085         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21086         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21087         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21088         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21089
21090 2002-11-04  Bruno Haible  <bruno@clisp.org>
21091
21092         * lib/localcharset.c (locale_charset): Don't return an empty string.
21093
21094 2002-11-04  Bruno Haible  <bruno@clisp.org>
21095
21096         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21097         aliases.
21098
21099 2002-11-04  Bruno Haible  <bruno@clisp.org>
21100
21101         * lib/config.charset: Update for newest glibc. Add canonical names
21102         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21103
21104 2002-11-04  Bruno Haible  <bruno@clisp.org>
21105
21106         * lib/config.charset: Add support for NetBSD.
21107
21108 2002-11-04  Bruno Haible  <bruno@clisp.org>
21109
21110         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21111
21112 2002-11-01  Bruno Haible  <bruno@clisp.org>
21113
21114         * configure.in: Add AC_CONFIG_AUX_DIR call.
21115         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21116         test/Makefile.
21117         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21118
21119 2002-09-28  Karl Berry  <karl@gnu.org>
21120
21121         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21122         installed automake until the next release, since changes have been
21123         made.
21124
21125 2002-09-25  Karl Berry  <karl@gnu.org>
21126
21127         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21128         * lib/getopt*: copy from libc/posix.
21129         * lib/gettext.h: copy from gettext.
21130         * lib/.cppi-disable: add strdup.c, gettext.h.
21131
21132 2002-09-25  Karl Berry  <karl@gnu.org>
21133
21134         * config/srclist.txt: enable gettext.h check.
21135         * config/config.{guess,sub}: update from prep.
21136         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21137                 from automake 1.6.3.
21138         See srclist*.
21139
21140 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21141
21142         * regex.c (PATFETCH): Remove the translating fetch.
21143         (PATFETCH_RAW): Rename to PATFETCH.
21144         (set_image_of_range): New fun.
21145         (SET_RANGE_TABLE_WORK_AREA): Use it.
21146         (regex_compile): Don't translate the pattern chars so eagerly.
21147         Only do it when inserting an `exactn' bytecode or when handling
21148         a char-range.
21149         (mutually_exclusive_p): Avoid empty statement.
21150
21151 2002-07-06  Jim Meyering  <meyering@lucent.com>
21152
21153         * m4/README: Don't mention Makefile.am.in.
21154         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21155
21156 2002-07-01  Jim Meyering  <meyering@lucent.com>
21157
21158         * lib/c-stack.c: Include sys/time.h.
21159         From Volker Borchert.
21160
21161 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21162
21163         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
21164
21165 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21166
21167         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
21168         New macro.  Use it uniformly instead of
21169         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
21170         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
21171         reported by Vin Shelton.
21172
21173 2002-06-22  Paul Eggert  <eggert@twinsun.com>
21174
21175         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
21176         Do not assume SA_SIGINFO behavior.
21177         Bug reported by Jim Meyering on NetBSD 1.5.2.
21178
21179 2002-06-22  Jim Meyering  <meyering@lucent.com>
21180
21181         * m4/c-stack.m4: New file, from diffutils-2.8.2.
21182         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
21183
21184         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
21185         now that configure.ac uses AC_GNU_SOURCE.
21186         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
21187         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
21188
21189         Update to latest tools.  Suggestions from Paul Eggert.
21190         * m4/stdbool.m4: New file, from diffutils-2.8.2.
21191         * m4/gnu-source.m4: Update from diffutils-2.8.2.
21192         * m4/fnmatch.m4: Likewise.
21193         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
21194         to AC_HEADER_STDBOOL
21195
21196 2002-06-22  Jim Meyering  <meyering@lucent.com>
21197
21198         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
21199         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
21200
21201 2002-06-22  Jim Meyering  <meyering@lucent.com>
21202
21203         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
21204
21205         * lib/exitfail.c, exitfail.h: Likewise.
21206         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
21207
21208         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
21209         of fnmatch.h.
21210         (EXTRA_DIST): Add fnmatch_loop.c.
21211         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
21212
21213         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
21214         * lib/fnmatch.c: Update from diffutils-2.8.2.
21215         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
21216         * lib/fnmatch.h: Remove file.
21217
21218 2002-06-21  Jim Meyering  <meyering@lucent.com>
21219
21220         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
21221         * m4/mbrtowc.m4: Likewise.
21222
21223         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
21224         * m4/mbswidth.m4: Reflect name change:
21225         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
21226         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21227
21228         * m4/lib-link.m4: Update from gettext-0.11.2.
21229         * m4/gettext.m4: Likewise.
21230
21231         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
21232         From Alfred M. Szmidt.
21233
21234 2002-06-18  Paul Eggert  <eggert@twinsun.com>
21235
21236         * lib/file-type.h: Report an error if neither S_ISREG nor
21237         S_IFREG is defined, instead of using a test specific to glibc
21238         2.2.  This should be safe, since POSIX requires S_ISREG and
21239         Unix Version 7 had S_IFREG.  We don't need to check for
21240         <sys/types.h> since we don't use any symbols that it defines.
21241
21242 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
21243
21244         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
21245         $@-t, so that each temporary file name is unique and valid in the first
21246         8 characters, for operation under DOS.
21247
21248 2002-06-15  Paul Eggert  <eggert@twinsun.com>
21249
21250         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
21251
21252 2002-06-15  Jim Meyering  <meyering@lucent.com>
21253
21254         Work even with DJGPP 2.03, which lacks support for symlinks.
21255         From Richard Dawe.
21256         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
21257         is defined.
21258         * lib/lchown.c (S_ISLNK): Likewise.
21259
21260 2002-06-15  Jim Meyering  <meyering@lucent.com>
21261
21262         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
21263         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
21264         have been included before this file.
21265
21266 2002-06-14  Jim Meyering  <meyering@lucent.com>
21267
21268         * lib/file-type.h: Use the version from diffutils-2.8.2.
21269         * lib/file-type.c: Likewise.
21270
21271 2002-06-07  Jim Meyering  <meyering@lucent.com>
21272
21273         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
21274         They're needed at least for NetBSD 1.5.2.
21275         ($statxfs_includes): Include those same headers.
21276         ($statxfs_includes): Include sys/vfs.h if available.
21277         ($statxfs_includes): Likewise for sys/statvfs.h.
21278         Check for the following members in both structs statfs and statvfs:
21279         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
21280
21281 2002-06-01  Jim Meyering  <meyering@lucent.com>
21282
21283         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
21284         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
21285
21286 2002-05-28  Jim Meyering  <meyering@lucent.com>
21287
21288         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
21289         Reported by Volker Borchert.
21290
21291 2002-05-27  Jim Meyering  <meyering@lucent.com>
21292
21293         Fix a problem seen only on nonconforming systems whereby ls.c's
21294         use of localtime, and then of gettimeofday would cause trouble:
21295         the localtime call used to initialize rpl_gettimeofday's save
21296         mechanism would clobber ls's current local time information so
21297         that in any long listing the first file would always be listed
21298         with date 1970-01-01.  Analysis by Volker Borchert.
21299
21300         * lib/gettimeofday.c (localtime): Undefine.
21301         (rpl_localtime): New function.
21302
21303 2002-05-27  Jim Meyering  <meyering@lucent.com>
21304
21305         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
21306         localtime.
21307
21308         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
21309         use the replacement function; it wouldn't resolve at link time.
21310         Reported by Volker Borchert.
21311
21312 2002-05-22  Jim Meyering  <meyering@lucent.com>
21313
21314         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
21315         file-type.h.
21316         * lib/file-type.h: New file.
21317         * lib/file-type.c (file_type): New file/function.  Extracted from
21318         diffutils.
21319
21320 2002-04-30  Jim Meyering  <meyering@lucent.com>
21321
21322         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
21323
21324 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21325
21326         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
21327
21328 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21329
21330         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
21331         Do not check for alloca.h (no longer used) or stdbool.h (was never
21332         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
21333
21334 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21335
21336         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
21337
21338 2002-04-29  Jim Meyering  <meyering@lucent.com>
21339
21340         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
21341         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
21342         Use AC_FUNC_STRNLEN here instead.
21343
21344         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
21345         With autoconf-2.53a, it's part of AC_PROG_CC.
21346
21347 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21348
21349         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
21350         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
21351
21352 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21353
21354         * lib/sig2str.h, lib/sig2str.c: New files.
21355         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
21356
21357 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21358
21359         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
21360         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
21361         of 127, since 64 is the largest conceivable number for ancient
21362         nonstandard hosts.
21363         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
21364
21365 2002-04-28  Jim Meyering  <meyering@lucent.com>
21366
21367         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
21368
21369 2002-04-24  Jim Meyering  <meyering@lucent.com>
21370
21371         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
21372         (jm_PREREQ): Use it.
21373
21374         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
21375         mach/mach.h fcntl.h.
21376         Check for this function: setlocale.
21377
21378 2002-04-24  Jim Meyering  <meyering@lucent.com>
21379
21380         * lib/gettext.h: New file, from Gettext.
21381         * lib/Makefile.am (INCLUDES): Remove -I../intl.
21382         (libfetish_a_SOURCES): Add gettext.h.
21383
21384 2002-04-16  Jim Meyering  <meyering@lucent.com>
21385
21386         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
21387         ut_pid, ut_id, ut_exit.
21388
21389 2002-04-16  Jim Meyering  <meyering@lucent.com>
21390
21391         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
21392         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
21393         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
21394
21395 2002-04-12  Jim Meyering  <meyering@lucent.com>
21396
21397         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
21398         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
21399         existence of the getmntinfo function.  Needed for Darwin 5.3.
21400
21401         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
21402         This is necessary at least on Darwin 5.3.
21403
21404         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
21405         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
21406         strnlen.o in the library, and that makes some versions of ranlib
21407         object.
21408
21409 2002-04-12  Jim Meyering  <meyering@lucent.com>
21410
21411         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
21412
21413 2002-04-09  Jim Meyering  <meyering@lucent.com>
21414
21415         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
21416         to be more precise.  Rather than saying we're checking whether the
21417         function `works', say what we're testing.
21418         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
21419         Reported by Bruno Haible.
21420
21421 2002-03-10  Jim Meyering  <meyering@lucent.com>
21422
21423         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
21424         Suggestion from Santiago Vila.
21425
21426 2002-03-08  Jim Meyering  <meyering@lucent.com>
21427
21428         * lib/rename.c: Mention that this wrapper is needed also on
21429         mips-dec-ultrix4.4 systems.
21430
21431 2002-03-02  Jim Meyering  <meyering@lucent.com>
21432
21433         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
21434         not HAVE_CLOCK_SETTIME.
21435
21436 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21437
21438         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
21439         Check for clock_settime.
21440
21441 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21442
21443         * lib/nanosleep.h: Rename to....
21444         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
21445
21446         * lib/gettime.c: New file.
21447         * lib/settime.c: New file.
21448         * lib/stime.c: Remove.
21449
21450         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
21451         timespec.h.  Remove nanosleep.h.
21452
21453 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21454
21455         * m4/acl.m4: New file.
21456         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
21457         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
21458
21459 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21460
21461         * lib/acl.c, lib/acl.h: New files.
21462         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
21463
21464 2002-02-24  Jim Meyering  <meyering@lucent.com>
21465
21466         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
21467         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
21468         cause trouble.  Reported by Nelson Beebe.
21469
21470 2002-02-23  Paul Eggert  <eggert@twinsun.com>
21471
21472         * lib/path-concat.c (xpath_concat): Reorder code to pacify
21473         compilers that don't know that xalloc_die never returns.
21474
21475 2002-02-20  Jim Meyering  <meyering@lucent.com>
21476
21477         * lib/getdate.c: Regenerate using bison-1.33.
21478
21479 2002-02-17  Jim Meyering  <meyering@lucent.com>
21480
21481         * config/config.guess (main): Don't use `head -1'; it's no longer
21482         portable. Use `sed 1q' instead.
21483
21484 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
21485
21486         * m4/codeset.m4: Upgrade to gettext-0.11.
21487         * m4/gettext.m4: Upgrade to gettext-0.11.
21488         * m4/glibc21.m4: Upgrade to gettext-0.11.
21489         * m4/iconv.m4: Upgrade to gettext-0.11.
21490         * m4/isc-posix.m4: Upgrade to gettext-0.11.
21491         * m4/lcmessage.m4: Upgrade to gettext-0.11.
21492         * m4/lib-ld.m4: New file, from gettext-0.11.
21493         * m4/lib-link.m4: New file, from gettext-0.11.
21494         * m4/lib-prefix.m4: New file, from gettext-0.11.
21495         * m4/progtest.m4: Upgrade to gettext-0.11.
21496
21497 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21498
21499         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
21500         (jm_PREREQ): Use it.
21501
21502 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21503
21504         * lib/posixver.c, lib/posixver.h: New files.
21505         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21506
21507 2002-02-02  Paul Eggert  <eggert@twinsun.com>
21508             Bruno Haible  <bruno@clisp.org>
21509
21510         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
21511         (fwrite_success_callback): New declaration.
21512         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
21513         print_unicode_char. Call failure callback instead of error.
21514         (fwrite_success_callback): New function.
21515         (exit_failure_callback): New function.
21516         (fallback_failure_callback): New function.
21517         (print_unicode_char): Call unicode_to_mb.
21518
21519 2002-01-26  Jim Meyering  <meyering@lucent.com>
21520
21521         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
21522         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
21523
21524 2002-01-26  Jim Meyering  <meyering@lucent.com>
21525
21526         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
21527
21528 2002-01-22  Paul Eggert  <eggert@twinsun.com>
21529
21530         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
21531
21532 2002-01-22  Jim Meyering  <meyering@lucent.com>
21533
21534         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
21535         Otherwise, some versions of automake would omit the rule that makes
21536         Makefile from Makefile.in.
21537
21538 2002-01-21  Paul Eggert  <eggert@twinsun.com>
21539
21540         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
21541         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21542         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
21543         (memcoll): Set errno to zero if there is no error.
21544
21545         * lib/quotearg.c (quotearg_buffer_restyled):
21546         Fix bug with quoting buffers containing NUL when backslashing escapes.
21547         This bug was exposed by the other changes in this patch.
21548         (quotearg_n_options): New arg ARGSIZE.
21549         All callers changed.
21550         (quoting_options_from_style): New function.
21551         (quotearg_n_style): Use it.
21552         (quotearg_n_style_mem): New function.
21553
21554         * lib/quotearg.h (quotearg_n_style_mem): New function.
21555
21556 2002-01-19  Jim Meyering  <meyering@lucent.com>
21557
21558         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
21559         Remove useless quotes: DF_PROG="df".
21560         * m4/strnlen.m4: New file.
21561
21562 2002-01-16  Paul Eggert  <eggert@twinsun.com>
21563
21564         * lib/backupfile.c (ISDIGIT): Comment fix.
21565         * lib/getdate.y (ISDIGIT): Likewise.
21566         * lib/posixtm.c (ISDIGIT, year): Likewise.
21567         * lib/strverscmp.c (ISDIGIT): Likewise.
21568         * lib/userspec.c (ISDIGIT): Likewise.
21569
21570 2002-01-16  Jim Meyering  <meyering@lucent.com>
21571
21572         * lib/getdate.y: Add three semicolons, each just before a closing
21573         brace. Bison (as of version 1.31) no longer papers over that mistake.
21574
21575 2002-01-05  Jim Meyering  <meyering@lucent.com>
21576
21577         * lib/version-etc.c (version_etc_copyright): Update copyright year.
21578
21579 2001-12-19  Paul Eggert  <eggert@twinsun.com>
21580
21581         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
21582         not silently exit merely because the output buffer happens to
21583         have nothing pending.
21584
21585 2001-12-18  Paul Eggert  <eggert@twinsun.com>
21586
21587         See the big note in ../ChangeLog.
21588         * lib/human.c (suffixes): Prefer K to k for 1024.
21589         (generate_suffix_backwards): New function.
21590         (human_readable_inexact): Use it.
21591         * lib/xstrtol.c (__xstrtol): If there is no number but there
21592         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
21593         Accept 'K' as well as 'k'.
21594
21595 2001-12-15  Jim Meyering  <meyering@lucent.com>
21596
21597         * lib/regex.h (__restrict_arr): Update from libc.
21598
21599         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
21600         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
21601         (STREQ): Define.
21602
21603 2001-12-14  Jim Meyering  <meyering@lucent.com>
21604
21605         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
21606         Suggestion from Bruno Haible.
21607
21608 2001-12-10  Jim Meyering  <meyering@lucent.com>
21609
21610         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
21611         xrealloc, Instead, include "xalloc.h".
21612         (initbuffer): Don't cast xmalloc return value to char*.
21613         (readline): Reword comment.
21614         Don't cast xrealloc return value to char*
21615         Return NULL, not 0.
21616
21617 2001-12-09  Jim Meyering  <meyering@lucent.com>
21618
21619         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
21620         about `signed and unsigned type in conditional expression'.
21621         * lib/posixtm.c (posix_time_parse): Likewise.
21622
21623         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
21624
21625         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
21626         to avoid a pedantic warning.
21627
21628         * lib/getstr.c: Don't include assert.h.
21629         (getstr): Remove warning-evoking assertions.
21630         Return -1 if offset parameter is out of bounds.
21631         Change the type of a local from int to size_t.
21632
21633         * lib/strftime.c (my_strftime_localtime_r): Include this function
21634         definition in the `#if ! HAVE_TM_GMTOFF' block.
21635
21636         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
21637         Include xalloc.h instead.
21638
21639 2001-12-02  Jim Meyering  <meyering@lucent.com>
21640
21641         * lib/tempname.c: Don't declare getenv, thus reverting the change of
21642         2001-11-18.  It's no longer necessary, now that stdlib.h is always
21643         included.
21644
21645         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
21646         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
21647
21648 2001-11-30  Akim Demaille  <akim@epita.fr>
21649
21650         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
21651         before being defined.
21652
21653 2001-11-27  Paul Eggert  <eggert@twinsun.com>
21654
21655         * lib/quotearg.h (quotearg_n, quotearg_n_style):
21656         First arg is int, not unsigned.
21657         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21658         (SIZE_MAX, UINT_MAX): New macros.
21659         (quotearg_n_options): Abort if N is negative.
21660         Avoid overflow check on hosts where size_t is 64 bits and int
21661         is 32 bits, as overflow is impossible there.
21662         Fix off-by-one typo that caused unnecessary reallocation.
21663
21664 2001-11-27  Jim Meyering  <meyering@lucent.com>
21665
21666         * lib/tempname.c: Merge with version from libc.
21667         * lib/regex.c: Likewise.
21668
21669         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
21670         systems for which STDC_HEADERS is 0, it was not included, resulting in
21671         a warning about an integer-to-pointer conversion problem with getenv.
21672         Reported by Volker Borchert.
21673
21674 2001-11-26  Jim Meyering  <meyering@lucent.com>
21675
21676         * lib/gtod.h: Remove file.
21677         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
21678         * lib/gettimeofday.c: Don't include gtod.h.
21679         (GTOD_init): Remove function.
21680         (rpl_gettimeofday): Do its job here instead, rather than aborting.
21681         Suggestion from Volker Borchert.
21682
21683 2001-11-23  Jim Meyering  <meyering@lucent.com>
21684
21685         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
21686         it.
21687         * lib/hash.c (struct hash_table): Define it here instead.
21688
21689 2001-11-22  Jim Meyering  <meyering@lucent.com>
21690
21691         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
21692
21693 2001-11-20  Jim Meyering  <meyering@lucent.com>
21694
21695         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
21696         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
21697
21698 2001-11-19  Jim Meyering  <meyering@lucent.com>
21699
21700         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
21701         directory.  Use "conftestXXXXXX" as the template.
21702         Suggestion from Paul Eggert.
21703
21704         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
21705         immediately, so the test doesn't mistakenly hit the max-open-files
21706         limit.
21707
21708 2001-11-18  Paul Eggert  <eggert@twinsun.com>
21709
21710         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
21711         (TEMPORARIES): New macro.
21712         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
21713         removes an artificial limitation (e.g. HP-UX 10.20, where
21714         TMP_MAX is 17576).
21715
21716 2001-11-18  Jim Meyering  <meyering@lucent.com>
21717
21718         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
21719
21720 2001-11-18  Jim Meyering  <meyering@lucent.com>
21721
21722         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
21723         on SunOS 4.
21724
21725         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
21726         files will be created before anything else.
21727
21728 2001-11-17  Paul Eggert  <eggert@twinsun.com>
21729
21730         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
21731         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
21732
21733 2001-11-17  Jim Meyering  <meyering@lucent.com>
21734
21735         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
21736         Prompted by a report from Bob Proulx.
21737
21738         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
21739         Instead, require UTILS_FUNC_MKSTEMP.
21740
21741 2001-11-17  Jim Meyering  <meyering@lucent.com>
21742
21743         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
21744         Now, that's done as part of AC_FUNC_STRTOD.
21745
21746 2001-11-17  Jim Meyering  <meyering@lucent.com>
21747
21748         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
21749         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
21750         rather than group writable.  Patch by Juan F. Codagnone.
21751
21752         * lib/readtokens.c: Remove explicit declarations of xmalloc and
21753         xrealloc, Instead, include "xalloc.h".
21754
21755         * lib/mountlist.c: Include unlocked-io.h after all system headers.
21756         Remove explicit declarations of xmalloc, xrealloc,
21757         and xstrdup.  Instead, include "xalloc.h".
21758
21759         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
21760         unlocked-io.h.
21761         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
21762         Likewise.
21763         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
21764
21765         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
21766         Reported by Padraig Brady.
21767
21768         * lib/mkstemp.c: #undef mkstemp.
21769         Include config.h.
21770         (rpl_mkstemp): Rename from mkstemp.
21771         Protoize.
21772
21773 2001-11-16  Jim Meyering  <meyering@lucent.com>
21774
21775         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
21776         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
21777         determine the amount of total physical memory, use pstat_getstatic.
21778         HPUX-11 doesn't define _SC_PHYS_PAGES.
21779         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
21780         If sysconf couldn't be used to determine the amount of available
21781         physical memory, use both pstat_getstatic and pstat_getdynamic.
21782         Based on a patch from Bob Proulx.
21783
21784 2001-11-10  Jim Meyering  <meyering@lucent.com>
21785
21786         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
21787         (jm_PREREQ): Use it.
21788
21789 2001-11-09  Jim Meyering  <meyering@lucent.com>
21790
21791         * m4/jm-macros.m4: Require autoconf-2.52f.
21792         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
21793         Use these AC_-prefixed names, not the AM_-prefixed ones.
21794
21795         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
21796
21797 2001-11-05  Jim Meyering  <meyering@lucent.com>
21798
21799         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
21800
21801 2001-11-04  Jim Meyering  <meyering@lucent.com>
21802
21803         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
21804         $DEFS.
21805
21806 2001-11-03  Jim Meyering  <meyering@lucent.com>
21807
21808         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
21809         of AC_DEFUN.
21810
21811         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
21812         know the name of the variable in the macro definition.
21813
21814 2001-11-03  Jim Meyering  <meyering@lucent.com>
21815
21816         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
21817         in argmatch_to_argument call.
21818
21819         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
21820         argument.
21821
21822         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
21823         e.g., a fault due to an attempt to free a NULL pointer.
21824
21825 2001-11-01  Jim Meyering  <meyering@lucent.com>
21826
21827         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
21828         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
21829
21830 2001-11-01  Jim Meyering  <meyering@lucent.com>
21831
21832         * lib/dirfd.c, lib/dirfd.h: New files.
21833         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
21834
21835         * lib/hash.c (hash_print) [TESTING]: Clean up.
21836
21837 2001-10-22  Paul Eggert  <eggert@twinsun.com>
21838
21839         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
21840         to avoid a warning if -Wall.
21841
21842 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
21843
21844         * README: New file
21845         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
21846         (per RMS's instructions, this is now the canonical source)
21847         * lgpl/, gpl/: New directories.
21848
21849 2001-10-21  Paul Eggert  <eggert@twinsun.com>
21850
21851         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
21852
21853 2001-10-21  Jim Meyering  <meyering@lucent.com>
21854
21855         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
21856         this code would end up calling gettext even in packages built
21857         with --disable-nls.
21858         * lib/getopt.c (_): Likewise.
21859         * lib/regex.c (_): Likewise.
21860
21861 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21862
21863         * m4/error.m4 (jm_PREREQ_ERROR):
21864         Do not invoke AC_CHECK_FUNCS with strerror_r, as
21865         AC_FUNC_STRERROR_R does that.
21866         Check for strerror declaration.
21867
21868         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
21869         are supposed to have them these days.
21870         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
21871         Merge changes from latest Autoconf CVS.
21872         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
21873         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
21874         POSIX decided to standardize on the int flavor of strerror_r.
21875
21876 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21877
21878         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
21879         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
21880         Use strerror_r that is only a macro, even if it is not a function.
21881         (strerror): Check for HAVE_DECL_STRERROR before declaring.
21882         (private_strerror): Use prototypes, not old-style function definition.
21883         (print_errno_message): New function.
21884         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
21885         char*-flavored one.
21886         (error_tail, error, error_at_line): Use it.
21887
21888 2001-10-11  Jim Meyering  <meyering@lucent.com>
21889
21890         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
21891         and quote_n (1, ... to avoid clobbering a buffer.
21892
21893 2001-10-05  Jim Meyering  <meyering@lucent.com>
21894
21895         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
21896         hash-pjw.h.
21897         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
21898         * lib/hash-pjw.h: New file.
21899
21900 2001-09-30  Jim Meyering  <meyering@lucent.com>
21901
21902         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
21903         `struct fsstat' has the `f_fstypename' member.
21904         Use that to define FS_TYPE, which is now used to make
21905         the getfsstat link test tighter.
21906
21907 2001-09-30  Jim Meyering  <meyering@lucent.com>
21908
21909         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
21910         Include <sys/ucred.h>, for Apple Darwin.
21911         Include sys/mount.h and sys/fs_types.h only if available.
21912         (FS_TYPE): Define.
21913         (read_filesystem_list): Use FS_TYPE.
21914
21915 2001-09-29  Paul Eggert  <eggert@twinsun.com>
21916
21917         * lib/exclude.c (excluded_filename): 0 -> false, since it's
21918         a boolean context.
21919
21920 2001-09-29  Jim Meyering  <meyering@lucent.com>
21921
21922         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21923         [one-argument getmntent function]): Include stdio.h before mntent.h.
21924         SunOS 4.1.x needs it for the declaration of `FILE'.
21925         Patch by Volker Borchert.
21926
21927         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21928         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
21929         sys/fs_types.h, and make the link-test for getfsstat guard #include
21930         directives with appropriate #if HAVE_*_H tests so that we can
21931         detect getfsstat on Apple Darwin1.3.7 systems.
21932         Reported by Nelson Beebe.
21933         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
21934
21935 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21936
21937         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21938         #defines strtoimax.  Also treat the other strto* functions
21939         like strtoimax.
21940
21941         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21942         Check for strtoul and strtoumax,
21943         as those declarations are made even in the signed case.
21944         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
21945         Likewise, for strtol and strtoimax.
21946
21947 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21948
21949         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21950         #defines strtoimax.  Also treat the other strto* functions
21951         like strtoimax.
21952
21953         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
21954         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
21955         (strtoimax, strtoumax): Do not declare if already defined as a macro.
21956
21957 2001-09-26  Jim Meyering  <meyering@lucent.com>
21958
21959         Most macros in unlocked-io.h had the wrong number of arguments.
21960         * lib/gen-uio: New script.
21961         (USE_UNLOCKED_IO): Define to 1 if not already defined.
21962         * lib/unlocked-io.hin: Remove file.
21963         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
21964         rather than trying to embed it here.
21965         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
21966         Reported by Padraig Brady.
21967
21968 2001-09-25  Volker Borchert  <bt@teknon.de>
21969
21970         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
21971         `result'.
21972
21973 2001-09-24  Jim Meyering  <meyering@lucent.com>
21974
21975         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
21976
21977 2001-09-23  Jim Meyering  <meyering@lucent.com>
21978
21979         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
21980         instead of the mere test for existence of mntent.h.  The latter
21981         would get a false-positive on AIX 3.4 systems.
21982         In the outer getmntent if-block, don't die if neither of the getmntent
21983         tests succeeds.  Instead, just fall through and continue with the
21984         remaining tests.
21985
21986 2001-09-23  Jim Meyering  <meyering@lucent.com>
21987
21988         * lib/mountlist.c: Remove useless parentheses in #if directives.
21989         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
21990         the deprecated MOUNTED symbol is no longer defined in mntent.h.
21991
21992 2001-09-22  Jim Meyering  <meyering@lucent.com>
21993
21994         * m4/gettext.m4: New file.  From gettext.
21995         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
21996         * m4/progtest.m4: Likewise
21997         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
21998         * m4/glibc21.m4: Likewise.
21999
22000         * m4/libintl.m4: Remove.  No longer used.
22001
22002 2001-09-22  Jim Meyering  <meyering@lucent.com>
22003
22004         * lib/localcharset.c: Update from latest gettext.
22005         * lib/config.charset: Likewise.
22006
22007 2001-09-20  Jim Meyering  <meyering@lucent.com>
22008
22009         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
22010         strtoimax.
22011         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
22012         strtoumax.
22013
22014 2001-09-20  Jim Meyering  <meyering@lucent.com>
22015
22016         * lib/xstrtol.c (strtoimax): Guard declaration with
22017         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
22018         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
22019         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
22020         (strtoumax): Likewise, for completeness (it wasn't necessary).
22021
22022 2001-09-17  Paul Eggert  <eggert@twinsun.com>
22023
22024         * lib/strtoimax.c (HAVE_LONG_LONG):
22025         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
22026         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
22027         to work around bug in IBM C compiler.
22028
22029 2001-09-17  Jim Meyering  <meyering@lucent.com>
22030
22031         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
22032         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
22033         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
22034         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
22035         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
22036         whenever the right hand side need not be expanded by the shell.
22037
22038 2001-09-16  Paul Eggert  <eggert@twinsun.com>
22039
22040         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
22041         library.  It's not correct, as some older glibcs are buggy.
22042         fnmatch wasn't fixed until glibc 2.2.
22043
22044         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
22045         special shell magic here.
22046
22047 2001-09-16  Jim Meyering  <meyering@lucent.com>
22048
22049         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
22050         * m4/jm-macros.m4: Require it.
22051
22052 2001-09-16  Jim Meyering  <meyering@lucent.com>
22053
22054         * lib/mkdir.c: New file.
22055
22056 2001-09-15  Jim Meyering  <meyering@lucent.com>
22057
22058         * m4/jm-macros.m4: Check for help2man.
22059
22060 2001-09-11  Jim Meyering  <meyering@lucent.com>
22061
22062         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
22063         The body, by Paul Eggert, was moved here from configure.in.
22064         * m4/jm-macros.m4: Require UTILS_HOST_OS.
22065
22066 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22067
22068         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
22069         (jm_PREREQ): Use it.
22070
22071 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22072
22073         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22074         Use ssize_t, not int, to store result of readlink.
22075         Check for ssize_t overflow as well as size_t overflow,
22076         as POSIX says the result of readlink is implementation-defined
22077         when ssize_t overflows.
22078         Remove unnecessary cast to char*.
22079         Use free+malloc instead of realloc, as the storage doesn't need
22080         to be preserved and it's clearer and can be more efficient that way.
22081         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22082         * lib/xreadlink.h (xreadlink): Update prototype.
22083
22084 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22085
22086         * lib/xgetcwd.c: Revert some of the previous change; intead,
22087         fix the HAVE_GETCWD_NULL code to behave more like the
22088         !HAVE_GETCWD_NULL code used to.
22089
22090         Include "xalloc.h".
22091         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22092         invoke xalloc_die.
22093
22094 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22095
22096         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22097         sys/param.h, as pathmax.h includes them.
22098
22099 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22100
22101         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22102         (jm_PREREQ_XGETCWD): New macro.
22103
22104         * m4/getcwd.m4: New file.
22105
22106 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22107
22108         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22109         like the HAVE_GETCWD_NULL code.
22110         Include pathmax.h if not HAVE_GETCWD.
22111         Do not include xalloc.h.
22112         (INITIAL_BUFFER_SIZE): New symbol.
22113         Do not use xmalloc / xrealloc, since the caller is responsible for
22114         handling errors.  Preserve errno around `free' during failure.
22115         Do not overrun buffer when using getwd.
22116
22117 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22118
22119         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22120         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22121         getcwd (NULL, 0).
22122
22123 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22124
22125         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22126         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22127         spotted by Jim Meyering.
22128
22129 2001-09-03  Jim Meyering  <meyering@lucent.com>
22130
22131         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22132         failure.
22133
22134 2001-09-02  Jim Meyering  <meyering@lucent.com>
22135
22136         * lib/error.c: Update from GNU libc.
22137
22138 2001-09-01  Jim Meyering  <meyering@lucent.com>
22139
22140         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22141         Used by df.
22142
22143 2001-09-01  Jim Meyering  <meyering@lucent.com>
22144
22145         * lib/xreadlink.c: New file.
22146         * lib/xreadlink.h: New file.
22147         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22148         xreadlink.h.
22149
22150         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22151         doesn't conflict with sparc Solaris 7's definition in
22152         /usr/include/sys/int_types.h.
22153
22154         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22155         files.
22156         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22157         and strncasecmp as r-values.  Unixware didn't have declarations.
22158
22159 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22160
22161         * lib/xstrtol.h: Add copyright notice.
22162         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22163         LONGINT_INVALID_SUFFIX_CHAR.
22164
22165 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22166
22167         * lib/xstrtol.c (strtoimax): New decl.
22168
22169 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22170
22171         * lib/xgetcwd.c: Don't include pathmax.h.
22172         Include stdlib.h and unistd.h if available.
22173         Include xalloc.h.
22174         (xmalloc, xstrdup, free): Remove decls.
22175         (xgetcwd): Don't assume sizes fit in unsigned.
22176         Check for overflow when computing sizes.
22177         Simplify reallocation code.
22178
22179 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22180
22181         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
22182         a directory's st_size can have an arbitrary value, so the old
22183         usage could waste an arbitrary amount of memory.  All uses
22184         changed.
22185         * lib/savedir.h: Update prototype.
22186
22187 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22188
22189         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
22190
22191         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
22192         old strtoimax.c.
22193
22194         Also, make the following further changes to make this file's
22195         configuration more similar to that of strtol.c:
22196         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
22197         (strtoumax, uintmax_t, strtoull, strtol): Remove.
22198         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
22199         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
22200         changed to signed values.
22201
22202         And make the following changes as well:
22203         Fix copyright notice, as 1999 was missing.
22204         (verify): New macro.
22205         (strtoimax): Check sizes at compile-time, not run-time.
22206         Prefer strtol to strtoll if both work.
22207         (main): Remove; it was not that useful and was a pain to maintain.
22208
22209         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
22210
22211 2001-08-31  Jim Meyering  <meyering@lucent.com>
22212
22213         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
22214         Use an initial, malloc'd, buffer of length 128 rather than
22215         a statically allocated one of length 1024.
22216
22217 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22218
22219         Simplify code, partly by assuming autoconf 2.52 semantics.
22220
22221         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
22222
22223         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
22224         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
22225         All uses removed.
22226         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
22227         Move AC_REQUIRE to next-to-top level, to avoid confusion.
22228         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
22229         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
22230         jm_AC_HEADER_INTTYPES_H.
22231         * m4/jm-macros.m4 (jm_MACROS): Likewise.
22232
22233         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
22234
22235         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22236         Quote first arg of AC_DEFUN.
22237         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
22238         since they are needed to parse the include file even if we need
22239         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
22240         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
22241         but with opposite signedness.
22242
22243 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22244
22245         Merge 'exclude' changes from tar 1.13.22.
22246         This fixes one or two unlikely storage allocation overflow bugs,
22247         but doesn't change user-visible behavior otherwise.
22248
22249 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22250
22251         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
22252         (jm_PREREQ_EXCLUDE): New macro.
22253
22254 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22255
22256         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22257         tm to be declared.
22258
22259 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22260
22261         * lib/hash.c: Remove '2001' from copyright notice.
22262
22263 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22264
22265         * lib/full-write.h: New file.
22266         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
22267         * lib/full-write.c: Correct credits, as cccp.c no longer
22268         exists and anyway it was so heavily changed from the old cccp
22269         code as to be unrecognizable.  Include full-write.h.
22270         (full_write) Return size_t, with short writes meaning failure.
22271         All callers changed.  This fixes a bug with large buffers
22272         on 64-bit hosts.
22273         * lib/utime.c: Include full-write.h.
22274
22275 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22276
22277         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
22278         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
22279         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
22280         Include if available.
22281         (<xalloc.h>): Include
22282         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
22283         (verify): New macro.  Use it to verify that EXCLUDE macros do not
22284         collide with FNM macros.
22285         (struct patopts): New struct.
22286         (struct exclude): Use it, as exclude patterns now come with options.
22287         (new_exclude): Support above changes.
22288         (new_exclude, add_exclude_file):
22289         Initial size must now be a power of two to simplify overflow checking.
22290         (free_exclude, fnmatch_no_wildcards): New function.
22291         (excluded_filename): No longer requires options arg, as the options
22292         are determined by add_exclude.  Now returns bool, not int.
22293         (excluded_filename, add_exclude):
22294         Add support for the fancy new exclusion options.
22295         (add_exclude, add_exclude_file): Now takes int options arg.
22296         Check for arithmetic overflow when computing sizes.
22297         (add_exclude_file): xrealloc might modify errno, so don't
22298         realloc until after errno might be used.
22299
22300         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
22301         New macros.
22302         (free_exclude): New decl.
22303         (add_exclude, add_exclude_file): Now takes int options arg.
22304         (excluded_filename): No longer requires options arg, as the options
22305         are determined by add_exclude.  Now returns bool, not int.
22306
22307 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22308
22309         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
22310
22311 2001-08-27  Jim Meyering  <meyering@lucent.com>
22312
22313         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
22314
22315         * lib/version-etc.c (N_): Remove definition.
22316         Revert most of last change.
22317         Instead, simply don't mark the `Copyright...' string for translation.
22318         Based on advice from Paul Eggert.
22319
22320         * lib/strtoxmax.c: Tweak comment.
22321
22322 2001-08-26  Jim Meyering  <meyering@lucent.com>
22323
22324         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
22325
22326         * m4/xstrtoimax.m4: New file.
22327         * m4/xstrtoumax.m4: Add comments explaining why we
22328         AC_REPLACE_FUNCS(strtol).
22329
22330 2001-08-26  Jim Meyering  <meyering@lucent.com>
22331
22332         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
22333         of copyright with `%s' so translators don't get an untranslated
22334         message in 2002.
22335         (COPYRIGHT_YEAR): Define.
22336         (version_etc): Use fprintf rather than fputs.
22337         Suggestion from Ulrich Drepper.
22338
22339         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
22340
22341         * lib/strtoll.c: New file, from GNU libc.
22342         * lib/xstrtoimax.c: New file.
22343
22344         * lib/xstrtol.h: Add xstrtoimax.
22345         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
22346         * lib/strtoimax.c: New file.  Likewise, but first define
22347         STRTOUXMAX_SIGNED.
22348
22349         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
22350         ...
22351         * lib/strtoxmax.c: ... then renamed to this.
22352
22353 2001-08-18  Paul Eggert  <eggert@twinsun.com>
22354
22355         * m4/inttypes.m4: Add AC_PREREQ(2.13).
22356         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
22357         (jm_AC_TYPE_INTMAX_T): New macro.
22358         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
22359
22360         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
22361
22362         * m4/longlong.m4: Renamed from ulonglong.m4.
22363         * m4/inttypes.m4: Renamed from inttypes_h.m4.
22364         * m4/uintmax_t.m4: Removed.
22365
22366 2001-08-13  Paul Eggert  <eggert@twinsun.com>
22367
22368         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
22369         Port to Solaris 8, where 'sed' requires a space after the 'r'
22370         command, and where sh dislikes "$/".  Clean up the spacing a bit.
22371         Redirect output to $tmp just once.
22372
22373 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
22374
22375         * lib/addext.c (<errno.h>): Include.
22376         (errno): Declare if not defined.
22377         (addext): Work correctly when pathconf returns -1 and leaves
22378         errno alone because there is no limit.  Also, work even if
22379         pathconf returns a value greater than SIZE_MAX.
22380
22381 2001-08-12  Jim Meyering  <meyering@lucent.com>
22382
22383         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
22384         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
22385         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
22386         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
22387         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
22388         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
22389         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
22390         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
22391         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
22392         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
22393         utime.m4, utimes.m4, xstrtoumax.m4:
22394         Quote the first argument in each use of AC_DEFUN.
22395
22396 2001-08-12  Jim Meyering  <meyering@lucent.com>
22397
22398         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
22399         Simply `return getcwd (NULL, 0);'.
22400         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
22401         Use 1300 as initial value for length, not PATH_MAX.
22402
22403         * lib/pathmax.h: Clean up cpp syntax.
22404
22405 2001-08-12  Jim Meyering  <meyering@lucent.com>
22406
22407         * lib/gettimeofday.c: New file.
22408         * lib/gtod.h: New file.
22409         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
22410
22411 2001-08-05  Jim Meyering  <meyering@lucent.com>
22412
22413         * m4/jm-macros.m4: Require autoconf-2.52.
22414
22415 2001-08-04  Jim Meyering  <meyering@lucent.com>
22416
22417         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
22418         stmt, to get in sync with glibc.
22419
22420 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22421
22422         The following changes are from gettext 0.10.39 as maintained by
22423         Bruno Haible.
22424
22425         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
22426         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
22427         with inverted sense.  All uses changed.
22428
22429         * lib/mbswidth.c: Don't include <limits.h>.
22430         Include <stdlib.h> and <string.h> unconditionally.
22431         (iswcntrl, mbsinit, ISCNTRL): New macros.
22432         (mbsnwidth): Use K&R style function declarations.
22433         Don't bother checking for MB_LEN_MAX == 1, since the compiler
22434         can optimize it when MB_CUR_MAX == 1.
22435         The width of control characters is zero, not 1.
22436
22437 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22438
22439         The following changes are from gettext 0.10.39 as maintained by
22440         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
22441
22442         * m4/codeset.m4: Upgrade to serial AM1.
22443         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
22444         all uses changed.  Quote first arg of AC_DEFUN.
22445         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
22446
22447         * m4/iconv.m4: Upgrade to serial AM2.
22448         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
22449         Add --with-libconv-prefix.
22450         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
22451         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
22452         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
22453         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
22454         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
22455
22456         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
22457         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
22458         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
22459         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
22460         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
22461         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
22462         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
22463         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
22464         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
22465
22466         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
22467         string.h any more.
22468
22469         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
22470         not the default value.
22471
22472         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
22473         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
22474         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
22475         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
22476         Also check for iswcntrl, used for wcwidth fallback.
22477         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
22478         to Autoconf 2.13.
22479
22480 2001-08-03  Jim Meyering  <meyering@lucent.com>
22481
22482         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
22483         as it was in the original.  Reported by Paul Eggert.
22484
22485 2001-07-16  Jim Meyering  <meyering@lucent.com>
22486
22487         * m4/gettimeofday.m4: New file.
22488         Prompted by a report from Bernhard Baehr.
22489
22490 2001-07-15  Jim Meyering  <meyering@lucent.com>
22491
22492         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
22493         stuff. Now it's in ../Makefile.cfg.
22494
22495 2001-07-15  Jim Meyering  <meyering@lucent.com>
22496
22497         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
22498         (BUILT_SOURCES): Add unlocked-io.h.
22499         (io_functions): Define.
22500         (unlocked-io.h): New rule.
22501         (DISTCLEANFILES): Add unlocked-io.h.
22502         (all-local): Depend on unlocked-io.h, to ensure it is created.
22503
22504         * lib/unlocked-io.hin: New file
22505
22506         * lib/regex.c: Update from glibc.
22507
22508 2001-07-05  Jim Meyering  <meyering@lucent.com>
22509
22510         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
22511         recommendation.
22512         (libfetish_a_SOURCES): Put all .h files here instead.
22513         Remove a thus-exposed (better checks in automake) duplicate and
22514         two unnecessary .h files.
22515
22516 2001-07-04  Jim Meyering  <meyering@lucent.com>
22517
22518         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
22519         that generates jm-glibc-io.m4 so that it doesn't trigger any make
22520         distcheck failure.
22521
22522 2001-07-02  Jim Meyering  <meyering@lucent.com>
22523
22524         The following changes were prompted by suggestions from Bruno Haible.
22525
22526         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
22527         is now generated.
22528         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
22529         definition of EXTRA_DIST.
22530         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
22531         ensure that the generated file is created/updated whenever the list
22532         of $(unlocked_functions) is changed.
22533         (jm-glibc-io.m4): New rule.
22534         (unlocked-io.h): New rule -- currently unused.
22535
22536 2001-06-24  Jim Meyering  <meyering@lucent.com>
22537
22538         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
22539         unmatched right bracket, rather than kludging it with an extra,
22540         falsely-matching quote in a comment.  Patch by Akim Demaille.
22541
22542 2001-06-11  Jim Meyering  <meyering@lucent.com>
22543
22544         * lib/regex.c: Update from GNU libc.
22545
22546 2001-05-27  Jim Meyering  <meyering@lucent.com>
22547
22548         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
22549         Check for ut_type in struct utmp.
22550
22551 2001-05-27  Jim Meyering  <meyering@lucent.com>
22552
22553         * lib/readutmp.h (UT_TYPE): Define.
22554
22555 2001-05-24  Jim Meyering  <meyering@lucent.com>
22556
22557         * lib/argmatch.c: Include "quote.h".
22558         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
22559         quote function.  Reported by Göran Uddeborg.
22560
22561 2001-05-22  Jim Meyering  <meyering@lucent.com>
22562
22563         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
22564         now that we use the package-supplied version unconditionally.
22565         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
22566
22567 2001-05-21  Jim Meyering  <meyering@lucent.com>
22568
22569         * m4/regex.m4: Change a couple backticks to single quotes to avoid
22570         shell syntax errors.
22571
22572 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22573
22574         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
22575
22576 2001-05-20  Paul Eggert  <eggert@twinsun.com>
22577
22578         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
22579         Don't bother to check library strftime, since
22580         we'll be using our own my_strftime function anyway.
22581         Define my_strftime instead of strftime.
22582
22583 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
22584
22585         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
22586         which is not yet declared.
22587
22588 2001-05-15  Jim Meyering  <meyering@lucent.com>
22589
22590         * m4/regex.m4: Use proper quoting so brackets appear in the test
22591         program.
22592         Reported by, and with help from, Bruno Haible.
22593
22594 2001-05-13  Jim Meyering  <meyering@lucent.com>
22595
22596         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
22597         undefined.
22598
22599 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22600
22601         dirname code cleanup.  base_name now behaves more compatibly
22602         with POSIX basename when given file names that have trailing
22603         slashes, and similarly for dir_name.  Add new primitives
22604         base_len and dir_len.  Put the directory-name-related decls
22605         into dirname.h.
22606
22607         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
22608         * lib/backupfile.c (base_name): Likewise.
22609         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
22610         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
22611         * lib/makepath.c (strip_trailing_slashes): Likewise.
22612         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
22613         ISSLASH): Likewise.
22614         * lib/rename.c (strip_trailing_slashes): Likewise.
22615         * lib/same.c (base_name): Likewise.
22616         * lib/stripslash.c (ISSLASH): Likewise.
22617
22618         * lib/addext.c: Include <dirname.h> after size_t is defined.
22619         * lib/backupfile.c: Likewise.
22620
22621         * lib/addext.c (addext): Use base_len to trim redundant
22622         trailing slashes instead of doing it ourselves.
22623         But do not trim the last slash if it is not redundant.
22624
22625         * lib/backupfile.c (find_backup_file_name,
22626         max_backup_version): Use base_len instead of rolling it ourselves.
22627         Handle the case of "" and (on DOS) "C:" correctly.
22628
22629         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
22630         needed. Include <string.h>, <dirname.h>.
22631         (base_name): Allow file names ending in slashes, other than names
22632         that are all slashes.  In this case, return the basename followed
22633         by the slashes.  This is more general, and can be used in places
22634         where the original base_name purposely had an assertion failure.
22635         (base_len): New function.
22636
22637         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
22638         Do not include <assert.h>; no longer needed.
22639         Include xalloc.h.
22640         (memrchr): Remove decl.
22641         (dir_name_r): Remove.
22642         (dir_len): Renamed from dirlen.  All callers changed.
22643         Rewrite in terms of base_name, for simplicity and consistency.
22644         (dir_name): Never return NULL.  All callers changed.
22645         Do not include <stdlib.h> in test program; no longer needed.
22646         return 0; is fine for test program.
22647
22648         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
22649         New macros.
22650         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
22651
22652         * lib/path-concat.c (path_concat): Use base_len to compute
22653         base length, not strlen; this means we cannot rely on memcpy
22654         to null-terminate.
22655
22656         * lib/same.c (STREQ): Remove.
22657         (same_name): Handle the case where the basename ends in trailing '/'.
22658
22659         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
22660         a slash was stripped.  Do not strip the last slash after a
22661         file system prefix.
22662
22663 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22664
22665         * lib/Makefile.am (libfetish_a_SOURCES):
22666         Add strftime.c, since we now compile it on all hosts.
22667
22668         * lib/strftime.c (my_strftime):
22669         Define to nstrftime if emacs, but only if my_strftime is not defined.
22670         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
22671         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
22672         Add one more extra argument: a nanoseconds value.
22673         All uses changed.
22674         (ns): New macro.
22675         (my_strftime function): Add %N format.
22676         (emacs_strftimeu): Renamed from emacs_strftime,
22677         with extra ut argument.
22678
22679 2001-05-09  Paul Eggert  <eggert@twinsun.com>
22680
22681         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
22682
22683 2001-04-21  Jim Meyering  <meyering@lucent.com>
22684
22685         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
22686         doesn't interfere.
22687
22688 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22689
22690         * m4/ftruncate.m4: Check for chsize.
22691         Link with ftruncate.o unconditionally if ftruncate is missing.
22692         This was required when cross-compiling to i586-mingw32msvc.
22693
22694 2001-04-08  Jim Meyering  <meyering@lucent.com>
22695
22696         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
22697         recomputed; that's necessary when the offset spans a DST transition.
22698         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
22699
22700 2001-04-02  Jim Meyering  <meyering@lucent.com>
22701
22702         * lib/regex.h, regex.c: Update from GNU libc.
22703
22704 2001-03-24  Jim Meyering  <meyering@lucent.com>
22705
22706         * m4/jm-macros.m4: Require autoconf-2.49d.
22707
22708 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
22709
22710         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
22711
22712 2001-03-19  Paul Eggert  <eggert@twinsun.com>
22713
22714         * lib/version-etc.c (version_etc_copyright): Update to 2001.
22715
22716 2001-03-17  Jim Meyering  <meyering@lucent.com>
22717
22718         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
22719         now that the version in autoconf is equivalent.
22720         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
22721
22722         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
22723         Suggestion from Akim Demaille.
22724
22725         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
22726         (jm_PREREQ_TEMPNAME): New function.
22727
22728 2001-03-16  Paul Eggert  <eggert@twinsun.com>
22729
22730         * lib/tempname.c (uint64_t): Define to uintmax_t if
22731         not defined, and if UINT64_MAX is not defined.
22732         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
22733         Reported by John David Anglin.
22734
22735 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
22736
22737         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
22738         resolve alias if codeset is empty.
22739         * lib/config.charset (BeOS): Use wildcard syntax.
22740
22741 2001-03-13  Jim Meyering  <meyering@lucent.com>
22742
22743         * lib/path-concat.c (path_concat)
22744         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
22745         concatenating e.g., `C:' and `foo'.
22746         From Bruno Haible.
22747
22748 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22749
22750         * lib/localcharset.c (locale_charset): Don't use
22751         setlocale(LC_CTYPE,NULL). Don't return NULL.
22752         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
22753
22754 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22755
22756         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
22757         support for DOS/DJGPP.
22758
22759 2001-03-01  Paul Eggert  <eggert@twinsun.com>
22760
22761         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
22762         lacks mkstemp.  Compile our own tempname.c if we compile our own
22763         mkstemp.c, as mkstemp relies on tempname.
22764
22765 2001-03-01  Jim Meyering  <meyering@lucent.com>
22766
22767         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
22768         AH_VERBATIM really does output its argument verbatim.
22769
22770 2001-02-28  Paul Eggert  <eggert@twinsun.com>
22771
22772         * lib/Makefile.am (libfetish_a_SOURCES):
22773         Add dup-safer.c, fopen-safer.c.
22774         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
22775
22776         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
22777         * lib/unistd-safer.h: New files.
22778
22779 2001-02-25  Paul Eggert  <eggert@twinsun.com>
22780
22781         The mkstemp replacement is taken from glibc 2.2.2, with some
22782         portability fixes for use outside glibc, as follows:
22783
22784         * lib/tempname.c (struct_stat64): New macro.
22785         (direxists, __gen_tempname): Use it.
22786         This avoids a portability problem with Solaris 8.
22787
22788         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
22789         (<stddef.h>, <stdint.h>, <string.h>):
22790         Include only if STDC_HEADERS || _LIBC.
22791         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
22792         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
22793         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
22794         (__set_errno): Define this macro if <errno.h> doesn't.
22795         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
22796         Define these macros if <stdio.h> doesn't.
22797         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
22798         Define these macros if <sys/stat.h>
22799         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
22800         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
22801         __xstat64): Define if not _LIBC.
22802         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
22803         (__gen_tempname): Invoke gettimeofday only if
22804         HAVE_GETTIMEOFDAY || _LIBC;
22805         otherwise, fall back on plain "time".
22806         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
22807
22808         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
22809
22810         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
22811
22812 2001-02-18  Paul Eggert  <eggert@twinsun.com>
22813
22814         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
22815
22816 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22817
22818         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
22819         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
22820         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
22821         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22822
22823 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22824
22825         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
22826         Remove workaround macros for hosts that have mbrtowc but not
22827         mbstate_t, as we now insist on proper declarations for both
22828         before using mbrtowc.
22829
22830 2001-02-17  Jim Meyering  <meyering@lucent.com>
22831
22832         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
22833         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
22834         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
22835         UnixWare 7.1.1.
22836
22837         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
22838         rather than AC_CACHE_VAL.
22839
22840 2001-02-17  Jim Meyering  <meyering@lucent.com>
22841
22842         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
22843         around included file name.
22844
22845         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
22846
22847         * lib/strftime.c: Update from GNU libc (the only changes were to
22848         comments).
22849
22850 2001-02-17  Jim Meyering  <meyering@lucent.com>
22851
22852         * lib/regex.c: Update from libc.
22853
22854 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
22855
22856         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
22857         clash.
22858
22859 2001-02-16  Paul Eggert  <eggert@twinsun.com>
22860
22861         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
22862         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
22863         Reported by Mark Hounschell via Paul Eggert.
22864
22865 2001-02-07  Jim Meyering  <meyering@lucent.com>
22866
22867         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
22868
22869 2001-02-05  Jim Meyering  <meyering@lucent.com>
22870
22871         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
22872         it includes the patch required for `large file' support with at least
22873         HP-UX's 10.20 /bin/cc.
22874
22875 2001-02-03  Jim Meyering  <meyering@lucent.com>
22876
22877         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
22878         AS_IF, now that it works once again (mysteriously).
22879         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22880
22881 2001-01-30  Jim Meyering  <meyering@lucent.com>
22882
22883         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
22884         * m4/chown.m4: Rename conftestchown to conftest.chown.
22885         * m4/rename.m4: s/conftestdir/conftest.d1/ and
22886         s/conftestdir2/conftest.d2/.
22887         * m4/utimes.m4: s/conftestdata/conftest.data/
22888         Inspired by Pavel Roskin's change in autoconf.
22889
22890 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
22891
22892         * lib/config.charset: Update for FreeBSD 4.2.
22893
22894 2001-01-27  Jim Meyering  <meyering@lucent.com>
22895
22896         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
22897         a use of AS_IF.
22898         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22899
22900 2001-01-26  Jim Meyering  <meyering@lucent.com>
22901
22902         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
22903         quotearg.c includes it.
22904
22905 2001-01-26  Jim Meyering  <meyering@lucent.com>
22906
22907         * lib/quotearg.c: Include stddef.h.
22908         * lib/quote.c: Include stddef.h.
22909         Reported by Axel Kittenberger.
22910
22911         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
22912         line in double quotes so that it evokes a better diagnostic.
22913         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
22914         Reported by Axel Kittenberger.
22915
22916 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
22917
22918         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
22919         as if it was a `charset'.
22920
22921 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22922
22923         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
22924         has const.
22925
22926 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22927
22928         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
22929         to avoid a warning.  Add back 'const' to inptr.
22930
22931 2001-01-20  Jim Meyering  <meyering@lucent.com>
22932
22933         Be sure that headers are checked before used in code compiled
22934         for the type checks.
22935         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
22936         In place of that, invoke jm_CHECK_ALL_TYPES.
22937         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
22938         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
22939         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
22940         The check for ssize_t was mistakenly run before the test for unistd.h.
22941
22942         The configure-time check for stdbool.h was missing.
22943         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
22944         (jm_PREREQ_HASH): New function.
22945
22946 2001-01-17  Jim Meyering  <meyering@lucent.com>
22947
22948         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
22949         for autoconf-2.49c.
22950         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
22951
22952 2001-01-16  Jim Meyering  <meyering@lucent.com>
22953
22954         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
22955         From Bruno Haible.
22956
22957 2001-01-14  Jim Meyering  <meyering@lucent.com>
22958
22959         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
22960         foo and bar.  Create conftestdir/ in the script, not in the C code.
22961         Remove directories in the script, not in the C code.
22962         Remove conftestdir{,2} before trying to create the directory.
22963         Make the entire configure script fail if the mkdir fails.
22964
22965 2001-01-14  Jim Meyering  <meyering@lucent.com>
22966
22967         * lib/rename.c: New file.  From Volker Borchert.
22968         Include stdlib.h, string.h or strings.h, and xalloc.h.
22969         Use strip_trailing_slashes rather than open-coding it.
22970
22971 2001-01-03  Paul Eggert  <eggert@twinsun.com>
22972
22973         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
22974
22975 2001-01-03  Jim Meyering  <meyering@lucent.com>
22976
22977         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
22978         of local `inptr' to avoid warning with some system declarations of
22979         iconv.
22980
22981 2001-01-02  Volker Borchert  <bt@teknon.de>
22982
22983         * m4/rename.m4: New file.
22984         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
22985
22986 2001-01-01  Jim Meyering  <meyering@lucent.com>
22987
22988         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
22989         even on systems with utmpx.h.  It's necessary for the declaration of
22990         utmp's ut_user member.  Reported by Andreas Jaeger.
22991
22992         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
22993         available. They are required for the declarations of getgrgid and
22994         getpwuid resp.
22995         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
22996         Reported by Andreas Jaeger.
22997
22998 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
22999
23000         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
23001         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
23002         so `make install' also works in VPATH builds.
23003
23004 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
23005
23006         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
23007         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
23008         can be used in subdirectories.
23009
23010 2000-12-29  Paul Eggert  <eggert@twinsun.com>
23011
23012         * lib/modechange.c: Do not assume that mode_t uses the
23013         traditional octal encoding.  E.g. "chmod 1 FOO" should set
23014         the other-execute bit of FOO even if S_IXOTH != 1.
23015
23016         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
23017         WOTH, XOTH, ALLM): New macros.
23018         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
23019          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
23020         Use them.
23021         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
23022         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
23023         (mode_compile):
23024         No need to use uintmax_t; unsigned long is long enough.
23025         Don't bother to get suffix since we don't use it.
23026
23027 2000-12-26  Jim Meyering  <meyering@lucent.com>
23028
23029         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
23030         better with autoheader.
23031
23032 2000-12-24  Jim Meyering  <meyering@lucent.com>
23033
23034         * lib/hash.c (is_prime): Return explicit boolean values.
23035         (hash_get_first): Return NULL to appease Irix5.6's 89.
23036         Reported by Nelson Beebe.
23037
23038 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
23039
23040         * lib/localcharset.c (locale_charset): Add support for Win32.
23041
23042 2000-12-18  Paul Eggert  <eggert@twinsun.com>
23043
23044         * lib/physmem.h, lib/physmem.c: New files.
23045
23046         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
23047         (noinst_HEADERS): Add physmem.h.
23048
23049         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
23050         't' for compatibility with Solaris 8 sort.
23051
23052 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
23053
23054         * lib/config.charset: Add support for BeOS.
23055
23056 2000-12-17  Jim Meyering  <meyering@lucent.com>
23057
23058         * m4/dos.m4 (jm_AC_DOS): New file and macro.
23059         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
23060
23061 2000-12-16  Jim Meyering  <meyering@lucent.com>
23062
23063         This bug had a serious impact on chown: `chown N:M FILE' (for integer
23064         N and M) would have treated it like `chown N:N FILE'.
23065
23066         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
23067
23068 2000-12-16  Jim Meyering  <meyering@lucent.com>
23069
23070         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23071         SHELLS_FILE to a file name that's useful on djgpp systems.
23072         Include stdlib.h.
23073         (ADDITIONAL_DEFAULT_SHELLS): Define.
23074         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23075         Based mostly on a patch from Prashant TR.
23076
23077 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23078
23079         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23080         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23081         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23082
23083 2000-12-08  Andreas Schwab  <schwab@suse.de>
23084
23085         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23086         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23087
23088 2000-12-07  Jim Meyering  <meyering@lucent.com>
23089
23090         * lib/stripslash.c (ISSLASH): Define.
23091         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23092         `/'.
23093         From Prashant TR.
23094
23095         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23096         (dir_name_r): Declare this function as static.
23097         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23098         manifest itself on a name containing a mix of slashes and
23099         backslashes.
23100         Make this function work with names starting with a DOS-style
23101         drive letter and colon prefix.
23102         (dir_name): Append `.' if necessary.
23103         Based mostly on patches from Prashant TR and Eli Zaretskii.
23104
23105         * lib/dirname.h (dir_name_r): Remove prototype.
23106
23107 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23108
23109         * m4/off_t-format.m4: Remove this file.
23110         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23111
23112 2000-12-06  Jim Meyering  <meyering@lucent.com>
23113
23114         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23115         replacement strtoull, we may well need the replacement strtoul, too.
23116         Check for declarations of strtoul and strtoull.
23117         Check for strtol.  Mainly as a cue to cause automake to include
23118         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23119         Check for limits.h -- strtol.c needs it.
23120
23121 2000-12-05  Jim Meyering  <meyering@lucent.com>
23122
23123         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23124
23125 2000-12-04  Jim Meyering  <meyering@lucent.com>
23126
23127         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23128         Also include memory.h, stdlib.h, unistd.h if appropriate.
23129         Reported by Andreas Jaeger (conflicting declaration of malloc).
23130
23131 2000-12-02  Jim Meyering  <meyering@lucent.com>
23132
23133         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23134         * m4/jm-macros.m4 (jm_MACROS): require it.
23135
23136 2000-12-02  Jim Meyering  <meyering@lucent.com>
23137
23138         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23139
23140 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23141
23142         * lib/memrchr.c: Include <config.h> before any system include file.
23143
23144 2000-11-30  Jim Meyering  <meyering@lucent.com>
23145
23146         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23147
23148 2000-11-30  Jim Meyering  <meyering@lucent.com>
23149
23150         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23151
23152 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23153
23154         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23155
23156 2000-11-26  Jim Meyering  <meyering@lucent.com>
23157
23158         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23159
23160 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23161
23162         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23163         size of (size_t) -1; it's not portable.
23164
23165 2000-11-17  Jim Meyering  <meyering@lucent.com>
23166
23167         * lib/strstr.c: Update from GNU libc.
23168
23169 2000-11-17  Akim Demaille  <akim@epita.fr>
23170
23171         * lib/obstack.h: Formatting changes.
23172         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
23173         prevent type checking.
23174         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23175         cast the value to (void *): assigning a `foo *' to a `void *'
23176         variable is valid.
23177         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23178
23179 2000-11-16  Jim Meyering  <meyering@lucent.com>
23180
23181         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
23182
23183 2000-11-11  Jim Meyering  <meyering@lucent.com>
23184
23185         * lib/error.c: Add a couple #includes, merging from GNU libc version.
23186
23187 2000-11-10  Jim Meyering  <meyering@lucent.com>
23188
23189         * lib/obstack.h: Update from GNU libc.
23190         * lib/obstack.c: Likewise.
23191
23192 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
23193
23194         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
23195
23196 2000-11-06  Paul Eggert  <eggert@twinsun.com>
23197
23198         * lib/getusershell.c (setusershell): Use rewind rather than
23199         fseek/fseeko, to avoid configuration hassles with fseeko.
23200         Don't bother opening SHELLS_FILE if shellstream is NULL;
23201         it's not necessary.
23202
23203 2000-11-05  Jim Meyering  <meyering@lucent.com>
23204
23205         * lib/makepath.h (make_dir): Declare.
23206         * lib/makepath.c (make_dir): Remove `static' attribute.
23207         Tweak a comment.
23208
23209 2000-11-04  Jim Meyering  <meyering@lucent.com>
23210
23211         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
23212
23213 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
23214
23215         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
23216         last one in a bucket, advance to the next bucket.
23217
23218 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
23219
23220         * lib/fnmatch.c: Do not comment out all the code if we are using
23221         the GNU C library, because in some cases we are replacing buggy
23222         code in the GNU C library itself.
23223
23224 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
23225
23226         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
23227         (regex_compile): Catch bogus \(\1\).
23228
23229 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23230
23231         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
23232         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
23233         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
23234
23235 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23236
23237         * lib/error.h, getline.h, modechange.h:
23238         Remove "2000" from Copyright line, as the file hasn't been
23239         changed this year other than in the copyright notice.
23240
23241         * lib/xalloc.h: Add "2000" to Copyright line, as this file
23242         was changed this year.
23243
23244 2000-10-29  Jim Meyering  <meyering@lucent.com>
23245
23246         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
23247         renaming.
23248         * m4/ls-mntd-fs.m4: Likewise
23249
23250 2000-10-29  Jim Meyering  <meyering@lucent.com>
23251
23252         * lib/xstat.in: Fix grammar in comment.
23253
23254 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
23255
23256         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
23257         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
23258         doesn't define __restrict_arr.
23259
23260 2000-10-28  Jim Meyering  <meyering@lucent.com>
23261
23262         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
23263         (jm_PREREQ_MEMCHR): New function.
23264
23265 2000-10-28  Jim Meyering  <meyering@lucent.com>
23266
23267         * lib/memchr.c: Update from libc.
23268         Adjust for portability:
23269         [HAVE_STDLIB_H]: Include stdlib.h.
23270         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
23271         Undef __memchr, too.
23272         [!weak_alias]: Define __memchr to memchr.
23273
23274         * lib/regex.c: Update from libc.
23275         * lib/regex.h: Likewise.
23276         * lib/getopt1.c: Likewise.
23277         * lib/memcmp.c: Likewise.
23278
23279         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
23280         Avoid using fseek, when possible -- it's broken by design.
23281         Patch by Ulrich Drepper.
23282
23283 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
23284
23285         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
23286         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
23287         Giving in to popular pressure to shut up the compiler with casts.
23288
23289 2000-10-26  Jim Meyering  <meyering@lucent.com>
23290
23291         * lib/strftime.c: Update from libc.
23292
23293 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
23294
23295         * regex.c: More `unsigned char' -> `re_char' changes.
23296         Also change several `int' into `re_wchar_t'.
23297         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
23298         (PUSH_FAILURE_POINTER): Don't cast any more.
23299         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
23300         We want GCC to complain, since this piece of code makes
23301         re_match non-reentrant, which *should* be fixed.
23302         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
23303         (EXTEND_BUFFER): Use RETALLOC.
23304         (SET_LIST_BIT): Don't cast.
23305         (re_wchar_t): New type.
23306         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
23307         that those two functions will always properly return.
23308         (IMMEDIATE_QUIT_CHECK): Cast to void.
23309         (analyse_first): Use recursion rather than an explicit stack.
23310         (re_compile_fastmap): Can't fail anymore.
23311         (re_search_2): Don't check re_compile_fastmap for failure.
23312         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
23313         Now also sets the new value (passed in a new argument).
23314         (re_match_2_internal): Use it.
23315         Also, use a new var `reg' of type size_t when looping through regs
23316         rather than reuse the inappropriate `mcnt'.
23317
23318 2000-10-25  Jim Meyering  <meyering@lucent.com>
23319
23320         * lib/obstack.c: Update from libc.
23321
23322 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
23323
23324         * regex.c (regex_compile): Change the way of handling a range from
23325         a char less than 256 to a char not less than 256.
23326
23327 2000-10-24  Andrew Innes  <andrewi@gnu.org>
23328
23329         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
23330         NT-Emacs only.
23331         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
23332         so that re_search functions only quit when callers expect them to.
23333
23334 2000-10-23  Jim Meyering  <meyering@lucent.com>
23335
23336         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
23337         wrong.  That set_locale call must not have any side effects.
23338         From Paul Eggert.
23339
23340 2000-10-22  Jim Meyering  <meyering@lucent.com>
23341
23342         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
23343         [CYCLIC]: Remove now-unused definition.
23344
23345         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
23346         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
23347         Suggestion from Ulrich Drepper.
23348
23349 2000-10-21  Jim Meyering  <meyering@lucent.com>
23350
23351         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
23352         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
23353         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
23354
23355 2000-10-21  Jim Meyering  <meyering@lucent.com>
23356
23357         * lib/dirname.c (memrchr): Declare if necessary.
23358         (dir_name): Remove the restriction that there be no
23359         trailing slashes.  Now, this code skips past them, effectively
23360         ignoring them.
23361         [TEST_DIRNAME] (main): New unit tests.
23362
23363         * lib/memrchr.c: New file from GNU libc.
23364         Undef __memrchr, too.
23365         [!weak_alias]: Define __memrchr to memrchr.
23366         Guard weak_alias use with `#ifdef weak_alias'.
23367
23368 2000-10-21  Jim Meyering  <meyering@lucent.com>
23369
23370         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
23371         (dir_name): Use dir_name_r.
23372         * lib/dirname.h (dir_name_r): Declare it.
23373
23374 2000-10-17  Jim Meyering  <meyering@lucent.com>
23375
23376         * lib/quote.h (PARAMS): Define and use.
23377         Reported by Akim Demaille.
23378
23379         * lib/getopt.c: Update from libc.
23380
23381 2000-10-16  Jim Meyering  <meyering@lucent.com>
23382
23383         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
23384         setlocale.
23385         From Jan Fedak.
23386
23387 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
23388
23389         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
23390
23391 2000-09-25  Jim Meyering  <meyering@lucent.com>
23392
23393         * lib/md5.h (rol): Define (from GnuPG).
23394
23395         * lib/sha.c: Give credit (GnuPG) where due.
23396         (M): Use rol rather than open-coding it.
23397         Add a FIXME comment.
23398
23399 2000-09-21  Jim Meyering  <meyering@lucent.com>
23400
23401         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
23402         Reported by Michael Stone.
23403
23404 2000-09-20  Jim Meyering  <meyering@lucent.com>
23405
23406         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
23407         (noinst_HEADERS): Add sha.h.
23408         Based on code from Scott G. Miller and from GnuPG.
23409
23410 2000-09-18  Jim Meyering  <meyering@lucent.com>
23411
23412         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
23413         LIBS. Otherwise, everyone ends up linking with -lelf for some
23414         configurations.
23415         Reported by Mike Stone.
23416
23417 2000-09-15  Jim Meyering  <meyering@lucent.com>
23418
23419         * lib/regex.c: Update from libc.
23420
23421 2000-09-10  Jim Meyering  <meyering@lucent.com>
23422
23423         * lib/getopt.c (_getopt_internal): Update from glibc.
23424
23425 2000-09-09  Jim Meyering  <meyering@lucent.com>
23426
23427         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
23428         think it should be used as a general replacement for isascii.
23429         * lib/fnmatch.c: Likewise.
23430         * lib/mbswidth.c: Likewise
23431         * lib/regex.c: Likewise.
23432
23433         Don't use atoi.
23434         * lib/userspec.c: Include sys/param.h and limits.h.
23435         Include xstrtol.h.
23436         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
23437         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
23438         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
23439         UID, GID.  Check range.
23440
23441 2000-09-06  Jim Meyering  <meyering@lucent.com>
23442
23443         * lib/getopt.c (_getopt_internal): Update from glibc.
23444
23445 2000-08-30  Jim Meyering  <meyering@lucent.com>
23446
23447         * lib/strftime.c: Merge in changes from GNU libc.
23448
23449 2000-08-26  Jim Meyering  <meyering@lucent.com>
23450
23451         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
23452         * m4/fpending.m4: New file.
23453
23454 2000-08-26  Jim Meyering  <meyering@lucent.com>
23455
23456         * lib/closeout.c: Include "__fpending.h".
23457         (close_stdout_status): Return right away if there's nothing to flush.
23458
23459         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
23460         * lib/__fpending.c: New file.
23461         * lib/__fpending.h: New file.
23462
23463 2000-08-20  Jim Meyering  <meyering@lucent.com>
23464
23465         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
23466         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
23467         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
23468
23469 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
23470
23471         Improve fileutils installation on systems where running
23472         programs (like install) can't be unlinked.
23473         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
23474         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
23475
23476 2000-08-07  Paul Eggert  <eggert@twinsun.com>
23477
23478         Standardize on "memory exhausted" instead of "Memory exhausted"
23479         or "virtual memory exhausted".
23480         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
23481         "virtual memory exhausted".
23482         * lib/same.c (same_name): Invoke xalloc_die instead of printing
23483         our own message.
23484         * lib/userspec.c (parse_user_spec): Likewise.
23485         * lib/bumpalloc.h: comment fix
23486         * lib/same.c, userspec.c: Include xalloc.h.
23487
23488         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
23489         not char *const and pointing to a constant array.
23490         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
23491         (xrealloc): Comment fix.
23492
23493         * lib/userspec.c (parse_user_spec):
23494         Don't translate a message until just before returning,
23495         to avoid unnecessary translation.
23496
23497 2000-08-07  Jim Meyering  <meyering@lucent.com>
23498
23499         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
23500         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
23501         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
23502         getgroups.c, gethostname.c, getopt.h, group-member.c,
23503         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
23504         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
23505         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
23506         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
23507         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
23508         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
23509         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
23510         yesno.c: Back out Copyright date changes for each file with no change
23511         this year.  This eases coordination with other programs using the same
23512         source code modules.  From Paul Eggert.
23513
23514 2000-08-06  Paul Eggert  <eggert@twinsun.com>
23515
23516         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
23517         not char, for compatibility with glibc 2.1.3 strftime.c.
23518
23519 2000-08-03  Greg McGary  <greg@mcgary.org>
23520
23521         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
23522         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
23523         (EXTEND_BUFFER): Use them.
23524
23525 2000-08-01  Jim Meyering  <meyering@lucent.com>
23526
23527         * lib/dirname.c (ISSLASH): Define.
23528         (BACKSLASH_IS_PATH_SEPARATOR): Define.
23529         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
23530         both `\' and `/' may be use as path separators.
23531         Based on a patch from Prashant TR.
23532
23533 2000-07-31  Paul Eggert  <eggert@twinsun.com>
23534
23535         * lib/quotearg.c (quotearg_n_options): Don't make the initial
23536         slot vector a constant, since it might get modified.
23537
23538 2000-07-31  Jim Meyering  <meyering@lucent.com>
23539
23540         * lib/xmalloc.c: Use `virtual memory exhausted', not
23541         `Memory exhausted'.
23542         * lib/obstack.c (print_and_abort): Likewise.
23543
23544 2000-07-30  Paul Eggert  <eggert@twinsun.com>
23545
23546         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
23547         buffer, so that the caller can always quote one small
23548         component of a "memory exhausted" message in slot 0.
23549         From a suggestion by Jim Meyering.
23550
23551 2000-07-30  Jim Meyering  <meyering@lucent.com>
23552
23553         * lib/makepath.c (make_path): Quote the other instance, too.
23554
23555         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
23556         (STATIC_BUF_SIZE): Define.
23557         (quotearg_n_options): Use only statically allocated storage when
23558         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
23559         than STATIC_BUF_SIZE.
23560
23561 2000-07-29  Jim Meyering  <meyering@lucent.com>
23562
23563         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
23564         * lib/dirname.c (dir_name): Likewise.
23565
23566         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
23567         `/'.
23568
23569         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
23570         (dir_name): Assert that there are no trailing slashes.
23571
23572 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
23573
23574         * lib/mbswidth.h (mbswidth): Add a flags argument.
23575         (mbswidth): New declaration.
23576         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
23577         * lib/mbswidth.c (mbswidth): Add a flags argument.
23578         (mbsnwidth): New function.
23579
23580 2000-07-24  Jim Meyering  <meyering@lucent.com>
23581
23582         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
23583
23584 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23585
23586         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
23587
23588 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23589
23590         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
23591         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
23592         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
23593         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
23594         invoke multibyte primitives.
23595
23596 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23597
23598         * lib/quotearg.c:
23599         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
23600         so that mbstate_t is always defined.
23601
23602         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
23603         be 1 in at least one GCC installation, and this configuration
23604         error is likely to be common.  Ignoring MB_LEN_MAX hurts
23605         performance on hosts that have mbrtowc but have only unibyte
23606         locales, but I assume these hosts are rare.
23607
23608 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23609
23610         * lib/mbswidth.c (_XOPEN_SOURCE):
23611         Don't define; this causes problems on Solaris 7.
23612         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
23613
23614 2000-07-23  Jim Meyering  <meyering@lucent.com>
23615
23616         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
23617         too: getgrgid, getpwuid, getuid.
23618
23619 2000-07-23  Jim Meyering  <meyering@lucent.com>
23620
23621         * lib/basename.c (base_name): Add an assertion.
23622
23623 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
23624
23625         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
23626         shadow its mbsinit function.
23627
23628 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23629
23630         * lib/mbswidth.h: New file.
23631         * lib/mbswidth.c: New file.
23632         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
23633         (noinst_HEADERS): Add mbswidth.h.
23634
23635 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23636
23637         * lib/config.charset: Add support for FreeBSD. Improve support for
23638         HP-UX and IRIX 6.
23639
23640 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
23641
23642         * m4/mbswidth.m4: New file.
23643         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
23644
23645 2000-07-15  Jim Meyering  <meyering@lucent.com>
23646
23647         * lib/makepath.c: Include quote.h.
23648         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
23649         corresponding argument in a `quote (...)' call.
23650         Give better diagnostics.
23651
23652         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
23653         (noinst_HEADERS): Add quote.h.
23654
23655         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
23656         from tar's src/misc.c.
23657         * lib/quote.h: New file.  Prototypes for same.
23658
23659 2000-07-14  Paul Eggert  <eggert@twinsun.com>
23660
23661         From a suggestion by Bruno Haible.
23662         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
23663         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
23664         to decide whether to define the BeOS workaround macro;
23665         this adjusts to the change to AC_MBSTATE_T.
23666
23667 2000-07-14  Jim Meyering  <meyering@lucent.com>
23668
23669         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
23670         jm_AC_TYPE_UINTMAX_T.
23671
23672 2000-07-13  Paul Eggert  <eggert@twinsun.com>
23673
23674         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
23675
23676         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
23677         quotearg_buffer_restyled): Add support for
23678         clocale_quoting_style.  Undo previous change to
23679         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
23680         and "{RIGHT QUOTATION MARK}" msgids.
23681
23682 2000-07-10  Paul Eggert  <eggert@twinsun.com>
23683
23684         From a suggestion by Bruno Haible.
23685         * m4/mbstate_t.m4 (AC_MBSTATE_T):
23686         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
23687         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
23688         and mbstate_t, to a single-part test that simply defines mbstate_t.
23689         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
23690         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
23691
23692 2000-07-10  Jim Meyering  <meyering@lucent.com>
23693
23694         * m4/strerror_r.m4: Mirror the correction made in autoconf.
23695
23696         * m4/gnu-source.m4: Output to confdefs.h directly.
23697         Suggestion from Akim Demaille.
23698
23699 2000-07-09  Paul Eggert  <eggert@twinsun.com>
23700
23701         The old behavior of quoting `like this' doesn't look good with
23702         newer, ISO-style fonts.  See:
23703         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
23704
23705         Instead, quote "like this" by default.  Let the translator
23706         tailor the locale-specific quoting behavior by providing
23707         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
23708
23709         * lib/quotearg.c (N_): New macro.
23710         (gettext_default): New function.
23711         (quotearg_buffer_restyled): Use
23712         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
23713         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
23714
23715 2000-07-09  Jim Meyering  <meyering@lucent.com>
23716
23717         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
23718         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
23719
23720         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
23721         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
23722
23723 2000-07-09  Jim Meyering  <meyering@lucent.com>
23724
23725         * lib/Most files: Update copyright dates to include 2000.
23726
23727 2000-07-08  Jim Meyering  <meyering@lucent.com>
23728
23729         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
23730         if not defined.
23731         (xgethostname): Remove now-unnecessary #ifdef.
23732         Move declaration of `err' into loop where it's used.
23733
23734 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23735         and Bruno Haible  <haible@clisp.cons.org>
23736
23737         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
23738         only if the test for an object-type mbstate_t fails.  This
23739         prevents us from mistakenly reporting that mbstate_t is a
23740         system object type after we "#define mbstate_t int" to work
23741         around its lack.
23742
23743 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23744         and Bruno Haible  <haible@clisp.cons.org>
23745
23746         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
23747
23748 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23749
23750         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
23751         to strerror_r.
23752         Include <ctype.h> for use of isalpha.
23753
23754 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23755
23756         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
23757         by allocating a larger buffer. Test the gethostname return value for
23758         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
23759         returns an error and ENAMETOOLONG isn't defined.
23760
23761 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23762
23763         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
23764         dimension.
23765
23766 2000-07-04  Jim Meyering  <meyering@lucent.com>
23767
23768         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
23769         of the deprecated AC_CHECKING.
23770
23771 2000-07-04  Jim Meyering  <meyering@lucent.com>
23772
23773         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
23774         Reported by Bruno Haible.
23775
23776 2000-07-04  Jim Meyering  <meyering@lucent.com>
23777
23778         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
23779         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
23780         lacks mbrtowc.
23781
23782 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23783
23784         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
23785         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
23786
23787 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23788         and Bruno Haible  <haible@clisp.cons.org>
23789
23790         * lib/quotearg.c (mbrtowc):
23791         Assign to *pwc, and return 1 only if result is nonzero.
23792         (iswprint): Use ISPRINT when substituting our own mbrtowc.
23793
23794 2000-07-03  Jim Meyering  <meyering@lucent.com>
23795
23796         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
23797
23798 2000-07-03  Jim Meyering  <meyering@lucent.com>
23799
23800         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
23801         This is necessary to get a definition of e.g., UTMP_FILE on
23802         HP-UX 10.20.
23803         From Bob Proulx.
23804
23805 2000-07-02  Jim Meyering  <meyering@lucent.com>
23806
23807         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
23808
23809         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
23810         AC_LIBOBJ(function_name).
23811         * m4/chown.m4: Likewise.
23812         * m4/fnmatch.m4: Likewise.
23813         * m4/ftruncate.m4: Likewise.
23814         * m4/getgroups.m4: Likewise.
23815         * m4/getline.m4: Likewise.
23816         * m4/group-member.m4: Likewise.
23817         * m4/jm-macros.m4: Likewise.
23818         * m4/lstat.m4: Likewise.
23819         * m4/malloc.m4: Likewise.
23820         * m4/memcmp.m4: Likewise.
23821         * m4/nanosleep.m4: Likewise.
23822         * m4/putenv.m4: Likewise.
23823         * m4/realloc.m4: Likewise.
23824         * m4/regex.m4: Likewise.
23825         * m4/stat.m4: Likewise.
23826         * m4/strftime.m4: Likewise.
23827
23828 2000-07-02  Jim Meyering  <meyering@lucent.com>
23829
23830         * lib/quotearg.c (mbstate_t): Don't define here.
23831
23832 2000-07-02  Jim Meyering  <meyering@lucent.com>
23833
23834         * lib/nanosleep.c (SIGCONT): Define if not already defined.
23835
23836 2000-07-01  Jim Meyering  <meyering@lucent.com>
23837
23838         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
23839
23840 2000-07-01  Jim Meyering  <meyering@lucent.com>
23841
23842         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
23843         problem.
23844
23845 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23846
23847         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
23848         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
23849
23850 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23851
23852         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
23853         per change in ../m4/ls-mntd-fs.m4.
23854         (read_filesystem_list): Ignore symbolic links.
23855
23856 2000-06-29  Jim Meyering  <meyering@lucent.com>
23857
23858         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
23859         for declaration of strcmp.
23860
23861         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
23862
23863         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
23864         Avoid warning by casting result to `char *' to remove `const'.
23865
23866 2000-06-28  Jim Meyering  <meyering@lucent.com>
23867
23868         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
23869         included by quotearg.c, for which we perform this test.  From
23870         Bruno Haible.
23871
23872 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23873
23874         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
23875         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
23876         <utmpx.h> exists, put readutmp.o into LIBOBJS.
23877
23878 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23879
23880         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
23881
23882 2000-06-26  Paul Eggert  <eggert@twinsun.com>
23883
23884         savedir now sets errno on failure and invokes xmalloc to get memory.
23885         Fix a couple of other minor bugs while we're at it.
23886
23887         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
23888         (NAMLEN): Remove macro.
23889         (malloc, realloc): Remove decls.
23890         (stpcpy): Likewise.
23891         ("xalloc.h"): Include.
23892         (NAME_SIZE_DEFAULT): New macro.
23893         (savedir): Use xmalloc / xrealloc to allocate memory.
23894         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
23895         Skip "" directory entries.
23896         Use strlen to calculate directory entry length, since the old method
23897         is rarely used these days and isn't worth supporting.
23898         Don't use a pointer after freeing it.
23899         Check for integer overflow when calculating allocation size.
23900         Use memcpy to copy entries, instead of stpcpy.
23901         Set errno properly when returning NULL.
23902         Check for readdir error.
23903
23904 2000-06-26  Jim Meyering  <meyering@lucent.com>
23905
23906         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
23907
23908 2000-06-25  Jim Meyering  <meyering@lucent.com>
23909
23910         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
23911         Linux header bug when _XOPEN_SOURCE is defined to 500.
23912
23913 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23914
23915         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
23916         deficiency.
23917
23918 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23919
23920         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
23921         Include xalloc.h.
23922         Don't include <stdlib.h>.  Don't declare malloc, realloc.
23923
23924 2000-06-24  Jim Meyering  <meyering@lucent.com>
23925
23926         * m4/strerror_r.m4: Revive this file -- to try out an experimental
23927         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
23928         for which strerror does return char*, but which lacks a conveniently
23929         accessible declaration of the function.  If the compile-test says
23930         strerror_r doesn't work, then resort to a `run'-test that works on
23931         BeOS and segfaults on DEC Unix.
23932
23933 2000-06-24  Jim Meyering  <meyering@lucent.com>
23934
23935         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
23936
23937 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23938
23939         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
23940         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
23941
23942 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23943
23944         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
23945         (mbrtowc, mbstate_t): Define substitutes if
23946         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
23947         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
23948         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
23949
23950 2000-06-23  Jim Meyering  <meyering@lucent.com>
23951
23952         * m4/afs.m4: Add missing AC_MSG_RESULT.
23953         Reported by Bruno Haible.
23954
23955         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
23956         Suggestion from Bruno Haible.
23957
23958 2000-06-23  Jim Meyering  <meyering@lucent.com>
23959
23960         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
23961
23962 2000-06-21  Jim Meyering  <meyering@lucent.com>
23963
23964         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
23965
23966 2000-06-21  Jim Meyering  <meyering@lucent.com>
23967
23968         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
23969         (noinst_HEADERS): Add getstr.h.
23970
23971         * lib/getline.c (getstr): Move into a separate file.
23972         * lib/getstr.c (getstr): New file, extracted from getline.c, with
23973         the following changes: new parameter, delim2; both delim[12]
23974         parameters have type `int', not `char'.  The latter would lose
23975         with 8-bit delimiters.
23976         * lib/getstr.h: New file.
23977
23978 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23979
23980         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
23981         than 1024, return a memory chunk of least possible size, instead
23982         of size PATH_MAX + 2. In the loop, increment the size proportionally.
23983         Use free/xmalloc instead of xrealloc to avoid copying for very long
23984         paths.
23985
23986 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23987
23988         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
23989         the empty string.
23990
23991 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23992
23993         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
23994         address, not strdup.  Include <stdlib.h> and don't declare free().
23995
23996 2000-06-19  Jim Meyering  <meyering@lucent.com>
23997
23998         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
23999
24000 2000-06-18  Jim Meyering  <meyering@lucent.com>
24001
24002         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
24003
24004         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
24005         `checking whether...' message to be consistent with that of the
24006         lstat test.
24007
24008 2000-06-18  Jim Meyering  <meyering@lucent.com>
24009
24010         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
24011         Besides, these days every porting target provides a mkdir function.
24012
24013         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
24014         needed. (this snippet comes from src/system.h).
24015
24016 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
24017
24018         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
24019
24020 2000-06-15  Paul Eggert  <eggert@twinsun.com>
24021
24022         * lib/human.c (adjust_value): New function.
24023         (human_readable_inexact): Apply rounding style even when
24024         printing approximate values.
24025
24026 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24027
24028         * lib/human.c (human_readable_inexact): Allow an input block
24029         size that is not a multiple of the output block size, and vice versa.
24030         Reported by Piergiorgio Sartor.
24031
24032 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24033
24034         * lib/getdate.y (get_date): Apply relative times after time
24035         zone indicator, not before.  Reported by Todd A. Jacobs.
24036
24037 2000-06-13  Jim Meyering  <meyering@lucent.com>
24038
24039         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
24040
24041         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
24042
24043 2000-06-12  Paul Eggert  <eggert@twinsun.com>
24044
24045         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
24046
24047 2000-06-12  Jim Meyering  <meyering@lucent.com>
24048
24049         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
24050         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
24051         optional argument.
24052         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
24053         the optional argument, `lib'.
24054
24055 2000-06-08  Jim Meyering  <meyering@lucent.com>
24056
24057         * m4/largefile.m4: Remove file (now that it's part of autoconf).
24058
24059 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24060
24061         Rewrite largefile configuration so that we don't need to run
24062         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
24063         AC_CANONICAL_HOST in configure.in -- jmm]
24064
24065         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
24066         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
24067         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
24068         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
24069         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
24070         All uses changed.
24071         Instead of inspecting the output of getconf, try to compile the
24072         test program without and with the macro definition.
24073         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24074         for getconf.  Instead, check for the needed flags by compiling
24075         test programs.
24076
24077 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24078
24079         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24080
24081 2000-06-04  Jim Meyering  <meyering@lucent.com>
24082
24083         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24084         SunOS 4.1.4 for which gid_t is an unsigned type.
24085
24086 2000-06-03  Jim Meyering  <meyering@lucent.com>
24087
24088         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24089         now that autoconf requires that.
24090
24091         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24092         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24093         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24094
24095 2000-06-03  Jim Meyering  <meyering@lucent.com>
24096
24097         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24098
24099 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24100
24101         * m4/glibc21.m4: New file.
24102         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24103
24104 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24105
24106         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24107         newer, don't install charset.alias.
24108         * lib/config.charset: Change the Linux/glibc rules so they become empty
24109         on glibc-2.1 or newer.
24110
24111 2000-06-02  Jim Meyering  <meyering@lucent.com>
24112
24113         * lib/mountlist.c: Back out last change.  Instead, do this...
24114         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24115         me_dummy member using the same `ignore'-testing code.
24116         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24117         fs_type strings.
24118         From Mark D. Roth.
24119
24120 2000-05-29  Jim Meyering  <meyering@lucent.com>
24121
24122         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24123         mounts with the `ignore' attribute.  Based on a patch from
24124         Mark D. Roth.
24125
24126 2000-05-28  Jim Meyering  <meyering@lucent.com>
24127
24128         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24129         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24130         * m4/stat.m4: Likewise.
24131         * m4/lstat.m4: Likewise.
24132         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24133
24134         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24135         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24136
24137 2000-05-26  Jim Meyering  <meyering@lucent.com>
24138
24139         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24140
24141 2000-05-24  Jim Meyering  <meyering@lucent.com>
24142
24143         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24144         autoconf requires that.
24145         * m4/lib-check.m4: Likewise.
24146         * m4/jm-macros.m4: Likewise.
24147         * m4/strftime.m4: Likewise.
24148
24149         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24150         AC_CHECK_DECLS, now that autoconf requires that.
24151
24152 2000-05-22  Jim Meyering  <meyering@lucent.com>
24153
24154         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24155         * m4/lstat.m4: Likewise.
24156
24157 2000-05-22  Jim Meyering  <meyering@lucent.com>
24158
24159         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24160
24161 2000-05-20  Jim Meyering  <meyering@lucent.com>
24162
24163         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
24164         (jm_PREREQ): Use it.
24165
24166 2000-05-18  Jim Meyering  <meyering@lucent.com>
24167
24168         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
24169         back, too, since it may have been modified by allocate_entry.
24170         (hash_delete): Rewrite to use neither the assignment operator
24171         nor the comma operator in an if-expression.
24172
24173 2000-05-15  Paul Eggert  <eggert@twinsun.com>
24174
24175         * lib/closeout.c:
24176         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
24177         Remove; no longer needed.
24178         "quotearg.h": Add include.
24179         (file_name): Do not bother to explicitly initialize to NULL; it's less
24180         efficient on some hosts.
24181         (close_stdout_status): Remove test as to whether stdout was already
24182         closed; it breaks for the case "echo x | sort >&-".
24183         Quote file name colons.
24184         Do not assume that _("write error") lacks format strings.
24185
24186 2000-05-15  Jim Meyering  <meyering@lucent.com>
24187
24188         * lib/version-etc.c (version_etc_copyright): Update the copyright
24189         string used in all --version output.
24190
24191 2000-05-14  Jim Meyering  <meyering@lucent.com>
24192
24193         * lib/closeout.c (close_stdout_set_file_name): New function.
24194         (close_stdout_status): Use new file-scoped global.
24195         Return right away if fstat says the stdout file descriptor is invalid.
24196         * lib/closeout.h (close_stdout_set_file_name): Declare.
24197
24198 2000-05-10  Jim Meyering  <meyering@lucent.com>
24199
24200         * lib/closeout.c [default_exit_status]: New file-scoped variable.
24201         (close_stdout_set_status): New function.
24202         * lib/closeout.h (close_stdout_set_status): Declare.
24203
24204 2000-05-09  Jim Meyering  <meyering@lucent.com>
24205
24206         * m4/gettext.m4: Rename this...
24207         * m4/libintl.m4: ...to this.
24208
24209 2000-05-08  Jim Meyering  <meyering@lucent.com>
24210
24211         * lib/long-options.c: Don't include closeout.h.
24212         (parse_long_options): Don't call close_stdout for --version.
24213
24214 2000-05-06  Paul Eggert  <eggert@twinsun.com>
24215
24216         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
24217         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
24218         2.1.3 bug.  This avoids a clash when files like regex.c define
24219         _GNU_SOURCE.
24220
24221 2000-05-06  Jim Meyering  <meyering@lucent.com>
24222
24223         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
24224         (AC_REPLACE_FUNCS): Add strnlen.
24225
24226         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
24227         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
24228
24229         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
24230         AC_SEARCH_LIBS call for nanosleep.
24231         (LIB_NANOSLEEP): Set and AC_SUBST.
24232
24233 2000-05-06  Jim Meyering  <meyering@lucent.com>
24234
24235         * lib/strnlen.c: Undefine __strnlen and strnlen.
24236         [!weak_alias]: Define __strnlen to strnlen.
24237
24238         * lib/atexit.c: New file, from libiberty.
24239
24240 2000-05-06  Jim Meyering  <meyering@lucent.com>
24241
24242         * lib/closeout.c (close_stdout_status): Also check for errors on the
24243         stderr stream.
24244
24245 2000-05-05  Jim Meyering  <meyering@lucent.com>
24246
24247         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
24248         AC_SEARCH_LIBS call for clock_gettime.
24249         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
24250
24251         * m4/search-libs.m4: Update from autoconf.
24252
24253         su doesn't work on Solaris 2.6.
24254         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
24255         <shadow.h>.  Reported by Dragos Harabor.
24256
24257 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
24258
24259         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
24260         memcpy instead of xmalloc, xrealloc, path_concat.
24261         (locale_charset): Treat empty environment variables as absent.
24262         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
24263
24264 2000-05-04  Jim Meyering  <meyering@lucent.com>
24265
24266         * lib/getopt.c: Update from glibc.
24267         * lib/obstack.c: Likewise.
24268         * lib/obstack.h: Likewise.
24269         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
24270         file
24271
24272         * lib/regex.h: Likewise.
24273         * lib/strndup.c: Likewise.
24274         * lib/strnlen.c: New file, from glibc.
24275
24276 2000-05-03  Jim Meyering  <meyering@lucent.com>
24277
24278         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
24279
24280 2000-05-02  Paul Eggert  <eggert@twinsun.com>
24281
24282         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
24283         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
24284         compile-time test, rather than inspecting host and OS, to
24285         decide whether to define _LARGEFILE_SOURCE.
24286
24287 2000-05-01  Jim Meyering  <meyering@lucent.com>
24288
24289         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
24290
24291         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
24292         Based on a patch from Bruno Haible.
24293
24294 2000-05-01  Jim Meyering  <meyering@lucent.com>
24295
24296         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
24297
24298 2000-04-29  Jim Meyering  <meyering@lucent.com>
24299
24300         * lib/path-concat.c: Declare strdup only if it's not defined.
24301         * lib/canon-host.c: Likewise.
24302
24303 2000-04-28  Jim Meyering  <meyering@lucent.com>
24304
24305         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
24306         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
24307         is included first, then limits.h is included by locale.h by libintl.h.
24308         From John David Anglin.
24309
24310 2000-04-25  Jim Meyering  <meyering@lucent.com>
24311
24312         * lib/makepath.c (S_IRWXUGO): Define.
24313         (make_path): Always perform explicit chmod if MODE specifies any
24314         of the `special' permission bits.  Prompted by a bug report against
24315         install from Mate Wierdl and Joost van Baal.
24316
24317 2000-04-18  Jim Meyering  <meyering@lucent.com>
24318
24319         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
24320         (jm_PREREQ): Use it.
24321
24322 2000-04-18  Jim Meyering  <meyering@lucent.com>
24323
24324         * lib/README: New file.
24325
24326         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
24327         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
24328
24329 2000-04-17  Jim Meyering  <meyering@lucent.com>
24330
24331         Get it right :-)
24332         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
24333         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
24334         Suggestion from Akim Demaille.
24335
24336 2000-04-17  Jim Meyering  <meyering@lucent.com>
24337
24338         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
24339         the definition of it to rpl_strftime also defined-away the system's
24340         declaration.
24341
24342 2000-04-15  Jim Meyering  <meyering@lucent.com>
24343
24344         Use `C' to denote so-called `contiguous' files, the same way
24345         that tar does.
24346         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
24347         (ftypelet): Use S_ISCTG.
24348         From Michael Deutschmann.
24349
24350 2000-04-14  Jim Meyering  <meyering@lucent.com>
24351
24352         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
24353         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
24354         clobbered.
24355
24356 2000-04-14  Jim Meyering  <meyering@lucent.com>
24357
24358         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
24359
24360 2000-04-13  Jim Meyering  <meyering@lucent.com>
24361
24362         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
24363         AH_VERBATIM to insert required #ifndef into config.h.in.
24364         Suggestion from Akim Demaille.
24365
24366 2000-04-12  Jim Meyering  <meyering@lucent.com>
24367
24368         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
24369         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
24370         Christian Krackowizer.
24371
24372         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
24373         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
24374         (AC_SYS_LARGEFILE): Require.
24375         (AM_C_PROTOTYPES): Require.
24376
24377 2000-04-08  Jim Meyering  <meyering@lucent.com>
24378
24379         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
24380         names don't conflict.  Reported by Eli Zaretskii.
24381
24382 2000-04-07  Jim Meyering  <meyering@lucent.com>
24383
24384         * lib/putenv.c: Move inclusion of errno.h so it follows that of
24385         sys/types.h, to work around system header problems on AIX 3.2.5.
24386         From Bruno Haible.
24387
24388 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
24389
24390         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
24391         bug.  Deal with the different error behavior of Irix iconv.
24392
24393 2000-04-05  Paul Eggert  <eggert@twinsun.com>
24394
24395         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
24396         IRIX if the installer said otherwise.
24397
24398 2000-04-05  Jim Meyering  <meyering@lucent.com>
24399
24400         Portability tweaks required for ultrix4.3.
24401         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
24402         (jm_CHECK_DECLS): Add getutent to the list of functions.
24403         (_jm_DECL_HEADERS): Add utmpx.h.
24404         From John David Anglin.
24405
24406         * m4/strftime.m4: Back out the 2000-04-02 change.
24407         Instead of that change, simply undefine putenv in the test program.
24408
24409 2000-04-05  Jim Meyering  <meyering@lucent.com>
24410
24411         Portability tweaks required for ultrix4.3.
24412         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
24413         getutent.
24414         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
24415         * lib/canon-host.c: Declare strdup.
24416         * lib/path-concat.c: Likewise.
24417         From John David Anglin.
24418
24419 2000-04-04  Jim Meyering  <meyering@lucent.com>
24420
24421         Be more DOS 8.3-friendly.
24422         * lib/ref-add.sin: Renamed from ref-add.sed.in.
24423         * lib/ref-del.sin: Renamed from ref-del.sed.in.
24424         * lib/Makefile.am: Reflect renaming.
24425         Reported by Eli Zaretskii.
24426
24427         Use a temporary file name that won't clash with `charset.alias'
24428         in the DOS 8.3 name space.
24429         * lib/Makefile.am (charset_tmp): Define.
24430         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
24431         (uninstall-local): Likewise.
24432         Reported by Eli Zaretskii.
24433
24434 2000-04-03  Jim Meyering  <meyering@lucent.com>
24435
24436         * m4/gettext.m4: Fix typo in comment.
24437
24438         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
24439         textutils/configure.in).  Suggestion from Paul Eggert.
24440         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
24441
24442 2000-04-02  Paul Eggert  <eggert@twinsun.com>
24443
24444         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
24445         variable in the shell rather than using putenv, which isn't
24446         portable.  This avoids the configure-time inter-test dependency
24447         on the potentially-renamed putenv function.
24448
24449 2000-03-30  Paul Eggert  <eggert@twinsun.com>
24450
24451         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
24452         before checking struct stat.st_blksize, so that
24453         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
24454
24455 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24456
24457         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
24458         since strftime.c uses HAVE_STRFTIME to decide whether to use
24459         the underlying strftime.
24460
24461 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24462
24463         * lib/time/strftime.c (my_strftime): Make sure we call the system
24464         strftime, not ourselves, when invoking the underlying strftime.
24465
24466 2000-03-24  Jim Meyering  <meyering@lucent.com>
24467
24468         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
24469         (charset_alias): Define.
24470         (install-exec-local): Factor out common code.
24471         (uninstall-local): Split lines longer than 80.
24472         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
24473         (SUFFIXES): Define.
24474         (.sed.in.sed): New rule.  Don't redirect directly to $@.
24475         (CLEANFILES): Add ref-add.sed and ref-del.sed.
24476
24477 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
24478
24479         * lib/config.charset: Output a line containing "Packages using this
24480         file".
24481         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
24482         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
24483         ref-del.sed): New rules.
24484
24485 2000-03-17  Jim Meyering  <meyering@lucent.com>
24486
24487         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
24488         Otherwise, include <strings.h>
24489
24490 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
24491
24492         * lib/unicodeio.c (utf8_wctomb): New function.
24493         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
24494         format instead of in UCS-4 with platform dependent endianness.
24495
24496 2000-03-10  Jim Meyering  <meyering@lucent.com>
24497
24498         * m4/lib-check.m4: Look for getspnam in -lgen, too.
24499         From Marco Franzen.
24500
24501 2000-03-07  Paul Eggert  <eggert@twinsun.com>
24502
24503         * lib/savedir.c (savedir): Work even if directory size is
24504         negative; this can happen with some screwy NFS configurations.
24505
24506 2000-03-06  Jim Meyering  <meyering@lucent.com>
24507
24508         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
24509         if it's NULL (because we ran out of memory).  From Bruno Haible.
24510
24511 2000-03-05  Jim Meyering  <meyering@lucent.com>
24512
24513         * lib/localcharset.c ("path-concat.h"): Include.
24514         (get_charset_aliases): Use path_concat instead of ANSI string
24515         concatenation.
24516
24517         * lib/unicodeio.h (PARAMS): Define.
24518         Use it to guard prototype.
24519
24520 2000-03-04  Jim Meyering  <meyering@lucent.com>
24521
24522         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
24523         for lib/localcharset.c.
24524
24525 2000-03-04  Jim Meyering  <meyering@lucent.com>
24526
24527         * lib/Makefile.am (install-exec-local): Create $(libdir) before
24528         installing into it.
24529         (uninstall-local): Uncomment this rule so `make distcheck' works
24530         once again.
24531
24532         * lib/unicodeio.c (<errno.h>): Include it.
24533         (errno): Declare if not defined.
24534
24535         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
24536
24537         * lib/config.charset: New version, incorporating remarks from a linux
24538         i18n mailing list.  From Bruno Haible.
24539
24540 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
24541
24542         * m4/codeset.m4: New file.
24543         * m4/iconv.m4: New file.
24544         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
24545
24546 2000-03-03  Jim Meyering  <meyering@lucent.com>
24547
24548         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
24549
24550 2000-03-02  Jim Meyering  <meyering@lucent.com>
24551
24552         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
24553         the messages come out on separate lines.
24554
24555         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
24556         rather than jm_CHECK_DECLARATIONS.
24557         * m4/decl.m4: Remove now-unused file.
24558
24559         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
24560         geteuid.
24561
24562 2000-03-02  Jim Meyering  <meyering@lucent.com>
24563
24564         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
24565
24566 2000-03-01  Jim Meyering  <meyering@lucent.com>
24567
24568         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
24569         * lib/unicodeio.c: Likewise.
24570
24571 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
24572
24573         * lib/config.charset: New file.
24574         * lib/localcharset.c: New file.
24575         * lib/unicodeio.h, lib/unicodeio.c: New files.
24576         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
24577         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
24578         (noinst_HEADERS): Add unicodeio.h.
24579         (all-local, install-exec-local, charset.alias): New targets.
24580
24581 2000-02-28  Paul Eggert  <eggert@twinsun.com>
24582
24583         * lib/quotearg.c (ALERT_CHAR): New macro.
24584         (quotearg_buffer_restyled): Use it.
24585
24586 2000-02-27  Jim Meyering  <meyering@lucent.com>
24587
24588         * m4/check-decl.m4: Add getenv to the list.
24589
24590 2000-02-27  Jim Meyering  <meyering@lucent.com>
24591
24592         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
24593         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
24594
24595         * lib/backupfile.c: Guard inclusion of stdlib.h with
24596         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
24597         Declare malloc if needed.
24598
24599         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
24600         `#ifndef HAVE_DECL..'
24601         now that autoconf always defines the HAVE_DECL_ symbols.
24602         * lib/human.c: Likewise.
24603         * lib/same.c: Likewise.
24604         * lib/strtoumax.c: Likewise.
24605
24606         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
24607         declaration check was not run.
24608         * lib/hash.c: Likewise.
24609         * lib/human.c: Likewise.
24610         * lib/same.c: Likewise.
24611         * lib/strtoumax.c: Likewise.
24612
24613         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
24614         `.', then first look up the entire `.'-containing string as a login
24615         name.
24616
24617 2000-02-23  Jim Meyering  <meyering@lucent.com>
24618
24619         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
24620         in place of my hack.
24621
24622 2000-02-18  Paul Eggert  <eggert@twinsun.com>
24623
24624         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
24625         (textint): New typedef.
24626         (parser_control): Member year changed from int to textint.
24627         All uses changed.
24628         (YYSTYPE): Removed; replaced by %union with int and textint members.
24629         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
24630         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
24631         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
24632         (tSNUMBER, tUNUMBER): Now of type <textintval>.
24633         (date, number, to_year): Use width of number in digits, not its value,
24634         to determine whether it's a 2-digit year, or a 2-digit time.
24635         (yylex): Store number of digits of numeric tokens.
24636         Reported by John Kendall.
24637
24638         (parser_control): Changed from struct parser_control to typedef (for
24639         consistency).  All uses changed.
24640
24641         (tID): Removed; not used.
24642         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
24643
24644 2000-02-14  Paul Eggert  <eggert@twinsun.com>
24645
24646         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
24647         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
24648
24649 2000-02-12  Jim Meyering  <meyering@lucent.com>
24650
24651         * lib/userspec.c (ISDIGIT): Define it.
24652         (isdigit): Remove definition.
24653         (is_number): Use ISDIGIT, not isdigit.
24654         <libintl.h>: Include.
24655         (_ and N_): Define.
24656         (parse_user_spec): Mark translatable strings.
24657
24658 2000-02-10  Jim Meyering  <meyering@lucent.com>
24659
24660         With these changes, nanosleep.[ch] are finally enough like the other
24661         lib/* replacement files to compile on a few more losing systems.
24662
24663         * lib/nanosleep.h: Don't include config.h.
24664         Remove prototype from declaration of nanosleep.
24665         (PARAMS): Remove now-unneeded definition.
24666         * lib/nanosleep.c: #undef nanosleep.
24667         (rpl_nanosleep): Rename from nanosleep.
24668
24669 2000-02-10  Jim Meyering  <meyering@lucent.com>
24670
24671         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
24672         gnu_nanosleep to rpl_nanosleep.
24673
24674 2000-02-09  Jim Meyering  <meyering@lucent.com>
24675
24676         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
24677         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
24678
24679 2000-02-08  Akim Demaille  <akim@epita.fr>
24680
24681         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
24682         `[' and `]' and remove uses of `changequote'.
24683         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
24684         (AC_SYS_LARGEFILE): Likewise.
24685         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
24686         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
24687         of changequote.
24688         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
24689         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
24690         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
24691         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
24692
24693 2000-02-05  Jim Meyering  <meyering@lucent.com>
24694
24695         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
24696         Remove explicit use of AC_HEADER_TIME.  It is required by
24697         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
24698         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
24699         in autoconf whereby the expansion of the latter ended up preceding
24700         the expansion of its prerequisite, AC_HEADER_TIME.
24701         Reported by Volker Borchert.
24702
24703 2000-02-03  Jim Meyering  <meyering@lucent.com>
24704
24705         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
24706
24707 2000-02-03  Jim Meyering  <meyering@lucent.com>
24708
24709         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
24710         rather than with `#if HAVE_UTMPNAME'.
24711
24712 2000-02-02  Jim Meyering  <meyering@lucent.com>
24713
24714         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
24715         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
24716         Reported by Eli Zaretskii.
24717
24718 2000-02-01  Jim Meyering  <meyering@lucent.com>
24719
24720         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
24721
24722 2000-01-31  Jim Meyering  <meyering@lucent.com>
24723
24724         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
24725         functions.  Add the time.h and sys/time.h headers along with the
24726         AC_REQUIRE'ment of AC_HEADER_TIME.
24727
24728 2000-01-31  Jim Meyering  <meyering@lucent.com>
24729
24730         * lib/nanosleep.h (nanosleep): Guard declaration with
24731         `#if ! HAVE_DECL_NANOSLEEP'.
24732         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
24733         the declaration in that vendor's sys/timers.h.
24734         Reported by Christian Krackowizer.
24735
24736         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
24737         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
24738         (ISPRINT): Likewise.
24739         Reported by Tom Tromey.
24740
24741 2000-01-30  Jim Meyering  <meyering@lucent.com>
24742
24743         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
24744
24745         * m4/prereq.m4 (utmp_includes): Define.
24746         Check for ut_user and ut_name members in both struct utmpx
24747         and struct utmp.
24748
24749 2000-01-30  Jim Meyering  <meyering@lucent.com>
24750
24751         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
24752         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
24753         header files where only utmpx.ut_user is declared.
24754
24755         * lib/readutmp.h (UT_USER): Define.
24756
24757 2000-01-29  Jim Meyering  <meyering@lucent.com>
24758
24759         * m4/lib-check.m4: New file containing library-related checks from
24760         fileutils and sh-utils (textutils had none).
24761
24762 2000-01-28  Jim Meyering  <meyering@lucent.com>
24763
24764         * m4/perl.m4: Change format of warning message to look more like that
24765         from the missing script.  Suggestion from François Pinard.
24766
24767 2000-01-25  Jim Meyering  <meyering@lucent.com>
24768
24769         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
24770         well as time.h in the compile check.
24771         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
24772         Fix typo in cross-compiling case: s/yes/no/.
24773
24774 2000-01-23  Jim Meyering  <meyering@lucent.com>
24775
24776         * m4/jm-macros.m4: Move df-related tests here from
24777         fileutils/configure.in
24778
24779         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
24780         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
24781
24782         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
24783         s/space/ac_fsusage_space/.
24784         (jm_FILE_SYSTEM_USAGE): Take two parameters.
24785
24786         * m4/ftruncate.m4: New file (derived from part of
24787         fileutils/configure.in).
24788         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
24789         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
24790
24791         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
24792         AC_SUBST these here, rather than just in sh-util/configure.in, so
24793         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
24794         all the same.
24795         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
24796         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
24797         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
24798         (AC_SUBST(POW_LIBM)): Likewise.
24799         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
24800
24801 2000-01-23  Jim Meyering  <meyering@lucent.com>
24802
24803         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
24804         obstack.c.
24805
24806 2000-01-22  Jim Meyering  <meyering@lucent.com>
24807
24808         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
24809
24810         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
24811
24812         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
24813         configure.in
24814         (AC_CHECK_HEADERS): Likewise for sh-utils.
24815         (AC_CHECK_HEADERS): Likewise for textutils.
24816         Merge the three lists of headers.
24817
24818         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
24819         from fileutils' configure.in.
24820
24821         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
24822         code. Moved tests into their own function (_jm_DECL_HEADERS) in
24823         check-decl.m4.
24824
24825         * m4/check-decl.m4: Use #if rather than #ifdef.
24826         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
24827         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
24828         (_jm_DECL_HEADERS): Define new function.
24829         (jm_CHECK_DECLARATIONS): Require it.
24830
24831 2000-01-22  Jim Meyering  <meyering@lucent.com>
24832
24833         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
24834         [! HAVE_DECL_STRTOULL]: Declare strtoull.
24835         Required for some AIX systems.  Reported by Christian Krackowizer.
24836         [TESTING] (main): New function.
24837
24838         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
24839         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
24840         letters.
24841
24842         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
24843         iswprint.
24844
24845         * lib/strverscmp.c (ISDIGIT): Define.
24846         (strverscmp): Use ISDIGIT, not isdigit.
24847
24848 2000-01-19  Jim Meyering  <meyering@lucent.com>
24849
24850         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
24851         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
24852         defines `struct timespec' in <sys/time.h>
24853
24854         * m4/c-bs-a.m4: Remove uses of changequote altogether.
24855         Thanks to Akim for explaining.
24856
24857 2000-01-17  Paul Eggert  <eggert@twinsun.com>
24858
24859         * lib/nanosleep.c (nanosleep):
24860         Don't use SA_INTERRUPT to decide whether to call sigaction, as
24861         POSIX.1 doesn't require SA_INTERRUPT and some systems
24862         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
24863         it's been part of POSIX.1 since day 1 (in 1988).
24864
24865 2000-01-17  Jim Meyering  <meyering@lucent.com>
24866
24867         * lib/interlock: Remove unused file.  Reported by François Pinard.
24868
24869 2000-01-16  Paul Eggert  <eggert@twinsun.com>
24870
24871         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
24872         alert, backslash, formfeed, and vertical tab unnecessarily in
24873         shell quoting style.
24874
24875 2000-01-16  Jim Meyering  <meyering@lucent.com>
24876
24877         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
24878         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
24879         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
24880         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
24881
24882 2000-01-16  Jim Meyering  <meyering@lucent.com>
24883
24884         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
24885         because the latter didn't work.
24886
24887 2000-01-15  Jim Meyering  <meyering@lucent.com>
24888
24889         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
24890         (AC_REPLACE_FUNCS): Add memcpy and memset.
24891         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
24892         Add strpbrk.
24893         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
24894
24895 2000-01-12  Jim Meyering  <meyering@lucent.com>
24896
24897         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
24898         (jm_PREREQ): Use it.
24899         (jm_PREREQ_READUTMP): New macro.
24900         (jm_PREREQ): Use it.
24901
24902 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24903
24904         Quote multibyte characters correctly.
24905         * m4/c-bs-a.m4: New file.
24906         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
24907         (jm_PREREQ): Use it.
24908
24909 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24910
24911         * m4/uintmax_t.m4: Port to autoconf 2.13.
24912
24913 2000-01-08  Jim Meyering  <meyering@ascend.com>
24914
24915         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
24916         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
24917
24918 2000-01-04  Jim Meyering  <meyering@ascend.com>
24919
24920         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
24921         jm_STRUCT_DIRENT_D_TYPE.
24922         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
24923         jm_STRUCT_DIRENT_D_INO.
24924         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
24925         jm_STRUCT_UTIMBUF.
24926         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
24927         renamings.
24928         * m4/utime.m4: Likewise.
24929
24930         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
24931         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
24932
24933 2000-01-03  Paul Eggert  <eggert@twinsun.com>
24934
24935         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
24936         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
24937
24938 2000-01-02  Jim Meyering  <meyering@ascend.com>
24939
24940         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
24941         remember if this is necessary.
24942
24943 1999-12-26  Jim Meyering  <meyering@ascend.com>
24944
24945         * m4/jm-macros.m4: Use it here.
24946         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
24947
24948 1999-12-23  Jim Meyering  <meyering@ascend.com>
24949
24950         * m4/jm-macros.m4: Check for clock_gettime (moved from
24951         fileutils/configure.in)
24952         Check for gettimeofday.
24953
24954 1999-12-20  Jim Meyering  <meyering@ascend.com>
24955
24956         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
24957         autoconf-2.14a-1999-12-20.
24958
24959 1999-12-19  Jim Meyering  <meyering@ascend.com>
24960
24961         * m4/lstat-slash.m4: New file.
24962         * m4/jm-macros.m4: Use the new macro:
24963         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24964
24965 1999-12-07  Jim Meyering  <meyering@ascend.com>
24966
24967         * m4/perl.m4: Require that File::Compare be available, too.
24968         Too many systems seem to lack it.
24969
24970         * m4/strftime.m4: Add checks for most of the cpp macros tested in
24971         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
24972
24973 1999-11-18  Paul Eggert  <eggert@twinsun.com>
24974
24975         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
24976         problem with the QNX 4.25 shell, which doesn't propagate exit
24977         status of failed commands inside shell assignments.
24978
24979 1999-11-17  Jim Meyering  <meyering@ascend.com>
24980
24981         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
24982
24983 1999-11-07  Jim Meyering  <meyering@ascend.com>
24984
24985         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
24986
24987 1999-11-06  Jim Meyering  <meyering@ascend.com>
24988
24989         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
24990         * m4/jm-macros.m4 (jm_MACROS): Use it here.
24991
24992 1999-11-05  Jim Meyering  <meyering@ascend.com>
24993
24994         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
24995         configure.in of textutils, fileutils, and sh-utils into this one
24996         (shared between those packages) file.
24997         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
24998         AC_STRUCT_ST_BLKSIZE.
24999
25000 1999-11-03  Jim Meyering  <meyering@ascend.com>
25001
25002         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
25003         of AC_CHECK_TYPE checks includes unistd.h.
25004         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
25005         Suggestion from Akim Demaille.
25006
25007 1999-10-30  Jim Meyering  <meyering@ascend.com>
25008
25009         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
25010         m4-quoted string.
25011         * m4/ls-mntd-fs.m4: Likewise.
25012         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
25013         * m4/jm-winsz1.m4: Likewise.
25014
25015         * m4/const.m4: Remove file, since the fix made it into the experimental
25016         version of autoconf.
25017         * m4/mktime.m4: Likewise.
25018
25019         * m4/check-type.m4: Remove file, now that the latest version of
25020         AC_CHECK_TYPE takes a third arg to specify additional #includes.
25021
25022         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
25023         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
25024         AC_CHECK_TYPE.
25025
25026 1999-10-04  Jim Meyering  <meyering@ascend.com>
25027
25028         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
25029
25030 1999-09-22  Paul Eggert  <eggert@twinsun.com>
25031
25032         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
25033         2.95.1 bug with HP-UX 10.20.
25034
25035 1999-09-17  Jim Meyering  <meyering@ascend.com>
25036
25037         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
25038         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
25039         due to missing strdup (against sh-utils-2.0).
25040
25041 1999-08-29  Jim Meyering  <meyering@ascend.com>
25042
25043         * m4/jm-macros.m4: Require jm_BISON.
25044         * m4/bison.m4: New file.
25045
25046 1999-08-17  Paul Eggert  <eggert@twinsun.com>
25047
25048         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
25049         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
25050
25051 1999-08-05  Jim Meyering  <meyering@ascend.com>
25052
25053         * m4/getline.m4: Rename test file from conftestdata to conftest.data
25054         to avoid conflicts with `conftest' on 8+3 filesystems.
25055         Suggestion from Eli Zaretskii.
25056
25057 1999-08-04  Jim Meyering  <meyering@ascend.com>
25058
25059         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
25060         fileutils and sh-utils (textutils's getline test was inadequate).
25061         (AM_FUNC_GETLINE): Run this test.
25062         (AC_CHECK_FUNCS): Check for getdelim.
25063         Reported by Bob Proulx.
25064
25065 1999-08-02  Jim Meyering  <meyering@ascend.com>
25066
25067         * m4/jm-macros.m4: Add a comment.
25068
25069 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25070
25071         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25072         <inttypes.h> defines strtoumax as a macro (and not as a
25073         function).
25074
25075 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25076
25077         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25078         that we can shift, multiply and divide unsigned long long
25079         values; Ultrix cc can't do it.
25080
25081 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25082
25083         * m4/mktime.m4: New file, which is a preview of what should appear
25084         in the next public autoconf release.
25085
25086 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25087
25088         * m4/lfs.m4: Remove this file.
25089         * m4/largefile.m4: New file.  It contains the old contents of
25090         lfs.m4, except that all names with prefix AC_LFS have been
25091         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25092         compatible with future autoconf versions.  Also, some minor m4
25093         quoting problems have been fixed.
25094
25095 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25096
25097         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25098         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25099         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25100         and simplify the shell code.
25101
25102 1999-08-01  Jim Meyering  <meyering@ascend.com>
25103
25104         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25105         m4.
25106
25107 1999-07-20  Jim Meyering  <meyering@ascend.com>
25108
25109         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25110
25111 1999-07-15  Jim Meyering  <meyering@ascend.com>
25112
25113         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25114
25115 1999-05-22  Jim Meyering  <meyering@ascend.com>
25116
25117         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25118
25119 1999-05-20  Jim Meyering  <meyering@ascend.com>
25120
25121         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25122         Add a colon after each `then' in case $4 is empty.
25123
25124 1999-05-16  Jim Meyering  <meyering@ascend.com>
25125
25126         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25127
25128 1999-05-10  Jim Meyering  <meyering@ascend.com>
25129
25130         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25131
25132         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25133         AC_FUNC_MKTIME.
25134
25135 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25136
25137         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25138
25139 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25140
25141         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25142         not CPPFLAGS, so that linking works correctly in IRIX.
25143
25144 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25145
25146         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25147
25148 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25149
25150         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25151         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25152         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25153         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25154         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25155
25156         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25157
25158 1999-04-20  Jim Meyering  <meyering@ascend.com>
25159
25160         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25161         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25162         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25163
25164 1999-04-18  Jim Meyering  <meyering@ascend.com>
25165
25166         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
25167         * m4/jm-macros.m4: Use it.
25168
25169 1999-04-06  Jim Meyering  <meyering@ascend.com>
25170
25171         * m4/strftime.m4: Remove test for %f.
25172
25173 1999-03-29  Jim Meyering  <meyering@ascend.com>
25174
25175         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
25176         superset of the AC_TYPE_* checks in the textutils, fileutils,
25177         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
25178         AC_TYPE_PID_T.
25179
25180 1999-03-28  Jim Meyering  <meyering@ascend.com>
25181
25182         * m4/jm-macros.m4: Define GNU_PACKAGE here.
25183         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
25184         replaced e.g., in the *.sh files of the sh-utils.
25185
25186 1999-03-20  Jim Meyering  <meyering@ascend.com>
25187
25188         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
25189         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
25190         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
25191
25192 1999-03-19  Jim Meyering  <meyering@ascend.com>
25193
25194         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
25195
25196 1999-03-12  Jim Meyering  <meyering@ascend.com>
25197
25198         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
25199
25200 1999-03-07  Jim Meyering  <meyering@ascend.com>
25201
25202         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
25203         declared.
25204
25205 1999-02-17  Jim Meyering  <meyering@ascend.com>
25206
25207         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
25208         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
25209
25210 1999-02-07  Jim Meyering  <meyering@ascend.com>
25211
25212         * m4/group-member.m4: New file -- extracted from sh-utils'
25213         configure.in.
25214
25215         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
25216         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
25217
25218 1999-02-06  Jim Meyering  <meyering@ascend.com>
25219
25220         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
25221         * m4/fnmatch.m4: Likewise.
25222         * m4/getgroups.m4: Likewise.
25223         * m4/lstat.m4: Likewise.
25224         * m4/malloc.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/chown.m4: Use `.$ac_objext', not `.o'.
25233         * m4/fnmatch.m4: Likewise.
25234         * m4/getgroups.m4: Likewise.
25235         * m4/getline.m4: Likewise.
25236         * m4/lstat.m4: Likewise.
25237         * m4/malloc.m4: Likewise.
25238         * m4/memcmp.m4: Likewise.
25239         * m4/putenv.m4: Likewise.
25240         * m4/realloc.m4: Likewise.
25241         * m4/regex.m4: Likewise.
25242         * m4/stat.m4: Likewise.
25243         * m4/strftime.m4: Likewise.
25244         Suggestion from Alain Magloire.
25245
25246         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
25247         an argument.
25248
25249         * m4/regex.m4: Add a run-time Test for proper operation of
25250         re_compile_pattern.
25251
25252 1999-01-31  Jim Meyering  <meyering@ascend.com>
25253
25254         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
25255
25256 1999-01-30  Jim Meyering  <meyering@ascend.com>
25257
25258         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
25259
25260         * m4/jm-mktime.m4: Make this a wrapper around the official
25261         AM_FUNC_MKTIME rather than my private copy, now that the official one
25262         is up to date.
25263         * m4/mktime.m4: Remove file.
25264
25265         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
25266         * m4/uptime.m4: Likewise.
25267         * m4/uintmax_t.m4: Likewise.
25268
25269 1999-01-28  Jim Meyering  <meyering@ascend.com>
25270
25271         * m4/jm-macros.m4: Use jm_AFS.
25272         * m4/afs.m4: New file (from fileutils' configure.in).
25273
25274         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
25275         * m4/chown.m4: Likewise.
25276         * m4/d-ino.m4: Likewise.
25277         * m4/d-type.m4: Likewise.
25278         * m4/fnmatch.m4: Likewise.
25279         * m4/getgroups.m4: Likewise.
25280         * m4/gettext.m4: Likewise.
25281         * m4/jm-mktime.m4: Likewise.
25282         * m4/jm-winsz2.m4: Likewise.
25283         * m4/lcmessage.m4: Likewise.
25284         * m4/ls-mntd-fs.m4: Likewise.
25285         * m4/malloc.m4: Likewise.
25286         * m4/memcmp.m4: Likewise.
25287         * m4/putenv.m4: Likewise.
25288         * m4/realloc.m4: Likewise.
25289         * m4/st_mtim.m4: Likewise.
25290         * m4/strftime.m4: Likewise.
25291
25292 1999-01-16  Jim Meyering  <meyering@ascend.com>
25293
25294         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
25295         (ARGMATCH_DIE_DECL): Define.
25296
25297 1999-01-12  Jim Meyering  <meyering@ascend.com>
25298
25299         * m4/Makefile.am.in: Rewrite to avoid using fmt.
25300         Reported by Lars Hecking.
25301
25302 1999-01-10  Jim Meyering  <meyering@ascend.com>
25303
25304         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
25305         gross kludge.
25306         * m4/inttypes_h.m4: Likewise.
25307         * m4/lstat.m4: Likewise.
25308         * m4/malloc.m4: Likewise.
25309         * m4/readdir.m4: Likewise.
25310         * m4/realloc.m4: Likewise.
25311         * m4/st_dm_mode.m4: Likewise.
25312         * m4/stat.m4: Likewise.
25313         * m4/utimbuf.m4: Likewise.
25314         * m4/utimes.m4: Likewise.
25315
25316         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
25317         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
25318         comments in config.h.in are meaningful.
25319
25320         * m4/jm-macros.m4: Require autoconf-2.13 here.
25321
25322         * m4/regex.m4: By default, don't use the included regex.c on systems
25323         with glibc 2.  Suggestion from Uli Drepper.
25324
25325 1999-01-02  Jim Meyering  <meyering@ascend.com>
25326
25327         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
25328
25329 1998-12-18  Jim Meyering  <meyering@ascend.com>
25330
25331         * m4/Makefile.am.in (Makefile.am): Simplify rule.
25332         Based on a suggestion from Lars Hecking.
25333
25334 1998-11-16  Paul Eggert  <eggert@twinsun.com>
25335
25336         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
25337
25338 1998-11-16  Jim Meyering  <meyering@ascend.com>
25339
25340         * m4/lfs.m4: Double-quote the `uname...` expression.
25341
25342 1998-11-14  Jim Meyering  <meyering@ascend.com>
25343
25344         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
25345         * m4/stat.m4: Likewise.
25346
25347 1998-11-03  Jim Meyering  <meyering@ascend.com>
25348
25349         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
25350         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
25351
25352 1998-10-18  Jim Meyering  <meyering@ascend.com>
25353
25354         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
25355
25356 1998-10-17  Jim Meyering  <meyering@ascend.com>
25357
25358         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
25359         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
25360         calls for those previously hard-coded headers.  Instead, take a new
25361         parameter.
25362         (jm_CHECK_DECLARATIONS): Reflect interface change.
25363         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
25364         (jm_CHECK_DECL_LOCALTIME_R): New macro.
25365
25366         * m4/mktime.m4: Test for spring-forward gap before long-running test.
25367
25368 1998-10-14  Jim Meyering  <meyering@ascend.com>
25369
25370         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
25371         instead of "TZ=America/Vancouver".  From Paul Eggert.
25372
25373 1998-10-11  Jim Meyering  <meyering@ascend.com>
25374
25375         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
25376         This adds a test for a recently added compatibility fix for mktime.c.
25377         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
25378
25379 1998-09-27  Jim Meyering  <meyering@ascend.com>
25380
25381         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
25382
25383         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
25384         ../configure.in, including a change from Gordon Matzigkeit to allow
25385         cross-compiling for the Hurd.
25386
25387         * m4/glibc.m4: New file/macro to test for the GNU C Library
25388         versions 1 and 2.  From Gordon Matzigkeit.
25389         Indent.
25390
25391 1998-09-21  Jim Meyering  <meyering@ascend.com>
25392
25393         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
25394
25395 1998-08-18  Paul Eggert  <eggert@twinsun.com>
25396
25397         Port nanosecond-resolution times to UnixWare 2.1.2 and
25398         pedantic Solaris 2.6.
25399
25400         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
25401         AC_STRUCT_ST_MTIM.
25402         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
25403         Generate name of ns member, instead of just 1 or undef.
25404         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
25405
25406 1998-08-15  Jim Meyering  <meyering@ascend.com>
25407
25408         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
25409         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
25410         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
25411         instead of jm_TYPE_SSIZE_T.
25412
25413 1998-08-12  Jim Meyering  <meyering@ascend.com>
25414
25415         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
25416
25417 1998-08-02  Jim Meyering  <meyering@ascend.com>
25418
25419         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
25420         in acconfig.h manually.
25421
25422 1998-07-31  Paul Eggert  <eggert@twinsun.com>
25423
25424         * m4/st_mtim.m4: New file.
25425
25426 1998-07-28  Jim Meyering  <meyering@ascend.com>
25427
25428         * m4/utimes.m4: Undef stat.
25429
25430 1998-07-25  Jim Meyering  <meyering@ascend.com>
25431
25432         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
25433         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
25434
25435 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
25436
25437         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
25438         uid and gid actually remain unchanged.
25439
25440 1998-07-07  Jim Meyering  <meyering@ascend.com>
25441
25442         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
25443
25444 1998-07-04  Jim Meyering  <meyering@ascend.com>
25445
25446         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
25447         to prove that this macro can be used in packages without regex.c.
25448
25449 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
25450
25451         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
25452         is to be used.
25453
25454 1998-07-03  Jim Meyering  <meyering@ascend.com>
25455
25456         * m4/gettext.m4: Add -lintl if it's found to be necessary.
25457
25458         * m4/gettext.m4: New file -- from gettext-0.10.35.
25459         * m4/lcmessage.m4: Likewise.
25460         * m4/progtest.m4: Likewise.
25461
25462         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
25463         * m4/jm-macros.m4: Require the new macro.
25464
25465 1998-06-29  Jim Meyering  <meyering@ascend.com>
25466
25467         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
25468         for the definition of NGROUPS (used in a system header included
25469         by sys/mount.h).
25470
25471 1998-06-28  Jim Meyering  <meyering@ascend.com>
25472
25473         * m4/ls-mntd-fs.m4: New file.
25474         * m4/fstypename.m4: New file.
25475
25476         * m4/jm-macros.m4: Require the new macro.
25477         * m4/jm-glibc-io.m4: New file.
25478
25479 1998-05-19  Jim Meyering  <meyering@ascend.com>
25480
25481         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
25482         * m4/lchown.m4: New file.
25483
25484         * m4/Makefile.am.in: New file.
25485         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
25486
25487 1998-05-14  Jim Meyering  <meyering@ascend.com>
25488
25489         * m4/Makefile.am (EXTRA_DIST): Add them.
25490         * m4/jm-macros.m4: New file.
25491         * m4/utimbuf.m4: New file.
25492
25493 1998-05-12  Jim Meyering  <meyering@ascend.com>
25494
25495         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
25496
25497 1998-05-11  Jim Meyering  <meyering@ascend.com>
25498
25499         * m4/isc-posix.m4: New file.
25500
25501 1998-05-10  Jim Meyering  <meyering@ascend.com>
25502
25503         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
25504
25505 1998-05-09  Jim Meyering  <meyering@ascend.com>
25506
25507         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
25508         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
25509         with automake.
25510
25511         * m4/ssize_t.m4: New file.
25512         * m4/mktime.m4: Remove file -- the new automake has this now.
25513
25514 1998-04-26  Jim Meyering  <meyering@ascend.com>
25515
25516         * m4/assert.m4: New file.
25517         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
25518
25519 1998-04-05  Jim Meyering  <meyering@ascend.com>
25520
25521         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
25522         (jm_PREREQ): Use it here.
25523
25524 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
25525
25526         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
25527         in acconfig.h.
25528
25529 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
25530
25531         * m4/prereq.m4: New file.
25532         * m4/error.m4: New file.
25533         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
25534
25535 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
25536
25537         * m4/getline.m4: Don't set am_cv_func_working_getline before the
25538         cache-check for the same variable -- that defeated the purpose of
25539         the test; the test program was never run.  This was a problem only
25540         on systems with losing getline functions -- HP-UX 10.20 is one.
25541         Reported by Bjorn Helgaas.
25542
25543 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
25544
25545         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
25546
25547 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
25548
25549         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
25550
25551         * m4/const.m4: New file.  Use an initializer in this declaration
25552         typedef int charset[2]; const charset x;
25553         Reported by Bob Glickstein.
25554
25555 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
25556
25557         * m4/chown.m4: Fix reversed types on -1 args to chown.
25558         From Kaveh Ghazi.
25559
25560 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
25561
25562         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
25563         Add lseek and memchr.
25564
25565         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
25566         T.E.Dickey <dickey@clark.net> said that some older preprocessors
25567         have a 20-character limit on names.
25568
25569 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
25570
25571         * m4/inttypes_h.m4: New file.
25572         * m4/uintmax_t.m4: New file.
25573         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
25574
25575 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
25576   Free Software Foundation, Inc.
25577 Copying and distribution of this file, with or without modification,
25578 are permitted provided the copyright notice and this notice are preserved.