94e07e67612df725cd8c74976d7e6c2ca9d1b954
[gnulib.git] / ChangeLog
1 2009-09-16  Eric Blake  <ebb9@byu.net>
2
3         openat-tests: ensure unlinkat behaves like rmdir
4         * tests/test-rmdir.c (main): Factor guts...
5         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
6         * modules/rmdir-tests (Files): Ship new file.
7         * modules/openat-tests: New test.
8         * tests/test-unlinkat.c: Likewise.
9
10         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
11         * modules/rmdir-errno (Status, Notice): Now obsolete.
12
13         rmdir: work around cygwin 1.5.x and mingw bugs
14         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
15         * lib/rmdir.c (rmdir): Work around it.
16         * modules/rmdir (Status, Notice): No longer obsolete.
17         (Files): Add dos.m4.
18         (Depends-on): Add unistd.
19         (configure.ac): Set witnesses.
20         (License): Relax to LGPLv2+.
21         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
22         * modules/unistd (Makefile.am): Substitute witnesses.
23         * lib/unistd.in.h (rmdir): Declare replacement.
24         * doc/posix-functions/rmdir.texi (rmdir): Document this.
25         * modules/rmdir-tests: New tests.
26         * tests/test-rmdir.c: Likewise.
27
28 2009-09-15  Eric Blake  <ebb9@byu.net>
29
30         fchdir: improve use of replacement functions
31         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
32         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
33         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
34         REPLACE_CLOSEDIR.
35         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
36         * modules/sys_stat (Makefile.am): Substitute correct witness.
37         * modules/dirent (Makefile.am): Likewise.
38         * modules/unistd (Makefile.am): Likewise.
39         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
40         * lib/unistd.in.h (dup): Likewise.
41         * lib/sys_stat.in.h (fstat): Likewise.
42
43         maint: ignore gnulib-tool temp files
44         * .gitignore: Ignore files created during gnulib-tool --test.
45
46 2009-09-13  Jim Meyering  <meyering@redhat.com>
47
48         posixtm: don't reject a time that specify "60" as the number of seconds
49         * lib/posixtm.c (posixtime): The code to reject invalid dates
50         would also reject a time specified with the .60 suffix.
51         But POSIX allows that, in order to accommodate leap seconds.
52         So don't reject it.
53         (main): Adjust tests accordingly.
54         * modules/posixtm (Depends-on): Add stpcpy.
55
56 2009-09-11  Jim Meyering  <meyering@redhat.com>
57
58         announce-gen: include [$release_type] in emitted Subject:
59         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
60         e.g., [stable] in the emitted Subject: line.
61
62 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
63
64         Remove obsolete macros from several modules.
65         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
66         obsolete Autoconf macros with their modern counterparts.
67         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
68         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
69         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
70         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
71         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
72         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
73         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
74         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
75         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
76         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
77         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
78         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
79         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
80         * m4/sockets.m4 (gl_SOCKETS): Likewise.
81         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
82         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
83         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
84         * m4/time_r.m4 (gl_TIME_R): Likewise.
85         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
86         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
87         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
88
89         Fix copyright header in build-aux scripts.
90         * build-aux/git-version-gen: Fix copyright header to match GPLv3
91         recommendation.
92         * build-aux/ncftpput-ftp: Likewise.
93         * build-aux/update-copyright: Likewise.
94
95 2009-09-09  Eric Blake  <ebb9@byu.net>
96
97         test-link: allow Linux choice of errno
98         * tests/test-link.c (main): Relax test for alternate error.
99
100         strndup: fix improper m4 caching
101         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
102         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
103         (gl_PREREQ_STRNDUP): Delete.
104         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
105         * modules/string (Makefile.am): Substitute it.
106         * lib/string.in.h (strndup): Modernize prototype.
107
108         getcwd: port to mingw
109         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
110         different from the POSIX assumptions made throughout the getcwd
111         module; fortunately, the mingw getcwd does not need replacement.
112         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
113         * modules/getcwd-tests: New test.
114         * tests/test-getcwd.c: Likewise.
115
116         link: fix platform bugs
117         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
118         * lib/link.c (link): Work around them.  Fix related mingw bug.
119         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
120         * modules/unistd (Makefile.am): Substitute it.
121         * lib/unistd.in.h (link): Declare replacement.
122         * doc/posix-functions/link.texi (link): Document this.
123         * modules/link (Depends-on): Add strdup-posix, sys_stat.
124
125         test-link: consolidate into single C program, test more cases
126         * tests/test-link.sh: Delete.
127         * tests/test-link.c: Test more error conditions.  Exposes bugs on
128         at least Cygwin and Solaris.
129         * modules/link-tests (Files): Remove unused file.
130         (Depends-on): Add errno, sys_stat.
131         (Makefile.am): Simplify.
132
133 2009-09-08  Bruno Haible  <bruno@clisp.org>
134
135         Work around towlower, towupper bug on mingw.
136         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
137         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
138         * doc/posix-functions/towlower.texi: Mention the mingw bug.
139         * doc/posix-functions/towupper.texi: Likewise.
140         Reported by Eric Blake.
141
142 2009-09-08  Jim Meyering  <meyering@redhat.com>
143
144         build: don't try to run autoheader if we don't use it
145         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
146         is not used in configure.ac.
147
148 2009-09-08  Eric Blake  <ebb9@byu.net>
149
150         euidaccess: fix compilation error
151         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
152
153         rawmemchr: relax license
154         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
155         okay.
156         Reported by Jim Meyering.
157
158         mkfifoat: new module
159         * modules/mkfifoat: New file.
160         * lib/mkfifoat.c: Likewise.
161         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
162         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
163         * modules/sys_stat (Makefile.am): Use them.
164         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
165         * MODULES.html.sh (File system functions): Mention module.
166         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
167         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
168         * modules/mkfifoat-tests: New test.
169         * tests/test-mkfifoat.c: Likewise.
170
171         strchrnul: relax license
172         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
173         okay.
174         Reported by Jim Meyering.
175
176 2009-09-08  Eric Blake  <ebb9@byu.net>
177
178         fstatat: fix compilation on Solaris
179         * lib/fstatat.c (includes): Add fcntl.h.
180         Reported by Pádraig Brady.
181
182 2009-09-07  Eric Blake  <ebb9@byu.net>
183
184         rename: modernize replacement
185         * modules/rename (Depends-on): Add stdio.
186         (configure.ac): Declare witness.
187         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
188         stdio take care of replacement.
189         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
190         * modules/stdio (Makefile.am): Substitute them.
191         * lib/stdio.in.h (rename): Declare replacement.
192         * lib/rename.c (includes): Allow cross-compilation to non-windows
193         machines.
194         * doc/posix-functions/rename.texi (rename): Improve
195         documentation.
196
197         stdio: sort witness names
198         * modules/stdio (Makefile.am): Sort replacements.
199         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
200         * lib/stdio.in.h: Likewise.
201
202         getcwd: minor cleanups
203         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
204         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
205
206         openat: provide more convenience names
207         * modules/faccessat (configure.ac): Add C witness.
208         * lib/unistd.in.h (readlinkat): Fix typo.
209         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
210         convenience wrappers.
211         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
212         wrappers in syntax checks.
213
214 2009-09-06  Eric Blake  <ebb9@byu.net>
215
216         doc: fix comments in recent patches
217         * lib/faccessat.c: Mention correct function.
218         * lib/fchmodat.c: Likewise.
219         * lib/fchownat.c: Likewise.
220         * lib/symlinkat.c: Likewise.
221         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
222         constants.
223
224         faccessat, symlinkat: continue cleanup of previous patch
225         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
226         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
227         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
228         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
229         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
230         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
231         set.
232
233 2009-09-06  Bruno Haible  <bruno@clisp.org>
234
235         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
236         (fstatat): Declare if GNULIB_FSTATAT is set.
237         (mkdirat): Declare if GNULIB_MKDIRAT is set.
238         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
239         (unlinkat): Declare if GNULIB_UNLINKAT is set.
240         * modules/fcntl-h (Files): Remove m4/openat.m4.
241         * modules/sys_stat (Files): Remove m4/openat.m4.
242         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
243         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
244         * modules/unistd (Files): Remove m4/openat.m4.
245         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
246         GNULIB_OPENAT.
247         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
248         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
249         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
250         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
251         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
252         gl_OPENAT_DEFAULTS.
253         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
254         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
255         Don't require gl_OPENAT_DEFAULTS.
256         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
257         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
258         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
259         (gl_OPENAT_DEFAULTS): Remove macro.
260
261 2009-09-06  Bruno Haible  <bruno@clisp.org>
262
263         * modules/openat (configure.ac): Remove unneeded witness.
264
265 2009-09-06  Bruno Haible  <bruno@clisp.org>
266
267         Set errno to ENOSYS when a function is entirely unsupported.
268         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
269         EOPNOTSUPP.
270         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
271         * modules/chown (Depends-on): Remove errno.
272
273 2009-09-06  Bruno Haible  <bruno@clisp.org>
274
275         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
276
277 2009-09-06  Bruno Haible  <bruno@clisp.org>
278
279         * lib/sys_stat.in.h: Fix preprocessor command indentation.
280
281 2009-09-06  Ben Pfaff  <blp@gnu.org>
282             Bruno Haible  <bruno@clisp.org>
283
284         Work around a glibc bug in strtok_r.
285         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
286         Undefine if UNDEFINE_STRTOK_R is set.
287         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
288         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
289         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
290         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
291         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
292         UNDEFINE_STRTOK_R.
293         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
294
295 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
296
297         exclude: minor fix
298         * lib/exclude.c: Include wctype.h
299
300 2009-09-06  Akim Demaille  <demaille@gostai.com>
301
302         bootstrap: improve error message
303         * build-aux/bootstrap (find_tool): Upon failure, report the list
304         of candidates.
305         Honor the initial value of the envvar.
306
307 2009-09-05  Eric Blake  <ebb9@byu.net>
308
309         symlinkat: new module
310         * modules/symlinkat: New file.
311         * lib/symlinkat.c: Likewise.
312         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
313         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
314         * modules/unistd (Makefile.am): Use them.
315         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
316         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
317         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
318         * MODULES.html.sh (File system functions): Mention module.
319         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
320         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
321         * modules/symlinkat-tests: New test.
322         * tests/test-symlinkat.c: Likewise.
323
324         test-openat-safer: add more checks
325         * tests/test-openat-safer.c (main): Check more code paths.
326
327 2009-09-05  Jim Meyering  <meyering@redhat.com>
328
329         syntax-check: detect unnecessary inclusion of openat.h
330         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
331
332 2009-09-05  Bruno Haible  <bruno@clisp.org>
333
334         Support towlower, towupper.
335         * doc/posix-functions/towlower.texi: Mention module wctype.
336         * doc/posix-functions/towupper.texi: Likewise.
337         * lib/wctype.in.h (towlower, towupper): New functions.
338         * tests/test-wctype.c: Include stdio.h, stdlib.h.
339         (ASSERT): New macro.
340         (e): New variable.
341         (main): Test also towlower, towupper. Test WEOF argument.
342         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
343
344 2009-09-05  Bruno Haible  <bruno@clisp.org>
345
346         Fix conversion behaviour when the input is invalid.
347         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
348         mark occurring in first pass of indirect conversion.
349         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
350         input.
351         Found by clang's static analyzer.
352
353 2009-09-05  Bruno Haible  <bruno@clisp.org>
354
355         * tests/test-striconveh.c (main): Test indirect conversion on platforms
356         where direct conversion is possible.
357
358 2009-09-04  Eric Blake  <ebb9@byu.net>
359
360         openat: fail with ENOENT on empty name
361         * lib/openat-proc.c (openat_proc_name): Special-case the empty
362         buffer.
363
364         link-follow: fix logic bug in prior patch
365         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
366         reversed sense of yes and no in prior patch.  Avoid confusing
367         compilation failure with desired semantics.
368
369         link-follow: accomodate mingw and cross-compilation
370         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
371         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
372         cross-compilation results to -1, to make linkat easier to
373         implement when cross-compiling.  Trivially support mingw.
374         * modules/link-follow (configure.ac): Call new name.
375         * NEWS: Mention this.
376
377 2009-09-03  Eric Blake  <ebb9@byu.net>
378
379         faccessat: compile replacement
380         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
381         needed.
382
383         fts: fix compilation error
384         * lib/fts.c (includes): Re-add "openat.h", for
385         openat_needs_fchdir.
386
387         faccessat: new module
388         * modules/faccessat: New file.
389         * lib/faccessat.c: Likewise.
390         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
391         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
392         * modules/unistd (Makefile.am): Use it.
393         * lib/unistd.in.h (faccessat): Declare it.
394         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
395         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
396         * MODULES.html.sh (File system functions): Mention it.
397         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
398         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
399
400         euidaccess: prefer POSIX over non-standard implementation
401         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
402         * lib/euidaccess.c (euidaccess): Use it if available.
403
404         openat: make template easier to use
405         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
406         AT_FUNC_F2 to be undefined.
407         (VALIDATE_FLAG): New macro; use it to reject bad flags.
408         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
409         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
410         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
411         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
412         Likewise.
413         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
414         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
415         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
416         Likewise.
417
418         openat: declare in POSIX headers
419         * NEWS: Mention this.
420         * modules/openat (configure.ac): Declare witnesses.
421         (Depends-on): Add fcntl-h, sys_stat, unistd.
422         (Include): Mention correct headers.
423         * modules/fcntl-h (Depends-on): Add link-warning.
424         (Files): Add openat.m4.
425         (Makefile.am): Substitute witnesses.
426         * modules/sys_stat (Files, Makefile.am): Likewise.
427         * modules/unistd (Files, Makefile.am): Likewise.
428         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
429         (gl_OPENAT_DEFAULTS): New macro.
430         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
431         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
432         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
433         (SYS_STAT_H): Remove unused variable.
434         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
435         * lib/fcntl--.h (includes): Remove unneeded header.
436         * lib/openat-safer.c (includes): Likewise.
437         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
438         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
439         appropriate headers.
440         (__OPENAT_PREFIX): Delete.
441         * lib/fcntl.in.h (openat): Provide declaration.
442         (AT_FDCWD): Fix Solaris bug.
443         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
444         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
445         * lib/fchmodat.c (includes):  Adjust to find declaration.
446         * lib/fchownat.c (includes): Likewise.
447         * lib/mkdirat.c (includes): Likewise.
448         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
449         still visible.
450
451 2009-09-02  Eric Blake  <ebb9@byu.net>
452
453         errno: use consistently
454         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
455         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
456         * lib/canonicalize.c (ELOOP): Likewise.
457         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
458         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
459         * lib/lchown.c (EOPNOTSUPP): Likewise.
460         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
461         * lib/savewd.c (ESTALE): Likewise.
462         * lib/settime.c (ENOSYS): Likewise.
463         * lib/utimens.c (ENOSYS): Likewise.
464         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
465         * lib/chdir-safer.c (ELOOP): Likewise.
466         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
467         * modules/c-stack (Depends-on): Add errno.
468         * modules/canonicalize (Depends-on): Likewise.
469         * modules/chdir-safer (Depends-on): Likewise.
470         * modules/fdopendir (Depends-on): Likewise.
471         * modules/inet_ntop (Depends-on): Likewise.
472         * modules/inet_pton (Depends-on): Likewise.
473         * modules/lchown (Depends-on): Likewise.
474         * modules/openat (Depends-on): Likewise.
475         * modules/savewd (Depends-on): Likewise.
476         * modules/settime (Depends-on): Likewise.
477         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
478
479         fts: avoid leaking fds
480         * modules/fts (Depends-on): Add cloexec.
481         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
482         flag.
483
484         fts: make directory fds more robust
485         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
486         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
487
488         backupfile, chdir-long, fts, savedir: make safer
489         * lib/backupfile.c (includes): Use "dirent--.h", since
490         numbered_backup can write to stderr during readdir.
491         * lib/savedir.c (includes): Likewise.
492         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
493         emulation can write to stderr on failure.
494         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
495         * lib/getcwd.c: Document why opendir_safer is unused.
496         * lib/glob.c: Likewise.
497         * lib/scandir.c: Likewise.
498         * lib/openat-proc.c: Likewise, for open_safer.
499         * modules/backupfile (Depends-on): Add dirent-safer.
500         * modules/savedir (Depends-on): Likewise.
501         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
502         * modules/chdir-long (Depends-on): Add openat-safer.
503
504         openat-safer: new module
505         * modules/openat-safer: New file.
506         * lib/openat-safer.c: Likewise.
507         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
508         * lib/fcntl-safer.h (openat_safer): Declare.
509         * lib/fcntl--.h (openat): Override.
510         * MODULES.html.sh (File descriptor based I/O): Mention it.
511         * lib/openat.h: Add double-inclusion guards.
512         * lib/openat.c (includes): Only include "fcntl-safer.h", not
513         "fcntl--.h", so we can implement openat.
514         * modules/openat-safer-tests: New test.
515         * tests/test-openat-safer.c: New file.
516
517         dirent-safer: new module
518         * modules/dirent-safer: New file.
519         * lib/dirent--.h: Likewise.
520         * lib/dirent-safer.h: Likewise.
521         * lib/opendir-safer.c: Likewise.
522         * m4/dirent-safer.m4: Likewise.
523         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
524         * modules/dirent-safer-tests: New test.
525         * tests/test-dirent-safer.c: New file.
526         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
527
528         fdopendir: optimize on mingw
529         * lib/unistd.in.h (_gl_directory_name): New prototype.
530         * lib/fchdir.c (_gl_directory_name): Implement it.
531         (fchdir): Use it to simplify implementation.
532         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
533         fchdir, when available, to avoid calling [f]chdir().
534
535         fdopendir: split into its own module
536         * lib/openat.c (fdopendir): Move...
537         * lib/fdopendir.c: ...into new file.
538         * modules/fdopendir: New module.
539         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
540         * modules/openat (Depends-on): Add fdopendir.
541         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
542         fdopendir here.
543         * modules/savedir (Depends-on): Only need fdopendir, not full
544         openat.
545         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
546         * lib/openat.h (fdopendir): Drop prototype.
547         * lib/dirent.in.h (fdopendir): Provide prototype.
548         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
549         * modules/dirent (Makefile.am): Substitute them.
550         * MODULES.html.sh (File system functions): Mention it.
551         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
552         * modules/fdopendir-tests: New file.
553         * tests/test-fdopendir.c: Likewise.
554
555         fchdir: use more consistent macro convention
556         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
557         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
558         REPLACE_FCHDIR, rather than relying on config.h macros.
559         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
560         inside a single make-time REPLACE_FCHDIR block, rather than using
561         the config.h FCHDIR_REPLACEMENT.
562         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
563         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
564         Manage fstat replacement.
565         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
566         REPLACE_FCHDIR.
567         * modules/sys_stat (Files): Add m4/unistd_h.m4.
568         (Makefile.am): Substitute REPLACE_FCHDIR.
569         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
570         FCHDIR_REPLACEMENT.
571         * lib/dup-safer.c (dup_safer): Likewise.
572         * lib/dup2.c (rpl_dup2): Likewise.
573         * lib/dup3.c (rpl_dup3): Likewise.
574         * lib/open.c (rpl_open): Likewise.
575
576         fchdir: simplify error handling, and support dup3
577         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
578         stdbool, malloc-posix, realloc-posix.
579         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
580         (ensure_dirs_slot): Return false on allocation failure.
581         (rpl_dup2): Delete.
582         (_gl_register_dup): New function.
583         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
584         (_gl_register_fd): Close fd on allocation failure.
585         * lib/fcntl.in.h (_gl_register_fd): Update signature.
586         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
587         prototype.
588         (rpl_dup2_fchdir): Delete prototype.
589         * lib/open.c (open): Update caller.
590         * lib/dup2.c (dup2): Track fchdir metadata.
591         * lib/dup3.c (dup3): Likewise.
592         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
593         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
594
595 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
596
597         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
598         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
599         don't pass arguments to AC_OUTPUT.
600
601 2009-09-02  Bruno Haible  <bruno@clisp.org>
602
603         * modules/mkdtemp (License): Relicense under LGPLv2+.
604         Reported by Paolo Bonzini.
605
606 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
607
608         Replace uses of obsolete autoconf macros in Jim's modules.
609         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
610         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
611         can evoke a warning from autoconf when run with -Wobsolete
612         enabled.  They were declared obsolete for good reasons (see
613         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
614         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
615         should not continue using the deprecated macros.
616         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
617         obsolete Autoconf macros with modern counterparts.
618         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
619         * m4/dos.m4 (gl_AC_DOS): Likewise.
620         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
621         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
622         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
623         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
624         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
625         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
626         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
627         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
628         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
629         Likewise.
630         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
631         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
632         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
633         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
634         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
635         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
636
637 2009-09-01  Eric Blake  <ebb9@byu.net>
638
639         fchdir: fix off-by-one bug in previous patch
640         * lib/fchdir.c (rpl_fstat): Use correct bounds.
641         (_gl_unregister_fd): Delete useless if.
642
643 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
644
645         maint.mk: sort the list of syntax-check rules
646         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
647         easier to get a sense of progress when the rules are run sequentially
648         and take a long time.
649
650 2009-09-01  Simon Josefsson  <simon@josefsson.org>
651
652         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
653         * modules/netinet_in: Likewise.
654         * modules/sys_file: Likewise.
655         * modules/sys_ioctl: Likewise.
656         * modules/sys_select: Likewise.
657         * modules/sys_socket: Likewise.
658         * modules/sys_stat: Likewise.
659         * modules/sys_time: Likewise.
660         * modules/sys_times: Likewise.
661         * modules/sys_utsname: Likewise.
662         * modules/sys_wait: Likewise.
663
664 2009-09-01  Jim Meyering  <meyering@redhat.com>
665
666         fts: help ensure that return values are not ignored
667         * lib/fts_.h (__GNUC_PREREQ): Define.
668         (__attribute_warn_unused_result__): Define.
669         (fts_children, fts_close, fts_open, fts_read): Declare with
670         __attribute_warn_unused_result__.
671
672         fts: fts_close now fails also when closing a dir file descriptor fails
673         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
674         and propagate to caller, along with errno.
675
676         announce-gen: correct formatting in --help output
677         * build-aux/announce-gen (usage): Move the one-line description in
678         --help output "up", to where it belongs, just after Usage:.
679
680 2009-08-31  Eric Blake  <ebb9@byu.net>
681
682         fchdir: port to mingw
683         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
684         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
685         opened, then use a substitute.
686         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
687         replacement.
688         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
689         (_gl_register_fd): No need to check stat if open already filters
690         all directories.
691         (fchdir): Fix error condition to match POSIX.
692         * modules/fchdir (Depends-on): Add sys_stat.
693         * doc/posix-functions/open.texi (open): Document the limitation.
694         * modules/fchdir-tests: New file.
695         * tests/test-fchdir.c: Likewise.
696
697         canonicalize: allow cross-testing from cygwin to mingw
698         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
699         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
700         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
701         Likewise.
702         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
703         target does not support symlinks.
704         * tests/test-canonicalize-lgpl.sh: Likewise.
705
706         chown: avoid compilation warning on mingw
707         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
708         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
709         mingw.
710         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
711         * modules/chown (Depends-on): Add errno.
712
713 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
714
715         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
716         command.
717
718 2009-08-31  Jim Meyering  <meyering@redhat.com>
719
720         canonicalize: remove useless initialization
721         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
722         initialization of local, "end".
723
724 2009-08-30  Bruno Haible  <bruno@clisp.org>
725
726         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
727         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
728         ENOSYS.
729
730 2009-08-30  Bruno Haible  <bruno@clisp.org>
731
732         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
733         /usr/xpg4/bin/tr when it exists.
734         * tests/test-pipe-filter-gi1.sh: Likewise.
735
736 2009-08-30  Bruno Haible  <bruno@clisp.org>
737
738         Work around deficient /usr/bin/id program on Solaris.
739         * tests/test-file-has-acl.sh (ID): New variable.
740         * tests/test-set-mode-acl.sh (ID): Likewise.
741         * tests/test-copy-acl.sh (ID): Likewise.
742         * tests/test-copy-file.sh (ID): Likewise.
743
744 2009-08-30  Bruno Haible  <bruno@clisp.org>
745
746         New module 'xstriconveh'.
747         * lib/xstriconveh.h: New file.
748         * lib/xstriconveh.c: New file.
749         * modules/xstriconveh: New file.
750
751 2009-08-30  Bruno Haible  <bruno@clisp.org>
752
753         Make it easier to use mem_cd_iconveh.
754         * lib/striconveh.h (iconveh_t): New type.
755         (iconveh_open, iconveh_close): New declarations.
756         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
757         with a single 'const iconveh_t *' argument.
758         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
759         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
760         with a single 'const iconveh_t *' argument.
761         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
762         * tests/test-striconveh.c (main): Update.
763         * NEWS: Mention the change.
764
765 2009-08-30  Bruno Haible  <bruno@clisp.org>
766
767         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
768         problem.
769
770 2009-08-30  Bruno Haible  <bruno@clisp.org>
771
772         Work around iconv_open problem on Solaris.
773         * lib/iconv_open-solaris.gperf: New file.
774         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
775         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
776         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
777         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
778         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
779         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
780
781 2009-08-29  Jim Meyering  <meyering@redhat.com>
782
783         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
784         * top/maint.mk (cvs-check): Remove target; it was just an alias
785         to the better-named vc-diff-check.
786         (maintainer-distcheck): Remove rule.  It was used only from
787         the (alpha/beta/major) target, and all of its commands but one
788         were coreutils-specific.
789         (vc-dist): Remove rule.
790         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
791         Run vc-diff-check, not vc-dist.
792         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
793
794 2009-08-27  Bruno Haible  <bruno@clisp.org>
795
796         * tests/test-bitrotate.c (main): Remove test that uses a shift count
797         of 0.
798
799 2009-08-27  Bruno Haible  <bruno@clisp.org>
800
801         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
802         compilers.
803         * doc/func.texi: Document the SunPRO C bug.
804
805 2009-08-27  Bruno Haible  <bruno@clisp.org>
806
807         Fix link error on Solaris.
808         * tests/test-parse-duration.c (xstrdup): Remove function.
809
810 2009-08-26  Pádraig Brady  <P@draigbrady.com>
811
812         ignore-value: handle pointer types, too
813         * lib/ignore-value.h (__attribute__): Remove definition.
814         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
815         of a more concise and more-often effective "(void) i" statement.
816         (ignore_ptr): New function to suppress warnings from functions that
817         return pointers, and to make it explicit that one function doesn't
818         handle all cases.
819
820 2009-08-25  Bruno Haible  <bruno@clisp.org>
821
822         dup2: work around a Linux bug.
823         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
824         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
825         * doc/posix-functions/dup2.texi: Mention the Linux bug.
826         Reported by Simon Josefsson.
827
828 2009-08-25  Jim Meyering  <meyering@redhat.com>
829
830         libguestfs uses gnulib
831         * users.txt: Add libguestfs.
832
833 2009-08-24  Eric Blake  <ebb9@byu.net>
834
835         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
836         * lib/pipe2.c (includes): Add binary-io.h.
837         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
838
839 2009-08-24  Bruno Haible  <bruno@clisp.org>
840
841         Tolerate declared but missing accept4 syscall.
842         * lib/accept4.c (accept4): Invoke original accept4 function first, if
843         available.
844         * lib/sys_socket.in.h (accept4): If the function is already present,
845         override it.
846         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
847         * modules/accept4 (Makefile.am): Compile accept4.c always.
848         Reported by Paolo Bonzini and Eric Blake.
849
850 2009-08-23  Bruno Haible  <bruno@clisp.org>
851
852         New module 'accept4'.
853         * lib/sys_socket.in.h (accept4): New declaration.
854         * lib/accept4.c: New file.
855         * m4/accept4.m4: New file.
856         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
857         GNULIB_ACCEPT4, HAVE_ACCEPT4.
858         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
859         HAVE_ACCEPT4.
860         * modules/accept4: New file.
861         * doc/glibc-functions/accept4.texi: Mention the new module.
862
863 2009-08-24  Jim Meyering  <meyering@redhat.com>
864
865         progname: also set global program_invocation_name, when possible
866         Before this change, a libtool-enabled program that calls glibc's
867         error function would report the program name as
868         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
869         * modules/progname (configure.ac): Check for a declaration of
870         program_invocation_name.
871         * lib/progname.c:  Include <errno.h>.
872         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
873         Set program_invocation_name.
874
875 2009-08-23  Bruno Haible  <bruno@clisp.org>
876
877         * lib/dup3.c: Include <string.h>.
878
879 2009-08-23  Bruno Haible  <bruno@clisp.org>
880
881         * lib/dup3.c (dup3): Test only once whether the system actually exists.
882         * lib/pipe2.c (pipe2): Likewise.
883         Suggested by Eric Blake.
884
885 2009-08-23  Bruno Haible  <bruno@clisp.org>
886
887         Tolerate declared but missing dup3 syscall.
888         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
889         * lib/unistd.in.h (dup3): If the function is already present,
890         override it.
891         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
892         * modules/dup3 (Makefile.am): Compile dup3.c always.
893         Reported by Paolo Bonzini.
894
895 2009-08-23  Bruno Haible  <bruno@clisp.org>
896
897         Tolerate declared but missing pipe2 syscall.
898         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
899         available.
900         * lib/unistd.in.h (pipe2): If the function is already present,
901         override it.
902         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
903         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
904         Reported by Paolo Bonzini.
905
906 2009-08-23  Bruno Haible  <bruno@clisp.org>
907
908         * lib/pipe2.c (pipe2): Move #ifs inside function.
909
910 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
911
912         quotearg: document limitations of quote_these_too
913         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
914         those limitations are created.
915         * lib/quotearg.h (set_char_quoting): Document that digits and
916         letters that are special after backslash are not permitted.
917         (quotearg_char): Cross-reference set_char_quoting documentation.
918
919 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
920
921         quotearg: implement custom_quoting_style
922         * lib/quotearg.c: (struct quoting_options): Add left_quote and
923         right_quote fields.
924         (set_custom_quoting): New public function.
925         (quotearg_buffer_restyled): Add left_quote and right_quote
926         arguments, handle them very much like locale quoting, and update
927         all uses.
928         (quotearg_n_custom): New public function.
929         (quotearg_n_custom_mem): New public function.
930         (quotearg_custom): New public function.
931         (quotearg_custom_mem): New public function.
932         * lib/quotearg.h: Prototype and document new public functions.
933         (enum quoting_style): For escape_quoting_style and
934         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
935         ignored even though they're otherwise like c_quoting_style.
936         Add custom_quoting_style member and document with comparison to
937         clocale_quoting_style.
938         * tests/test-quotearg.c (custom_quotes): New array.
939         (custom_results): New array.
940         (main): Extend to test custom quoting.
941
942 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
943
944         quotearg: fix right quote escaping when it's in quote_these_too
945         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
946         quote, be sure to prepend only one backslash.
947         * tests/test-quotearg.c (use_quote_double_quotes): New function.
948         (main): Test it.
949
950 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
951
952         quotearg-tests: test escaping of embedded locale quotes
953         * tests/test-quotearg.c (struct result_strings): Add member for
954         new input.
955         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
956         (inputs): Add new input.
957         (results_g): Add expected results.
958         (flag_results): Likewise.
959         (locale_results): Likewise.
960         (compare_strings): Check those.
961
962 2009-08-23  Bruno Haible  <bruno@clisp.org>
963
964         Tests for module 'dup3'.
965         * modules/dup3-tests: New file.
966         * tests/test-dup3.c: New file.
967
968         New module 'dup3'.
969         * lib/unistd.in.h (dup3): New declaration.
970         * lib/dup3.c: New file.
971         * m4/dup3.m4: New file.
972         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
973         HAVE_DUP3.
974         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
975         * modules/dup3: New file.
976         * doc/glibc-functions/dup3.texi: Mention the new module.
977
978 2009-08-23  Bruno Haible  <bruno@clisp.org>
979
980         Tweak the dup2 test.
981         * tests/test-dup2.c (main): Create the test file empty. Verify that an
982         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
983         the test file is still empty. Fix argument order of lseek.
984
985 2009-08-23  Bruno Haible  <bruno@clisp.org>
986
987         Avoid test link errors when the modules getopt-gnu, gettext are used.
988         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
989         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
990
991 2009-08-23  Bruno Haible  <bruno@clisp.org>
992
993         Fix getdtablesize() on mingw.
994         * lib/getdtablesize.c (getdtablesize): Implement differently.
995         * lib/unistd.in.h (getdtablesize): Improve comment.
996
997 2009-08-23  Bruno Haible  <bruno@clisp.org>
998
999         New module 'mkostemp'.
1000         Based on Ulrich Drepper's 2007-08-10 change in glibc.
1001         * lib/stdlib.in.h (mksotemp): New declaration.
1002         * lib/mkostemp.c: New file, from glibc with modifications.
1003         * lib/tempname.h (GT_FILE): Remove outdated comment.
1004         (gen_tempname): Add flags argument.
1005         * lib/tempname.c (__GT_BIGFILE): Remove macro.
1006         (__GT_FILE): Map to 1.
1007         (small_open, large_open): Remove macros.
1008         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
1009         * lib/mkstemp.c (mkstemp): Update.
1010         * lib/mkdtemp.c (mkdtemp): Likewise.
1011         * m4/mkostemp.m4: New file.
1012         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
1013         HAVE_MKOSTEMP.
1014         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
1015         HAVE_MKOSTEMP.
1016         * modules/mkostemp: New file, based on modules/mkstemp.
1017         * doc/glibc-functions/mkostemp.texi: Mention the new module.
1018         * NEWS: Mention the change.
1019
1020 2009-08-23  Bruno Haible  <bruno@clisp.org>
1021
1022         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
1023         Reported by Eric Blake.
1024
1025 2009-08-23  Bruno Haible  <bruno@clisp.org>
1026
1027         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
1028         Reported by Eric Blake.
1029
1030 2009-08-23  Bruno Haible  <bruno@clisp.org>
1031
1032         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
1033         * modules/pipe2 (Depends-on): Likewise.
1034
1035 2009-08-23  Eric Blake  <ebb9@byu.net>
1036
1037         fcntl-h: add O_TTY_INIT support
1038         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
1039         * tests/test-fcntl-h.c (o): Test it.
1040         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
1041
1042         fcntl-h: rename from fcntl, in preparation for fcntl(2)
1043         * modules/fcntl: Move <fcntl.h> header replacement...
1044         * modules/fcntl-h: ...to new name, so as not to collide with
1045         like-named function.
1046         * tests/test-fcntl.c: Rename...
1047         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
1048         * modules/fcntl-tests: Rename...
1049         * modules/fcntl-h-tests: ...to this.  Update test file name.
1050         * modules/chdir-long (Depends-on): Update clients.
1051         * modules/chdir-safer (Depends-on): Likewise.
1052         * modules/fcntl-safer (Depends-on): Likewise.
1053         * modules/fts (Depends-on): Likewise.
1054         * modules/mkancesdirs (Depends-on): Likewise.
1055         * modules/mkdir-p (Depends-on): Likewise.
1056         * modules/open (Depends-on): Likewise.
1057         * modules/savewd (Depends-on): Likewise.
1058         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
1059         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
1060
1061 2009-08-22  Bruno Haible  <bruno@clisp.org>
1062
1063         * modules/binary-io (License): Relicense under LGPL.
1064         * modules/pipe2 (License): Likewise.
1065
1066 2009-08-22  Bruno Haible  <bruno@clisp.org>
1067
1068         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
1069         return value.
1070         * lib/pipe-filter-gi.c (filter_init): Likewise.
1071         Reported by Eric Blake.
1072
1073 2009-08-22  Bruno Haible  <bruno@clisp.org>
1074
1075         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
1076         * modules/pipe (Depends-on): Add pipe2.
1077
1078 2009-08-22  Bruno Haible  <bruno@clisp.org>
1079
1080         Tests for module 'pipe2'.
1081         * modules/pipe2-tests: New file.
1082         * tests/test-pipe2.c: New file.
1083
1084         New module 'pipe2'.
1085         * lib/unistd.in.h (pipe2): New declaration.
1086         * lib/pipe2.c: New file.
1087         * m4/pipe2.m4: New file.
1088         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
1089         HAVE_PIPE2.
1090         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
1091         * modules/pipe2: New file.
1092         * doc/glibc-functions/pipe2.texi: Mention the new module.
1093
1094 2009-08-22  Bruno Haible  <bruno@clisp.org>
1095
1096         Reference some new glibc functions.
1097         * doc/glibc-functions/accept4.texi: New file.
1098         * doc/glibc-functions/dup3.texi: New file.
1099         * doc/glibc-functions/mkostemp.texi: New file.
1100         * doc/glibc-functions/pipe2.texi: New file.
1101         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
1102         (Glibc sys/socket.h): Refer to accept4.
1103         (Glibc unistd.h): Refer to dup3, pipe2.
1104         Reported by Eric Blake.
1105
1106 2009-08-22  Jim Meyering  <meyering@redhat.com>
1107             Bruno Haible  <bruno@clisp.org>
1108
1109         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
1110         This makes it so packages using automake-1.11's silent-rules option
1111         can print e.g., a single "GEN    configmake.h" line, rather than
1112         the 30+ statements that perform the job.  If you want to see the
1113         actual commands, you can still run "make V=1".
1114         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
1115         so that make output is abbreviated when those variables are defined
1116         appropriately.
1117         * modules/argz: Likewise.
1118         * modules/arpa_inet: Likewise.
1119         * modules/byteswap: Likewise.
1120         * modules/configmake: Likewise.
1121         * modules/dirent: Likewise.
1122         * modules/errno: Likewise.
1123         * modules/fcntl: Likewise.
1124         * modules/float: Likewise.
1125         * modules/fnmatch: Likewise.
1126         * modules/getopt-posix: Likewise.
1127         * modules/glob: Likewise.
1128         * modules/iconv_open: Likewise.
1129         * modules/inttypes: Likewise.
1130         * modules/localcharset: Likewise.
1131         * modules/locale: Likewise.
1132         * modules/math: Likewise.
1133         * modules/netdb: Likewise.
1134         * modules/netinet_in: Likewise.
1135         * modules/poll: Likewise.
1136         * modules/posix_spawnp-tests: Likewise.
1137         * modules/sched: Likewise.
1138         * modules/search: Likewise.
1139         * modules/selinux-h: Likewise.
1140         * modules/signal: Likewise.
1141         * modules/spawn: Likewise.
1142         * modules/stdarg: Likewise.
1143         * modules/stdbool: Likewise.
1144         * modules/stddef: Likewise.
1145         * modules/stdint: Likewise.
1146         * modules/stdio: Likewise.
1147         * modules/stdlib: Likewise.
1148         * modules/string: Likewise.
1149         * modules/strings: Likewise.
1150         * modules/sys_file: Likewise.
1151         * modules/sys_ioctl: Likewise.
1152         * modules/sys_select: Likewise.
1153         * modules/sys_socket: Likewise.
1154         * modules/sys_stat: Likewise.
1155         * modules/sys_time: Likewise.
1156         * modules/sys_times: Likewise.
1157         * modules/sys_utsname: Likewise.
1158         * modules/sys_wait: Likewise.
1159         * modules/sysexits: Likewise.
1160         * modules/time: Likewise.
1161         * modules/unistd: Likewise.
1162         * modules/wchar: Likewise.
1163         * modules/wctype: Likewise.
1164
1165 2009-08-22  Jim Meyering  <meyering@redhat.com>
1166
1167         announce-gen: detect write failure
1168         * build-aux/announce-gen: Add Coda at end.
1169         Remove equivalent-but-more-verbose block at top.
1170
1171 2009-08-19  Akim Demaille  <demaille@gostai.com>
1172
1173         bootstrap: --help to stdout.
1174         * bootstrap (usage): Don't send --help to stderr.
1175         Use a here doc instead of a long string.
1176
1177 2009-08-21  Eric Blake  <ebb9@byu.net>
1178
1179         test-popen-safer: split from test-popen
1180         * tests/test-popen.c (main): Move...
1181         * tests/test-popen.h: ...into new file.
1182         * tests/test-popen-safer2.c: New file.
1183         * modules/popen-tests (Files): Add test-popen.h.
1184         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
1185         Suggested by Bruno Haible.
1186
1187         test-fcntl-safer: split from test-open
1188         * tests/test-open.c (main): Move...
1189         * tests/test-open.h: ...into new file.
1190         * tests/test-fcntl-safer.c: New file.
1191         * modules/open-tests (Files): Add test-open.h.
1192         * modules/fcntl-safer-tests: New file.
1193         Suggested by Bruno Haible.
1194
1195         test-fopen-safer: split from test-fopen
1196         * tests/test-fopen.c (main): Move...
1197         * tests/test-fopen.h: ...into new file.
1198         * tests/test-fopen-safer.c: New file.
1199         * modules/fopen-tests (Files): Add test-fopen.h.
1200         * modules/fopen-safer-tests: New file.
1201         Suggested by Bruno Haible.
1202
1203 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
1204
1205         popen-safer: test O_CLOEXEC at run-time.
1206         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
1207
1208 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
1209
1210         fcntl: move more flags to the header
1211         * lib/cloexec.c: Do not define FD_CLOEXEC here.
1212         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
1213         * lib/fcntl.in.h: Do both things here.
1214
1215 2009-08-21  Jim Meyering  <meyering@redhat.com>
1216
1217         consistently remove $@-t before redirecting to it
1218         * modules/argz: Remove $@-t and $@ before redirecting to the former.
1219         * modules/alloca-opt: Likewise.
1220         * modules/byteswap: Likewise.
1221         * modules/fnmatch: Likewise.
1222         * modules/getopt-posix: Likewise.
1223         * modules/glob: Likewise.
1224         * modules/poll: Likewise.
1225         * modules/posix_spawnp-tests: Likewise.
1226         * modules/sys_socket: Likewise.
1227         * modules/sysexits: Likewise.
1228
1229 2009-08-21  Eric Blake  <ebb9@byu.net>
1230
1231         popen: simplify access to original popen
1232         * lib/popen.c (rpl_popen): No need to worry about popen being a
1233         macro.
1234         Reported by Bruno Haible.
1235
1236 2009-08-20  Eric Blake  <ebb9@byu.net>
1237
1238         build: avoid some compiler warnings
1239         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
1240         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
1241         type.
1242         (new_exclude_segment, excluded_file_pattern_p)
1243         (excluded_file_name_p): Reduce scope.
1244         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
1245         old-style declaration.
1246
1247 2009-08-20  Simon Josefsson  <simon@josefsson.org>
1248
1249         * tests/test-exclude1.sh: Handle Windows EOL.
1250         * tests/test-exclude2.sh: Likewise.
1251         * tests/test-exclude3.sh: Likewise.
1252         * tests/test-exclude4.sh: Likewise.
1253         * tests/test-exclude5.sh: Likewise.
1254         * tests/test-exclude6.sh: Likewise.
1255         * tests/test-exclude7.sh: Likewise.
1256
1257 2009-08-19  Akim Demaille  <demaille@gostai.com>
1258
1259         bootstrap: find sha1sum when named gsha1sum.
1260         * bootstrap (find_tool): New.
1261         ($SHA1SUM): New.
1262         Use it.
1263
1264 2009-08-20  Jim Meyering  <meyering@redhat.com>
1265
1266         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
1267         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
1268         expression that converts "." in a file name to "\." in the resulting
1269         regexp.  Start with a dummy statement, so that prior shell variable
1270         definitions are expanded portably.  Reported by Simon Josefsson.
1271
1272 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
1273
1274         Fix polling for writeability of a screen buffer.
1275         * lib/poll.c: Distinguish input and screen buffers for the
1276         Win32 implementation.
1277         * lib/select.c: Likewise.
1278
1279 2009-08-19  Eric Blake  <ebb9@byu.net>
1280
1281         popen-safer: prevent popen from clobbering std descriptors
1282         * modules/popen-safer: New file.
1283         * lib/popen-safer.c: Likewise.
1284         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
1285         * lib/stdio--.h (popen): Provide override.
1286         * lib/stdio-safer.h (popen_safer): Provide declaration.
1287         * tests/test-popen.c (includes): Partially test this.
1288         * modules/popen-safer-tests: New file, for more tests.
1289         * tests/test-popen-safer.c: Likewise.
1290         * MODULES.html.sh (file stream based Input/Output): Mention it.
1291
1292         tests: test some of the *-safer modules
1293         * modules/fopen-safer (Depends-on): Add fopen.
1294         * modules/fcntl-safer (Depends-on): Add fcntl.
1295         * modules/stdlib-safer (Depends-on): Add stdlib.
1296         (configure.ac): Set indicator.
1297         * modules/unistd-safer (configure.ac): Likewise.
1298         * modules/tmpfile-safer (configure.ac): Likewise.
1299         (Depends-on): Add tmpfile.
1300         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
1301         active.
1302         * tests/test-fopen.c (includes): Test safer versions when they are
1303         in use.
1304         * tests/test-open.c (includes): Likewise.
1305
1306         popen: fix cygwin 1.5 bug when stdin closed
1307         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
1308         * modules/popen: New file.
1309         * modules/popen-tests: Likewise.
1310         * tests/test-popen.c: Likewise.
1311         * m4/popen.m4: Likewise.
1312         * lib/popen.c: Likewise.
1313         * lib/stdio.in.h (popen): New declaration.
1314         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
1315         * modules/stdio (Makefile.am): Likewise.
1316         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
1317
1318 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
1319
1320         maint.mk: give full control over update-copyright exclusions
1321         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
1322         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
1323         (update-copyright): Don't force inclusion of top-level
1324         ChangeLog.  Don't force exclusion of all COPYING files, but make
1325         them the default exclusion instead.
1326
1327 2009-08-16  Bruno Haible  <bruno@clisp.org>
1328
1329         Fix test failures on Solaris 10.
1330         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
1331         tests when Solaris iconv() is used.
1332         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
1333         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
1334         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
1335         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
1336         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
1337
1338 2009-08-16  Bruno Haible  <bruno@clisp.org>
1339
1340         Fix test failures on Solaris 10.
1341         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
1342         'tr' program and pass it as first argument.
1343         * tests/test-pipe-filter-gi1.sh: Likewise.
1344         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
1345         program as first argument.
1346         * tests/test-pipe-filter-gi1.c (main): Likewise.
1347
1348 2009-08-16  Eric Blake  <ebb9@byu.net>
1349
1350         fpurge: fix previous commits
1351         * modules/fpurge (Makefile.am): Make replacement conditional,
1352         partially reverting 2007-04-29 change; missed in previous
1353         attempt.
1354         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
1355         is missing.
1356
1357 2009-08-16  Bruno Haible  <bruno@clisp.org>
1358
1359         Clarify fpurge's effect on the file position.
1360         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
1361         * tests/test-fpurge.c (main): Make a second pass for checking the file
1362         position.
1363
1364 2009-08-16  Bruno Haible  <bruno@clisp.org>
1365
1366         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
1367         declaration of fpurge is missing.
1368         * tests/test-fpurge.c (main): Check that the file has not more contents
1369         than expected. Close the file before removing it.
1370
1371 2009-08-15  Eric Blake  <ebb9@byu.net>
1372
1373         fpurge: don't wrap working cygwin implementation
1374         * lib/fpurge.c (fpurge): Fix comment typo.
1375         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
1376         1.7 to avoid replacement.
1377         * tests/test-fpurge.c (main): Enhance test.
1378
1379 2009-08-15  Eric Blake  <ebb9@byu.net>
1380         and Jim Meyering  <meyering@redhat.com>
1381
1382         test-update-copyright: skip if perl is insufficient
1383         * tests/test-update-copyright.sh: Failure to run maintainer tool
1384         should not cause testsuite failure on cygwin 1.5.
1385
1386 2009-08-14  Eric Blake  <ebb9@byu.net>
1387
1388         doc: mention more functions added in cygwin 1.7.0
1389         * doc/posix-headers/limits.texi (limits.h): Update for recent
1390         cygwin additions.
1391         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
1392         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
1393         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
1394         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
1395         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
1396
1397 2009-08-14  Eric Blake  <ebb9@byu.net>
1398
1399         maint.mk: simplify update-copyright rule
1400         * top/maint.mk (update-copyright-local): Delete, and document how
1401         to do it in cfg.mk instead.
1402         (update-copyright-exclude-regexp): Delete, and document how to do
1403         it in .x-update-copyright instead.
1404         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
1405         exclude ChangeLog.
1406
1407 2009-08-14  Bruno Haible  <bruno@clisp.org>
1408
1409         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
1410
1411 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
1412
1413         maint.mk: support update-copyright-env
1414         * top/maint.mk (update-copyright-env): Define place-holder.
1415         (update-copyright): Expand $(update-copyright-env) before
1416         invoking update-copyright.
1417
1418 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
1419
1420         update-copyright: implement forced reformatting
1421         * build-aux/update-copyright: Implement and document
1422         UPDATE_COPYRIGHT_FORCE.
1423         * tests/test-update-copyright.sh: Test it.
1424
1425 2009-08-14  Eric Blake  <ebb9@byu.net>
1426         and Bruno Haible  <bruno@clisp.org>
1427
1428         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
1429         * tests/test-locale.c: Revert previous patch related to NULL.
1430         * tests/test-stdio.c: Likewise.
1431         * tests/test-stdlib.c: Likewise.
1432         * tests/test-string.c: Likewise.
1433         * tests/test-unistd.c: Likewise.
1434         * modules/time-tests (Depends-on): Add verify.
1435         * modules/wchar-tests (Depends-on): Likewise.
1436         * tests/test-time.c: Test for NULL compliance.
1437         * tests/test-wchar.c: Likewise.
1438         * modules/locale (Depends-on): Add stddef.
1439         * modules/stdio (Depends-on): Likewise.
1440         * modules/stdlib (Depends-on): Likewise.
1441         * modules/string (Depends-on): Likewise.
1442         * modules/time (Depends-on): Likewise.
1443         * modules/unistd (Depends-on): Likewise.
1444         * modules/wchar (Depends-on): Likewise.
1445         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
1446         * lib/stdlib.in.h (includes): Likewise.
1447         * lib/string.in.h (includes): Likewise.
1448         * lib/time.in.h (includes): Likewise.
1449         * lib/unistd.in.h (includes): Likewise.
1450         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
1451         replaced.
1452         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1453         * m4/stddef_h.m4: New file.
1454         * modules/stddef: Likewise.
1455         * lib/stddef.in.h: Likewise.
1456         * modules/stddef-tests: Likewise.
1457         * tests/test-stddef.c: Likewise.
1458         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
1459         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
1460         * doc/posix-headers/locale.texi (locale.h): Likewise.
1461         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
1462         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
1463         * doc/posix-headers/string.texi (string.h): Likewise.
1464         * doc/posix-headers/time.texi (time.h): Likewise.
1465         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
1466         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
1467
1468 2009-08-14  Eric Blake  <ebb9@byu.net>
1469
1470         doc: improve git diff of texinfo files
1471         * .gitattributes: Add rule for *.texi files, with hint on how to
1472         use it.
1473         Copied from m4, and based on a report by Bruno Haible.
1474
1475 2009-08-14  Bruno Haible  <bruno@clisp.org>
1476
1477         Disable multithread support by default on Cygwin 1.5.x for real.
1478         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
1479
1480 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
1481
1482         update-copyright: much ado about intervals
1483         * build-aux/update-copyright: Implement and document
1484         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
1485         of copyright year intervals.
1486         Also, document UPDATE_COPYRIGHT_YEAR.
1487         * tests/test-update-copyright.sh: Test it.
1488
1489         update-copyright: convert 2-digit to 4-digit years
1490         * build-aux/update-copyright: Implement and document.
1491         * tests/test-update-copyright.sh: Update.
1492
1493 2009-08-14  Jim Meyering  <meyering@redhat.com>
1494
1495         test-exclude: avoid coreutils "make check" failure
1496         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
1497         just as in test-argmatch.c.
1498
1499 2009-08-13  Eric Blake  <ebb9@byu.net>
1500
1501         test-dup2: fix bad assumption
1502         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
1503         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
1504
1505         test-version-etc: fix CRLF portability issue
1506         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
1507         recognize \r.
1508         * tests/test-argp-version-etc-1.sh: Likewise.
1509
1510         getopt: update client modules
1511         * modules/argp (Depends-on): Use getopt-gnu.
1512         * modules/git-merge-changelog (Depends-on): Likewise.
1513         * modules/long-options (Depends-on): Likewise.
1514         * modules/xstrtol (Depends-on): Likewise.
1515
1516 2009-08-13  Simon Josefsson  <simon@josefsson.org>
1517
1518         * tests/test-version-etc.sh: Don't fail on different
1519         project/version.  Don't fail on CRLF differences.  Rewrite to use
1520         multiple -e instead of multiple sed forks, suggested by Eric Blake
1521         <ebb9@byu.net>.
1522         * tests/test-argp-version-etc-1.sh: Likewise.
1523
1524 2009-08-13  Simon Josefsson  <simon@josefsson.org>
1525
1526         * tests/test-version-etc.sh: Don't fail on different
1527         project/version.
1528
1529 2009-08-12  Bruno Haible  <bruno@clisp.org>
1530
1531         Tests for modules 'getopt-posix', 'getopt-gnu'.
1532         * modules/getopt-posix-tests: New file.
1533         * tests/test-getopt.c: New file.
1534         * tests/test-getopt.h: New file.
1535         * tests/test-getopt_long.h: New file.
1536
1537         New modules 'getopt-posix', 'getopt-gnu'.
1538         * modules/getopt-gnu: New file, renamed from modules/getopt.
1539         * modules/getopt-posix: New file.
1540         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
1541         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
1542         (gl_GETOPT): Remove macro.
1543         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
1544         Disable the test against BSD systems that declare optreset. Test
1545         against mingw bug. Test against lack of support of optional arguments
1546         on many platforms.
1547         * doc/glibc-headers/getopt.texi: Update module name and list of
1548         relevant platforms.
1549         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
1550         'getopt-gnu' and more portability problems.
1551         * NEWS: Mention the changes.
1552
1553 2009-08-12  Bruno Haible  <bruno@clisp.org>
1554
1555         Ensure that optarg etc. get declared by <unistd.h>.
1556         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
1557         AC_USE_SYSTEM_EXTENSIONS.
1558         * modules/getopt (Depends-on): Add 'extensions'.
1559
1560 2009-08-12  Bruno Haible  <bruno@clisp.org>
1561
1562         Avoid test link errors.
1563         * modules/pipe-filter-ii-tests (Makefile.am): Define
1564         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
1565         * modules/pipe-filter-gi-tests (Makefile.am): Define
1566         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
1567         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1568
1569 2009-08-12  Bruno Haible  <bruno@clisp.org>
1570
1571         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
1572         gl_GETOPT_SUBSTITUTE before.
1573         (gl_GETOPT): Use it.
1574         * m4/argp.m4 (gl_ARGP): Update.
1575         Reported by Sergey Poznyakoff.
1576
1577         * m4/getopt.m4: Reorder macros.
1578         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
1579         (gl_GETOPT_SUBSTITUTE): Remove macro.
1580
1581 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
1582
1583         Minor improvement in gitlog-to-changelog
1584
1585         * build-aux/gitlog-to-changelog: New option `--format' makes
1586         output format string configurable.
1587
1588 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
1589
1590         Optimize exclude: use hash tables for non-wildcard patterns.
1591
1592         * lib/exclude.c: Include hash.h and mbuiter.h
1593         (struct exclude_pattern, exclude_segment): New data types.
1594         (struct exclude): Rewrite.
1595         (fnmatch_pattern_has_wildcards): New function.
1596         (new_exclude_segment, free_exclude_segment): New functions.
1597         (excluded_file_pattern_p, excluded_file_name_p): New functions.
1598         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
1599         * lib/exclude.h (is_fnmatch_pattern): New prototype.
1600         * modules/exclude: Depend on hash and mbuiter.
1601
1602         * modules/exclude-tests: New file.
1603         * tests/test-exclude.c: New file.
1604         * tests/test-exclude1.sh: New file.
1605         * tests/test-exclude2.sh: New file.
1606         * tests/test-exclude3.sh: New file.
1607         * tests/test-exclude4.sh: New file.
1608         * tests/test-exclude5.sh: New file.
1609         * tests/test-exclude6.sh: New file.
1610         * tests/test-exclude7.sh: New file.
1611
1612 2009-08-12  Bruno Haible  <bruno@clisp.org>
1613
1614         Ensure that getopt() gets declared by <unistd.h>.
1615         * lib/unistd.in.h: Conditionally include getopt.h.
1616         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
1617         Set GNULIB_UNISTD_H_GETOPT.
1618         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
1619         GNULIB_UNISTD_H_GETOPT.
1620         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
1621
1622 2009-08-12  Bruno Haible  <bruno@clisp.org>
1623
1624         Clarify logic.
1625         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
1626         gl_replace_getopt instead of GETOPT_H.
1627
1628 2009-08-12  Bruno Haible  <bruno@clisp.org>
1629
1630         * m4/getopt.m4: Add comments.
1631
1632 2009-08-12  Bruno Haible  <bruno@clisp.org>
1633
1634         Disable multithread support by default on Cygwin 1.5.x.
1635         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
1636         set gl_use_threads=no if not specified otherwise.
1637
1638 2009-08-11  Bruno Haible  <bruno@clisp.org>
1639
1640         Avoid compilation error on NetBSD 5.0.
1641         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
1642         * tests/test-stdio.c: Likewise.
1643         * tests/test-stdlib.c: Likewise.
1644         * tests/test-string.c: Likewise.
1645         * tests/test-unistd.c: Likewise.
1646         Reported by Greg Troxel <gdt@ir.bbn.com>
1647         at <https://savannah.gnu.org/support/?106973>.
1648
1649 2009-08-11  Bruno Haible  <bruno@clisp.org>
1650
1651         * modules/dup2-tests (Depends-on): Remove close.
1652
1653         Undo 2009-07-19 commit.
1654         * modules/acl-tests (Depends-on): Remove close.
1655         * modules/binary-io-tests (Depends-on): Likewise.
1656         * modules/closein-tests (Depends-on): Likewise.
1657         * modules/flock-tests (Depends-on): Likewise.
1658         * modules/fsync-tests (Depends-on): Likewise.
1659         * modules/lseek-tests (Depends-on): Likewise.
1660         * modules/pipe-tests (Depends-on): Likewise.
1661         * modules/posix_spawn-tests (Depends-on): Likewise.
1662         * modules/posix_spawnp-tests (Depends-on): Likewise.
1663         * modules/stat-time-tests (Depends-on): Likewise.
1664         * modules/yesno-tests (Depends-on): Likewise.
1665
1666 2009-08-10  Bruno Haible  <bruno@clisp.org>
1667
1668         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
1669
1670 2009-08-10  Bruno Haible  <bruno@clisp.org>
1671
1672         Fix a gcc warning.
1673         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
1674
1675 2009-08-10  Bruno Haible  <bruno@clisp.org>
1676
1677         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
1678         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
1679         not only the first time.
1680         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
1681         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
1682         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
1683         is 1, not only the the first time.
1684
1685 2009-08-10  Bruno Haible  <bruno@clisp.org>
1686
1687         Make it possible to use module 'gethostname' without module 'close'.
1688         * lib/unistd.in.h (close): Evoke a link error only if
1689         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
1690         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
1691         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
1692         * modules/unistd (Makefile.am): Substitute
1693         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
1694         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
1695         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
1696         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
1697         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
1698         * modules/sys_ioctl (Makefile.am): Substitute
1699         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
1700         * modules/socket (configure.ac): On native Windows, set
1701         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
1702         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
1703         Reported by Sam Steingold <sds@gnu.org>.
1704
1705 2009-08-10  Bruno Haible  <bruno@clisp.org>
1706
1707         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
1708         * modules/ioctl (configure.ac): Likewise.
1709
1710 2009-08-10  Bruno Haible  <bruno@clisp.org>
1711
1712         Avoid collision between gnulib wrapper and libintl wrapper.
1713         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
1714         already defined in intl/printf.c.
1715         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
1716         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
1717
1718 2009-08-09  Bruno Haible  <bruno@clisp.org>
1719
1720         Make <sys/select.h> really self-contained, also on Solaris 10.
1721         * lib/sys_select.in.h: Include <string.h>.
1722         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
1723         Solaris 10 problem.
1724         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
1725         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
1726         Reported by Jim Meyering.
1727
1728 2009-08-09  Bruno Haible  <bruno@clisp.org>
1729
1730         Avoid warnings from 'aclocal' that are due to a use of macro name
1731         AM_XGETTEXT_OPTION that is not defined in automake.
1732         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
1733         automake.
1734         * modules/error (configure.ac): Likewise.
1735         * modules/propername (configure.ac): Likewise.
1736         * modules/vasprintf (configure.ac): Likewise.
1737         * modules/verror (configure.ac): Likewise.
1738         * modules/xprintf (configure.ac): Likewise.
1739         * modules/xvasprintf (configure.ac): Likewise.
1740
1741 2009-08-08  Bruno Haible  <bruno@clisp.org>
1742
1743         Avoid compilation error in C++ mode.
1744         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
1745         Reported by Sam Steingold <sds@gnu.org>.
1746
1747 2009-08-08  Bruno Haible  <bruno@clisp.org>
1748
1749         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
1750         for the various Unix platforms.
1751         * doc/posix-headers/limits.texi: Update platforms list regarding
1752         HOST_NAME_MAX.
1753         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1754
1755 2009-08-07  Jim Meyering  <meyering@redhat.com>
1756
1757         selinux-at: fix typo in a comment
1758         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
1759         Spotted by Paolo Bonzini.
1760
1761         selinux-at: remove redundant m4 code, add documentation
1762         * modules/selinux-at (configure.ac): Remove redundant code.
1763         LIB_SELINUX is already set via the dependent module, selinux-h.
1764         (Include): Add quotes around selinux-at.h.
1765         * lib/selinux-at.h: Add documentation.
1766         Reported by Bruno Haible in
1767         http://marc.info/?l=gnulib-bug&m=124958988300749
1768
1769 2009-08-07  Bruno Haible  <bruno@clisp.org>
1770
1771         Avoid link error on MacOS X 10.3 and 10.4.
1772         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
1773         on non-ELF systems.
1774         * lib/argp-pv.c (argp_program_version): Likewise.
1775         Reported by Simon Josefsson.
1776
1777 2009-08-07  Simon Josefsson  <simon@josefsson.org>
1778
1779         * tests/test-version-etc.sh: Use $EXEEXT.
1780
1781 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
1782
1783         update-copyright: update documentation to point to maint.mk
1784         * build-aux/update-copyright: Here.
1785
1786 2009-08-06  Jim Meyering  <meyering@redhat.com>
1787
1788         maint.mk: support update-copyright-local
1789         * top/maint.mk (update-copyright-local): Define place-holder.
1790         (update-copyright): Depend on $(update-copyright-local).
1791
1792 2009-08-06  Jim Meyering  <meyering@redhat.com>
1793
1794         selinux-at: new module
1795         Initially written for coreutils, this module will soon be
1796         used by findutils, too.
1797         * MODULES.html.sh [Misc]: Add selinux-at.
1798         * lib/selinux-at.h: New file, from coreutils.
1799         * lib/selinux-at.c: Likewise.
1800         * modules/selinux-at: Likewise.
1801         (License): Change from LGPL to GPL, since it depends
1802         on the GPL'd openat module.
1803
1804         doc: update README
1805         * README: Remove references to cogito.
1806         Remove cvs-repo-updating instructions from 2007.
1807         Don't imply that CVS is better if you have limited disk space.
1808
1809 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
1810
1811         update-copyright: support C-style comments
1812         * build-aux/update-copyright: Implement and document.
1813         * tests/test-update-copyright.sh: Test.
1814
1815 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
1816
1817         update-copyright: support omitted "(C)"
1818         * build-aux/update-copyright: Implement and document.  Also,
1819         allow variable whitespace before "(C)".
1820         * tests/test-update-copyright.sh: Test.
1821
1822 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
1823
1824         update-copyright: don't trip on non-FSF copyright statements
1825         * build-aux/update-copyright: Fix so that the first correctly
1826         formatted FSF copyright statement is recognized no matter what
1827         appears before it.  Update documentation.
1828         * tests/test-update-copyright.sh: Test that.
1829
1830 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
1831
1832         update-copyright: clean up code a little
1833         * build-aux/update-copyright: Append "_re" to the name of any
1834         variable holding a regular expression.
1835         Replace "old" and "new" with "stmt" in variable names.
1836         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
1837         handled correctly.
1838         Format code more consistently.
1839
1840 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
1841
1842         update-copyright-tests: improve portability
1843         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
1844         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
1845
1846 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
1847
1848         update-copyright: support @copyright{} and &copy;
1849         * build-aux/update-copyright: Implement and document.
1850         * tests/test-update-copyright.sh: Test.
1851
1852 2009-08-04  Jim Meyering  <meyering@redhat.com>
1853
1854         update-copyright-tests: correctly test EOL=\r\n handling
1855         * tests/test-update-copyright.sh: Put \r at the end of some lines
1856         for the dos-eol tests.  Based on a patch by Joel E. Denny.
1857
1858         maint.mk: make update-copyright exclusion list more configurable
1859         * top/maint.mk (update-copyright): Default to excluding COPYING,
1860         but allow an override, in case someone does want to update that file.
1861
1862         maint.mk: don't update copyright date in COPYING
1863         * top/maint.mk (update-copyright): Exclude COPYING.
1864
1865         maint.mk: add a copyright-updating rule
1866         * top/maint.mk (update-copyright): New rule.
1867         Derived from coreutils/Makefile.am.
1868
1869         update-copyright: rename some variables
1870         * build-aux/update-copyright: Rename a few variables for clarity.
1871         Tweak syntax.  List Joel E. Denny as coauthor.
1872
1873 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
1874
1875         update-copyright: fix bug for 2-digit last year and add tests
1876         * build-aux/update-copyright: Fix bug.
1877         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
1878         specified.
1879         * modules/update-copyright-tests: New
1880         * tests/test-update-copyright.sh: New.
1881
1882 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
1883
1884         update-copyright: handle leading tabs in line prefix
1885         * build-aux/update-copyright: Count leading tabs as 8 spaces
1886         when computing margin.  This helps with the formatting of
1887         ChangeLogs, for example.
1888         Fix documentation a little.
1889
1890 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
1891
1892         update-copyright: support EOL=\r\n
1893         * build-aux/update-copyright: Implement that.
1894
1895 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
1896
1897         update-copyright: automatically format copyright statements
1898         * build-aux/update-copyright: Implement that.
1899         Also, be a little more predictable and safer by always failing
1900         when the full copyright format is not perfectly recognized as an
1901         unbroken whole.  Discussed at
1902         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
1903         Rewrite documentation.
1904
1905 2009-08-03  Bruno Haible  <bruno@clisp.org>
1906
1907         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
1908
1909 2009-08-02  Bruno Haible  <bruno@clisp.org>
1910
1911         Tests for module 'uname'.
1912         * modules/uname-tests: New file.
1913         * tests/test-uname.c: New file.
1914
1915         New module 'uname'.
1916         * lib/uname.c: New file.
1917         * m4/uname.m4: New file.
1918         * modules/uname: New file.
1919         * doc/posix-functions/uname.texi: Mention the new module.
1920
1921 2009-08-02  Bruno Haible  <bruno@clisp.org>
1922
1923         Tests for module 'sys_utsname'.
1924         * modules/sys_utsname-tests: New file.
1925         * tests/test-sys_utsname.c: New file.
1926
1927         New module 'sys_utsname'.
1928         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
1929         * m4/sys_utsname_h.m4: New file.
1930         * modules/sys_utsname: New file.
1931         * doc/posix-headers/sys_utsname.texi: Mention the new module.
1932
1933 2009-08-02  Bruno Haible  <bruno@clisp.org>
1934
1935         Implicitly initialize the sockets library.
1936         * lib/gethostname.c: Include sockets.h.
1937         (rpl_gethostname): Invoke gl_sockets_startup.
1938         * lib/socket.c: Include sockets.h.
1939         (rpl_socket): Invoke gl_sockets_startup.
1940         * modules/gethostname (Depends-on): Add sockets.
1941         * modules/socket (Depends-on): Likewise.
1942         * tests/test-poll.c: Don't include sockets.h.
1943         (main): Don't invoke gl_sockets_startup.
1944         * tests/test-select.c: Don't include sockets.h.
1945         (main): Don't invoke gl_sockets_startup.
1946
1947 2009-08-02  Bruno Haible  <bruno@clisp.org>
1948
1949         Allow multiple calls to gl_sockets_startup.
1950         * lib/sockets.c (initialized_sockets_version): New variable.
1951         (gl_sockets_startup): Do nothing if already called for this or a higher
1952         version.
1953         (gl_sockets_cleanup): Reset initialized_sockets_version.
1954
1955 2009-08-03  Simon Josefsson  <simon@josefsson.org>
1956
1957         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
1958         different project/version.
1959
1960 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
1961             Bruno Haible  <bruno@clisp.org>
1962
1963         Tests for module 'pipe-filter-gi'.
1964         * modules/pipe-filter-gi-tests: New file.
1965         * tests/test-pipe-filter-gi1.sh: New file.
1966         * tests/test-pipe-filter-gi1.c: New file.
1967         * tests/test-pipe-filter-gi2.sh: New file.
1968         * tests/test-pipe-filter-gi2-main.c: New file.
1969         * tests/test-pipe-filter-gi2-child.c: New file.
1970
1971         New module 'pipe-filter-gi'.
1972         * lib/pipe-filter-gi.c: New file.
1973         * modules/pipe-filter-gi: New file.
1974
1975 2009-08-02  Bruno Haible  <bruno@clisp.org>
1976             Paolo Bonzini  <bonzini@gnu.org>
1977
1978         Tests for module 'pipe-filter-ii'.
1979         * modules/pipe-filter-ii-tests: New file.
1980         * tests/test-pipe-filter-ii1.sh: New file.
1981         * tests/test-pipe-filter-ii1.c: New file.
1982         * tests/test-pipe-filter-ii2.sh: New file.
1983         * tests/test-pipe-filter-ii2-main.c: New file.
1984         * tests/test-pipe-filter-ii2-child.c: New file.
1985
1986         New module 'pipe-filter-ii'.
1987         * lib/pipe-filter.h: New file.
1988         * lib/pipe-filter-ii.c: New file.
1989         * lib/pipe-filter-aux.h: New file.
1990         * modules/pipe-filter-ii: New file.
1991
1992 2009-08-02  Simon Josefsson  <simon@josefsson.org>
1993
1994         * lib/gc-libgcrypt.c: Change copyright to FSF.
1995         * lib/gc-gnulib.c: Likewise.
1996
1997 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
1998
1999         * lib/gethostname.c: Include limits.h.
2000
2001 2009-08-02  Simon Josefsson  <simon@josefsson.org>
2002             Bruno Haible  <bruno@clisp.org>
2003
2004         Ensure HOST_NAME_MAX as part of the gethostname module.
2005         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
2006         define also HOST_NAME_MAX.
2007         * tests/test-gethostname.c: Include <limits.h>.
2008         (main): Check also HOST_NAME_MAX.
2009         * doc/posix-headers/limits.texi: Document the mingw problem.
2010
2011 2009-08-02  Bruno Haible  <bruno@clisp.org>
2012
2013         * lib/gethostname.c (gethostname): Fix handling of large len argument.
2014         Add comments.
2015
2016 2009-03-31  Simon Josefsson  <simon@josefsson.org>
2017
2018         * lib/gethostname.c: Add Windows wrapper.
2019         * m4/gethostname.m4: Look for gethostname in -lws2_32.
2020         * modules/gethostname: Depend on sys_socket & errno, for also
2021         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
2022         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
2023
2024 2009-07-31  Jim Meyering  <meyering@redhat.com>
2025
2026         getloadavg: fix symbol name in comment
2027         * lib/getloadavg.c: Correct a typo I introduced when adding
2028         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
2029         Matt Kraai spotted the problem.
2030
2031 2009-07-29  Matt Kraai  <mkraai@beckman.com>
2032
2033         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
2034         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
2035         code also if ! defined N_NAME_POINTER.
2036         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
2037         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
2038         but the n_name member is a 12-byte array.
2039
2040 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
2041
2042         update-copyright: generalize comment handling
2043         * build-aux/update-copyright: Handle copyright statements
2044         within more comment styles.
2045         Document usage.
2046         Report any file with an external copyright holder or parse failure.
2047
2048 2009-07-29  Jim Meyering  <meyering@redhat.com>
2049
2050         mktime: correct setting of REPLACE_MKTIME
2051         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
2052
2053         update-copyright: new module
2054         * modules/update-copyright: New file.
2055         * build-aux/update-copyright: New file.
2056         * MODULES.html.sh (maint+release support): Add update-copyright.
2057
2058 2009-07-27  Bruno Haible  <bruno@clisp.org>
2059
2060         Fix compilation error when <ctime> is used and mktime is replaced.
2061         * lib/time.in.h (mktime): New declaration.
2062         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
2063         REPLACE_MKTIME instead of defining mktime in config.h.
2064         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
2065         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
2066         Reported by Ross McFarland <rwmcfa1@neces.com>.
2067
2068 2009-07-27  Bruno Haible  <bruno@clisp.org>
2069
2070         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
2071         Reported by Matt Kraai <mkraai@beckman.com>.
2072
2073 2009-07-25  Jim Meyering  <meyering@redhat.com>
2074
2075         maint.mk: avoid warnings about missing files
2076         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
2077         diagnostic when .prev-version does not exist.
2078         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
2079         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
2080         nonexistent cfg.mk.
2081         Suggestions from Simon Josefsson.
2082
2083 2009-07-25  Bruno Haible  <bruno@clisp.org>
2084
2085         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
2086         defined as macros. Needed on QNX 6.4.1.
2087         Reported by Matt Kraai <mkraai@beckman.com>.
2088
2089 2009-07-23  Jim Meyering  <meyering@redhat.com>
2090
2091         maint.mk: invoke "make dist" with a working value of XZ_OPT
2092         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
2093
2094 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
2095
2096         Make fseeko.c compile on QNX.
2097         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
2098
2099 2009-07-22  Peter Simons  <simons@cryp.to>
2100
2101         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
2102         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
2103         * lib/md4.h: Likewise.
2104         * lib/md5.h: Likewise.
2105         * lib/sha1.h: Likewise.
2106         * lib/sha256.h: Likewise.
2107         * lib/sha512.h: Likewise.
2108
2109         tests-sha1: don't assign literal string to 'char *' variable
2110         * tests/test-sha1.c (main): Declare locals with "const" to match
2111         attributes of the right hand side.
2112
2113 2009-07-21  Eric Blake  <ebb9@byu.net>
2114
2115         dup2: fix more mingw problems
2116         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
2117         fd to itself.
2118         * doc/posix-functions/dup2.texi (dup2): Document the bug.
2119         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
2120         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
2121         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
2122         care of mingw bugs.
2123
2124 2009-07-21  Jim Meyering  <meyering@redhat.com>
2125
2126         vc-list-files: avoid failure when /bin/sh is dash
2127         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
2128         On some Debian based systems, /bin/sh is a symlink to dash, and running
2129         this command would omit the "/" following each 'tests' prefix:
2130           dash -x build-aux/vc-list-files -C . tests
2131         That is because bash and dash work differently:
2132           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
2133           bash ok
2134           dash odd
2135
2136 2009-07-21  Eric Blake  <ebb9@byu.net>
2137
2138         dup2-tests: test previous patch
2139         * modules/dup2-tests: New file.
2140         * tests/test-dup2.c: Likewise.
2141         * tests/test-open.c (main): Avoid unspecified behavior.
2142         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
2143         test.
2144
2145         dup2: work around mingw and cygwin 1.5 bug
2146         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
2147         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
2148         * modules/unistd (Makefile.am): Substitute it.
2149         * lib/unistd.in.h (dup2): Declare the replacement.
2150         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
2151         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
2152         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
2153         * modules/execute (Depends-on): Add dup2.
2154         * modules/fseterr (Depends-on): Likewise.
2155         * modules/pipe (Depends-on): Likewise.
2156         * modules/posix_spawn-internal (Depends-on): Likewise.
2157
2158 2009-07-21  Bruno Haible  <bruno@clisp.org>
2159
2160         * modules/.gitattributes: New file.
2161
2162 2009-07-20  Bruno Haible  <bruno@clisp.org>
2163
2164         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
2165         (main): Use it.
2166
2167 2009-07-20  Eric Blake  <ebb9@byu.net>
2168
2169         test-pipe: make a bit more robust.
2170         * tests/test-pipe.c (myerr): Allow error messages regardless of
2171         what we do to stderr.
2172         (test_pipe): Rearrange to avoid deadlock.
2173         (child_main): Try a larger read, to ensure we avoided deadlock.
2174         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
2175         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
2176         if misused.
2177
2178 2009-07-19  Jim Meyering  <meyering@redhat.com>
2179
2180         fts: avoid false-positive cycle-detection
2181         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
2182         for each new command line argument.
2183
2184 2009-07-19  Bruno Haible  <bruno@clisp.org>
2185
2186         Fix build error on mingw with the modules sys_select and unistd.
2187         * modules/acl-tests (Depends-on): Add close.
2188         * modules/binary-io-tests (Depends-on): Likewise.
2189         * modules/closein-tests (Depends-on): Likewise.
2190         * modules/flock-tests (Depends-on): Likewise.
2191         * modules/fsync-tests (Depends-on): Likewise.
2192         * modules/lseek-tests (Depends-on): Likewise.
2193         * modules/pipe-tests (Depends-on): Likewise.
2194         * modules/posix_spawn-tests (Depends-on): Likewise.
2195         * modules/posix_spawnp-tests (Depends-on): Likewise.
2196         * modules/stat-time-tests (Depends-on): Likewise.
2197         * modules/yesno-tests (Depends-on): Likewise.
2198
2199 2009-07-19  Bruno Haible  <bruno@clisp.org>
2200
2201         Unify conditionals.
2202         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
2203         macros, not at the compiler macros.
2204         * lib/pipe.c: Likewise.
2205         * lib/execute.c: Likewise.
2206         * lib/spawni.c: Likewise.
2207
2208 2009-07-19  Bruno Haible  <bruno@clisp.org>
2209
2210         Fix handling of closed stdin/stdout/stderr on mingw.
2211         * lib/w32spawn.h: Include unistd.h.
2212         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
2213         file descriptor with O_NOINHERIT flag.
2214         (fd_safer_noinherit): New function, based on fd-safer.c.
2215         (dup_safer_noinherit): New function, based on dup-safer.c.
2216         (undup_safer_noinherit): New function.
2217         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
2218         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
2219         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
2220         instead of fd_safer.
2221         * tests/test-pipe.c: Include <windows.h>.
2222         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
2223
2224         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
2225         from main.
2226         (test_pipe): Pass an extra argument for disambiguation.
2227         (main): Invoke parent_main or child_main.
2228
2229         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
2230         consistently.
2231
2232 2009-07-18  Eric Blake  <ebb9@byu.net>
2233
2234         test-pipe: fix mingw build
2235         * tests/test-pipe.c (main): Avoid fcntl on mingw.
2236
2237 2009-07-18  Bruno Haible  <bruno@clisp.org>
2238
2239         * modules/pipe-tests (Makefile.am): Fix typo.
2240
2241 2009-07-18  Eric Blake  <ebb9@byu.net>
2242
2243         error: fix mingw build
2244         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
2245         Reported by Bruno Haible.
2246
2247         error: avoid undefined use of stdout
2248         * lib/error.c (error, error_at_line): Check that fd 1 is open
2249         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
2250         is handling faults and the close_stdout module wants to report the
2251         detection of closed stdout as an error.
2252
2253 2009-07-17  Eric Blake  <ebb9@byu.net>
2254
2255         pipe: be robust in face of closed fds
2256         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
2257         should cause child to misbehave.
2258         * modules/pipe-tests: New module.
2259         * tests/test-pipe.c: New file.
2260         * tests/test-pipe.sh: New file.
2261         Reported by Akim Demaille.
2262
2263 2009-07-14  Bruno Haible  <bruno@clisp.org>
2264
2265         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
2266         Reported by anonymous kc.
2267
2268 2009-07-07  Jim Meyering  <meyering@redhat.com>
2269
2270         maint.mk: don't look for translatable strings in *.m4 or *.mk
2271         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
2272         when searching for translatable strings.
2273
2274 2009-07-05  Jim Meyering  <meyering@redhat.com>
2275
2276         remove superfluous parentheses in STREQ definition
2277         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
2278         * lib/getugroups.c (STREQ): Likewise.
2279         * lib/fnmatch.c (STREQ): Likewise.
2280         Spotted by Bruno Haible.
2281
2282 2009-07-04  Jim Meyering  <meyering@redhat.com>
2283
2284         argv-iter: new module
2285         * MODULES.html.sh: Add argv-iter.
2286         * lib/argv-iter.c, lib/argv-iter.h: New files.
2287         * modules/argv-iter: New file.
2288         * modules/argv-iter-tests: New file.
2289         * tests/test-argv-iter.c: Test it.
2290
2291 2009-07-04  Bruno Haible  <bruno@clisp.org>
2292
2293         Fix assertion.
2294         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
2295         contains more exact copies of a given entry than file2, leave the extra
2296         copies unpaired rather than aborting.
2297         Reported by Eric Blake.
2298
2299 2009-07-02  Bruno Haible  <bruno@clisp.org>
2300
2301         Speedup git-merge-changelog for git cherry-pick.
2302         * lib/git-merge-changelog.c (struct entries_mapping): New type.
2303         (entries_mapping_get): New function, extracted from compute_mapping.
2304         (entries_mapping_reverse_get): New function.
2305         (compute_mapping): Add a 'full' argument. Return the result in a
2306         'struct entries_mapping'.
2307         (main): Update. Access the mappings through entries_mapping_get.
2308         Reported by Eric Blake.
2309
2310 2009-07-02  Bruno Haible  <bruno@clisp.org>
2311
2312         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
2313         best_i.
2314
2315 2009-07-02  Bruno Haible  <bruno@clisp.org>
2316
2317         Speed up approximate search for matching ChangeLog entries.
2318         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
2319         argument. Call fstrcmp_bounded instead of fstrcmp.
2320         (compute_mapping, try_split_merged_entry, main): Update callers.
2321
2322 2009-07-02  Bruno Haible  <bruno@clisp.org>
2323
2324         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
2325
2326 2009-06-30  Bruno Haible  <bruno@clisp.org>
2327
2328         Reduce the number of uc_is_cased calls.
2329         * lib/unicase.h (casing_suffix_context_t): Add
2330         'first_char_except_ignorable' field.
2331         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
2332         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
2333         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
2334         Update initializer.
2335         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
2336         case-ignorable characters.
2337         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
2338         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
2339         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
2340         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
2341         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
2342
2343 2009-06-30  Bruno Haible  <bruno@clisp.org>
2344
2345         Tests for module 'unicase/ignorable'.
2346         * modules/unicase/ignorable-tests: New file.
2347         * tests/unicase/test-ignorable.c: New file, generated by
2348         gen-uni-tables.
2349
2350         Tests for module 'unicase/cased'.
2351         * modules/unicase/cased-tests: New file.
2352         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
2353         * tests/unicase/test-predicate-part1.h: New file, derived from
2354         tests/unictype/test-predicate-part1.h.
2355         * tests/unicase/test-predicate-part2.h: New file, same as
2356         tests/unictype/test-predicate-part2.h.
2357
2358         Fix evaluation of "Before C" condition of FINAL_SIGMA.
2359         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
2360         (output_casing_properties): New function.
2361         (main): Call it.
2362         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
2363         * lib/unicase/cased.c: Include unictype/bitmap.h.
2364         (uc_is_cased): Define through a bitmap lookup.
2365         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
2366         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
2367         (uc_is_case_ignorable): Define through a bitmap lookup.
2368         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
2369         lib/unictype/bitmap.h.
2370         (Depends-on): Add inline. Clean up.
2371         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
2372         lib/unictype/bitmap.h.
2373         (Depends-on): Add inline. Clean up.
2374         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
2375         recognition.
2376         * tests/unicase/test-u16-tolower.c (main): Likewise.
2377         * tests/unicase/test-u32-tolower.c (main): Likewise.
2378
2379 2009-06-30  Bruno Haible  <bruno@clisp.org>
2380
2381         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
2382         * lib/unicase/u16-casemap.c: Likewise.
2383         * lib/unicase/u32-casemap.c: Likewise.
2384
2385 2009-06-29  Bruno Haible  <bruno@clisp.org>
2386
2387         Define u32_casefold as a wrapper around u32_ct_casefold.
2388         * lib/unicase/u32-casefold.c: Update.
2389         * modules/unicase/u32-casefold (Depends-on): Add
2390         unicase/u32-ct-casefold, unicase/empty-prefix-context,
2391         unicase/empty-suffix-context. Clean up.
2392
2393         Define u16_casefold as a wrapper around u16_ct_casefold.
2394         * lib/unicase/u16-casefold.c: Update.
2395         * modules/unicase/u16-casefold (Depends-on): Add
2396         unicase/u16-ct-casefold, unicase/empty-prefix-context,
2397         unicase/empty-suffix-context. Clean up.
2398
2399         Define u8_casefold as a wrapper around u8_ct_casefold.
2400         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
2401         * lib/unicase/u8-casefold.c: Update.
2402         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
2403         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
2404
2405         Define u32_totitle as a wrapper around u32_ct_totitle.
2406         * lib/unicase/u32-totitle.c: Update.
2407         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
2408         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
2409
2410         Define u16_totitle as a wrapper around u16_ct_totitle.
2411         * lib/unicase/u16-totitle.c: Update.
2412         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
2413         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
2414
2415         Define u8_totitle as a wrapper around u8_ct_totitle.
2416         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
2417         functions.
2418         (FUNC): Delegate to U_CT_TOTITLE.
2419         * lib/unicase/u8-totitle.c: Update.
2420         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
2421         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
2422
2423         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
2424         invocation.
2425         * modules/unicase/u32-tolower (Depends-on): Add
2426         unicase/empty-prefix-context, unicase/empty-suffix-context.
2427
2428         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
2429         invocation.
2430         * modules/unicase/u16-tolower (Depends-on): Add
2431         unicase/empty-prefix-context, unicase/empty-suffix-context.
2432
2433         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
2434         * modules/unicase/u8-tolower (Depends-on): Add
2435         unicase/empty-prefix-context, unicase/empty-suffix-context.
2436
2437         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
2438         invocation.
2439         * modules/unicase/u32-toupper (Depends-on): Add
2440         unicase/empty-prefix-context, unicase/empty-suffix-context.
2441
2442         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
2443         invocation.
2444         * modules/unicase/u16-toupper (Depends-on): Add
2445         unicase/empty-prefix-context, unicase/empty-suffix-context.
2446
2447         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
2448         * modules/unicase/u8-toupper (Depends-on): Add
2449         unicase/empty-prefix-context, unicase/empty-suffix-context.
2450
2451         New module 'unicase/u32-ct-casefold'.
2452         * lib/unicase/u32-ct-casefold.c: New file.
2453         * modules/unicase/u32-ct-casefold: New file.
2454
2455         New module 'unicase/u16-ct-casefold'.
2456         * lib/unicase/u16-ct-casefold.c: New file.
2457         * modules/unicase/u16-ct-casefold: New file.
2458
2459         New module 'unicase/u8-ct-casefold'.
2460         * lib/unicase/u8-ct-casefold.c: New file.
2461         * lib/unicase/u-ct-casefold.h: New file, derived from
2462         lib/unicase/u-casefold.h.
2463         * modules/unicase/u8-ct-casefold: New file.
2464
2465         New module 'unicase/u32-ct-totitle'.
2466         * lib/unicase/u32-ct-totitle.c: New file.
2467         * modules/unicase/u32-ct-totitle: New file.
2468
2469         New module 'unicase/u16-ct-totitle'.
2470         * lib/unicase/u16-ct-totitle.c: New file.
2471         * modules/unicase/u16-ct-totitle: New file.
2472
2473         New module 'unicase/u8-ct-totitle'.
2474         * lib/unicase/u8-ct-totitle.c: New file.
2475         * lib/unicase/u-ct-totitle.h: New file, derived from
2476         lib/unicase/u-totitle.h.
2477         * modules/unicase/u8-ct-totitle: New file.
2478
2479         New module 'unicase/u32-ct-tolower'.
2480         * lib/unicase/u32-ct-tolower.c: New file.
2481         * modules/unicase/u32-ct-tolower: New file.
2482
2483         New module 'unicase/u16-ct-tolower'.
2484         * lib/unicase/u16-ct-tolower.c: New file.
2485         * modules/unicase/u16-ct-tolower: New file.
2486
2487         New module 'unicase/u8-ct-tolower'.
2488         * lib/unicase/u8-ct-tolower.c: New file.
2489         * modules/unicase/u8-ct-tolower: New file.
2490
2491         New module 'unicase/u32-ct-toupper'.
2492         * lib/unicase/u32-ct-toupper.c: New file.
2493         * modules/unicase/u32-ct-toupper: New file.
2494
2495         New module 'unicase/u16-ct-toupper'.
2496         * lib/unicase/u16-ct-toupper.c: New file.
2497         * modules/unicase/u16-ct-toupper: New file.
2498
2499         New module 'unicase/u8-ct-toupper'.
2500         * lib/unicase/u8-ct-toupper.c: New file.
2501         * modules/unicase/u8-ct-toupper: New file.
2502
2503         Add context arguments to u*_casemap functions.
2504         * lib/unicase/unicasemap.h: Include unicase.h.
2505         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
2506         suffix_context arguments.
2507         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
2508         functions.
2509         (FUNC): Add prefix_context and suffix_context arguments. Use
2510         uc_is_cased and uc_is_case_ignorable.
2511         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
2512         * lib/unicase/u16-casemap.c: Likewise.
2513         * lib/unicase/u32-casemap.c: Likewise.
2514         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
2515         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
2516         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
2517         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
2518         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
2519         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
2520
2521         New module 'unicase/u32-suffix-context'.
2522         * lib/unicase/u32-suffix-context.c: New file.
2523         * modules/unicase/u32-suffix-context: New file.
2524
2525         New module 'unicase/u16-suffix-context'.
2526         * lib/unicase/u16-suffix-context.c: New file.
2527         * modules/unicase/u16-suffix-context: New file.
2528
2529         New module 'unicase/u8-suffix-context'.
2530         * lib/unicase/u8-suffix-context.c: New file.
2531         * lib/unicase/u-suffix-context.h: New file.
2532         * modules/unicase/u8-suffix-context: New file.
2533
2534         New module 'unicase/empty-suffix-context'.
2535         * lib/unicase/empty-suffix-context.c: New file.
2536         * modules/unicase/empty-suffix-context: New file.
2537
2538         New module 'unicase/u32-prefix-context'.
2539         * lib/unicase/u32-prefix-context.c: New file.
2540         * modules/unicase/u32-prefix-context: New file.
2541
2542         New module 'unicase/u16-prefix-context'.
2543         * lib/unicase/u16-prefix-context.c: New file.
2544         * modules/unicase/u16-prefix-context: New file.
2545
2546         New module 'unicase/u8-prefix-context'.
2547         * lib/unicase/u8-prefix-context.c: New file.
2548         * lib/unicase/u-prefix-context.h: New file.
2549         * lib/unicase/context.h: New file.
2550         * modules/unicase/u8-prefix-context: New file.
2551
2552         New module 'unicase/empty-prefix-context'.
2553         * lib/unicase/empty-prefix-context.c: New file.
2554         * modules/unicase/empty-prefix-context: New file.
2555
2556         New module 'unicase/ignorable'.
2557         * lib/unicase/ignorable.c: New file.
2558         * modules/unicase/ignorable: New file.
2559
2560         New module 'unicase/cased'.
2561         * lib/unicase/caseprop.h: New file.
2562         * lib/unicase/cased.c: New file.
2563         * modules/unicase/cased: New file.
2564
2565         New functions for case mapping of substrings.
2566         * lib/unicase.h (casing_prefix_context_t): New type.
2567         (unicase_empty_prefix_context): New variable.
2568         (u8_casing_prefix_context, u16_casing_prefix_context,
2569         u32_casing_prefix_context, u8_casing_prefixes_context,
2570         u16_casing_prefixes_context, u32_casing_prefixes_context): New
2571         declarations.
2572         (casing_suffix_context_t): New type.
2573         (unicase_empty_suffix_context): New variable.
2574         (u8_casing_suffix_context, u16_casing_suffix_context,
2575         u32_casing_suffix_context, u8_casing_suffixes_context,
2576         u16_casing_suffixes_context, u32_casing_suffixes_context,
2577         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
2578         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
2579         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
2580         declarations.
2581
2582 2009-06-28  Jim Meyering  <meyering@redhat.com>
2583
2584         boostrap: indent only with spaces
2585         * build-aux/bootstrap: Indent only with spaces, never TABs.
2586
2587         bootstrap: split long lines
2588         * build-aux/bootstrap: Keep line length < 80.
2589
2590         bootstrap: sync from coreutils
2591         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
2592         just as autoreconf does.  Verify a list of prerequisite
2593         package-name,version-number pairs if defined in bootstrap.conf.
2594         Refer to README-prereq, if prerequisites are not satisfied.
2595
2596 2009-06-27  Eric Blake  <ebb9@byu.net>
2597
2598         tests: add test for bogus NULL definition
2599         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
2600         * tests/test-stdlib.c: Likewise.
2601         * tests/test-string.c: Likewise.
2602         * tests/test-locale.c: Likewise.
2603         * tests/test-unistd.c: Likewise.
2604         * modules/stdio-tests (Depends-on): Add verify.
2605         * modules/stdlib-tests (Depends-on): Likewise.
2606         * modules/string-tests (Depends-on): Likewise.
2607         * modules/locale-tests (Depends-on): Likewise.
2608         * modules/unistd-tests (Depends-on): Likewise.
2609
2610 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
2611
2612         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
2613         self-explaining comment.
2614         * m4/selinux-selinux-h: Update serial.
2615         (gl_LIBSELINUX): New macro, adding a warning for missing development
2616         packages to code extracted from...
2617         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
2618         Add warning for missing development packages here, too.
2619
2620 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
2621
2622         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
2623
2624 2009-06-25  Eric Blake  <ebb9@byu.net>
2625
2626         version-etc: fix regression
2627         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
2628         gcc.
2629         (version_etc): Use it, to catch bugs with trailing NULL.
2630         * lib/version-etc.c (version_etc_arn): Delete unused argument.
2631         (version_etc_va): Fix logic bug.
2632         * modules/version-etc-tests: Add test.
2633         * tests/test-version-etc.c: New file.
2634         * tests/test-version-etc.sh: Likewise.
2635
2636 2009-06-25  Sam Steingold  <sds@gnu.org>
2637
2638         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
2639         mbtowc declaration.
2640
2641 2009-06-25  Eric Blake  <ebb9@byu.net>
2642
2643         fpurge: migrate into <stdio.h>
2644         * lib/fpurge.h: Delete...
2645         * lib/stdio.in.h (fpurge): ...and declare here, instead.
2646         * lib/fpurge.c (fpurge): Change declaring header.
2647         * modules/fpurge (Files): Drop deleted file.
2648         (Depends-on): Add stdio.
2649         (configure.ac): Set witness.
2650         * modules/stdio (Makefile.am): Support fpurge macros.
2651         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
2652         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
2653         * lib/fflush.c: Update client.
2654         * tests/test-fpurge.c: Likewise.
2655         * NEWS: Mention the change.
2656
2657 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
2658
2659        * lib/argp-version-etc.c (program_authors): Add const
2660        qualifier.
2661        * lib/version-etc.c: Fix typos in the comments.
2662        * modules/argp-version-etc: Depends on version-etc.
2663
2664 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
2665
2666         argp-version-etc: new module.
2667
2668         * lib/argp-version-etc.c: New file.
2669         * lib/argp-version-etc.h: New file.
2670         * modules/argp-version-etc: New file.
2671         * modules/argp-version-etc-tests: New file.
2672         * tests/test-argp-version-etc.c: New test.
2673         * tests/test-argp-version-etc-1.sh: New test.
2674
2675 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
2676
2677         Provide additional interfaces and documentation for version-etc
2678         module.
2679
2680         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
2681         interfaces.
2682         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
2683         prototypes.
2684
2685 2009-06-24  Bruno Haible  <bruno@clisp.org>
2686
2687         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
2688         HAVE_LIB${NAME} macro.
2689         Reported by Sam Steingold <sds@gnu.org>.
2690
2691 2009-06-23  Simon Josefsson  <simon@josefsson.org>
2692
2693         * modules/hash-tests (test_hash_LDADD): Link to libintl when
2694         needed.
2695
2696 2009-06-21  Bruno Haible  <bruno@clisp.org>
2697
2698         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
2699         work.
2700         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
2701         together with LIB${NAME}, LTLIB${NAME}.
2702         Reported by Sam Steingold <sds@gnu.org>.
2703
2704 2009-06-20  Jim Meyering  <meyering@redhat.com>
2705
2706         tests: make sc_require_test_exit_idiom more generic
2707         * top/maint.mk (Exit_witness_file): New overridable variable.
2708         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
2709         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
2710
2711 2009-06-19  Jim Meyering  <meyering@redhat.com>
2712
2713         hash: reverse order of src/dst parameters in an internal interface
2714         * lib/hash.c (transfer_entries): Reverse order of parameters to
2715         put DST before SRC.  Adjust callers.
2716
2717         tests: test-hash: avoid wholesale duplication
2718         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
2719         Instead, use a loop and add a single conditional.
2720
2721         tests: test-hash: allow seed selection via a command line argument
2722         * tests/test-hash.c (get_seed): New function.
2723         (main): Use it.
2724
2725 2009-06-19  Eric Blake  <ebb9@byu.net>
2726
2727         hash: avoid memory leak on allocation failure
2728         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
2729         failure.  Factor repeated algorithm...
2730         (transfer_entries): ...into new helper routine.
2731         (hash_delete): React to hash_rehash return value.
2732
2733         hash: reduce memory pressure in hash_rehash no-op case
2734         * lib/hash.c (next_prime): Avoid overflow.
2735         (hash_initialize): Factor bucket size computation...
2736         (compute_bucket_size): ...into new helper function.
2737         (hash_rehash): Use new function and open coding to reduce memory
2738         pressure, and avoid a memory leak in USE_OBSTACK code.
2739         Reported by Jim Meyering.
2740
2741 2009-06-18  Eric Blake  <ebb9@byu.net>
2742
2743         hash: make rotation more obvious
2744         * modules/hash (Depends-on): Add bitrotate and stdint.
2745         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
2746         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
2747         (SIZE_MAX): Rely on headers for definition.
2748         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
2749         (raw_hasher): Use rotr_sz.
2750         Suggested by Jim Meyering.
2751
2752         hash: fix memory leak in last patch
2753         * lib/hash.c (hash_rehash): Avoid memory leak.
2754
2755         hash: avoid no-op rehashing
2756         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
2757
2758         hash: provide default callback functions
2759         * lib/hash.c (raw_hasher, raw_comparator): New functions.
2760         (hash_initialize): Use them as defaults.
2761         * tests/test-hash.c (main): Test this.
2762
2763         hash: minor optimization
2764         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
2765         when possible.
2766         (hash_initialize): Document this promise.
2767         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
2768         * tests/test-hash.c (hash_compare_strings): Test this.
2769
2770 2009-06-18  Bruno Haible  <bruno@clisp.org>
2771
2772         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
2773         going to be replaced anyway.
2774
2775 2009-06-18  Bruno Haible  <bruno@clisp.org>
2776
2777         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
2778         in one place.
2779         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
2780         be replaced anyway.
2781
2782 2009-06-18  Eric Blake  <ebb9@byu.net>
2783
2784         hash: check for resize before insertion
2785         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
2786         threshold before insertion, so that a pathological hash_rehash
2787         that fills every bucket can still trigger another rehash.
2788
2789 2009-06-18  Jim Meyering  <meyering@redhat.com>
2790
2791         hash-tests: add a loop around the small tests
2792         * tests/test-hash.c (main): Repeat small tests with selected
2793         small initial table sizes.
2794
2795 2009-06-17  Eric Blake  <ebb9@byu.net>
2796
2797         hash: minor cleanups
2798         * lib/hash.h (hash_entry): Make opaque, by moving...
2799         * lib/hash.c (hash_entry): ...here.
2800         (hash_insert): Clarify restrictions on what can be inserted.
2801         (hash_get_next): Clarify when it is safe to remove an element
2802         during traversal.
2803         (check_tuning): Skip verification when tuning is known safe.
2804         (hash_initialize): Clarify restrictions on tuning.
2805
2806 2009-06-17  Jim Meyering  <jim@meyering.net>
2807         and Eric Blake  <ebb9@byu.net>
2808
2809         hash-tests: new module
2810         * modules/hash-tests: New file.
2811         * tests/test-hash.c: New file.
2812
2813 2009-06-17  Eric Blake  <ebb9@byu.net>
2814
2815         strstr-simple: document new module
2816         * MODULES.html.sh: Document new module.
2817
2818         strstr, strcasestr: replace on platforms with broken memchr
2819         * modules/strstr: Split into...
2820         * modules/strstr-simple: ...new module that does not care about
2821         performance, but does care about glibc bug.
2822         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
2823         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
2824         if platform memchr is broken, per Debian bug 521737.
2825         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
2826         memchr.
2827         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
2828         * doc/posix-functions/strstr.texi (strstr): Document the fix.
2829         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
2830         * modules/mountlist (Depends-on): Add strstr-simple.
2831         * modules/gen-uni-tables (Depends-on): Likewise.
2832         * modules/argz (Depends-on): Add strstr.
2833
2834 2009-06-17  Bruno Haible  <bruno@clisp.org>
2835
2836         * modules/posix_spawn-internal (Depends-on): Add errno.
2837
2838 2009-06-17  Bruno Haible  <bruno@clisp.org>
2839
2840         Define missing ESTALE on Interix 3.5.
2841         * lib/errno.in.h (ESTALE): Assign a value if missing.
2842         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
2843         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
2844         missing.
2845         * doc/posix-headers/errno.texi: Mention the Interix bug.
2846         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
2847
2848 2009-06-15  Eric Blake  <ebb9@byu.net>
2849
2850         memchr, memchr2: add valgrind exception
2851         * lib/memchr.valgrind: New file.
2852         * lib/memchr2.valgrind: New file.
2853         * modules/memchr (Files): Distribute valgrind file.
2854         * modules/memchr2 (Files): Likewise.
2855
2856         docs: memchr is no longer obsolete
2857         * MODULES.html.sh: Move memchr from obsolete to string.h section.
2858         * lib/string.in.h (memchr): Simplify logic.
2859
2860 2009-06-14  Jim Meyering  <meyering@redhat.com>
2861
2862         link-follow: fix the "checking..." message to not mention trailing slash
2863         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
2864         never considered trailing slashes.
2865
2866 2009-06-14  Bruno Haible  <bruno@clisp.org>
2867
2868         * m4/memchr.m4: Mention also the bug on IA-64.
2869         * doc/posix-functions/memchr.texi: Likewise.
2870
2871 2009-06-12  Eric Blake  <ebb9@byu.net>
2872
2873         memchr: detect broken x86_64 and alpha implementations
2874         * modules/memchr-tests (Depends-on): Move mmap detection...
2875         * modules/memchr (Depends-on): ...here.
2876         (configure.ac): Set indicator.
2877         * lib/string.in.h (memchr): Declare replacement.
2878         * modules/string (Makefile.am): Trigger replacement.
2879         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
2880         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
2881         bugs.
2882         * doc/posix-functions/memchr.texi (memchr): Document the bug.
2883         * modules/getpagesize (License): Relax license.
2884
2885 2009-06-11  Bruno Haible  <bruno@clisp.org>
2886
2887         * lib/idpriv.h: Add more references.
2888
2889 2009-06-08  Bruno Haible  <bruno@clisp.org>
2890
2891         Tests for module 'idpriv-droptemp'.
2892         * modules/idpriv-droptemp-tests: New file.
2893         * tests/test-idpriv-droptemp.sh: New file.
2894         * tests/test-idpriv-droptemp.su.sh: New file.
2895         * tests/test-idpriv-droptemp.c: New file.
2896
2897         New module 'idpriv-droptemp'.
2898         * lib/idpriv-droptemp.c: New file.
2899         * modules/idpriv-droptemp: New file.
2900
2901 2009-06-08  Bruno Haible  <bruno@clisp.org>
2902
2903         Tests for module 'idpriv-drop'.
2904         * modules/idpriv-drop-tests: New file.
2905         * tests/test-idpriv-drop.sh: New file.
2906         * tests/test-idpriv-drop.su.sh: New file.
2907         * tests/test-idpriv-drop.c: New file.
2908
2909         New module 'idpriv-drop'.
2910         * lib/idpriv.h: New file.
2911         * lib-idpriv-drop.c: New file.
2912         * m4/idpriv.m4: New file.
2913         * modules/idpriv-drop: New file.
2914
2915 2009-06-08  Bruno Haible  <bruno@clisp.org>
2916
2917         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
2918         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
2919         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
2920         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
2921         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
2922         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
2923         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
2924
2925 2009-06-08  Eric Blake  <ebb9@byu.net>
2926
2927         test-strstr: use memory fence, when possible
2928         * tests/test-strstr.c (main): Use memory fence, in order to be
2929         more likely to trigger Debian bug 521737.
2930         * modules/strstr-tests (Files): Pull in additional files.
2931
2932         memchr: no longer obsolete, for wider field testing
2933         * modules/memchr (Status, Notice): Delete, this module is no
2934         longer obsolete.
2935         * modules/vasnprintf (Depends-on): Add memchr.
2936
2937 2009-06-07  Jim Meyering  <meyering@redhat.com>
2938
2939         hash: declare some functions with the warn_unused_result attribute
2940         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
2941
2942 2009-06-07  Bruno Haible  <bruno@clisp.org>
2943
2944         * tests/test-alignof.c: Don't test int64_t if it does not exist.
2945         Reported by Eric Blake.
2946
2947 2009-06-06  Eric Blake  <ebb9@byu.net>
2948
2949         test-alignof: fix typo with long double
2950         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
2951         compiler error.
2952
2953 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
2954
2955         Escape non-texinfo { and }s.
2956         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
2957         markup error.
2958
2959 2009-06-04  Jim Meyering  <meyering@redhat.com>
2960
2961         gitlog-to-changelog: don't infloop on an empty commit log
2962         * build-aux/gitlog-to-changelog: Warn about an empty log message.
2963         Reported by Boris Petersen <transacid@centerim.org>.
2964
2965 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
2966
2967         version-etc: extend for packagers
2968         Add three new configure options, intended for packagers:
2969           --with-packager="packager name"
2970           --with-packager-version="packager-specific version"
2971           --with-packager-bug-reports="packager bug reporting"
2972         An example with coreutils:
2973           $ ./configure \
2974             --with-packager=Gentoo \
2975             --with-packager-bug-report=http://bugs.gentoo.org/ \
2976             --with-packager-version="patchset 1.6"
2977           $ ./src/ls --version | head -n3
2978           ls (GNU coreutils) 7.1-dirty
2979           Packaged by Gentoo (patchset 1.6)
2980           Copyright (C) 2009 Free Software Foundation, Inc.
2981         Note that the bug reporting info via --help doesn't show up because
2982         coreutils uses its own custom emit_bug_reporting_address() implementation
2983         in src/system.h.  If it didn't, it'd look like:
2984           $ ./src/ls --help | tail -n4
2985           Report bugs to <bug-coreutils@gnu.org>.
2986           Report Gentoo bugs to <http://bugs.gentoo.org/>.
2987           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
2988           General help using GNU software: <http://www.gnu.org/gethelp/>.
2989         * lib/version-etc.c: Print new information, if provided.
2990         * m4/version-etc.m4: New file.
2991         * modules/version-etc (Files): Add m4/version-etc.m4.
2992         (configure.ac): Add gl_VERSION_ETC.
2993
2994 2009-05-31  Bruno Haible  <bruno@clisp.org>
2995
2996         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
2997         and 'int64_t'.
2998         * modules/alignof-tests (Dependencies): Add stdint.
2999         Reported by Eric Blake.
3000
3001 2009-05-31  Bruno Haible  <bruno@clisp.org>
3002
3003         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
3004         restriction due to compiler bugs.
3005         Reported by Eric Blake.
3006
3007 2009-05-31  Simon Josefsson  <simon@josefsson.org>
3008             Bruno Haible  <bruno@clisp.org>
3009
3010         Fix test-alignof failure.
3011         * lib/alignof.h (alignof_slot): New macro.
3012         (alignof_type): New macro, with the same semantics as the previous
3013         'alignof'.
3014         (alignof): Alias to alignof_slot.
3015         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
3016         check that the results are usable as constant expressions.
3017
3018 2009-05-31  Bruno Haible  <bruno@clisp.org>
3019
3020         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
3021         * tests/test-memchr.c (main): Check that memchr does not read past the
3022         first occurrence of the byte.
3023         * tests/test-strstr.c (main): Update comment.
3024         Suggested by Eric Blake.
3025
3026 2009-05-30  Bruno Haible  <bruno@clisp.org>
3027
3028         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
3029         detail how to use dumpbin.
3030         Reported by David Byron <dbyron@dbyron.com>.
3031
3032 2009-06-02  Simon Josefsson  <simon@josefsson.org>
3033
3034         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
3035
3036 2009-06-02  Simon Josefsson  <simon@josefsson.org>
3037
3038         * m4/manywarnings.m4: Add GCC 4.4 warnings.
3039
3040 2009-05-28  Bruno Haible  <bruno@clisp.org>
3041
3042         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
3043         build-aux/ files.
3044
3045 2009-05-28  Simon Josefsson  <simon@josefsson.org>
3046
3047         * gnulib-tool (func_import): Transform license on build-aux/ files too.
3048
3049 2009-05-27  Simon Josefsson  <simon@josefsson.org>
3050
3051         * gnulib-tool (sed_transform_main_lib_file)
3052         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
3053         regexps.
3054
3055 2009-05-26  Simon Josefsson  <simon@josefsson.org>
3056
3057         * tests/test-strstr.c: Add another self-test.
3058         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
3059         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
3060
3061 2009-05-23  Bruno Haible  <bruno@clisp.org>
3062
3063         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
3064         change.
3065
3066 2009-05-21  Bruno Haible  <bruno@clisp.org>
3067
3068         Simplify use of mode_t varargs.
3069         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
3070         uses 'mode_t' or 'int'.
3071         * lib/openat.c (openat): Likewise.
3072         * lib/open-safer.c (open_safer): Likewise.
3073         * m4/mode_t.m4: New file.
3074         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
3075         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
3076         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
3077         * modules/open (Files): Add m4/mode_t.m4.
3078         * modules/openat (Files): Likewise.
3079         * modules/fcntl-safer (Files): Likewise.
3080         Suggested by Eric Blake.
3081
3082 2009-05-21  Pádraig Brady  <P@draigbrady.com>
3083
3084         * doc/glibc-functions/fallocate.texi: New file.
3085         * doc/gnulib.texi: Include it.
3086
3087 2009-05-21  Eric Blake  <ebb9@byu.net>
3088             Bruno Haible  <bruno@clisp.org>
3089
3090         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
3091         invocations.
3092         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
3093
3094 2009-05-21  Eric Blake  <ebb9@byu.net>
3095             Bruno Haible  <bruno@clisp.org>
3096
3097         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
3098         include_next. Fix of 2008-11-20 commit.
3099         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
3100         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
3101         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
3102         NEXT_MATH_H.
3103         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
3104         instead of NEXT_MATH_H.
3105
3106 2009-05-21  Bruno Haible  <bruno@clisp.org>
3107
3108         Avoid redefinition warnings for SIZE_MAX.
3109         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
3110         Reported by Simon Josefsson.
3111
3112 2009-05-21  Bruno Haible  <bruno@clisp.org>
3113
3114         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
3115         AC_CACHE_VAL.
3116
3117 2009-05-20  Bruno Haible  <bruno@clisp.org>
3118
3119         Make zeroptr.h work on mingw.
3120         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
3121         mprotect.
3122         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
3123         * modules/memchr2-tests (configure.ac): Likewise.
3124         * modules/memcmp-tests (configure.ac): Likewise.
3125         * modules/memmem-tests (configure.ac): Likewise.
3126         * modules/memrchr-tests (configure.ac): Likewise.
3127         Reported by Simon Josefsson.
3128
3129 2009-05-20  Simon Josefsson  <simon@josefsson.org>
3130
3131         * tests/test-glob.c: Include string.h for strcmp prototype.
3132
3133 2009-05-20  Simon Josefsson  <simon@josefsson.org>
3134
3135         * modules/getdelim (Depends-on): Add explicit stdint, although it
3136         was implicitly already pulled in via realloc-posix.
3137         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
3138
3139 2009-05-20  Simon Josefsson  <simon@josefsson.org>
3140
3141         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
3142         G. Christensen" <tgc@jupiterrise.com>.
3143         * m4/sys_socket_h.m4: Check for sa_family_t.
3144         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
3145         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
3146         * tests/test-sys_socket.c: Check that sa_family_t works.
3147
3148 2009-05-18  Eric Blake  <ebb9@byu.net>
3149
3150         maint.mk: allow gnulib_dir in VPATH build
3151         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
3152
3153 2009-05-15  Jim Meyering  <meyering@redhat.com>
3154
3155         maint.mk: Give gnulib_dir a default definition.
3156         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
3157         Thus, most packages no longer need to specify this variable in cfg.mk
3158
3159 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
3160
3161         rename.m4: fix typos that would make non-mingw cross-configure fail
3162         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
3163
3164 2009-05-13  Eric Blake  <ebb9@byu.net>
3165
3166         mmap-anon: avoid out-of-order autoconf expansion
3167         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
3168         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
3169         * modules/memchr-tests (Depends-on): Add extensions.
3170         * modules/memchr2-tests (Depends-on): Add extensions.
3171         * modules/memcmp-tests (Depends-on): Add extensions.
3172         * modules/memmem-tests (Depends-on): Add extensions.
3173         * modules/memrchr-tests (Depends-on): Add extensions.
3174
3175 2009-05-13  Bruno Haible  <bruno@clisp.org>
3176
3177         Make some tests ISO C 99 compliant.
3178         * tests/zerosize-ptr.h: New file.
3179         * tests/test-memchr.c: Include zerosize-ptr.h.
3180         (main): Use a zero-size object pointer instead of NULL.
3181         * tests/test-memchr2.c: Include zerosize-ptr.h.
3182         (main): Use a zero-size object pointer instead of NULL.
3183         * tests/test-memcmp.c: Include zerosize-ptr.h.
3184         (main): Use a zero-size object pointer instead of NULL.
3185         * tests/test-memmem.c: Include zerosize-ptr.h.
3186         (main): Use a zero-size object pointer instead of NULL.
3187         * tests/test-memrchr.c: Include zerosize-ptr.h.
3188         (main): Use a zero-size object pointer instead of NULL.
3189         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
3190         m4/mmap-anon.m4.
3191         (Depends-on): Add getpagesize.
3192         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
3193         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
3194         m4/mmap-anon.m4.
3195         (Depends-on): Add getpagesize.
3196         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
3197         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
3198         m4/mmap-anon.m4.
3199         (Depends-on): Add getpagesize.
3200         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
3201         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
3202         m4/mmap-anon.m4.
3203         (Depends-on): Add getpagesize.
3204         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
3205         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
3206         m4/mmap-anon.m4.
3207         (Depends-on): Add getpagesize.
3208         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
3209
3210 2009-05-12  Bruno Haible  <bruno@clisp.org>
3211
3212         Tests for module 'alignof'.
3213         * modules/alignof-tests: New file.
3214         * tests/test-alignof.c: New file.
3215
3216 2009-05-12  Bruno Haible  <bruno@clisp.org>
3217
3218         Fix alignof macro.
3219         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
3220         vendor compilers that are always correct.
3221
3222 2009-05-12  Bruno Haible  <bruno@clisp.org>
3223
3224         Make the MAP_ANONYMOUS detection work on HP-UX 11.
3225         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
3226         not whether its fully works.
3227
3228 2009-05-12  Bruno Haible  <bruno@clisp.org>
3229
3230         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
3231
3232 2009-05-12  Jim Meyering  <meyering@redhat.com>
3233
3234         * top/maint.mk: Adjust backslash alignment.
3235
3236 2009-05-11  Simon Josefsson  <simon@josefsson.org>
3237
3238         * top/maint.mk: Make $(srcdir)/build-aux configurable.
3239
3240 2009-05-11  Eric Blake  <ebb9@byu.net>
3241
3242         argp: avoid undefined behavior
3243         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
3244         macros.
3245
3246 2009-05-08  Simon Josefsson  <simon@josefsson.org>
3247
3248         * tests/test-vc-list-files-git.sh: Do git config of user.email and
3249         user.name to prevent git commit from complaining.
3250
3251 2009-05-10  Bruno Haible  <bruno@clisp.org>
3252
3253         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
3254         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
3255         it rewrites every file name only once.
3256         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
3257
3258 2009-05-08  Bruno Haible  <bruno@clisp.org>
3259
3260         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
3261         instead of 'max'.
3262
3263 2009-05-08  Simon Josefsson  <simon@josefsson.org>
3264
3265         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
3266         sockaddr_storage test.
3267
3268 2009-05-07  Simon Josefsson  <simon@josefsson.org>
3269
3270         * modules/sys_socket (Makefile.am): Substitute
3271         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
3272         * m4/sys_socket_h.m4: Check for sockaddr_storage.
3273         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
3274         * tests/test-sys_socket.c: Check sockaddr_storage.
3275
3276 2009-05-08  Bruno Haible  <bruno@clisp.org>
3277
3278         New module 'alignof'.
3279         * lib/alignof.h: New file.
3280         * modules/alignof: New file.
3281
3282 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
3283             Bruno Haible  <bruno@clisp.org>
3284
3285         Fix test-file-has-acl on FreeBSD.
3286         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
3287         mask is implicitly added.
3288         * tests/test-file-has-acl.c: Include <signal.h>.
3289         (main): Terminate the test after 5 seconds.
3290         * modules/acl-tests (configure.ac): Check for alarm function.
3291
3292 2009-05-04  Bruno Haible  <bruno@clisp.org>
3293
3294         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
3295         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
3296         * modules/errno (configure.ac): Drop AC_REQUIRE.
3297         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
3298         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
3299
3300 2009-05-04  Simon Josefsson  <simon@josefsson.org>
3301
3302         * modules/glob-tests: New module.
3303         * tests/test-glob.c: Add.
3304
3305 2009-05-04  Simon Josefsson  <simon@josefsson.org>
3306
3307         * modules/fnmatch-tests: New module.
3308         * tests/test-fnmatch.c: Add.
3309
3310 2009-05-04  Eric Blake  <ebb9@byu.net>
3311
3312         maint: make the new no-submodule-changes rule VPATH-safe
3313         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
3314
3315 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
3316             Bruno Haible  <bruno@clisp.org>
3317
3318         acl: Fix infinite loop on FreeBSD.
3319         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
3320         of return value from acl_get_entry.
3321         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
3322         Likewise.
3323
3324 2009-05-03  Bruno Haible  <bruno@clisp.org>
3325
3326         * lib/acl-internal.h (acl_entries): Clarify return value.
3327         * lib/acl_entries.c (acl_entries): Likewise.
3328
3329 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
3330
3331         Bug fix in acl module.
3332         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
3333
3334 2009-05-03  Bruno Haible  <bruno@clisp.org>
3335
3336         Create gperf-generated file in the source dir, not in the build dir.
3337         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
3338         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
3339         * modules/unicase/locale-language (unicase/locale-languages.h):
3340         Likewise.
3341         * modules/unicase/special-casing (unicase/special-casing-table.h):
3342         Likewise.
3343         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
3344         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
3345         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
3346         Reported by Ralf Wildenhues.
3347
3348 2009-05-03  Bruno Haible  <bruno@clisp.org>
3349
3350         * modules/fnmatch (Description, configure.ac): Taken from
3351         fnmatch-posix.
3352         * modules/fnmatch-posix: Turn into a symbolic reference to the
3353         'fnmatch' module, and deprecate.
3354         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
3355
3356 2009-05-03  Bruno Haible  <bruno@clisp.org>
3357
3358         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
3359         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
3360         Reported by Ralf Wildenhues.
3361
3362 2009-05-04  Simon Josefsson  <simon@josefsson.org>
3363
3364         * m4/fnmatch.m4: Fix fnmatch re-define.
3365
3366 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
3367
3368         priv-set: new module and tests; adapt write-any-file
3369         * lib/priv-set.c: New file.
3370         * lib/priv-set.h: New file.
3371         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
3372         * lib/write-any-file.c: Simplify by using priv-set module.
3373         * m4/priv-set.m4: New file.
3374         * modules/priv-set: New file.
3375         * modules/unlinkdir: Add dependency on priv-set module.
3376         * modules/write-any-file: Likewise.
3377
3378         Tests for module 'priv-set'.
3379         * modules/priv-set-tests: New file.
3380         * tests/test-priv-set.c: New file.
3381
3382 2009-05-03  Jim Meyering  <meyering@redhat.com>
3383             Bruno Haible  <bruno@clisp.org>
3384
3385         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
3386         use the converted UTF-8 variant of the name instead.
3387
3388 2009-05-03  Jim Meyering  <meyering@redhat.com>
3389
3390         tests: tighten some getdate tests
3391         * tests/test-getdate.c (main): Tighten tests: require equality,
3392         not just greater than.  Set TZ envvar to UTC0.
3393
3394 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
3395
3396         getdate: correctly interpret "next monday" when run on a Monday
3397         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
3398         that e.g., "next tues" (when run on a tuesday) results in a date
3399         that is one week in the future, and not today's date.
3400         I.e., add a week when the wday is the same as the current one.
3401         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
3402         and earlier by Martin Bernreuther and Jan Minář.
3403         * tests/test-getdate.c (main): Check that "next DAY" is always in
3404         the future and that "last DAY" is always in the past.
3405
3406 2009-05-02  Jim Meyering  <meyering@redhat.com>
3407
3408         build: ensure that a release build fails when a submodule is unclean
3409         * top/maint.mk (no-submodule-changes): New rule.
3410         (alpha beta major): Depend on it.
3411
3412 2009-05-02  Bruno Haible  <bruno@clisp.org>
3413
3414         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
3415         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
3416         shell variable gl_fnmatch_required to detect which variant is
3417         requested.
3418         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
3419         gl_FUNC_FNMATCH_POSIX.
3420         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
3421         exclude fnmatch-posix.
3422
3423 2009-05-02  Bruno Haible  <bruno@clisp.org>
3424
3425         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
3426         * modules/mbsrtowcs (License): Change to LGPLv2+.
3427         * modules/strnlen1 (License): Likewise.
3428         Reported by Simon Josefsson.
3429
3430 2009-05-02  Bruno Haible  <bruno@clisp.org>
3431
3432         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
3433         "cross".
3434         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
3435         gnulib-tool was called with option --source-base=lib.
3436
3437 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3438
3439         Use automake *-local hooks without commands, for extensibility.
3440         * modules/localcharset (Makefile.am): Rename install-exec-local
3441         rule to install-exec-localcharset, and make it a prerequisite of
3442         install-exec-local.  Likewise, rename the uninstall-local rule to
3443         uninstall-localcharset, and make it a prerequisite of the former.
3444
3445 2009-05-01  Bruno Haible  <bruno@clisp.org>
3446
3447         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
3448         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
3449         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
3450         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
3451         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
3452         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
3453         m4/locale-zh.m4, m4/codeset.m4.
3454
3455         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
3456         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
3457         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
3458         m4/locale-zh.m4.
3459
3460         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
3461         REPLACE_WCRTOMB if mbstate_t must be replaced.
3462         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
3463         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
3464
3465 2009-05-01  Bruno Haible  <bruno@clisp.org>
3466
3467         Avoid compiler warnings when redefining macros defined by <libintl.h>.
3468         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
3469         dngettext, dcngettext, textdomain, bindtextdomain,
3470         bind_textdomain_codeset): Undefine before redefining.
3471
3472 2009-04-30  Bruno Haible  <bruno@clisp.org>
3473
3474         Fix bug introduced on 2009-04-25.
3475         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
3476         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
3477         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
3478         is defined.
3479         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
3480         is defined.
3481         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
3482         is defined.
3483         Reported by Elbert_Pol <elbert.pol@gmail.com>.
3484
3485 2009-04-28  Bruno Haible  <bruno@clisp.org>
3486
3487         Comment tweaks.
3488         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
3489         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
3490         * lib/unicase.h (u*_casexfrm): Likewise.
3491         Reported by Paolo Bonzini.
3492
3493 2009-04-28  Bruno Haible  <bruno@clisp.org>
3494
3495         Fix a compilation error.
3496         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
3497         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
3498         Reported by Jim Meyering.
3499
3500 2009-04-27  Bruno Haible  <bruno@clisp.org>
3501
3502         New module 'libunistring'.
3503         * modules/libunistring: New file.
3504         * m4/libunistring.m4: New file.
3505         * MODULES.html.sh (Unicode string functions): Add it.
3506
3507 2009-04-27  Eric Blake  <ebb9@byu.net>
3508
3509         maint.mk: allow package-specific header to provide <config.h>
3510         * top/maint.mk (sc_require_config_h): New variable.
3511         (sc_require_config_h, sc_require_config_h_first): Use it.
3512
3513 2009-04-27  Simon Josefsson  <simon@josefsson.org>
3514
3515         * top/maint.mk (sc_avoid_if_before_free): Except
3516         useless-if-before-free script.
3517
3518 2009-04-27  Eric Blake  <ebb9@byu.net>
3519
3520         maintainer-makefile: depend on all required helper scripts
3521         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
3522         useless-if-before-free.
3523         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
3524         version, rather than assuming gnulib checkout is available.
3525         Reported by Simen Josefsson.
3526
3527 2009-04-26  Bruno Haible  <bruno@clisp.org>
3528
3529         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
3530         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
3531         "../" or "..".
3532
3533 2009-04-26  Bruno Haible  <bruno@clisp.org>
3534
3535         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
3536         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
3537         AC_LIB_HAVE_LINKFLAGS.
3538
3539 2009-04-26  Bruno Haible  <bruno@clisp.org>
3540
3541         Simplify calling convention of u*_conv_from_encoding.
3542         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
3543         u32_conv_from_encoding): Expect a resultbuf argument and return the
3544         result directly as a pointer.
3545         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
3546         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
3547         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
3548         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
3549         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
3550         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
3551         Update.
3552         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
3553         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
3554         * lib/vasnprintf.c (VASNPRINTF): Update.
3555         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
3556         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
3557         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
3558         * NEWS: Mention the change.
3559
3560 2009-04-26  Bruno Haible  <bruno@clisp.org>
3561
3562         Simplify calling convention of u*_conv_to_encoding.
3563         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
3564         u32_conv_to_encoding): Expect a resultbuf argument and return the
3565         result directly as a pointer.
3566         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
3567         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
3568         freeing scaled_offsets if mem_iconveha failed.
3569         * lib/unicase/u-casexfrm.h (FUNC): Update.
3570         * lib/uninorm/u-normxfrm.h (FUNC): Update.
3571         * lib/vasnprintf.c (VASNPRINTF): Update.
3572         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
3573         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
3574         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
3575         * NEWS: Mention the change.
3576
3577 2009-04-26  Bruno Haible  <bruno@clisp.org>
3578
3579         Avoid test failures on AIX and OSF/1.
3580         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
3581         malloc(0).
3582         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
3583         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
3584         Likewise.
3585         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
3586         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
3587         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
3588         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
3589         * doc/posix-functions/malloc.texi: Document the portability problem
3590         related to malloc(0).
3591
3592 2009-04-26  Bruno Haible  <bruno@clisp.org>
3593
3594         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
3595         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
3596         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
3597
3598 2009-04-25  Bruno Haible  <bruno@clisp.org>
3599
3600         Avoid link error when creating a namespace clean library.
3601         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
3602         as macro with arguments if already defined as an alias.
3603         * lib/signbitf.c (gl_signbitf): Don't undefine.
3604         * lib/signbitd.c (gl_signbitd): Don't undefine.
3605         * lib/signbitl.c (gl_signbitl): Don't undefine.
3606
3607 2009-04-25  Jim Meyering  <meyering@redhat.com>
3608
3609         vc-list-files: fix another quoting bug
3610         * build-aux/vc-list-files: Avoid sed backslash expansion
3611         of pathological directory names.
3612
3613 2009-04-25  Eric Blake  <ebb9@byu.net>
3614
3615         vc-list-files: fix shell quoting error
3616         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
3617         timestamp.
3618
3619 2009-04-25  Jim Meyering  <meyering@redhat.com>
3620
3621         vc-list-files: restore lost functionality with subdir argument
3622         * build-aux/vc-list-files: When given a non-"." sub-directory
3623         argument, substitute the $dir/ prefix back onto each resulting name.
3624         Otherwise, coreutils' root_tests check would fail.
3625
3626 2009-04-24  Eric Blake  <ebb9@byu.net>
3627
3628         vc-list-files: ignore git symlinks
3629         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
3630         than ls-files, to ignore git symlinks.
3631
3632         maint.mk: import improvements from m4
3633         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
3634         (move_if_change): Delete unused macro.
3635         (news-date-check, vc-diff-check): Support VPATH builds.
3636         (announcement): Likewise.  Split --bootstrap-tools list...
3637         (boostrap-tools): ...into separate list, which can be overridden
3638         in cfg.mk.
3639         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
3640         requiring dependency on useless-if-before-free module.
3641         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
3642         Support VPATH builds.
3643
3644 2009-04-24  Jim Meyering  <meyering@redhat.com>
3645
3646         maint.mk: remove coreutils-specific rules and variables
3647         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
3648         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
3649         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
3650
3651         maint.mk: remove obsolete rule
3652         * top/maint.mk (rel-check): Remove rule.
3653         (WGET, WGETFLAGS): Remove now-unused variables.
3654
3655 2009-04-24  Simon Josefsson  <simon@josefsson.org>
3656
3657         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
3658         consistency.
3659
3660         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
3661         '$(PATH_SEPARATOR)' instead of ':'.
3662
3663 2009-04-24  Simon Josefsson  <simon@josefsson.org>
3664
3665         * lib/getopt1.c (main): Use 'const' for static array.
3666
3667 2009-04-24  Simon Josefsson  <simon@josefsson.org>
3668
3669         * top/maint.mk: Sync with coreutils.
3670         * NEWS: Explain incompatibilities.
3671
3672 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3673             Bruno Haible  <bruno@clisp.org>
3674
3675         Fix cross-compilation results.
3676         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
3677         statement, as third argument of AC_TRY_RUN.
3678         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
3679         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
3680         Likewise.
3681         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
3682         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
3683         Likewise.
3684         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
3685         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
3686         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
3687
3688 2009-04-20  Bruno Haible  <bruno@clisp.org>
3689
3690         Avoid test failure on mingw.
3691         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
3692
3693 2009-04-20  Bruno Haible  <bruno@clisp.org>
3694
3695         Avoid compilation error on mingw.
3696         * modules/localename-tests (Depends-on): Add locale.
3697
3698 2009-04-19  Bruno Haible  <bruno@clisp.org>
3699
3700         Support for building a shared library on Windows platforms.
3701         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
3702         (main): Test the presence of UNINORM_NFC here.
3703         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
3704         (main): Test the presence of UNINORM_NFD here.
3705         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
3706         (main): Test the presence of UNINORM_NFKC here.
3707         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
3708         (main): Test the presence of UNINORM_NFKD here.
3709
3710 2009-04-19  Bruno Haible  <bruno@clisp.org>
3711
3712         Avoid a compiler warning.
3713         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
3714         Change type of variable 'sequence'.
3715
3716 2009-04-19  Bruno Haible  <bruno@clisp.org>
3717
3718         * modules/configmake (Makefile.am): When the contents of configmake.h
3719         does not change, arrange to preserve its modification time.
3720
3721 2009-04-17  Simon Josefsson  <simon@josefsson.org>
3722
3723         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
3724         gettext domain.
3725
3726 2009-04-16  Jim Meyering  <meyering@redhat.com>
3727
3728         useless-if-before-free: improve conversion code
3729         * build-aux/useless-if-before-free: Adjust code-in-comment to match
3730         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
3731
3732 2009-04-14  Bruno Haible  <bruno@clisp.org>
3733
3734         * modules/fcntl (Depends-on): Add extensions.
3735         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
3736
3737 2009-04-12  Ben Pfaff  <blp@gnu.org>
3738
3739         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
3740         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
3741
3742 2009-03-20  Ben Pfaff  <blp@gnu.org>
3743
3744         Make rename replace existing destinations on Windows.
3745         * m4/rename.m4: Add test for Mingw.
3746         * lib/rename.c: Add rename replacement that uses MoveFileEx with
3747         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
3748         * doc/posix-functions/rename.texi: Document.
3749
3750 2009-04-10  Bruno Haible  <bruno@clisp.org>
3751
3752         New include file "iconveh.h".
3753         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
3754         * lib/striconveh.h: Include it.
3755         (enum iconv_ilseq_handler): Remove definition.
3756         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
3757         striconveh.h.
3758         * lib/striconveha.c: Include striconveh.h.
3759         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
3760         * modules/striconveh (Files): Add lib/iconveh.h.
3761         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
3762         lib/striconveh.h.
3763
3764 2009-04-10  Bruno Haible  <bruno@clisp.org>
3765
3766         * lib/uniconv.h: Update comment.
3767
3768 2009-04-10  Bruno Haible  <bruno@clisp.org>
3769
3770         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
3771         always.
3772         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
3773         * lib/unistr/u16-mbtouc-aux.c: Likewise.
3774         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
3775         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
3776         "unistring-notinline.h", so that the function gets defined always.
3777         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
3778         * lib/unistr/u8-uctomb.c: Likewise.
3779         * lib/unistr/u16-mbtouc.c: Likewise.
3780         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
3781         * lib/unistr/u16-uctomb.c: Likewise.
3782         * lib/unistr/u32-mbtouc.c: Likewise.
3783         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
3784         * lib/unistr/u32-uctomb.c: Likewise.
3785
3786 2009-04-10  Bruno Haible  <bruno@clisp.org>
3787
3788         Mark 'utime' obsolete.
3789         * modules/utime (Status, Notice): New sections.
3790         Suggested by Jim Meyering.
3791
3792         Fix cross-compile guess for utime test.
3793         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
3794         autoconf.
3795         * doc/posix-functions/utime.texi: Give more precisions.
3796         Reported by Jan <ipif@ymail.com>.
3797
3798 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
3799
3800         filevercmp: correct today's change
3801         * lib/filevercmp.c: Also handle coreutils' test inputs.
3802         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
3803
3804         Fix regression in 'filevercmp' module. Thanks Sven Joachim
3805         for reporting it.
3806         * lib/filevercmp.c: Special handle for "", "." and "..".
3807         * tests/test-filevercmp.c: Enlarge the set suite.
3808
3809 2009-04-07  Jim Meyering  <meyering@redhat.com>
3810
3811         useless-if-before-free: show how to remove braced useless free, too
3812         * build-aux/useless-if-before-free: still only in a comment, though.
3813
3814 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
3815
3816         maint.mk: import changes to syntax-check macros from coreutils
3817         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
3818         Use them in the relevant macros.
3819
3820 2009-04-06  Bruno Haible  <bruno@clisp.org>
3821
3822         Fix unportable use of bit-fields.
3823         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
3824         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
3825         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
3826
3827 2009-04-06  Bruno Haible  <bruno@clisp.org>
3828
3829         Avoid test failures on AIX and OSF/1.
3830         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
3831         that malloc(0) = NULL.
3832         * tests/unicase/test-u8-tolower.c (check): Likewise.
3833         * tests/unicase/test-u8-totitle.c (check): Likewise.
3834         * tests/unicase/test-u8-toupper.c (check): Likewise.
3835         * tests/unicase/test-u16-casefold.c (check): Likewise.
3836         * tests/unicase/test-u16-tolower.c (check): Likewise.
3837         * tests/unicase/test-u16-totitle.c (check): Likewise.
3838         * tests/unicase/test-u16-toupper.c (check): Likewise.
3839         * tests/unicase/test-u32-casefold.c (check): Likewise.
3840         * tests/unicase/test-u32-tolower.c (check): Likewise.
3841         * tests/unicase/test-u32-totitle.c (check): Likewise.
3842         * tests/unicase/test-u32-toupper.c (check): Likewise.
3843         * tests/uninorm/test-u8-nfc.c (check): Likewise.
3844         * tests/uninorm/test-u8-nfd.c (check): Likewise.
3845         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
3846         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
3847         * tests/uninorm/test-u16-nfc.c (check): Likewise.
3848         * tests/uninorm/test-u16-nfd.c (check): Likewise.
3849         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
3850         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
3851         * tests/uninorm/test-u32-nfc.c (check): Likewise.
3852         * tests/uninorm/test-u32-nfd.c (check): Likewise.
3853         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
3854         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
3855
3856 2009-04-05  Bruno Haible  <bruno@clisp.org>
3857
3858         Work around an autoconf limitation.
3859         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
3860         comment line if it would be longer than 3 KB.
3861
3862 2009-04-05  Bruno Haible  <bruno@clisp.org>
3863
3864         Avoid test failure with libiconv-1.13.
3865         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
3866         of the expected test results.
3867
3868 2009-04-05  Bruno Haible  <bruno@clisp.org>
3869
3870         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
3871         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
3872         that it should be installed.
3873
3874 2009-04-05  Bruno Haible  <bruno@clisp.org>
3875
3876         * gnulib-tool: New option --copy-file.
3877         (func_usage): Document it.
3878         (func_dest_tmpfilename): Moved out of func_import.
3879         (func_add_file, func_update_file): New functions, extracted from
3880         func_import.
3881         (func_import): Update.
3882
3883 2009-04-05  Karl Berry  <karl@gnu.org>
3884
3885         * README: prominently mention gnulib-tool.
3886         Rearrange sections so getting the code is near the top.
3887
3888 2009-04-05  Bruno Haible  <bruno@clisp.org>
3889
3890         * lib/unicase.h: Mention u*_cmp2.
3891         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
3892         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
3893         * lib/unicase/ulc-casecmp.c: Likewise.
3894         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
3895         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
3896         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
3897         unistr/u8-cmp.
3898         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
3899         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
3900         unistr/u16-cmp.
3901         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
3902         unistr/u32-cmp.
3903
3904         * lib/uninorm.h: Mention u*_cmp2.
3905         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
3906         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
3907         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
3908         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
3909         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
3910         unistr/u8-cmp.
3911         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
3912         unistr/u16-cmp.
3913         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
3914         unistr/u32-cmp.
3915
3916         New module 'unistr/u32-cmp2'.
3917         * lib/unistr/u32-cmp2.c: New file.
3918         * modules/unistr/u32-cmp2: New file.
3919
3920         New module 'unistr/u16-cmp2'.
3921         * lib/unistr/u16-cmp2.c: New file.
3922         * modules/unistr/u16-cmp2: New file.
3923
3924         New module 'unistr/u8-cmp2'.
3925         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
3926         * lib/unistr/u8-cmp2.c: New file.
3927         * lib/unistr/u-cmp2.h: New file.
3928         * modules/unistr/u8-cmp2: New file.
3929
3930 2009-04-05  Bruno Haible  <bruno@clisp.org>
3931
3932         * lib/unictype.h (uc_property_is_valid): New macro.
3933         * tests/unictype/test-pr_byname.c (main): Use it.
3934
3935         * lib/unistr.h: Doc fixes.
3936         * lib/uniconv.h: Doc fixes.
3937         * lib/unictype.h: Doc fixes.
3938
3939 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
3940
3941         Port coreutils 7.2 to Solaris 8.
3942
3943         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
3944         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
3945         for Solaris 8.  This is a bit of a hack, as it means it's the
3946         caller's responsibility to add -lnsl if needed, but most likely it
3947         won't be needed since only getaddrinfo uses this and getaddrinfo
3948         isn't needed on Solaris 8.
3949
3950         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
3951         problem to Solaris 8 encountered with coreutils 7.2, which
3952         resulted in a message "fnmatch.c:292: warning: passing argument 4
3953         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
3954         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
3955
3956 2009-04-03  Simon Josefsson  <simon@josefsson.org>
3957
3958         * m4/ld-version-script.m4: Add FIXME comment.
3959
3960 2009-04-02  Simon Josefsson  <simon@josefsson.org>
3961
3962         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
3963         SOVERSION variable.
3964
3965 2009-04-02  Bruno Haible  <bruno@clisp.org>
3966
3967         * Makefile (info, html, dvi, pdf): Combine the rules.
3968         Suggested by Jim Meyering.
3969
3970 2009-04-01  Bruno Haible  <bruno@clisp.org>
3971
3972         * Makefile (info, html, dvi, pdf): New targets.
3973         Reported by Reuben Thomas <rrt@sc3d.org>.
3974
3975 2009-04-01  Bruno Haible  <bruno@clisp.org>
3976
3977         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
3978         can be put into PATH.
3979         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
3980
3981 2009-04-01  Bruno Haible  <bruno@clisp.org>
3982
3983         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
3984
3985 2009-04-01  Bruno Haible  <bruno@clisp.org>
3986
3987         Rename module 'visibility'.
3988         * modules/lib-symbol-visibility: Renamed from modules/visibility.
3989         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
3990         * doc/gnulib.texi: Update.
3991         * MODULES.html.sh (Misc): Update.
3992         * NEWS: Mention the change.
3993
3994 2009-04-01  Simon Josefsson  <simon@josefsson.org>
3995
3996         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
3997         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
3998         Eric Blake <ebb9@byu.net> for review.
3999         * MODULES.html.sh: Add lib-msvc-compat.
4000         * doc/gnulib.texi: Link to new section.
4001         * m4/ld-output-def.m4: New file.
4002         * doc/ld-output-def.texi: New file.
4003
4004 2009-04-01  Simon Josefsson  <simon@josefsson.org>
4005
4006         Rename ld-version-script to lib-symbol-versions.  Suggested by
4007         Bruno Haible <bruno@clisp.org>.
4008         * modules/ld-version-script: Renamed to lib-symbol-versions.
4009         * doc/ld-version-script.texi: Fix module name.
4010         * MODULES.html.sh: Add lib-symbol-versions.
4011
4012 2009-03-31  Simon Josefsson  <simon@josefsson.org>
4013
4014         * modules/u64-tests: New file.
4015         * tests/test-u64.c: New file.
4016
4017 2009-03-04  Simon Josefsson  <simon@josefsson.org>
4018
4019         * MODULES.html.sh: Mention u64.
4020         * modules/u64: New module.
4021         * modules/crypto/sha512: Depend on u64 module instead of providing
4022         u64.h.
4023
4024 2009-03-27  Eric Blake  <ebb9@byu.net>
4025
4026         test-strerror: make debugging EAI_SYSTEM easier
4027         * modules/getaddrinfo-tests (Depends-on): Add strerror.
4028         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
4029         failure was EAI_SYSTEM.
4030
4031 2009-03-25  Bruno Haible  <bruno@clisp.org>
4032
4033         Fix a problem with --enable-relocatable on Solaris 7.
4034         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
4035         since 2008-02-24.
4036
4037 2009-03-25  Eric Blake  <ebb9@byu.net>
4038
4039         test-sockets: avoid gcc warning
4040         * tests/test-sockets.c (main): Silence compiler warning.
4041
4042 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
4043
4044         New modules nproc, pthread, contributed by Glen Lenker.
4045
4046         * MODULES.html.sh: Add pthread, nproc.
4047         * lib/nproc.c: New file.
4048         * lib/nproc.h: New file.
4049         * lib/pthread.in.h: New file.
4050         * m4/pthread.m4: New file.
4051         * modules/nproc: New file.
4052         * modules/pthread: New file.
4053
4054 2009-03-24  Simon Josefsson  <simon@josefsson.org>
4055
4056         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
4057         New variable.
4058
4059 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
4060
4061         filevercmp: handle simple~ and numbered.~3~ backup suffixes
4062         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
4063         * tests/test-filevercmp.c: Add tests for backup suffixes.
4064
4065 2009-03-24  Simon Josefsson  <simon@josefsson.org>
4066
4067         * modules/stdlib (Depends-on): Add stdint, needed when defining
4068         struct random_data on, for example, HP-UX 10.20.  Reported by
4069         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
4070
4071 2009-03-24  Simon Josefsson  <simon@josefsson.org>
4072
4073         * lib/readline.c (readline): Call fflush on stdout after printing
4074         prompt.
4075
4076 2009-03-20  Bruno Haible  <bruno@clisp.org>
4077
4078         Remove dependency from 'close' module to -lws2_32 on native Windows.
4079         * lib/close-hook.h: New file.
4080         * lib/close-hook.c: New file.
4081         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
4082         w32sock.h.
4083         (_gl_close_fd_maybe_socket): Remove function.
4084         (rpl_close): Invoke execute_all_close_hooks instead of
4085         _gl_close_fd_maybe_socket.
4086         * lib/sockets.c: Include close-hook.h, w32sock.h.
4087         (close_fd_maybe_socket): New function, essentially from lib/close.c.
4088         (close_sockets_hook): New variable.
4089         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
4090         (gl_sockets_cleanup): Unregister it.
4091         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
4092         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
4093         * modules/close-hook: New file.
4094         * modules/close (Files): Remove lib/w32sock.h.
4095         (Depends-on): Add close-hook.
4096         (Link): Remove section.
4097         * modules/sockets (Files): Add lib/w32sock.h.
4098         (Depends-on): Add close-hook.
4099         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
4100         invocation.
4101         * NEWS: Mention that LIB_CLOSE is gone.
4102
4103 2009-03-23  Eric Blake  <ebb9@byu.net>
4104
4105         signal-tests: test previous patch
4106         * tests/test-signal.c: New file.
4107         * modules/signal-tests: Likewise.
4108
4109         signal.h: always support 'volatile sig_atomic_t'
4110         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
4111         (gl_SIGNAL_H_DEFAULTS): Add a default.
4112         * modules/signal (Makefile.am): Substitute if needed.
4113         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
4114         users can blindly add volatile.
4115         * doc/posix-headers/signal.texi (signal.h): Document it.
4116         Reported by Matthew Woehlke.
4117
4118 2009-03-23  Jim Meyering  <meyering@redhat.com>
4119
4120         pathmax: PATH_MAX: use pathconf only when available
4121         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
4122         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
4123         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
4124         This avoids a link failure in a PSP cross-compilation environment
4125         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
4126
4127         * lib/vasnprintf.c (divide): Fix typo in comment.
4128
4129 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4130
4131         * gnulib-tool (func_filter_filelist): Fix comment.
4132
4133 2009-03-20  Bruno Haible  <bruno@clisp.org>
4134
4135         Make sockets.h self-contained.
4136         * lib/sockets.c: Include sockets.h first.
4137         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
4138
4139 2009-03-19  Eric Blake  <ebb9@byu.net>
4140
4141         doc: mention more functions added in cygwin 1.7.0
4142         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
4143         addition.
4144         * doc/posix-functions/log2f.texi: Likewise.
4145
4146 2009-03-19  Jim Meyering  <meyering@redhat.com>
4147
4148         fsusage: avoid syntax error due to statement-before-declaration
4149         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
4150         after all declarations.  Reported by Matthew Woehlke in
4151         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
4152
4153 2009-03-18  Eric Blake  <ebb9@byu.net>
4154
4155         build-aux/compile: sync from automake
4156         * build-aux/compile: New file, from automake.
4157         * config/srclist.txt: Mention build-aux/compile.
4158
4159 2009-03-17  Bruno Haible  <bruno@clisp.org>
4160
4161         * lib/git-merge-changelog.c: Fix typo in comment.
4162         Reported by Reuben Thomas <rrt@sc3d.org>.
4163
4164 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
4165
4166         * m4/regex.m4: update and improve help for
4167         --without-included-regex.
4168
4169 2009-03-17  Simon Josefsson  <simon@josefsson.org>
4170
4171         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
4172         failure on missing include files.
4173
4174 2009-03-17  Eric Blake  <ebb9@byu.net>
4175
4176         doc: mention more functions added in cygwin 1.7.0
4177         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
4178         addition.
4179         * doc/posix-functions/fwscanf.texi: Likewise.
4180         * doc/posix-functions/swprintf.texi: Likewise.
4181         * doc/posix-functions/swscanf.texi: Likewise.
4182         * doc/posix-functions/vfwprintf.texi: Likewise.
4183         * doc/posix-functions/vfwscanf.texi: Likewise.
4184         * doc/posix-functions/vswprintf.texi: Likewise.
4185         * doc/posix-functions/vswscanf.texi: Likewise.
4186         * doc/posix-functions/vwprintf.texi: Likewise.
4187         * doc/posix-functions/vwscanf.texi: Likewise.
4188         * doc/posix-functions/wcscasecmp.texi: Likewise.
4189         * doc/posix-functions/wcsdup.texi: Likewise.
4190         * doc/posix-functions/wcsftime.texi: Likewise.
4191         * doc/posix-functions/wcsncasecmp.texi: Likewise.
4192         * doc/posix-functions/wprintf.texi: Likewise.
4193         * doc/posix-functions/wscanf.texi: Likewise.
4194         * doc/glibc-functions/gethostbyname2.texi: Likewise.
4195
4196 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4197
4198         maint.mk: really add $(AM_MAKEFLAGS)
4199         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
4200         was inadvertently omitted in the last commit.
4201         Spotted by Bruno Haible.
4202
4203         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
4204         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
4205         $(AM_MAKEFLAGS)' rather than plain `make'.
4206
4207         gnulib-tool: execute $MAKE not make
4208         * gnulib-tool: Default $MAKE to 'make'.
4209         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
4210         than make.  Initialize $MAKE in the do-autobuild script.
4211
4212         gnulib-tool: use $MAKE not make in generated files
4213         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
4214         make, in generated files.  Initialize $MAKE in the do-autobuild
4215         script.
4216
4217         * top/GNUmakefile (_have-git-version-gen): Fix typo.
4218
4219         GNUmakefile: disable parallelism only for multiple, recursive targets
4220         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
4221         additions in the Makefile.
4222         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
4223         by Automake.
4224         (.NOTPARALLEL): Only disable parallel builds if multiple targets
4225         are listed on the command line and at least one of them is
4226         listed in $(ALL_RECURSIVE_TARGETS).
4227
4228 2009-03-14  Bruno Haible  <bruno@clisp.org>
4229
4230         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
4231         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
4232         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
4233         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
4234         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
4235         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
4236         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
4237         unistr/u8-uctomb.
4238         * modules/unistr/u8-strchr (Depends-on): Likewise.
4239         * modules/unistr/u8-strrchr (Depends-on): Likewise.
4240         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
4241         unistr/u16-uctomb.
4242         * modules/unistr/u16-strchr (Depends-on): Likewise.
4243         * modules/unistr/u16-strrchr (Depends-on): Likewise.
4244
4245 2009-03-12  Bruno Haible  <bruno@clisp.org>
4246
4247         Work around select() bug on Interix 3.5.
4248         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
4249         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
4250         * m4/select.m4: New file.
4251         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
4252         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
4253         * modules/select (Files): Add m4/select.m4.
4254         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
4255         * modules/nanosleep (Depends-on): Add select.
4256         * modules/poll (Depends-on): Likewise.
4257         * doc/posix-functions/select.texi: Mention the Interix bug.
4258         Reported by Markus Duft <mduft@gentoo.org>.
4259
4260         * lib/select.c: Renamed from lib/winsock-select.c.
4261         * modules/select (Files): Add lib/select.c, remove
4262         lib/winsock-select.c.
4263         (configure.ac): Update.
4264
4265 2009-03-12  Jim Meyering  <meyering@redhat.com>
4266
4267         avoid gcc warnings about unused macro definitions
4268         * lib/readtokens.c (STREQ): Remove unused definition.
4269         * lib/xmalloc.c (SIZE_MAX): Likewise.
4270         * lib/openat-die.c (N_): Likewise.
4271         * lib/mountlist.c (SIZE_MAX): Remove definition.
4272         Instead, include <stdint.h>.
4273         * lib/readutmp.c: Likewise.
4274         * modules/readutmp (Depends-on): Add stdint.
4275         * modules/mountlist (Depends-on): Add stdint.
4276         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
4277
4278 2009-03-10  Bruno Haible  <bruno@clisp.org>
4279
4280         Tests for module 'mbmemcasecoll'.
4281         * modules/mbmemcasecoll-tests: New file.
4282         * tests/test-mbmemcasecoll1.sh: New file.
4283         * tests/test-mbmemcasecoll2.sh: New file.
4284         * tests/test-mbmemcasecoll3.sh: New file.
4285         * tests/test-mbmemcasecoll.c: New file.
4286
4287         New module 'mbmemcasecoll'.
4288         * lib/mbmemcasecoll.h: New file.
4289         * lib/mbmemcasecoll.c: New file.
4290         * modules/mbmemcasecoll: New file.
4291
4292         * tests/test-mbmemcasecmp.h: New file, extracted from
4293         tests/test-mbmemcasecmp.c.
4294         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
4295         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
4296         (main): Update.
4297         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
4298
4299 2009-03-09  Bruno Haible  <bruno@clisp.org>
4300
4301         Tests for module 'mbmemcasecmp'.
4302         * modules/mbmemcasecmp-tests: New file.
4303         * tests/test-mbmemcasecmp1.sh: New file.
4304         * tests/test-mbmemcasecmp2.sh: New file.
4305         * tests/test-mbmemcasecmp3.sh: New file.
4306         * tests/test-mbmemcasecmp.c: New file.
4307
4308         New module 'mbmemcasecmp'.
4309         * lib/mbmemcasecmp.h: New file.
4310         * lib/mbmemcasecmp.c: New file.
4311         * modules/mbmemcasecmp: New file.
4312
4313 2009-03-09  Bruno Haible  <bruno@clisp.org>
4314
4315         Tests for module 'unicase/ulc-casecoll'.
4316         * modules/unicase/ulc-casecoll-tests: New file.
4317         * tests/unicase/test-ulc-casecoll1.sh: New file.
4318         * tests/unicase/test-ulc-casecoll2.sh: New file.
4319         * tests/unicase/test-ulc-casecoll.c: New file.
4320
4321         New module 'unicase/ulc-casecoll'.
4322         * lib/unicase.h (ulc_casecoll): New declaration.
4323         * lib/unicase/ulc-casecoll.c: New file.
4324         * modules/unicase/ulc-casecoll: New file.
4325
4326         New module 'unicase/ulc-casexfrm'.
4327         * lib/unicase.h (ulc_casexfrm): New declaration.
4328         * lib/unicase/ulc-casexfrm.c: New file.
4329         * modules/unicase/ulc-casexfrm: New file.
4330
4331 2009-03-09  Bruno Haible  <bruno@clisp.org>
4332
4333         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
4334         invocations.
4335
4336         * m4/mbscasecmp.m4: Remove file.
4337         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
4338         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
4339
4340         * m4/mbscasestr.m4: Remove file.
4341         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
4342         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
4343
4344         * m4/mbschr.m4: Remove file.
4345         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
4346         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
4347
4348         * m4/mbscspn.m4: Remove file.
4349         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
4350         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
4351
4352         * m4/mbslen.m4: Remove file.
4353         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
4354         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
4355
4356         * m4/mbsncasecmp.m4: Remove file.
4357         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
4358         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
4359
4360         * m4/mbsnlen.m4: Remove file.
4361         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
4362         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
4363
4364         * m4/mbspbrk.m4: Remove file.
4365         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
4366         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
4367
4368         * m4/mbspcasecmp.m4: Remove file.
4369         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
4370         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
4371
4372         * m4/mbsrchr.m4: Remove file.
4373         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
4374         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
4375
4376         * m4/mbssep.m4: Remove file.
4377         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
4378         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
4379
4380         * m4/mbsspn.m4: Remove file.
4381         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
4382         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
4383
4384         * m4/mbsstr.m4: Remove file.
4385         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
4386         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
4387
4388         * m4/mbstok_r.m4: Remove file.
4389         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
4390         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
4391
4392         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
4393
4394         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
4395         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
4396
4397         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
4398
4399 2009-03-08  Bruno Haible  <bruno@clisp.org>
4400
4401         Tests for module 'unicase/ulc-casecmp'.
4402         * modules/unicase/ulc-casecmp-tests: New file.
4403         * tests/unicase/test-ulc-casecmp1.sh: New file.
4404         * tests/unicase/test-ulc-casecmp2.sh: New file.
4405         * tests/unicase/test-ulc-casecmp.c: New file.
4406
4407         New module 'unicase/ulc-casecmp'.
4408         * lib/unicase.h (ulc_casecmp): New declaration.
4409         * lib/unicase/ulc-casecmp.c: New file.
4410         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
4411         'const SRC_UNIT *'.
4412         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
4413         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
4414         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
4415         * modules/unicase/ulc-casecmp: New file.
4416
4417         Tests for module 'unicase/u32-is-cased'.
4418         * modules/unicase/u32-is-cased-tests: New file.
4419         * tests/unicase/test-u32-is-cased.c: New file.
4420
4421         Tests for module 'unicase/u16-is-cased'.
4422         * modules/unicase/u16-is-cased-tests: New file.
4423         * tests/unicase/test-u16-is-cased.c: New file.
4424
4425         Tests for module 'unicase/u8-is-cased'.
4426         * modules/unicase/u8-is-cased-tests: New file.
4427         * tests/unicase/test-u8-is-cased.c: New file.
4428         * tests/unicase/test-is-cased.h: New file.
4429
4430         New module 'unicase/u32-is-cased'.
4431         * lib/unicase/u32-is-cased.c: New file.
4432         * modules/unicase/u32-is-cased: New file.
4433
4434         New module 'unicase/u16-is-cased'.
4435         * lib/unicase/u16-is-cased.c: New file.
4436         * modules/unicase/u16-is-cased: New file.
4437
4438         New module 'unicase/u8-is-cased'.
4439         * lib/unicase/u8-is-cased.c: New file.
4440         * lib/unicase/u-is-cased.h: New file.
4441         * modules/unicase/u8-is-cased: New file.
4442
4443         Tests for module 'unicase/u32-is-casefolded'.
4444         * modules/unicase/u32-is-casefolded-tests: New file.
4445         * tests/unicase/test-u32-is-casefolded.c: New file.
4446
4447         Tests for module 'unicase/u16-is-casefolded'.
4448         * modules/unicase/u16-is-casefolded-tests: New file.
4449         * tests/unicase/test-u16-is-casefolded.c: New file.
4450
4451         Tests for module 'unicase/u8-is-casefolded'.
4452         * modules/unicase/u8-is-casefolded-tests: New file.
4453         * tests/unicase/test-u8-is-casefolded.c: New file.
4454         * tests/unicase/test-is-casefolded.h: New file.
4455
4456         New module 'unicase/u32-is-casefolded'.
4457         * lib/unicase/u32-is-casefolded.c: New file.
4458         * modules/unicase/u32-is-casefolded: New file.
4459
4460         New module 'unicase/u16-is-casefolded'.
4461         * lib/unicase/u16-is-casefolded.c: New file.
4462         * modules/unicase/u16-is-casefolded: New file.
4463
4464         New module 'unicase/u8-is-casefolded'.
4465         * lib/unicase/u8-is-casefolded.c: New file.
4466         * modules/unicase/u8-is-casefolded: New file.
4467
4468         Tests for module 'unicase/u32-is-titlecase'.
4469         * modules/unicase/u32-is-titlecase-tests: New file.
4470         * tests/unicase/test-u32-is-titlecase.c: New file.
4471
4472         Tests for module 'unicase/u16-is-titlecase'.
4473         * modules/unicase/u16-is-titlecase-tests: New file.
4474         * tests/unicase/test-u16-is-titlecase.c: New file.
4475
4476         Tests for module 'unicase/u8-is-titlecase'.
4477         * modules/unicase/u8-is-titlecase-tests: New file.
4478         * tests/unicase/test-u8-is-titlecase.c: New file.
4479         * tests/unicase/test-is-titlecase.h: New file.
4480
4481         New module 'unicase/u32-is-titlecase'.
4482         * lib/unicase/u32-is-titlecase.c: New file.
4483         * modules/unicase/u32-is-titlecase: New file.
4484
4485         New module 'unicase/u16-is-titlecase'.
4486         * lib/unicase/u16-is-titlecase.c: New file.
4487         * modules/unicase/u16-is-titlecase: New file.
4488
4489         New module 'unicase/u8-is-titlecase'.
4490         * lib/unicase/u8-is-titlecase.c: New file.
4491         * modules/unicase/u8-is-titlecase: New file.
4492
4493         Tests for module 'unicase/u32-is-lowercase'.
4494         * modules/unicase/u32-is-lowercase-tests: New file.
4495         * tests/unicase/test-u32-is-lowercase.c: New file.
4496
4497         Tests for module 'unicase/u16-is-lowercase'.
4498         * modules/unicase/u16-is-lowercase-tests: New file.
4499         * tests/unicase/test-u16-is-lowercase.c: New file.
4500
4501         Tests for module 'unicase/u8-is-lowercase'.
4502         * modules/unicase/u8-is-lowercase-tests: New file.
4503         * tests/unicase/test-u8-is-lowercase.c: New file.
4504         * tests/unicase/test-is-lowercase.h: New file.
4505
4506         New module 'unicase/u32-is-lowercase'.
4507         * lib/unicase/u32-is-lowercase.c: New file.
4508         * modules/unicase/u32-is-lowercase: New file.
4509
4510         New module 'unicase/u16-is-lowercase'.
4511         * lib/unicase/u16-is-lowercase.c: New file.
4512         * modules/unicase/u16-is-lowercase: New file.
4513
4514         New module 'unicase/u8-is-lowercase'.
4515         * lib/unicase/u8-is-lowercase.c: New file.
4516         * modules/unicase/u8-is-lowercase: New file.
4517
4518         Tests for module 'unicase/u32-is-uppercase'.
4519         * modules/unicase/u32-is-uppercase-tests: New file.
4520         * tests/unicase/test-u32-is-uppercase.c: New file.
4521
4522         Tests for module 'unicase/u16-is-uppercase'.
4523         * modules/unicase/u16-is-uppercase-tests: New file.
4524         * tests/unicase/test-u16-is-uppercase.c: New file.
4525
4526         Tests for module 'unicase/u8-is-uppercase'.
4527         * modules/unicase/u8-is-uppercase-tests: New file.
4528         * tests/unicase/test-u8-is-uppercase.c: New file.
4529         * tests/unicase/test-is-uppercase.h: New file.
4530
4531         New module 'unicase/u32-is-uppercase'.
4532         * lib/unicase/u32-is-uppercase.c: New file.
4533         * modules/unicase/u32-is-uppercase: New file.
4534
4535         New module 'unicase/u16-is-uppercase'.
4536         * lib/unicase/u16-is-uppercase.c: New file.
4537         * modules/unicase/u16-is-uppercase: New file.
4538
4539         New module 'unicase/u8-is-uppercase'.
4540         * lib/unicase/u8-is-uppercase.c: New file.
4541         * modules/unicase/u8-is-uppercase: New file.
4542
4543         New module 'unicase/u32-is-invariant'.
4544         * lib/unicase/u32-is-invariant.c: New file.
4545         * modules/unicase/u32-is-invariant: New file.
4546
4547         New module 'unicase/u16-is-invariant'.
4548         * lib/unicase/u16-is-invariant.c: New file.
4549         * modules/unicase/u16-is-invariant: New file.
4550
4551         New module 'unicase/u8-is-invariant'.
4552         * lib/unicase/u8-is-invariant.c: New file.
4553         * lib/unicase/invariant.h: New file.
4554         * lib/unicase/u-is-invariant.h: New file.
4555         * modules/unicase/u8-is-invariant: New file.
4556
4557         Tests for module 'unicase/u32-casecoll'.
4558         * modules/unicase/u32-casecoll-tests: New file.
4559         * tests/unicase/test-u32-casecoll.c: New file.
4560
4561         Tests for module 'unicase/u16-casecoll'.
4562         * modules/unicase/u16-casecoll-tests: New file.
4563         * tests/unicase/test-u16-casecoll.c: New file.
4564
4565         Tests for module 'unicase/u8-casecoll'.
4566         * modules/unicase/u8-casecoll-tests: New file.
4567         * tests/unicase/test-u8-casecoll.c: New file.
4568
4569         New module 'unicase/u32-casecoll'.
4570         * lib/unicase/u32-casecoll.c: New file.
4571         * modules/unicase/u32-casecoll: New file.
4572
4573         New module 'unicase/u16-casecoll'.
4574         * lib/unicase/u16-casecoll.c: New file.
4575         * modules/unicase/u16-casecoll: New file.
4576
4577         New module 'unicase/u8-casecoll'.
4578         * lib/unicase/u8-casecoll.c: New file.
4579         * lib/unicase/u-casecoll.h: New file.
4580         * modules/unicase/u8-casecoll: New file.
4581
4582         New module 'unicase/u32-casexfrm'.
4583         * lib/unicase/u32-casexfrm.c: New file.
4584         * modules/unicase/u32-casexfrm: New file.
4585
4586         New module 'unicase/u16-casexfrm'.
4587         * lib/unicase/u16-casexfrm.c: New file.
4588         * modules/unicase/u16-casexfrm: New file.
4589
4590         New module 'unicase/u8-casexfrm'.
4591         * lib/unicase/u8-casexfrm.c: New file.
4592         * lib/unicase/u-casexfrm.h: New file.
4593         * modules/unicase/u8-casexfrm: New file.
4594
4595         Tests for module 'unicase/u32-casecmp'.
4596         * modules/unicase/u32-casecmp-tests: New file.
4597         * tests/unicase/test-u32-casecmp.c: New file.
4598
4599         Tests for module 'unicase/u16-casecmp'.
4600         * modules/unicase/u16-casecmp-tests: New file.
4601         * tests/unicase/test-u16-casecmp.c: New file.
4602
4603         Tests for module 'unicase/u8-casecmp'.
4604         * modules/unicase/u8-casecmp-tests: New file.
4605         * tests/unicase/test-u8-casecmp.c: New file.
4606         * tests/unicase/test-casecmp.h: New file.
4607
4608         New module 'unicase/u32-casecmp'.
4609         * lib/unicase/u32-casecmp.c: New file.
4610         * modules/unicase/u32-casecmp: New file.
4611
4612         New module 'unicase/u16-casecmp'.
4613         * lib/unicase/u16-casecmp.c: New file.
4614         * modules/unicase/u16-casecmp: New file.
4615
4616         New module 'unicase/u8-casecmp'.
4617         * lib/unicase/u8-casecmp.c: New file.
4618         * lib/unicase/u-casecmp.h: New file.
4619         * modules/unicase/u8-casecmp: New file.
4620
4621         Tests for module 'unicase/u32-casefold'.
4622         * modules/unicase/u32-casefold-tests: New file.
4623         * tests/unicase/test-u32-casefold.c: New file.
4624
4625         Tests for module 'unicase/u16-casefold'.
4626         * modules/unicase/u16-casefold-tests: New file.
4627         * tests/unicase/test-u16-casefold.c: New file.
4628
4629         Tests for module 'unicase/u8-casefold'.
4630         * modules/unicase/u8-casefold-tests: New file.
4631         * tests/unicase/test-u8-casefold.c: New file.
4632
4633         New module 'unicase/u32-casefold'.
4634         * lib/unicase/u32-casefold.c: New file.
4635         * modules/unicase/u32-casefold: New file.
4636
4637         New module 'unicase/u16-casefold'.
4638         * lib/unicase/u16-casefold.c: New file.
4639         * modules/unicase/u16-casefold: New file.
4640
4641         New module 'unicase/u8-casefold'.
4642         * lib/unicase/u8-casefold.c: New file.
4643         * lib/unicase/u-casefold.h: New file.
4644         * modules/unicase/u8-casefold: New file.
4645
4646         New module 'unicase/tocasefold'.
4647         * lib/unicase/casefold.h: New file.
4648         * lib/unicase/tocasefold.c: New file.
4649         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
4650         * modules/unicase/tocasefold: New file.
4651
4652         Tests for module 'unicase/u32-totitle'.
4653         * modules/unicase/u32-totitle-tests: New file.
4654         * tests/unicase/test-u32-totitle.c: New file.
4655
4656         Tests for module 'unicase/u16-totitle'.
4657         * modules/unicase/u16-totitle-tests: New file.
4658         * tests/unicase/test-u16-totitle.c: New file.
4659
4660         Tests for module 'unicase/u8-totitle'.
4661         * modules/unicase/u8-totitle-tests: New file.
4662         * tests/unicase/test-u8-totitle.c: New file.
4663
4664         New module 'unicase/u32-totitle'.
4665         * lib/unicase/u32-totitle.c: New file.
4666         * modules/unicase/u32-totitle: New file.
4667
4668         New module 'unicase/u16-totitle'.
4669         * lib/unicase/u16-totitle.c: New file.
4670         * modules/unicase/u16-totitle: New file.
4671
4672         New module 'unicase/u8-totitle'.
4673         * lib/unicase/u8-totitle.c: New file.
4674         * lib/unicase/u-totitle.h: New file.
4675         * modules/unicase/u8-totitle: New file.
4676
4677         Tests for module 'unicase/u32-tolower'.
4678         * modules/unicase/u32-tolower-tests: New file.
4679         * tests/unicase/test-u32-tolower.c: New file.
4680
4681         Tests for module 'unicase/u16-tolower'.
4682         * modules/unicase/u16-tolower-tests: New file.
4683         * tests/unicase/test-u16-tolower.c: New file.
4684
4685         Tests for module 'unicase/u8-tolower'.
4686         * modules/unicase/u8-tolower-tests: New file.
4687         * tests/unicase/test-u8-tolower.c: New file.
4688
4689         New module 'unicase/u32-tolower'.
4690         * lib/unicase/u32-tolower.c: New file.
4691         * modules/unicase/u32-tolower: New file.
4692
4693         New module 'unicase/u16-tolower'.
4694         * lib/unicase/u16-tolower.c: New file.
4695         * modules/unicase/u16-tolower: New file.
4696
4697         New module 'unicase/u8-tolower'.
4698         * lib/unicase/u8-tolower.c: New file.
4699         * modules/unicase/u8-tolower: New file.
4700
4701         Tests for module 'unicase/u32-toupper'.
4702         * modules/unicase/u32-toupper-tests: New file.
4703         * tests/unicase/test-u32-toupper.c: New file.
4704
4705         Tests for module 'unicase/u16-toupper'.
4706         * modules/unicase/u16-toupper-tests: New file.
4707         * tests/unicase/test-u16-toupper.c: New file.
4708
4709         Tests for module 'unicase/u8-toupper'.
4710         * modules/unicase/u8-toupper-tests: New file.
4711         * tests/unicase/test-u8-toupper.c: New file.
4712
4713         New module 'unicase/u32-toupper'.
4714         * lib/unicase/u32-toupper.c: New file.
4715         * modules/unicase/u32-toupper: New file.
4716
4717         New module 'unicase/u16-toupper'.
4718         * lib/unicase/u16-toupper.c: New file.
4719         * modules/unicase/u16-toupper: New file.
4720
4721         New module 'unicase/u8-toupper'.
4722         * lib/unicase/u8-toupper.c: New file.
4723         * modules/unicase/u8-toupper: New file.
4724
4725         New module 'unicase/u32-casemap'.
4726         * lib/unicase/u32-casemap.c: New file.
4727         * modules/unicase/u32-casemap: New file.
4728
4729         New module 'unicase/u16-casemap'.
4730         * lib/unicase/u16-casemap.c: New file.
4731         * modules/unicase/u16-casemap: New file.
4732
4733         New module 'unicase/u8-casemap'.
4734         * lib/unicase/unicasemap.h: New file.
4735         * lib/unicase/u8-casemap.c: New file.
4736         * lib/unicase/u-casemap.h: New file.
4737         * modules/unicase/u8-casemap: New file.
4738
4739         New module 'unicase/special-casing'.
4740         * lib/unicase/special-casing.h: New file.
4741         * lib/unicase/special-casing.c: New file.
4742         * lib/unicase/special-casing-table.gperf: New file, generated by
4743         gen-uni-tables.c.
4744         * modules/unicase/special-casing: New file.
4745
4746         Tests for module 'unicase/locale-language'.
4747         * modules/unicase/locale-language-tests: New file.
4748         * tests/unicase/test-locale-language.sh: New file.
4749         * tests/unicase/test-locale-language.c: New file.
4750
4751         New module 'unicase/locale-language'.
4752         * lib/unicase/locale-language.c: New file.
4753         * lib/unicase/locale-languages.gperf: New file.
4754         * modules/unicase/locale-language: New file.
4755
4756         Generate more tables for case conversion and case folding.
4757         * lib/gen-uni-tables.c (SCC_*): New enum items.
4758         (struct special_casing_rule): New type.
4759         (casing_rules, num_casing_rules, allocated_casing_rules): New
4760         variables.
4761         (add_casing_rule, fill_casing_rules): New functions.
4762         (struct casefold_rule): New type.
4763         (casefolding_rules, num_casefolding_rules,
4764         allocated_casefolding_rules): New variables.
4765         (fill_casefolding_rules): New function.
4766         (unicode_casefold): New variable.
4767         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
4768         sort_casing_rules, output_casing_rules): New functions.
4769         (main): Accept to more arguments: SpecialCasing.txt and
4770         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
4771         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
4772         Output mapping for casefolding.
4773
4774         * lib/unicase.h: Include stdbool.h, uninorm.h.
4775         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
4776         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
4777         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
4778         arguments.
4779         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
4780         resultp arguments.
4781         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
4782         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
4783         resultp arguments.
4784         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
4785         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
4786         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
4787         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
4788         declarations.
4789         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
4790
4791 2009-03-08  Bruno Haible  <bruno@clisp.org>
4792
4793         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
4794         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
4795         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
4796         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
4797
4798 2009-03-07  Bruno Haible  <bruno@clisp.org>
4799
4800         Adjust u*_normcmp, u*_normcoll API.
4801         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
4802         u16_normcoll, u32_normcoll): Change failure conventions.
4803         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
4804         errno and return -1.
4805         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
4806
4807 2009-03-07  Bruno Haible  <bruno@clisp.org>
4808
4809         Tests for module 'uninorm/u32-normcoll'.
4810         * modules/uninorm/u32-normcoll-tests: New file.
4811         * tests/uninorm/test-u32-normcoll.c: New file.
4812
4813         Tests for module 'uninorm/u16-normcoll'.
4814         * modules/uninorm/u16-normcoll-tests: New file.
4815         * tests/uninorm/test-u16-normcoll.c: New file.
4816
4817         Tests for module 'uninorm/u8-normcoll'.
4818         * modules/uninorm/u8-normcoll-tests: New file.
4819         * tests/uninorm/test-u8-normcoll.c: New file.
4820
4821 2009-03-07  Bruno Haible  <bruno@clisp.org>
4822
4823         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
4824         tests/uninorm/test-u32-normcmp.c.
4825         * tests/uninorm/test-u32-normcmp.c: Include it.
4826         (test_nonascii): New function, extracted from main. Add some more
4827         tests.
4828         (main): Invoke test_ascii and test_nonascii.
4829         * modules/uninorm/u32-normcmp-tests (Files): Add
4830         tests/uninorm/test-u32-normcmp.h.
4831         (Depends-on): Remove uninorm/u32-normcmp.
4832
4833         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
4834         tests/uninorm/test-u16-normcmp.c.
4835         * tests/uninorm/test-u16-normcmp.c: Include it.
4836         (test_nonascii): New function, extracted from main. Add some more
4837         tests.
4838         (main): Invoke test_ascii and test_nonascii.
4839         * modules/uninorm/u16-normcmp-tests (Files): Add
4840         tests/uninorm/test-u16-normcmp.h.
4841         (Depends-on): Remove uninorm/u16-normcmp.
4842
4843         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
4844         tests/uninorm/test-u8-normcmp.c.
4845         * tests/uninorm/test-u8-normcmp.c: Include it.
4846         (test_nonascii): New function, extracted from main. Add some more
4847         tests.
4848         (main): Invoke test_ascii and test_nonascii.
4849         * modules/uninorm/u8-normcmp-tests (Files): Add
4850         tests/uninorm/test-u8-normcmp.h.
4851         (Depends-on): Remove uninorm/u8-normcmp.
4852
4853 2009-03-07  Bruno Haible  <bruno@clisp.org>
4854
4855         New module 'uninorm/u32-normcoll'.
4856         * lib/uninorm/u32-normcoll.c: New file.
4857         * modules/uninorm/u32-normcoll: New file.
4858
4859         New module 'uninorm/u16-normcoll'.
4860         * lib/uninorm/u16-normcoll.c: New file.
4861         * modules/uninorm/u16-normcoll: New file.
4862
4863         New module 'uninorm/u8-normcoll'.
4864         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
4865         declarations.
4866         * lib/uninorm/u8-normcoll.c: New file.
4867         * lib/uninorm/u-normcoll.h: New file.
4868         * modules/uninorm/u8-normcoll: New file.
4869
4870         New module 'uninorm/u32-normxfrm'.
4871         * lib/uninorm/u32-normxfrm.c: New file.
4872         * modules/uninorm/u32-normxfrm: New file.
4873
4874         New module 'uninorm/u16-normxfrm'.
4875         * lib/uninorm/u16-normxfrm.c: New file.
4876         * modules/uninorm/u16-normxfrm: New file.
4877
4878         New module 'uninorm/u8-normxfrm'.
4879         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
4880         declarations.
4881         * lib/uninorm/u8-normxfrm.c: New file.
4882         * lib/uninorm/u-normxfrm.h: New file.
4883         * modules/uninorm/u8-normxfrm: New file.
4884
4885 2009-03-07  Bruno Haible  <bruno@clisp.org>
4886
4887         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
4888         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
4889         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
4890
4891 2009-03-07  Bruno Haible  <bruno@clisp.org>
4892
4893         New module 'memxfrm'.
4894         * lib/memxfrm.h: New file.
4895         * lib/memxfrm.c: New file.
4896         * modules/memxfrm: New file.
4897
4898 2009-03-07  Bruno Haible  <bruno@clisp.org>
4899
4900         New module 'memcmp2'.
4901         * lib/memcmp2.h: New file.
4902         * lib/memcmp2.c: New file.
4903         * modules/memcmp2: New file.
4904
4905 2009-03-07  Bruno Haible  <bruno@clisp.org>
4906
4907         Tests for module 'uninorm/decomposing-form'.
4908         * modules/uninorm/decomposing-form-tests: New file.
4909         * tests/uninorm/test-decomposing-form.c: New file.
4910
4911         New module 'uninorm/decomposing-form'.
4912         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
4913         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
4914         Add 'decomposing_variant' field.
4915         * lib/uninorm/decomposing-form.c: New file.
4916         * lib/uninorm/nfc.c (uninorm_nfc): Update.
4917         * lib/uninorm/nfd.c (uninorm_nfd): Update.
4918         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
4919         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
4920         * modules/uninorm/decomposing-form: New file.
4921         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
4922         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
4923
4924 2009-03-07  Bruno Haible  <bruno@clisp.org>
4925
4926         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
4927         strings.
4928
4929 2009-03-06  Bruno Haible  <bruno@clisp.org>
4930
4931         Tests for module 'uninorm/u32-normcmp'.
4932         * tests/uninorm/test-u32-normcmp.c: New file.
4933         * modules/uninorm/u32-normcmp-tests: New file.
4934
4935         Tests for module 'uninorm/u16-normcmp'.
4936         * tests/uninorm/test-u16-normcmp.c: New file.
4937         * modules/uninorm/u16-normcmp-tests: New file.
4938
4939         Tests for module 'uninorm/u8-normcmp'.
4940         * tests/uninorm/test-u8-normcmp.c: New file.
4941         * modules/uninorm/u8-normcmp-tests: New file.
4942
4943         New module 'uninorm/u32-normcmp'.
4944         * lib/uninorm/u32-normcmp.c: New file.
4945         * modules/uninorm/u32-normcmp: New file.
4946
4947         New module 'uninorm/u16-normcmp'.
4948         * lib/uninorm/u16-normcmp.c: New file.
4949         * modules/uninorm/u16-normcmp: New file.
4950
4951         New module 'uninorm/u8-normcmp'.
4952         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
4953         declarations.
4954         * lib/uninorm/u8-normcmp.c: New file.
4955         * lib/uninorm/u-normcmp.h: New file.
4956         * modules/uninorm/u8-normcmp: New file.
4957
4958 2009-03-06  Bruno Haible  <bruno@clisp.org>
4959
4960         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
4961         Reported by Eric Blake.
4962
4963 2009-03-06  Eric Blake  <ebb9@byu.net>
4964             Bruno Haible  <bruno@clisp.org>
4965
4966         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
4967         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
4968         condition.
4969         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
4970         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
4971         condition.
4972         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
4973
4974 2009-03-06  Eric Blake  <ebb9@byu.net>
4975
4976         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
4977         to avoid compiler warnings.
4978         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
4979
4980 2009-03-05  Bruno Haible  <bruno@clisp.org>
4981
4982         * tests/test-ftell.c (main): Disable test beyond end of file on
4983         FreeMiNT.
4984         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
4985
4986 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
4987
4988         * lib/filevercmp.c: Move hidden files up in ordering.
4989         * tests/test-filevercmp.c: Add tests for hidden files.
4990
4991 2009-03-04  Bruno Haible  <bruno@clisp.org>
4992
4993         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
4994         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
4995         AM_CFLAGS.
4996         Reported by Simon Josefsson.
4997
4998 2009-03-03  Bruno Haible  <bruno@clisp.org>
4999
5000         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
5001         Reported by Simon Josefsson.
5002
5003         * doc/ld-version-script.texi: Update node reference.
5004
5005 2009-03-03  Bruno Haible  <bruno@clisp.org>
5006
5007         * modules/visibility (License): Change to 'unlimited'.
5008         Suggested by Simon Josefsson.
5009
5010 2009-03-03  Jim Meyering  <meyering@redhat.com>
5011
5012         unlinkdir: cannot_unlink_dir may modify process state
5013         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
5014         it's neither thread-safe nor appropriate for use in a library.
5015
5016 2009-03-03  Eric Blake  <ebb9@byu.net>
5017
5018         test-closein: silence test under Darwin
5019         * tests/test-closein.sh: Ignore stderr from cat, since we don't
5020         care if it dies from EPIPE or EBADF.
5021
5022 2009-03-03  Bruno Haible  <bruno@clisp.org>
5023
5024         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
5025         earlier.
5026         * doc/visibility.texi: Fix @node and @section.
5027
5028 2009-03-03  Simon Josefsson  <simon@josefsson.org>
5029
5030         * doc/gnulib.texi: Link to sections for ld version script and
5031         visibility.
5032         * doc/visibility.texi: Add @node and @section.
5033         * modules/ld-version-script: New module.
5034         * m4/ld-version-script.m4: New file.
5035         * doc/ld-version-script.texi: New file.
5036
5037 2009-03-02  David Lutterkort  <lutter@redhat.com>
5038
5039         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
5040         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5041
5042 2009-03-02  Bruno Haible  <bruno@clisp.org>
5043
5044         * doc/visibility.texi: Mention libtool's -export-symbols option.
5045
5046 2009-03-02  Jim Meyering  <meyering@redhat.com>
5047
5048         announce-gen: new option: --no-print-checksums
5049         * build-aux/announce-gen (usage): Describe it.
5050         (print_checksums): Print a newline here, not in the [*] footnote.
5051         (main): Honor it.
5052
5053 2009-03-01  Bruno Haible  <bruno@clisp.org>
5054
5055         Use socklen_t in the native Windows replacements prototypes.
5056         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
5057         instead of 'int'.
5058         * lib/getsockopt.c (rpl_getsockopt): Likewise.
5059         * lib/setsockopt.c (rpl_setsockopt): Likewise.
5060         * modules/getsockopt (Depends-on): Add socklen.
5061         * modules/setsockopt (Depends-on): Add socklen.
5062
5063 2009-03-01  Bruno Haible  <bruno@clisp.org>
5064
5065         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
5066         least 4.2.
5067
5068 2009-03-01  Eric Blake  <ebb9@byu.net>
5069             Bruno Haible  <bruno@clisp.org>
5070
5071         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
5072         error messages.
5073         * lib/wait-process.c (wait_subprocess): Omit error message about
5074         deadly signal sent to the child of termsigp != NULL.
5075
5076 2009-03-01  Eric Blake  <ebb9@byu.net>
5077
5078         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
5079
5080 2009-03-01  Bruno Haible  <bruno@clisp.org>
5081
5082         Avoid a gcc warning.
5083         * tests/test-sched.c (b): Make global.
5084         Reported by Eric Blake.
5085
5086 2009-01-19  Martin Lambers  <marlam@marlam.de>
5087
5088         Provide POSIX semantics for socket timeout options on W32.
5089         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
5090         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
5091         * modules/setsockopt: Depend on sys_time module for struct timeval.
5092         * modules/getsockopt: Depend on sys_time module for struct timeval.
5093
5094 2009-03-01  Simon Josefsson  <simon@josefsson.org>
5095
5096         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
5097         __USE_GNU, for consistency with netdb.in.h.
5098         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
5099
5100 2009-03-01  Bruno Haible  <bruno@clisp.org>
5101
5102         More support for FreeMiNT.
5103         * lib/fseeko.c (rpl_fseeko): Complete last commit.
5104         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
5105
5106 2009-03-01  Bruno Haible  <bruno@clisp.org>
5107
5108         More support for FreeMiNT.
5109         * lib/fpurge.c (fpurge): Correct last commit.
5110         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
5111
5112 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5113
5114         Fix unportable awk script in vc-list-files.
5115         * build-aux/vc-list-files: In the replacement awk script, use
5116         substr with a second argument of 1, not zero.
5117         Report by Simon Josefsson.
5118
5119 2009-02-28  Bruno Haible  <bruno@clisp.org>
5120
5121         More support for FreeMiNT.
5122         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
5123         to FreeMiNT today.
5124         * lib/fwriting.c (fwriting): Likewise.
5125         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
5126
5127 2009-02-28  Bruno Haible  <bruno@clisp.org>
5128
5129         * tests/test-freadseek.c (main): Disable test beyond end of file on
5130         FreeMiNT.
5131         * tests/test-ftello.c (main): Likewise.
5132         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
5133
5134 2009-02-28  Bruno Haible  <bruno@clisp.org>
5135
5136         Add tentative support for FreeMiNT.
5137         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
5138         * lib/fpurge.c (fpurge): Likewise.
5139         * lib/freadable.c (freadable): Likewise.
5140         * lib/freading.c (freading): Likewise.
5141         * lib/freadptr.c (freadptr): Likewise.
5142         * lib/freadseek.c (freadptrinc): Likewise.
5143         * lib/fseeko.c (rpl_fseeko): Likewise.
5144         * lib/fseterr.c (fseterr): Likewise.
5145         * lib/fwritable.c (fwritable): Likewise.
5146         * lib/fwriting.c (fwriting): Likewise.
5147         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
5148         Hourihane.
5149         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
5150
5151 2009-02-28  Bruno Haible  <bruno@clisp.org>
5152
5153         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
5154         SIGCHLD.
5155         Reported by Jim Meyering.
5156
5157 2009-02-28  Bruno Haible  <bruno@clisp.org>
5158
5159         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
5160         Mention the results of these tests on various platforms.
5161         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
5162         order.
5163         * doc/posix-functions/printf.texi: Likewise.
5164         * doc/posix-functions/snprintf.texi: Likewise.
5165         * doc/posix-functions/sprintf.texi: Likewise.
5166         * doc/posix-functions/vfprintf.texi: Likewise.
5167         * doc/posix-functions/vprintf.texi: Likewise.
5168         * doc/posix-functions/vsnprintf.texi: Likewise.
5169         * doc/posix-functions/vsprintf.texi: Likewise.
5170         * doc/glibc-functions/obstack_printf.texi: Likewise.
5171         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
5172
5173 2009-02-28  Bruno Haible  <bruno@clisp.org>
5174
5175         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
5176         Reported by Loïc Minier <lool@dooz.org>.
5177
5178 2009-02-27  Bruno Haible  <bruno@clisp.org>
5179
5180         * gnulib-tool (func_import): Make the sed expression used to create the
5181         sed script for updating the .gitignore file POSIX compliant.
5182         Reported by Eric Blake.
5183
5184 2009-02-27  Bruno Haible  <bruno@clisp.org>
5185
5186         * gnulib-tool (sed): Don't alias as "sed --posix".
5187         Reported by Eric Blake.
5188
5189 2009-02-27  Bruno Haible  <bruno@clisp.org>
5190
5191         Avoid test link errors.
5192         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
5193         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
5194         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
5195         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
5196         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5197
5198 2009-02-27  Bruno Haible  <bruno@clisp.org>
5199
5200         Avoid spurious "(cached)" in configure output.
5201         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
5202         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
5203         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
5204         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
5205         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
5206         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
5207         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
5208         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
5209         Reported by Eric Blake.
5210
5211 2009-02-27  Eric Blake  <ebb9@byu.net>
5212
5213         printf: fix regression in previous patch
5214         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
5215
5216 2009-02-27  Bruno Haible  <bruno@clisp.org>
5217
5218         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
5219         value.
5220         * lib/stdint.in.h: Likewise.
5221         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
5222
5223 2009-02-27  Eric Blake  <ebb9@byu.net>
5224
5225         doc: mention more functions added in cygwin 1.7.0
5226         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
5227         addition.
5228         * doc/posix-functions/open_wmemstream.texi: Likewise.
5229         * doc/posix-functions/wcsnlen.texi: Likewise.
5230         * doc/posix-functions/wcsnrtombs.texi: Likewise.
5231         * doc/posix-functions/wcstod.texi: Likewise.
5232         * doc/posix-functions/wcstof.texi: Likewise.
5233         * doc/posix-functions/wcstoimax.texi: Likewise.
5234         * doc/posix-functions/wcstok.texi: Likewise.
5235         * doc/posix-functions/wcstoumax.texi: Likewise.
5236
5237         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
5238         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
5239         * doc/posix-functions/fprintf.texi: Update.
5240         * doc/posix-functions/printf.texi: Update.
5241         * doc/posix-functions/snprintf.texi: Update.
5242         * doc/posix-functions/sprintf.texi: Update.
5243         * doc/posix-functions/vfprintf.texi: Update.
5244         * doc/posix-functions/vprintf.texi: Update.
5245         * doc/posix-functions/vsnprintf.texi: Update.
5246         * doc/posix-functions/vsprintf.texi: Update.
5247         * doc/glibc-functions/obstack_printf.texi: Update.
5248         * doc/glibc-functions/obstack_vprintf.texi: Update.
5249
5250 2009-02-26  Eric Blake  <ebb9@byu.net>
5251
5252         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
5253         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
5254         compilation bug by using runtime conversion.
5255         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
5256         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
5257         * modules/ceill-tests (Files): Use nan.h.
5258         * modules/floorl-tests (Files): Likewise.
5259         * modules/frexpl-tests (Files): Likewise.
5260         * modules/isnanl-tests (Files): Likewise.
5261         * modules/ldexpl-tests (Files): Likewise.
5262         * modules/roundl-tests (Files): Likewise.
5263         * modules/truncl-tests (Files): Likewise.
5264         * tests/test-ceill.c (main): Use a working NaN.
5265         * tests/test-floorl.c (main): Likewise.
5266         * tests/test-frexpl.c (main): Likewise.
5267         * tests/test-isnan.c (test_long_double): Likewise.
5268         * tests/test-isnanl.h (main): Likewise.
5269         * tests/test-ldexpl.h (main): Likewise.
5270         * tests/test-roundl.h (main): Likewise.
5271         * tests/test-truncl.h (main): Likewise.
5272         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
5273
5274 2009-02-26  Eric Blake  <ebb9@byu.net>
5275             Bruno Haible  <bruno@clisp.org>
5276
5277         Work around a *printf bug with %ls on Solaris.
5278         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
5279         precision is specified, sprintf stops converting the wide string
5280         argument when the number of bytes that have been produced by this
5281         conversion equals or exceeds the precision.
5282         * doc/posix-functions/fprintf.texi: Update.
5283         * doc/posix-functions/printf.texi: Update.
5284         * doc/posix-functions/snprintf.texi: Update.
5285         * doc/posix-functions/sprintf.texi: Update.
5286         * doc/posix-functions/vfprintf.texi: Update.
5287         * doc/posix-functions/vprintf.texi: Update.
5288         * doc/posix-functions/vsnprintf.texi: Update.
5289         * doc/posix-functions/vsprintf.texi: Update.
5290         * doc/glibc-functions/obstack_printf.texi: Update.
5291         * doc/glibc-functions/obstack_vprintf.texi: Update.
5292
5293 2009-02-26  Eric Blake  <ebb9@byu.net>
5294
5295         stdlib: favor compiler check of random.h
5296         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
5297         to avoid an ObjC random.h installed by Swarm.
5298
5299 2009-02-26  Bruno Haible  <bruno@clisp.org>
5300
5301         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
5302         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
5303         Reported by Gary V. Vaughan <gary@gnu.org>.
5304
5305 2009-02-26  Bruno Haible  <bruno@clisp.org>
5306
5307         Fix *printf behaviour regarding the %ls directive.
5308         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
5309         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
5310         NEED_PRINTF_DIRECTIVE_LS.
5311         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
5312         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
5313         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5314         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
5315         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
5316         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
5317         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
5318         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
5319         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
5320         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
5321         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
5322         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
5323         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
5324         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
5325         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
5326         * doc/posix-functions/fprintf.texi: Update.
5327         * doc/posix-functions/printf.texi: Update.
5328         * doc/posix-functions/snprintf.texi: Update.
5329         * doc/posix-functions/sprintf.texi: Update.
5330         * doc/posix-functions/vfprintf.texi: Update.
5331         * doc/posix-functions/vprintf.texi: Update.
5332         * doc/posix-functions/vsnprintf.texi: Update.
5333         * doc/posix-functions/vsprintf.texi: Update.
5334         * doc/glibc-functions/obstack_printf.texi: Update.
5335         * doc/glibc-functions/obstack_vprintf.texi: Update.
5336         Reported by Eric Blake.
5337
5338 2009-02-25  Bruno Haible  <bruno@clisp.org>
5339
5340         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
5341         with known value.
5342         Reported by Gary V. Vaughan <gary@gnu.org>.
5343
5344 2009-02-25  Bruno Haible  <bruno@clisp.org>
5345
5346         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
5347         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
5348         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
5349         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
5350         Reported by Gary V. Vaughan <gary@gnu.org>.
5351
5352 2009-02-25  Bruno Haible  <bruno@clisp.org>
5353
5354         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
5355         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
5356         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
5357         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
5358         Reported by Gary V. Vaughan <gary@gnu.org>.
5359
5360 2009-02-25  Eric Blake  <ebb9@byu.net>
5361
5362         tests: skip fseek/ftell tests if ungetc is broken
5363         * m4/ungetc.m4: New file.
5364         * modules/fseek-tests: Split test, so ungetc dependency is
5365         separate from rest of test.
5366         * modules/fseeko-tests: Likewise.
5367         * modules/ftell-tests: Likewise.
5368         * modules/ftello-tests: Likewise.
5369         * tests/test-fseek.c (main): Isolate ungetc dependency.
5370         * tests/test-fseeko.c (main): Likewise.
5371         * tests/test-ftell.c (main): Likewise.
5372         * tests/test-ftello.c (main): Likewise.
5373         * tests/test-fseek2.sh: New file.
5374         * tests/test-fseeko2.sh: Likewise.
5375         * tests/test-ftell2.sh: Likewise.
5376         * tests/test-ftello2.sh: Likewise.
5377
5378 2009-02-25  Ondřej Vašík  <ovasik@redhat.com>
5379
5380         test-getaddrinfo: fix usage of skip return code 77
5381         * tests/test-gettaddrinfo.c: Return skip code 77 only
5382         for first occurance of skip (4x77 is not 77)
5383
5384 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
5385
5386         strtod: avoid C99 decl-after-statement
5387         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
5388
5389 2009-02-24  Eric Blake  <ebb9@byu.net>
5390
5391         strtod: detect HP-UX 11.31 bug
5392         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
5393         Reported by Gary V. Vaughan.
5394
5395 2009-02-23  Bruno Haible  <bruno@clisp.org>
5396
5397         Fix invalid read past end of memory block.
5398         * lib/vasnprintf.c (DCHAR_SET): Define.
5399         (local_wcslen): Define only when needed.
5400         (local_strnlen, local_wcsnlen): New functions.
5401         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
5402         directives that involve a conversion ourselves.
5403         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
5404         wcsnlen, mbrtowc, wcrtomb.
5405         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
5406         * tests/test-vasprintf-posix.c (test_function): Likewise.
5407         * tests/test-snprintf-posix.h (test_function): Likewise.
5408         * tests/test-sprintf-posix.h (test_function): Likewise.
5409         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5410
5411 2009-02-22  Bruno Haible  <bruno@clisp.org>
5412
5413         Implement new clarified decomposition of Hangul syllables.
5414         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
5415         of type LTV, return only a pairwise decomposition.
5416         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
5417         Likewise.
5418         * tests/uninorm/test-decomposition.c (main): Updated expected result.
5419         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
5420         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
5421
5422 2009-02-22  Bruno Haible  <bruno@clisp.org>
5423
5424         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
5425         zero-length results and shrink excess allocated memory.
5426         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
5427         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
5428         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
5429         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
5430         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
5431         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
5432         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
5433         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
5434         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
5435         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
5436         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
5437         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
5438
5439 2009-02-21  Bruno Haible  <bruno@clisp.org>
5440
5441         * doc/gnulib.texi: Include safe-alloc.texi earlier.
5442         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
5443         spaces after a period. Put a space between a macro name and its
5444         argument list. Trivial rewordings.
5445         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
5446         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
5447         (main): Return 0 explicitly.
5448
5449 2009-02-21  Bruno Haible  <bruno@clisp.org>
5450
5451         Tests for module 'uninorm/filter'.
5452         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
5453         * modules/uninorm/filter-tests: New file.
5454
5455         New module 'uninorm/filter'.
5456         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
5457         uninorm_filter_flush, uninorm_filter_free): New declarations.
5458         * lib/uninorm/uninorm-filter.c: New file.
5459         * modules/uninorm/filter: New file.
5460
5461 2009-02-21  Bruno Haible  <bruno@clisp.org>
5462
5463         Tests for module 'uninorm/nfkc'.
5464         * tests/uninorm/test-nfkc.c: New file.
5465         * tests/uninorm/test-u8-nfkc.c: New file.
5466         * tests/uninorm/test-u16-nfkc.c: New file.
5467         * tests/uninorm/test-u32-nfkc.c: New file.
5468         * tests/uninorm/test-u32-nfkc-big.sh: New file.
5469         * tests/uninorm/test-u32-nfkc-big.c: New file.
5470         * modules/uninorm/nfkc-tests: New file.
5471
5472         New module 'uninorm/nfkc'.
5473         * lib/uninorm/nfkc.c: New file.
5474         * modules/uninorm/nfkc: New file.
5475
5476         Tests for module 'uninorm/nfkd'.
5477         * tests/uninorm/test-nfkd.c: New file.
5478         * tests/uninorm/test-u8-nfkd.c: New file.
5479         * tests/uninorm/test-u16-nfkd.c: New file.
5480         * tests/uninorm/test-u32-nfkd.c: New file.
5481         * tests/uninorm/test-u32-nfkd-big.sh: New file.
5482         * tests/uninorm/test-u32-nfkd-big.c: New file.
5483         * modules/uninorm/nfkd-tests: New file.
5484
5485         New module 'uninorm/nfkd'.
5486         * lib/uninorm/nfkd.c: New file.
5487         * modules/uninorm/nfkd: New file.
5488
5489         Tests for module 'uninorm/nfc'.
5490         * tests/uninorm/test-nfc.c: New file.
5491         * tests/uninorm/test-u8-nfc.c: New file.
5492         * tests/uninorm/test-u16-nfc.c: New file.
5493         * tests/uninorm/test-u32-nfc.c: New file.
5494         * tests/uninorm/test-u32-nfc-big.sh: New file.
5495         * tests/uninorm/test-u32-nfc-big.c: New file.
5496         * modules/uninorm/nfc-tests: New file.
5497
5498         New module 'uninorm/nfc'.
5499         * lib/uninorm/nfc.c: New file.
5500         * modules/uninorm/nfc: New file.
5501
5502         Tests for module 'uninorm/nfd'.
5503         * tests/uninorm/test-nfd.c: New file.
5504         * tests/uninorm/test-u8-nfd.c: New file.
5505         * tests/uninorm/test-u16-nfd.c: New file.
5506         * tests/uninorm/test-u32-nfd.c: New file.
5507         * tests/uninorm/test-u32-nfd-big.sh: New file.
5508         * tests/uninorm/test-u32-nfd-big.c: New file.
5509         * tests/uninorm/test-u32-normalize-big.h: New file.
5510         * tests/uninorm/test-u32-normalize-big.c: New file.
5511         * tests/uninorm/NormalizationTest.txt: New file, created from
5512         Unicode 5.1.0 NormalizationTest.txt.
5513         * modules/uninorm/nfd-tests: New file.
5514
5515         New module 'uninorm/nfd'.
5516         * lib/uninorm/nfd.c: New file.
5517         * modules/uninorm/nfd: New file.
5518
5519         New module 'uninorm/u32-normalize'.
5520         * lib/uninorm/u32-normalize.c: New file.
5521         * modules/uninorm/u32-normalize: New file.
5522
5523         New module 'uninorm/u16-normalize'.
5524         * lib/uninorm/u16-normalize.c: New file.
5525         * modules/uninorm/u16-normalize: New file.
5526
5527         New module 'uninorm/u8-normalize'.
5528         * lib/uninorm/u8-normalize.c: New file.
5529         * lib/uninorm/normalize-internal.h: New file.
5530         * lib/uninorm/u-normalize-internal.h: New file.
5531         * modules/uninorm/u8-normalize: New file.
5532
5533         New module 'uninorm/decompose-internal'.
5534         * lib/uninorm/decompose-internal.c: New file.
5535         * modules/uninorm/decompose-internal: New file.
5536
5537         Tests for module 'uninorm/composition'.
5538         * tests/uninorm/test-composition.c: New file.
5539         * modules/uninorm/composition-tests: New file.
5540
5541         New module 'uninorm/composition'.
5542         * lib/uninorm/composition.c: New file.
5543         * lib/uninorm/composition-table.gperf: New file, generated by
5544         gen-uni-tables.
5545         * modules/uninorm/composition: New file.
5546
5547         Tests for module 'uninorm/compat-decomposition'.
5548         * tests/uninorm/test-compat-decomposition.c: New file.
5549         * modules/uninorm/compat-decomposition-tests: New file.
5550
5551         New module 'uninorm/compat-decomposition'.
5552         * lib/uninorm/decompose-internal.h: New file.
5553         * lib/uninorm/compat-decomposition.c: New file.
5554         * modules/uninorm/compat-decomposition: New file.
5555
5556         Tests for module 'uninorm/canonical-decomposition'.
5557         * tests/uninorm/test-canonical-decomposition.c: New file.
5558         * modules/uninorm/canonical-decomposition-tests: New file.
5559
5560         New module 'uninorm/canonical-decomposition'.
5561         * lib/uninorm/canonical-decomposition.c: New file.
5562         * modules/uninorm/canonical-decomposition: New file.
5563
5564         Tests for module 'uninorm/decomposition'.
5565         * tests/uninorm/test-decomposition.c: New file.
5566         * modules/uninorm/decomposition-tests: New file.
5567
5568         New module 'uninorm/decomposition'.
5569         * lib/uninorm/decomposition.c: New file.
5570         * modules/uninorm/decomposition: New file.
5571
5572         New module 'uninorm/decomposition-table'.
5573         * lib/uninorm/decomposition-table.h: New file.
5574         * lib/uninorm/decomposition-table.c: New file.
5575         * lib/uninorm/decomposition-table1.h: New file, generated by
5576         gen-uni-tables.
5577         * lib/uninorm/decomposition-table2.h: New file, generated by
5578         gen-uni-tables.
5579         * modules/uninorm/decomposition-table: New file.
5580
5581         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
5582         (UC_DECOMP_*): New enumeration items.
5583         (get_decomposition): New function.
5584         (struct decomp_table): New type.
5585         (output_decomposition, output_decomposition_tables): New functions.
5586         (unicode_composition_exclusions): New variable.
5587         (fill_composition_exclusions, debug_output_composition_tables): New
5588         functions.
5589         (main): Accept one more argument. Invoke fill_composition_exclusions.
5590         Output decomposition and composition tables.
5591
5592         New module 'uninorm/base'.
5593         * lib/uninorm.h: New file.
5594         * lib/unictype.h: Update comment.
5595         * modules/uninorm/base: New file.
5596
5597 2009-02-21  David Lutterkort  <lutter@redhat.com>
5598
5599         Tests for module 'safe-alloc'.
5600         * tests/test-safe-alloc.c: New file.
5601         * modules/safe-alloc-tests: New file.
5602
5603         New module 'safe-alloc'.
5604         * lib/safe-alloc.h: New file.
5605         * lib/safe-alloc.c: New file.
5606         * m4/safe-alloc.m4: New file.
5607         * modules/safe-alloc: New file.
5608         * doc/safe-alloc.texi: New file.
5609         * doc/gnulib.texi: Include it.
5610         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
5611         safe-alloc.
5612
5613 2009-02-18  Bruno Haible  <bruno@clisp.org>
5614
5615         Fix link error on non-glibc systems.
5616         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
5617         variable.
5618         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5619
5620 2009-02-18  Jim Meyering  <meyering@redhat.com>
5621
5622         fts: avoid used-uninitialized error due to recent change
5623         * lib/fts.c (fts_read): Guard uses of the new member,
5624         parent->fts_n_dirs_remaining, since it's not relevant for
5625         the parent of a directory specified on the command-line.
5626
5627 2009-02-17  James Youngman  <jay@gnu.org>
5628             Bruno Haible  <bruno@clisp.org>
5629
5630         * m4/include_next.m4: Reformulate comment.
5631
5632 2009-02-16  Jim Meyering  <meyering@redhat.com>
5633
5634         fts: add #if guards so that the fts_lgpl module still builds
5635         * lib/fts.c: Guard just-added hash-table-using parts with
5636         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
5637         Reported by Simon Josefsson.
5638
5639 2009-02-15  Bruno Haible  <bruno@clisp.org>
5640
5641         * modules/array-mergesort-tests: New file.
5642         * tests/test-array-mergesort.c: New file.
5643
5644         New module 'array-mergesort'.
5645         * modules/array-mergesort: New file.
5646         * lib/array-mergesort.h: New file.
5647
5648 2009-02-15  Bruno Haible  <bruno@clisp.org>
5649
5650         Fix 2009-02-07 commit.
5651         * lib/gen-uni-tables.c (output_predicate, output_category,
5652         output_combclass, output_bidi_category, output_decimal_digit,
5653         output_digit, output_numeric, output_mirror, output_scripts,
5654         output_ident_category, output_simple_mapping): Fix format directives.
5655         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
5656
5657 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
5658
5659         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
5660         fixes are available from IBM.
5661
5662 2009-02-13  Jim Meyering  <meyering@redhat.com>
5663
5664         fts: arrange not to stat non-directories in more cases
5665         This makes GNU find (when it doesn't need to stat each file)
5666         *much* more efficient at traversing reiserfs file systems.
5667         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
5668         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
5669         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
5670         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
5671         (leaf_optimization_applies): New function.
5672         (LCO_hash, LCO_compare): New helper functions.
5673         (link_count_optimize_ok): New function.
5674         (fts_stat): Initialize new member (if dir).
5675         (fts_read): Decrement parent's fts_n_dirs_remaining count if
5676         we've just stat'ed a directory.  Skip the stat call when possible.
5677         ---
5678         Note this AFS-related exchange:
5679         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
5680         and note find's pioctl call in find/fstype.c.
5681         But that is necessary only if you want to enable the
5682         optimization for AFS, and for now, I don't.
5683
5684         fts: move a function definition "up" (no semantic change)
5685         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
5686         "up" to precede upcoming use of a related function.
5687
5688 2009-02-11  Jim Meyering  <meyering@redhat.com>
5689
5690         fts: correct internal computation of nlinks (optimization-related)
5691         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
5692         whether the current entry is a directory, so don't test it.
5693
5694 2009-02-10  Bruno Haible  <bruno@clisp.org>
5695
5696         Tests for module 'uniwbrk/ulc-wordbreaks'.
5697         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
5698         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
5699         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
5700
5701         Tests for module 'uniwbrk/u32-wordbreaks'.
5702         * modules/uniwbrk/u32-wordbreaks-tests: New file.
5703         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
5704
5705         Tests for module 'uniwbrk/u16-wordbreaks'.
5706         * modules/uniwbrk/u16-wordbreaks-tests: New file.
5707         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
5708
5709         Tests for module 'uniwbrk/u8-wordbreaks'.
5710         * modules/uniwbrk/u8-wordbreaks-tests: New file.
5711         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
5712
5713 2009-02-10  Bruno Haible  <bruno@clisp.org>
5714
5715         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
5716         property.
5717         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
5718         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
5719         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
5720
5721 2009-02-10  Simon Josefsson  <simon@josefsson.org>
5722
5723         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
5724         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
5725
5726 2009-02-10  Bruno Haible  <bruno@clisp.org>
5727
5728         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
5729         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
5730         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
5731         * lib/unilbrk/u8-possible-linebreaks.c: Update.
5732         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
5733         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
5734
5735 2009-02-09  Simon Josefsson  <simon@josefsson.org>
5736
5737         * lib/sockets.h (gl_fd_to_handle): New function.
5738
5739         * tests/test-sockets.c: Call gl_fd_to_handle.
5740
5741 2009-02-09  Bruno Haible  <bruno@clisp.org>
5742
5743         * doc/havelib.texi: Document the conventions on bi-arch systems.
5744
5745 2009-02-08  Bruno Haible  <bruno@clisp.org>
5746
5747         Document the AC_LIB_LINKFLAGS macro.
5748         * doc/havelib.texi: New file, mostly written on 2005-05-24.
5749         * doc/gnulib.texi: Include it.
5750
5751 2009-02-08  Bruno Haible  <bruno@clisp.org>
5752
5753         Fix wrong order of sections, compared to TOC.
5754         * doc/gnulib.texi: Include relocatable-maint.texi after the
5755         "Regular expressions" node, not before.
5756
5757 2009-02-08  Bruno Haible  <bruno@clisp.org>
5758
5759         Tests for module 'unicase/totitle'.
5760         * modules/unicase/totitle-tests: New file.
5761
5762         Tests for module 'unicase/tolower'.
5763         * modules/unicase/tolower-tests: New file.
5764
5765         Tests for module 'unicase/toupper'.
5766         * modules/unicase/toupper-tests: New file.
5767         * tests/unicase/test-mapping-part1.h: New file.
5768         * tests/unicase/test-mapping-part2.h: New file.
5769
5770         New module 'unicase/totitle'.
5771         * modules/unicase/totitle: New file.
5772         * lib/unicase/totitle.c: New file.
5773
5774         New module 'unicase/tolower'.
5775         * modules/unicase/tolower: New file.
5776         * lib/unicase/tolower.c: New file.
5777
5778         New module 'unicase/toupper'.
5779         * modules/unicase/toupper: New file.
5780         * lib/unicase/toupper.c: New file.
5781         * lib/unicase/simple-mapping.h: New file.
5782
5783         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
5784         (mapping_table): New structure.
5785         (output_simple_mapping): New function.
5786         (main): Invoke output_simple_mapping_test and output_simple_mapping.
5787         * modules/gen-uni-tables (Description): Update.
5788         * lib/unicase/toupper.h: New file, automatically generated by
5789         gen-uni-tables.
5790         * lib/unicase/tolower.h: New file, automatically generated by
5791         gen-uni-tables.
5792         * lib/unicase/totitle.h: New file, automatically generated by
5793         gen-uni-tables.
5794         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
5795         gen-uni-tables.
5796         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
5797         gen-uni-tables.
5798         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
5799         gen-uni-tables.
5800
5801         New module 'unicase/base'.
5802         * modules/unicase/base: New file.
5803         * lib/unicase.h: New file.
5804
5805 2009-02-08  Bruno Haible  <bruno@clisp.org>
5806
5807         New module 'uniwbrk/ulc-wordbreaks'.
5808         * modules/uniwbrk/ulc-wordbreaks: New file.
5809         * lib/uniwbrk/ulc-wordbreaks.c: New file.
5810
5811         New module 'uniwbrk/u32-wordbreaks'.
5812         * modules/uniwbrk/u32-wordbreaks: New file.
5813         * lib/uniwbrk/u32-wordbreaks.c: New file.
5814
5815         New module 'uniwbrk/u16-wordbreaks'.
5816         * modules/uniwbrk/u16-wordbreaks: New file.
5817         * lib/uniwbrk/u16-wordbreaks.c: New file.
5818
5819         New module 'uniwbrk/u8-wordbreaks'.
5820         * modules/uniwbrk/u8-wordbreaks: New file.
5821         * lib/uniwbrk/u8-wordbreaks.c: New file.
5822         * lib/uniwbrk/u-wordbreaks.h: New file.
5823
5824         New module 'uniwbrk/table'.
5825         * modules/uniwbrk/table: New file.
5826         * lib/uniwbrk/wbrktable.h: New file.
5827         * lib/uniwbrk/wbrktable.c: New file.
5828
5829         New module 'uniwbrk/wordbreak-property'.
5830         * modules/uniwbrk/wordbreak-property: New file.
5831         * lib/uniwbrk/wordbreak-property.c: New file.
5832
5833         * lib/gen-uni-tables.c (WBP_*): New enum items.
5834         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
5835         (unicode_org_wbp): New variable.
5836         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
5837         New functions.
5838         (wbp_table): New structure.
5839         (output_wbp, output_wbrk_tables): New functions.
5840         (main): Accept additional argument. Invoke fill_org_wbp,
5841         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
5842         output_wbrk_tables.
5843         * modules/gen-uni-tables (Description): Update.
5844         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
5845         gen-uni-tables.
5846
5847         New module 'uniwbrk/base'.
5848         * modules/uniwbrk/base: New file.
5849         * lib/uniwbrk.h: New file.
5850
5851 2009-02-08  Bruno Haible  <bruno@clisp.org>
5852
5853         Update to Unicode 5.1.0.
5854         * lib/gen-uni-tables.c (is_property_alphabetic): Include
5855         U+2185..U+2188.
5856         (is_property_default_ignorable_code_point): Don't include characters
5857         of category Cc or Cs and not-a-characters.
5858         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
5859         U+0D79, U+109E, U+109F, U+A60C.
5860         * lib/unictype/bidi_of.h: Regenerated.
5861         * lib/unictype/blocks.h: Regenerated.
5862         * lib/unictype/categ_C.h: Regenerated.
5863         * lib/unictype/categ_Cf.h: Regenerated.
5864         * lib/unictype/categ_Cn.h: Regenerated.
5865         * lib/unictype/categ_L.h: Regenerated.
5866         * lib/unictype/categ_Ll.h: Regenerated.
5867         * lib/unictype/categ_Lm.h: Regenerated.
5868         * lib/unictype/categ_Lo.h: Regenerated.
5869         * lib/unictype/categ_Lu.h: Regenerated.
5870         * lib/unictype/categ_M.h: Regenerated.
5871         * lib/unictype/categ_Mc.h: Regenerated.
5872         * lib/unictype/categ_Me.h: Regenerated.
5873         * lib/unictype/categ_Mn.h: Regenerated.
5874         * lib/unictype/categ_N.h: Regenerated.
5875         * lib/unictype/categ_Nd.h: Regenerated.
5876         * lib/unictype/categ_Nl.h: Regenerated.
5877         * lib/unictype/categ_No.h: Regenerated.
5878         * lib/unictype/categ_P.h: Regenerated.
5879         * lib/unictype/categ_Pd.h: Regenerated.
5880         * lib/unictype/categ_Pe.h: Regenerated.
5881         * lib/unictype/categ_Pf.h: Regenerated.
5882         * lib/unictype/categ_Pi.h: Regenerated.
5883         * lib/unictype/categ_Po.h: Regenerated.
5884         * lib/unictype/categ_Ps.h: Regenerated.
5885         * lib/unictype/categ_S.h: Regenerated.
5886         * lib/unictype/categ_Sk.h: Regenerated.
5887         * lib/unictype/categ_Sm.h: Regenerated.
5888         * lib/unictype/categ_So.h: Regenerated.
5889         * lib/unictype/categ_of.h: Regenerated.
5890         * lib/unictype/combining.h: Regenerated.
5891         * lib/unictype/ctype_alnum.h: Regenerated.
5892         * lib/unictype/ctype_alpha.h: Regenerated.
5893         * lib/unictype/ctype_graph.h: Regenerated.
5894         * lib/unictype/ctype_lower.h: Regenerated.
5895         * lib/unictype/ctype_print.h: Regenerated.
5896         * lib/unictype/ctype_punct.h: Regenerated.
5897         * lib/unictype/ctype_upper.h: Regenerated.
5898         * lib/unictype/decdigit.h: Regenerated.
5899         * lib/unictype/digit.h: Regenerated.
5900         * lib/unictype/mirror.h: Regenerated.
5901         * lib/unictype/numeric.h: Regenerated.
5902         * lib/unictype/pr_alphabetic.h: Regenerated.
5903         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
5904         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
5905         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
5906         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
5907         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
5908         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
5909         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
5910         * lib/unictype/pr_combining.h: Regenerated.
5911         * lib/unictype/pr_dash.h: Regenerated.
5912         * lib/unictype/pr_decimal_digit.h: Regenerated.
5913         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
5914         * lib/unictype/pr_deprecated.h: Regenerated.
5915         * lib/unictype/pr_diacritic.h: Regenerated.
5916         * lib/unictype/pr_extender.h: Regenerated.
5917         * lib/unictype/pr_format_control.h: Regenerated.
5918         * lib/unictype/pr_grapheme_base.h: Regenerated.
5919         * lib/unictype/pr_grapheme_extend.h: Regenerated.
5920         * lib/unictype/pr_grapheme_link.h: Regenerated.
5921         * lib/unictype/pr_id_continue.h: Regenerated.
5922         * lib/unictype/pr_id_start.h: Regenerated.
5923         * lib/unictype/pr_ideographic.h: Regenerated.
5924         * lib/unictype/pr_ignorable_control.h: Regenerated.
5925         * lib/unictype/pr_lowercase.h: Regenerated.
5926         * lib/unictype/pr_math.h: Regenerated.
5927         * lib/unictype/pr_numeric.h: Regenerated.
5928         * lib/unictype/pr_other_alphabetic.h: Regenerated.
5929         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
5930         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
5931         * lib/unictype/pr_other_id_continue.h: Regenerated.
5932         * lib/unictype/pr_other_lowercase.h: Regenerated.
5933         * lib/unictype/pr_other_math.h: Regenerated.
5934         * lib/unictype/pr_punctuation.h: Regenerated.
5935         * lib/unictype/pr_sentence_terminal.h: Regenerated.
5936         * lib/unictype/pr_soft_dotted.h: Regenerated.
5937         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
5938         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
5939         * lib/unictype/pr_unified_ideograph.h: Regenerated.
5940         * lib/unictype/pr_uppercase.h: Regenerated.
5941         * lib/unictype/pr_xid_continue.h: Regenerated.
5942         * lib/unictype/pr_xid_start.h: Regenerated.
5943         * lib/unictype/pr_zero_width.h: Regenerated.
5944         * lib/unictype/scripts.h: Regenerated.
5945         * lib/unictype/scripts_byname.gperf: Regenerated.
5946         * lib/unictype/sy_java_ident.h: Regenerated.
5947         * lib/unilbrk/lbrkprop1.h: Regenerated.
5948         * lib/unilbrk/lbrkprop2.h: Regenerated.
5949         * tests/unictype/test-categ_C.c: Regenerated.
5950         * tests/unictype/test-categ_Cf.c: Regenerated.
5951         * tests/unictype/test-categ_Cn.c: Regenerated.
5952         * tests/unictype/test-categ_L.c: Regenerated.
5953         * tests/unictype/test-categ_Ll.c: Regenerated.
5954         * tests/unictype/test-categ_Lm.c: Regenerated.
5955         * tests/unictype/test-categ_Lo.c: Regenerated.
5956         * tests/unictype/test-categ_Lu.c: Regenerated.
5957         * tests/unictype/test-categ_M.c: Regenerated.
5958         * tests/unictype/test-categ_Mc.c: Regenerated.
5959         * tests/unictype/test-categ_Me.c: Regenerated.
5960         * tests/unictype/test-categ_Mn.c: Regenerated.
5961         * tests/unictype/test-categ_N.c: Regenerated.
5962         * tests/unictype/test-categ_Nd.c: Regenerated.
5963         * tests/unictype/test-categ_Nl.c: Regenerated.
5964         * tests/unictype/test-categ_No.c: Regenerated.
5965         * tests/unictype/test-categ_P.c: Regenerated.
5966         * tests/unictype/test-categ_Pd.c: Regenerated.
5967         * tests/unictype/test-categ_Pe.c: Regenerated.
5968         * tests/unictype/test-categ_Pf.c: Regenerated.
5969         * tests/unictype/test-categ_Pi.c: Regenerated.
5970         * tests/unictype/test-categ_Po.c: Regenerated.
5971         * tests/unictype/test-categ_Ps.c: Regenerated.
5972         * tests/unictype/test-categ_S.c: Regenerated.
5973         * tests/unictype/test-categ_Sk.c: Regenerated.
5974         * tests/unictype/test-categ_Sm.c: Regenerated.
5975         * tests/unictype/test-categ_So.c: Regenerated.
5976         * tests/unictype/test-ctype_alnum.c: Regenerated.
5977         * tests/unictype/test-ctype_alpha.c: Regenerated.
5978         * tests/unictype/test-ctype_graph.c: Regenerated.
5979         * tests/unictype/test-ctype_lower.c: Regenerated.
5980         * tests/unictype/test-ctype_print.c: Regenerated.
5981         * tests/unictype/test-ctype_punct.c: Regenerated.
5982         * tests/unictype/test-ctype_upper.c: Regenerated.
5983         * tests/unictype/test-decdigit.h: Regenerated.
5984         * tests/unictype/test-digit.h: Regenerated.
5985         * tests/unictype/test-numeric.h: Regenerated.
5986         * tests/unictype/test-pr_alphabetic.c: Regenerated.
5987         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
5988         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
5989         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
5990         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
5991         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
5992         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
5993         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
5994         * tests/unictype/test-pr_combining.c: Regenerated.
5995         * tests/unictype/test-pr_dash.c: Regenerated.
5996         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
5997         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
5998         * tests/unictype/test-pr_deprecated.c: Regenerated.
5999         * tests/unictype/test-pr_diacritic.c: Regenerated.
6000         * tests/unictype/test-pr_extender.c: Regenerated.
6001         * tests/unictype/test-pr_format_control.c: Regenerated.
6002         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
6003         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
6004         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
6005         * tests/unictype/test-pr_id_continue.c: Regenerated.
6006         * tests/unictype/test-pr_id_start.c: Regenerated.
6007         * tests/unictype/test-pr_ideographic.c: Regenerated.
6008         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
6009         * tests/unictype/test-pr_lowercase.c: Regenerated.
6010         * tests/unictype/test-pr_math.c: Regenerated.
6011         * tests/unictype/test-pr_numeric.c: Regenerated.
6012         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
6013         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
6014         Regenerated.
6015         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
6016         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
6017         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
6018         * tests/unictype/test-pr_other_math.c: Regenerated.
6019         * tests/unictype/test-pr_punctuation.c: Regenerated.
6020         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
6021         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
6022         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
6023         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
6024         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
6025         * tests/unictype/test-pr_uppercase.c: Regenerated.
6026         * tests/unictype/test-pr_xid_continue.c: Regenerated.
6027         * tests/unictype/test-pr_xid_start.c: Regenerated.
6028         * tests/unictype/test-pr_zero_width.c: Regenerated.
6029
6030         Update to Unicode 5.1.0.
6031         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
6032         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
6033         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
6034         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
6035         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
6036         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
6037         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
6038         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
6039         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
6040         (nonspacing_table_ind): Update.
6041         * tests/uniwidth/test-uc_width2.sh: Update expected result.
6042
6043         Update to Unicode 5.1.0.
6044         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
6045         code transform.
6046         * lib/uniname/uniname.c (unicode_character_name,
6047         unicode_name_character): Add the range 0x1Fxxx to the code transform.
6048         * lib/uniname/uninames.h: Regenerated.
6049         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
6050
6051 2009-02-07  Bruno Haible  <bruno@clisp.org>
6052
6053         Merge gen-ctype and gen-lbrk into a single program.
6054         * lib/gen-uni-tables.c: New file, incorporating
6055         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
6056         Add directory prefixes to the names of the generated files.
6057         * lib/unictype/gen-ctype.c: Remove file.
6058         * lib/unilbrk/gen-lbrk.c: Remove file.
6059         * modules/gen-uni-tables: New file.
6060         * modules/unictype/gen-ctype: Remove file.
6061         * modules/unilbrk/gen-lbrk: Remove file.
6062
6063 2009-02-07  Bruno Haible  <bruno@clisp.org>
6064
6065         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
6066
6067         New module 'unistr/u32-strcoll'.
6068         * modules/unistr/u32-strcoll: New file.
6069         * lib/unistr/u32-strcoll.c: New file.
6070
6071         New module 'unistr/u16-strcoll'.
6072         * modules/unistr/u16-strcoll: New file.
6073         * lib/unistr/u16-strcoll.c: New file.
6074
6075         New module 'unistr/u8-strcoll'.
6076         * modules/unistr/u8-strcoll: New file.
6077         * lib/unistr/u8-strcoll.c: New file.
6078         * lib/unistr/u-strcoll.h: New file.
6079
6080 2009-02-07  Bruno Haible  <bruno@clisp.org>
6081
6082         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
6083         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
6084         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
6085         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
6086         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
6087         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
6088
6089 2009-02-07  Bruno Haible  <bruno@clisp.org>
6090
6091         Make 64-bit clean.
6092         * lib/unictype/gen-ctype.c (output_predicate, output_category,
6093         output_combclass, output_bidi_category, output_decimal_digit,
6094         output_digit, output_numeric, output_mirror, output_scripts,
6095         output_ident_category): Use proper width specifier in format strings.
6096
6097 2009-02-07  Bruno Haible  <bruno@clisp.org>
6098
6099         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
6100         failure behaviour.
6101
6102 2009-02-07  Jim Meyering  <meyering@redhat.com>
6103
6104         regex: avoid compilation failure with upcoming gcc-4.4
6105         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
6106         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
6107         "... error: integer overflow in preprocessor expression".
6108
6109 2009-02-05  Ben Pfaff  <blp@gnu.org>
6110
6111         Fix link errors on Windows when close module is used.
6112         * modules/close: Add $(LIB_CLOSE) to Link section.
6113         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
6114         $(LIB_CLOSE) on Windows.
6115
6116 2009-02-05  Jim Meyering  <meyering@redhat.com>
6117
6118         still avoid unused-parameter warnings, but do it cleanly
6119         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
6120         (get_fs_usage): Cast to void instead.
6121         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
6122         (dev_from_mount_options, read_file_system_list): Cast to void.
6123         Prompted by Bruno Haible.
6124
6125 2009-02-04  Jim Meyering  <meyering@redhat.com>
6126
6127         fsusage.c: correct copyright year
6128         * lib/fsusage.c: Reflect year in which the change is pushed into
6129
6130         avoid misc. warnings
6131         * lib/fsusage.c (UNUSED_PARAM): Define.
6132         (get_fs_usage): Mark parameter "disk" as unused.
6133         * lib/getugroups.c (getgrent): Use "void" in prototype.
6134         * lib/mountlist.c: Mark unused parameters.
6135         (read_file_system_list): Declare a local with "const".
6136         * lib/nanosleep.c (getnow): Declare static.
6137         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
6138
6139         dirfd: set errno upon failure
6140         * lib/dirfd.c: Include <errno.h>.
6141         Set errno to ENOTSUP when returning -1.
6142         * modules/dirfd (Depends-on): Add errno.
6143         Suggested by John Kodis <kodis@comcast.net>.
6144
6145 2009-02-01  Bruno Haible  <bruno@clisp.org>
6146
6147         Don't assume sizeof (long) >= sizeof (void *).
6148         * lib/memcmp.c: Include stdint.h.
6149         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
6150         srcp2 to 'const byte *'.
6151         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
6152         types to uintptr_t.
6153         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
6154         * modules/memcmp (Depends-on): Add stdint.
6155         Reported by Ozkan Sezer <sezeroz@gmail.com>.
6156
6157 2009-01-30  Eric Blake  <ebb9@byu.net>
6158
6159         fix more require-before-expand issues
6160         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
6161         expand, AC_PROG_AWK.
6162         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
6163
6164 2009-01-28  Eric Blake  <ebb9@byu.net>
6165
6166         version-etc: use consistent URL formatting
6167         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
6168         Improve formatting.  Use fputs for string without %.
6169
6170 2009-01-28  Jim Meyering  <meyering@redhat.com>
6171
6172         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
6173         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
6174         "underquoted definition of NAME" from autoconf-2.59.
6175
6176 2009-01-28  Bruno Haible  <bruno@clisp.org>
6177
6178         * doc/gnulib.texi: Add "Obsolete modules" to index.
6179
6180 2009-01-28  Jim Meyering  <meyering@redhat.com>
6181
6182         useless-if-before-free: recognize more variants
6183         * build-aux/useless-if-before-free: Also recognize e.g.,
6184         if (NULL != p) free (p);
6185
6186 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
6187
6188         test-getaddrinfo: skip (don't fail) this test when there's no network
6189         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
6190         on the presumption that it means you lack network access.
6191
6192 2009-01-26  Jim Meyering  <meyering@redhat.com>
6193
6194         fflush: avoid warnings on modern systems
6195         * lib/fflush.c (rpl_fflush): Move declarations of locals,
6196         pos and result, into scopes where they're used.
6197
6198 2009-01-26  Eric Blake  <ebb9@byu.net>
6199
6200         Silence warning reintroduced by recent extensions patch.
6201         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
6202         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
6203         autoconf.
6204
6205         Backport improved autoconf semantics of AC_DEFUN_ONCE.
6206         * m4/00gnulib.m4: New file.
6207         * gnulib-tool (func_get_filelist): Always use it.
6208         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
6209         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
6210
6211 2009-01-25  Bruno Haible  <bruno@clisp.org>
6212
6213         Make test-quotearg work on MacOS X and AIX.
6214         * tests/test-quotearg.sh: New file.
6215         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
6216         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
6217         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
6218         include <libintl.h>.
6219         (fake_locale): Remove variable.
6220         (gettext, dgettext, dcgettext): Remove functions.
6221         (main): Instead of setting a fake locale, set a real locale. Call
6222         textdomain and bindtextdomain.
6223         * modules/quotearg-tests (Files): Add the new files.
6224         (Depends-on): Add gettext, setenv, unsetenv.
6225         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
6226         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
6227         Augment TESTS_ENVIRONMENT.
6228
6229 2009-01-25  Bruno Haible  <bruno@clisp.org>
6230
6231         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
6232         fr_FR.ISO8859-1 locale on MacOS X.
6233         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
6234         ja_JP.eucJP locale on MacOS X.
6235         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
6236         zh_CN.GB18030 locale on MacOS X.
6237
6238 2009-01-25  Bruno Haible  <bruno@clisp.org>
6239
6240         Avoid link errors on MacOS X 10.3.
6241         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
6242         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
6243
6244 2009-01-25  Bruno Haible  <bruno@clisp.org>
6245
6246         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
6247         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
6248         * modules/pipe (Files): Remove m4/posix_spawn.m4.
6249         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
6250         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
6251         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
6252         posix_spawnattr_init, posix_spawnattr_setsigmask,
6253         posix_spawnattr_setflags, posix_spawnattr_destroy.
6254
6255         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
6256         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
6257         * modules/execute (Files): Remove m4/posix_spawn.m4.
6258         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
6259         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
6260         posix_spawnattr_init, posix_spawnattr_setsigmask,
6261         posix_spawnattr_setflags, posix_spawnattr_destroy.
6262
6263 2009-01-25  Bruno Haible  <bruno@clisp.org>
6264
6265         * lib/glthread/threadlib.c: Include <stdlib.h>.
6266
6267 2009-01-25  Bruno Haible  <bruno@clisp.org>
6268
6269         * lib/glthread/threadlib.c (dummy): New declaration.
6270
6271 2009-01-25  Bruno Haible  <bruno@clisp.org>
6272
6273         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
6274         multibyte characters also for the GB18030 encoding. Don't crash when
6275         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
6276
6277 2009-01-25  Bruno Haible  <bruno@clisp.org>
6278
6279         Avoid redefining 'struct random_data' on OSF/1 5.1.
6280         * lib/stdlib.in.h: Include <random.h> if it exists.
6281         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
6282         HAVE_RANDOM_H. Include <random.h> when testing whether
6283         'struct random_data' exists.
6284         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
6285
6286 2009-01-25  Bruno Haible  <bruno@clisp.org>
6287
6288         Don't install charset.alias on MacOS X >= 10.3.
6289         * lib/localcharset.c (DARWIN7): New macro.
6290         (get_charset_aliases): Hardcode the result for Darwin7.
6291         * modules/localcharset (install-exec-local): Don't install
6292         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
6293
6294 2009-01-25  Bruno Haible  <bruno@clisp.org>
6295
6296         Don't install charset.alias on mingw and Cygwin.
6297         * modules/localcharset (install-exec-local): Don't install
6298         charset.alias on mingw and Cygwin, if the file does not yet exist.
6299         The result for these platforms is hardcoded in localcharset.c.
6300
6301 2009-01-25  Bruno Haible  <bruno@clisp.org>
6302
6303         Make it possible again to use AC_GNU_SOURCE together with gnulib.
6304         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
6305         before requiring AC_USE_SYSTEM_EXTENSIONS.
6306
6307 2009-01-25  Jim Meyering  <meyering@redhat.com>
6308
6309         c-strtod: avoid warnings
6310         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
6311         "assignment discards qualifiers from pointer target type" warnings.
6312
6313 2009-01-24  Bruno Haible  <bruno@clisp.org>
6314
6315         Add support for non-UTF-8 locales on MacOS X.
6316         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
6317         canonical encodings. For Darwin 7 and newer, don't map traditional
6318         encodings to UTF-8.
6319         Reported by Vincent Lefevre <vincent@vinc17.org>
6320         at <http://savannah.gnu.org/bugs/?25235>.
6321
6322 2009-01-24  Bruno Haible  <bruno@clisp.org>
6323
6324         * doc/gnulib.texi (Obsolete modules): New section.
6325         Reported by Mike Frysinger <vapier@gentoo.org>.
6326
6327 2009-01-24  Bruno Haible  <bruno@clisp.org>
6328
6329         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
6330         (%.dvi): New rule.
6331
6332 2009-01-24  Bruno Haible  <bruno@clisp.org>
6333
6334         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
6335         Reported by Eric Blake.
6336
6337 2009-01-24  Bruno Haible  <bruno@clisp.org>
6338
6339         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
6340         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
6341         Reported by Gary V. Vaughan <gary@gnu.org>.
6342
6343 2009-01-24  Bruno Haible  <bruno@clisp.org>
6344
6345         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
6346
6347 2009-01-23  Bruno Haible  <bruno@clisp.org>
6348
6349         Make c-strtod, c-strtold usable in libraries.
6350         * lib/c-strtod.c: Include string.h instead of xalloc.h.
6351         (C_STRTOD): Call strdup instead of xstrdup.
6352         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
6353         * modules/c-strtold (Depends-on): Likewise.
6354         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
6355         * NEWS: Mention the change.
6356         Reported by Michael Gold <mgold@ncf.ca>.
6357
6358 2009-01-23  Jim Meyering  <meyering@redhat.com>
6359
6360         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
6361         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
6362         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
6363
6364 2009-01-23  Simon Josefsson  <simon@josefsson.org>
6365
6366         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
6367         GNU CoreUtils.
6368         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
6369         * modules/version-etc (Description): Update.
6370
6371 2009-01-22  Bruno Haible  <bruno@clisp.org>
6372
6373         Cache the C locale object.
6374         * lib/c-strtod.c (c_locale_cache): New variable.
6375         (c_locale): New function.
6376         (C_STRTOD): Use it, and don't call freelocale.
6377         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
6378         Suggested by Paolo Bonzini.
6379
6380 2009-01-21  Bruno Haible  <bruno@clisp.org>
6381
6382         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
6383         conditions other than overflow.
6384
6385 2009-01-21  Bruno Haible  <bruno@clisp.org>
6386
6387         * lib/c-strtod.c: Include errno.h.
6388         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
6389         value from STRTOD_L and STRTOD.
6390
6391 2009-01-21  Bruno Haible  <bruno@clisp.org>
6392         and Jim Meyering  <meyering@redhat.com>
6393
6394         nanosleep: skip configure test (fail it) for apple universal builds
6395         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
6396         universal builds, assume that nanosleep does not work.
6397         * modules/nanosleep (Depends-on): Add multiarch.
6398
6399         mktime: skip configure test (fail it) for apple universal builds
6400         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
6401         universal builds, assume that mktime does not work.
6402         * modules/mktime (Depends-on): Add multiarch.
6403
6404 2009-01-21  Eric Blake  <ebb9@byu.net>
6405
6406         multiarch: avoid expand-before-require warning
6407         * modules/multiarch (configure.ac): Require, rather than expand,
6408         gl_MULTIARCH.
6409         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
6410         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
6411         enforce that all clients require it.  Partial reversion of
6412         2008-12-29 patch.
6413
6414         error: avoid expand-before-require warning
6415         * modules/errno (configure.ac): Require, rather than expand,
6416         gl_HEADER_ERRNO_H.
6417         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
6418         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
6419         enforce that all clients require it.
6420
6421         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
6422         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
6423         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
6424         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
6425
6426 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
6427
6428         Revert:
6429         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
6430
6431         regex: do not depend on obsolete modules.
6432         * modules/regex: Remove memcmp and memmove.
6433
6434 2009-01-20  Bruno Haible  <bruno@clisp.org>
6435
6436         Make the 'link' module link on Windows NT 4.
6437         * lib/link.c (_WIN32_WINNT): Don't define.
6438         (CreateHardLinkFuncType): New type.
6439         (CreateHardLinkFunc, initialized): New variables.
6440         (initialize): New function.
6441         (link): Invoke CreateHardLink indirectly through the function pointer.
6442
6443 2009-01-20  Bruno Haible  <bruno@clisp.org>
6444
6445         Fix compilation failure on mingw.
6446         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
6447
6448 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
6449
6450         * doc/c-strtod.texi: Mention a couple of restrictions.
6451
6452 2009-01-20  Jim Meyering  <meyering@redhat.com>
6453
6454         gettimeofday: move more declarations out of functions
6455         * lib/gettimeofday.c: Move extern declarations of tzset and
6456         gmtime out of containing functions.  Prompted by Bruno Haible.
6457
6458 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
6459
6460         regex: do not depend on obsolete modules.
6461         * modules/regex: Remove memcmp and memmove.
6462
6463 2009-01-19  Bruno Haible  <bruno@clisp.org>
6464
6465         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
6466         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
6467         gl_BIGENDIAN, not AC_C_BIGENDIAN.
6468         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
6469         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
6470
6471 2009-01-19  Bruno Haible  <bruno@clisp.org>
6472
6473         * tests/test-link.c: Include <errno.h>.
6474         (main): Exit with code 77 when a hard link cannot be created due to
6475         the file system.
6476         * tests/test-link.sh: Skip test when a hard link cannot be created due
6477         to the file system.
6478         Suggested by Eric Blake.
6479
6480 2009-01-19  Martin Lambers  <marlam@marlam.de>
6481
6482         * modules/link-tests: New file.
6483         * tests/test-link.sh: New file.
6484         * tests/test-link.c: New file.
6485
6486 2009-01-19  Eric Blake  <ebb9@byu.net>
6487
6488         doc: mention another function added in cygwin 1.7.0
6489         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
6490         Another new function in cygwin 1.7.
6491
6492 2009-01-19  Bruno Haible  <bruno@clisp.org>
6493
6494         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
6495         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
6496         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
6497         gl_BIGENDIAN, not AC_C_BIGENDIAN.
6498         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
6499         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
6500         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
6501         * m4/md4.m4 (gl_MD4): Likewise.
6502         * m4/md5.m4 (gl_MD5): Likewise.
6503         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
6504         * m4/sha1.m4 (gl_SHA1): Likewise.
6505         * m4/sha256.m4 (gl_SHA256): Likewise.
6506         * m4/sha512.m4 (gl_SHA512): Likewise.
6507
6508 2009-01-19  Bruno Haible  <bruno@clisp.org>
6509
6510         * modules/uniname/uniname-tests (Depends-on): Add progname.
6511         * tests/uniname/test-uninames.c: Include progname.h.
6512         (main): Call set_program_name.
6513
6514         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
6515         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
6516         (main): Call set_program_name.
6517
6518         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
6519         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
6520         (main): Call set_program_name.
6521
6522         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
6523         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
6524         (main): Call set_program_name.
6525
6526         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
6527         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
6528         (main): Call set_program_name.
6529
6530         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
6531         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
6532         (main): Call set_program_name.
6533
6534         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
6535         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
6536         (main): Call set_program_name.
6537
6538         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
6539         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
6540         (main): Call set_program_name.
6541
6542         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
6543         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
6544         (main): Call set_program_name.
6545
6546 2009-01-19  Eric Blake  <ebb9@byu.net>
6547
6548         test-unistd: test previous patch
6549         * tests/test-unistd.c: Test *_FILENO macros.
6550
6551         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
6552         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
6553         Guarantee a definition.
6554         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
6555         * modules/unistd-safer (Depends-on): Add dependency on unistd.
6556         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
6557         * lib/dup-safer.c (STDERR_FILENO): Likewise.
6558         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
6559         Likewise.
6560         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
6561         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
6562         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
6563         Likewise.
6564         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
6565         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
6566         (STDERR_FILENO): Likewise.
6567         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
6568         (STDERR_FILENO): Likewise.
6569         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
6570         (STDERR_FILENO): Likewise.
6571         Reported by Elbert Pol.
6572
6573 2009-01-19  Eric Blake  <ebb9@byu.net>
6574
6575         doc: mention more functions added in cygwin 1.7.0
6576         * doc/posix-functions/abort.texi (abort): Update wording related
6577         to cygwin.
6578         * doc/posix-functions/daylight.texi (daylight): Likewise.
6579         * doc/posix-functions/optarg.texi (optarg): Likewise.
6580         * doc/posix-functions/optarg.texi (opterr): Likewise.
6581         * doc/posix-functions/optarg.texi (optind): Likewise.
6582         * doc/posix-functions/optarg.texi (optopt): Likewise.
6583         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
6584         worked in 1.5.x, and was withdrawn in 1.7.
6585         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
6586         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
6587         cygwin versions.
6588         * doc/posix-functions/perror.texi (perror): Likewise.
6589         * doc/posix-functions/printf.texi (printf): Likewise.
6590         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
6591         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
6592         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
6593         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
6594         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
6595         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
6596         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
6597         Likewise.
6598         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
6599         Likewise.
6600         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
6601         this function.
6602         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
6603         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
6604         Likewise.
6605         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
6606         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
6607         * doc/posix-functions/confstr.texi (confstr): Likewise.
6608         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
6609         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
6610         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
6611         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
6612         * doc/posix-functions/fputws.texi (fputws): Likewise.
6613         * doc/posix-functions/fwide.texi (fwide): Likewise.
6614         * doc/posix-functions/getwc.texi (getwc): Likewise.
6615         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
6616         * doc/posix-functions/putwc.texi (putwc): Likewise.
6617         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
6618         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
6619         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
6620         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
6621         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
6622         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
6623         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
6624         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
6625         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
6626         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
6627         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
6628
6629 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
6630
6631         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
6632         * lib/ioctl.c: Include <sys/ioctl.h>.
6633
6634 2009-01-19  Simon Josefsson  <simon@josefsson.org>
6635
6636         * modules/getdate-tests (Depends-on): Add progname.
6637         * tests/test-getdate.c: Use progname module, to avoid link errors
6638         on non-glibc systems.
6639
6640 2009-01-18  Simon Josefsson  <simon@josefsson.org>
6641
6642         * modules/filenamecat-tests (Depends-on): Add progname.
6643         * modules/fstrcmp-tests (Depends-on): Likewise.
6644
6645         * tests/test-filenamecat.c: Use progname module, to avoid link
6646         errors on non-glibc systems.
6647         * tests/test-fstrcmp.c: Likewise.
6648
6649 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
6650
6651         gettimeofday: avoid warning: nested extern declaration of 'localtime'
6652         * lib/gettimeofday.c: Move extern declaration out of function.
6653
6654 2009-01-18  Bruno Haible  <bruno@clisp.org>
6655
6656         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
6657         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
6658         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
6659
6660 2009-01-18  Bruno Haible  <bruno@clisp.org>
6661
6662         * lib/strftime.c (MEMPCPY): Remove unused macro.
6663         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
6664
6665 2009-01-18  Martin Lambers  <marlam@marlam.de>
6666
6667         New module 'link'.
6668         * lib/unistd.in.h (link): New declaration.
6669         * lib/link.c: New file.
6670         * m4/link.m4: New file.
6671         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
6672         HAVE_LINK.
6673         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
6674         * modules/link: New file.
6675         * doc/posix-functions/link.texi: Mention the new module.
6676
6677 2009-01-18  Bruno Haible  <bruno@clisp.org>
6678
6679         * tests/test-avltree_list.c (main): Call set_program_name.
6680         * tests/test-avltree_oset.c (main): Likewise.
6681         * tests/test-obstack-printf.c: Include progname.h.
6682         (main): Call set_program_name.
6683         * tests/test-quotearg.c: Include progname.h.
6684         (main): Call set_program_name.
6685         * tests/test-xmemdup0.c: Include progname.h.
6686         (main): Call set_program_name.
6687
6688 2009-01-18  Bruno Haible  <bruno@clisp.org>
6689
6690         New module 'alphasort'.
6691         * lib/dirent.in.h (alphasort): New declaration.
6692         * lib/alphasort.c: New file, from glibc with modifications.
6693         * m4/alphasort.m4: New file.
6694         * modules/alphasort: New file.
6695         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
6696         HAVE_ALPHASORT.
6697         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
6698         HAVE_ALPHASORT.
6699         * doc/posix-functions/alphasort.texi: Mention the new module and the
6700         portability problems.
6701
6702 2009-01-18  Bruno Haible  <bruno@clisp.org>
6703
6704         New module 'scandir'.
6705         * lib/dirent.in.h (scandir): New declaration.
6706         * lib/scandir.c: New file, from glibc with modifications.
6707         * m4/scandir.m4: New file.
6708         * modules/scandir: New file.
6709         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
6710         HAVE_SCANDIR.
6711         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
6712         HAVE_SCANDIR.
6713         * doc/posix-functions/scandir.texi: Mention the new module and the
6714         portability problems.
6715
6716 2009-01-17  Bruno Haible  <bruno@clisp.org>
6717
6718         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
6719         Update documentation.
6720         (func_remove_suffix): Escape all dots in the suffix. Update
6721         documentation.
6722         (func_filter_filelist): Update documentation.
6723         Reported by Ralf Wildenhues.
6724
6725 2009-01-17  Bruno Haible  <bruno@clisp.org>
6726
6727         * modules/dprintf-posix-tests: New file.
6728         * tests/test-dprintf-posix.sh: New file.
6729         * tests/test-dprintf-posix.c: New file.
6730
6731         New modules 'dprintf', 'dprintf-posix'.
6732         * lib/stdio.in.h (dprintf): New declaration.
6733         * lib/dprintf.c: New file.
6734         * m4/dprintf.m4: New file.
6735         * m4/dprintf-posix.m4: New file.
6736         * modules/dprintf: New file.
6737         * modules/dprintf-posix: New file.
6738         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
6739         HAVE_DPRINTF, REPLACE_DPRINTF.
6740         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
6741         HAVE_DPRINTF, REPLACE_DPRINTF.
6742         * doc/posix-functions/dprintf.texi: Mention the new modules.
6743
6744 2009-01-17  Bruno Haible  <bruno@clisp.org>
6745
6746         * modules/vdprintf-posix-tests: New file.
6747         * tests/test-vdprintf-posix.sh: New file.
6748         * tests/test-vdprintf-posix.c: New file.
6749
6750         New modules 'vdprintf', 'vdprintf-posix'.
6751         * lib/stdio.in.h (vdprintf): New declaration.
6752         * lib/vdprintf.c: New file.
6753         * m4/vdprintf.m4: New file.
6754         * m4/vdprintf-posix.m4: New file.
6755         * modules/vdprintf: New file.
6756         * modules/vdprintf-posix: New file.
6757         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
6758         HAVE_VDPRINTF, REPLACE_VDPRINTF.
6759         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
6760         HAVE_VDPRINTF, REPLACE_VDPRINTF.
6761         * doc/posix-functions/vdprintf.texi: Mention the new modules.
6762
6763 2009-01-17  Bruno Haible  <bruno@clisp.org>
6764
6765         Fix replacement of fopen on mingw.
6766         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
6767         mingw.
6768
6769 2009-01-17  Bruno Haible  <bruno@clisp.org>
6770
6771         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
6772         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
6773
6774 2009-01-17  Bruno Haible  <bruno@clisp.org>
6775
6776         Avoid test-fflush2.sh failure on mingw.
6777         * tests/test-fflush2.c: Include binary-io.h.
6778         (main): Put standard input into binary mode.
6779         * modules/fflush-tests (Depends-on): Add binary-io.
6780
6781 2009-01-17  Bruno Haible  <bruno@clisp.org>
6782
6783         * lib/wchar.in.h: In another particular situation, include only the
6784         system's <wchar.h> file.
6785         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
6786         Reported by Albert Chin-A-Young <china@thewrittenword.com>
6787         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
6788
6789 2009-01-17  Bruno Haible  <bruno@clisp.org>
6790
6791         Support for stripping executables in --enable-relocatable.
6792         * build-aux/install-reloc: Expect one more argument, or an environment
6793         variable RELOC_STRIP_PROG. If set, strip the destination program and
6794         its wrapper.
6795         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
6796         RELOC_STRIP_PROG.
6797         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
6798         to set RELOCATABLE_STRIP.
6799         * NEWS: Mention the new Makefile requirement.
6800
6801 2009-01-17  Bruno Haible  <bruno@clisp.org>
6802
6803         * build-aux/install-reloc: Remove debugging information left over by
6804         C compiler on MacOS X.
6805
6806 2009-01-17  Bruno Haible  <bruno@clisp.org>
6807
6808         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
6809         * lib/progreloc.c (find_executable): Fix type of pointer passed to
6810         _NSGetExecutablePath.
6811
6812 2009-01-16  Jim Meyering  <meyering@redhat.com>
6813
6814         strerror: avoid warnings about discarding "const"
6815         * lib/strerror.c (rpl_strerror): Instead of returning a const
6816         string from each and every "case", use a variable, and add a single
6817         cast after the switch.
6818
6819 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
6820
6821         * lib/arpa_inet.in.h: Add extern "C" block for C++.
6822
6823 2009-01-16  Bruno Haible  <bruno@clisp.org>
6824
6825         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
6826         array initializer syntax that also works in C++ mode.
6827         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
6828
6829 2009-01-16  Jim Meyering  <meyering@redhat.com>
6830
6831         poll: suppress a warning
6832         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
6833         to ignore "...unsigned expression < 0 is always false" warnings.
6834
6835 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
6836
6837         poll: remove declarations of unused variables
6838         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
6839         sockbuf and optlen.
6840
6841 2009-01-15  Bruno Haible  <bruno@clisp.org>
6842
6843         Make fflush-after-ungetc POSIX compliant on BSD systems.
6844         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
6845         (clear_ungetc_buffer): Implement also for other systems.
6846         (rpl_fflush): On glibc systems, invoke
6847         clear_ungetc_buffer_preserving_position. Otherwise, invoke
6848         clear_ungetc_buffer after fetching the stream's position, not before.
6849
6850 2009-01-15  Bruno Haible  <bruno@clisp.org>
6851
6852         Make fflush-after-ungetc POSIX compliant on glibc systems.
6853         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
6854         after ungetc.
6855         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
6856         (rpl_fflush): On glibc systems, simply call the system's fflush
6857         function after clearing the ungetc buffer.
6858         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
6859         Instead, lseek only to the end of file, then use the system's fseeko
6860         for the rest. On glibc systems, reset the EOF indicator bit.
6861
6862 2009-01-15  Jim Meyering  <meyering@redhat.com>
6863
6864         openmp.m4: revert quote-adding change, for portability to older autoconf
6865         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
6866         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
6867         Simon Josefsson noticed the problem when using autoconf-2.61.
6868
6869 2009-01-15  Bruno Haible  <bruno@clisp.org>
6870
6871         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
6872         * tests/test-fflush2.c (ASSERT): Always fail.
6873         (main): Add two tests for fflush() after ungetc(), taking into account
6874         the Austin Group's clarification.
6875         Suggested by Eric Blake.
6876
6877 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
6878
6879         mktime.m4: remove K&R-style function prototypes
6880         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
6881         for the Sun C++ compiler.
6882
6883 2009-01-14  Bruno Haible  <bruno@clisp.org>
6884
6885         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
6886         while including <wchar.h>.
6887         * lib/wchar.in.h: In two particular situations on HP-UX, include only
6888         the system's <wchar.h> file.
6889         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
6890
6891 2009-01-14  Bruno Haible  <bruno@clisp.org>
6892
6893         * m4/csharp.m4: Don't mention gettext on the serial number line.
6894         * m4/csharpexec.m4: Likewise.
6895         * m4/eaccess.m4: Likewise.
6896         * m4/javaexec.m4: Likewise.
6897         * m4/sig_atomic_t.m4: Likewise.
6898         * m4/tmpdir.m4: Likewise.
6899         * m4/intldir.m4: Bump gettext version.
6900         * m4/lib-ld.m4: Likewise.
6901
6902 2009-01-14  Bruno Haible  <bruno@clisp.org>
6903
6904         * lib/progname.c (set_program_name): Add more comments.
6905         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
6906
6907 2009-01-14  Simon Josefsson  <simon@josefsson.org>
6908
6909         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
6910         were sys/stat.h does not define it.
6911
6912 2009-01-14  Jim Meyering  <meyering@redhat.com>
6913
6914         many *.m4 files: improve m4 quoting
6915         99% of this change was performed by running the following commands:
6916         git ls-files | grep '\.m4$' | xargs perl -pi \
6917           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
6918           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
6919           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
6920           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
6921         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
6922         The remainder were to add Copyright dates, increment serial numbers,
6923         undo some changes in comments, exclude m4/intl.m4, and add quotes
6924         around the "1" in ",1" where the unusual spacing prohibited the
6925         above regexps from doing the job.  For more details, see
6926         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
6927         * m4/acl.m4: Modified.
6928         * m4/afs.m4: Likewise.
6929         * m4/alloca.m4: Likewise.
6930         * m4/argp.m4: Likewise.
6931         * m4/argz.m4: Likewise.
6932         * m4/atexit.m4: Likewise.
6933         * m4/bison-i18n.m4: Likewise.
6934         * m4/bison.m4: Likewise.
6935         * m4/byteswap.m4: Likewise.
6936         * m4/c-stack.m4: Likewise.
6937         * m4/c-strtod.m4: Likewise.
6938         * m4/calloc.m4: Likewise.
6939         * m4/canonicalize-lgpl.m4: Likewise.
6940         * m4/chown.m4: Likewise.
6941         * m4/clock_time.m4: Likewise.
6942         * m4/codeset.m4: Likewise.
6943         * m4/copy-file.m4: Likewise.
6944         * m4/csharp.m4: Likewise.
6945         * m4/csharpcomp.m4: Likewise.
6946         * m4/csharpexec.m4: Likewise.
6947         * m4/d-ino.m4: Likewise.
6948         * m4/d-type.m4: Likewise.
6949         * m4/dirfd.m4: Likewise.
6950         * m4/double-slash-root.m4: Likewise.
6951         * m4/eaccess.m4: Likewise.
6952         * m4/eealloc.m4: Likewise.
6953         * m4/environ.m4: Likewise.
6954         * m4/errno_h.m4: Likewise.
6955         * m4/euidaccess.m4: Likewise.
6956         * m4/execute.m4: Likewise.
6957         * m4/fatal-signal.m4: Likewise.
6958         * m4/fchdir.m4: Likewise.
6959         * m4/fcntl_h.m4: Likewise.
6960         * m4/fileblocks.m4: Likewise.
6961         * m4/filenamecat.m4: Likewise.
6962         * m4/findprog.m4: Likewise.
6963         * m4/flexmember.m4: Likewise.
6964         * m4/fnmatch.m4: Likewise.
6965         * m4/fopen.m4: Likewise.
6966         * m4/fpending.m4: Likewise.
6967         * m4/fprintf-posix.m4: Likewise.
6968         * m4/free.m4: Likewise.
6969         * m4/frexp.m4: Likewise.
6970         * m4/frexpl.m4: Likewise.
6971         * m4/fsusage.m4: Likewise.
6972         * m4/ftruncate.m4: Likewise.
6973         * m4/gc-camellia.m4: Likewise.
6974         * m4/gc-random.m4: Likewise.
6975         * m4/gc.m4: Likewise.
6976         * m4/getaddrinfo.m4: Likewise.
6977         * m4/getcwd-abort-bug.m4: Likewise.
6978         * m4/getcwd-path-max.m4: Likewise.
6979         * m4/getdate.m4: Likewise.
6980         * m4/getdomainname.m4: Likewise.
6981         * m4/getgroups.m4: Likewise.
6982         * m4/gethostname.m4: Likewise.
6983         * m4/gethrxtime.m4: Likewise.
6984         * m4/getline.m4: Likewise.
6985         * m4/getloadavg.m4: Likewise.
6986         * m4/getndelim2.m4: Likewise.
6987         * m4/getpass.m4: Likewise.
6988         * m4/gettext.m4: Likewise.
6989         * m4/gettime.m4: Likewise.
6990         * m4/gettimeofday.m4: Likewise.
6991         * m4/gnulib-common.m4: Likewise.
6992         * m4/group-member.m4: Likewise.
6993         * m4/host-os.m4: Likewise.
6994         * m4/iconv.m4: Likewise.
6995         * m4/iconv_open.m4: Likewise.
6996         * m4/inet_ntop.m4: Likewise.
6997         * m4/inet_pton.m4: Likewise.
6998         * m4/inline.m4: Likewise.
6999         * m4/intldir.m4: Likewise.
7000         * m4/intlmacosx.m4: Likewise.
7001         * m4/intmax.m4: Likewise.
7002         * m4/intmax_t.m4: Likewise.
7003         * m4/inttypes.m4: Likewise.
7004         * m4/inttypes_h.m4: Likewise.
7005         * m4/inttypes-pri.m4: Likewise.
7006         * m4/isapipe.m4: Likewise.
7007         * m4/isnand.m4: Likewise.
7008         * m4/isnanf.m4: Likewise.
7009         * m4/isnanl.m4: Likewise.
7010         * m4/javacomp.m4: Likewise.
7011         * m4/javaexec.m4: Likewise.
7012         * m4/jm-winsz1.m4: Likewise.
7013         * m4/jm-winsz2.m4: Likewise.
7014         * m4/lchown.m4: Likewise.
7015         * m4/lcmessage.m4: Likewise.
7016         * m4/ldexpl.m4: Likewise.
7017         * m4/lib-ld.m4: Likewise.
7018         * m4/lib-link.m4: Likewise.
7019         * m4/libsigsegv.m4: Likewise.
7020         * m4/link-follow.m4: Likewise.
7021         * m4/localcharset.m4: Likewise.
7022         * m4/locale-fr.m4: Likewise.
7023         * m4/locale-ja.m4: Likewise.
7024         * m4/locale-tr.m4: Likewise.
7025         * m4/locale-zh.m4: Likewise.
7026         * m4/lock.m4: Likewise.
7027         * m4/longlong.m4: Likewise.
7028         * m4/ls-mntd-fs.m4: Likewise.
7029         * m4/lstat.m4: Likewise.
7030         * m4/malloc.m4: Likewise.
7031         * m4/mathl.m4: Likewise.
7032         * m4/mbrtowc.m4: Likewise.
7033         * m4/mbstate_t.m4: Likewise.
7034         * m4/mbswidth.m4: Likewise.
7035         * m4/memchr.m4: Likewise.
7036         * m4/memcmp.m4: Likewise.
7037         * m4/memcpy.m4: Likewise.
7038         * m4/memmem.m4: Likewise.
7039         * m4/memmove.m4: Likewise.
7040         * m4/mempcpy.m4: Likewise.
7041         * m4/memrchr.m4: Likewise.
7042         * m4/memset.m4: Likewise.
7043         * m4/minmax.m4: Likewise.
7044         * m4/mkdir-slash.m4: Likewise.
7045         * m4/mkdtemp.m4: Likewise.
7046         * m4/mktime.m4: Likewise.
7047         * m4/mmap-anon.m4: Likewise.
7048         * m4/mountlist.m4: Likewise.
7049         * m4/nanosleep.m4: Likewise.
7050         * m4/nls.m4: Likewise.
7051         * m4/nocrash.m4: Likewise.
7052         * m4/open.m4: Likewise.
7053         * m4/openat.m4: Likewise.
7054         * m4/openmp.m4: Likewise.
7055         * m4/pathmax.m4: Likewise.
7056         * m4/perl.m4: Likewise.
7057         * m4/physmem.m4: Likewise.
7058         * m4/pipe.m4: Likewise.
7059         * m4/po.m4: Likewise.
7060         * m4/poll.m4: Likewise.
7061         * m4/posixtm.m4: Likewise.
7062         * m4/posixver.m4: Likewise.
7063         * m4/printf-frexp.m4: Likewise.
7064         * m4/printf-frexpl.m4: Likewise.
7065         * m4/printf-posix.m4: Likewise.
7066         * m4/printf-posix-rpl.m4: Likewise.
7067         * m4/printf.m4: Likewise.
7068         * m4/progtest.m4: Likewise.
7069         * m4/putenv.m4: Likewise.
7070         * m4/readline.m4: Likewise.
7071         * m4/readlink.m4: Likewise.
7072         * m4/readutmp.m4: Likewise.
7073         * m4/realloc.m4: Likewise.
7074         * m4/regex.m4: Likewise.
7075         * m4/relocatable.m4: Likewise.
7076         * m4/relocatable-lib.m4: Likewise.
7077         * m4/rename-dest-slash.m4: Likewise.
7078         * m4/rename.m4: Likewise.
7079         * m4/rmdir-errno.m4: Likewise.
7080         * m4/rmdir.m4: Likewise.
7081         * m4/roundf.m4: Likewise.
7082         * m4/roundl.m4: Likewise.
7083         * m4/rpmatch.m4: Likewise.
7084         * m4/save-cwd.m4: Likewise.
7085         * m4/selinux-selinux-h.m4: Likewise.
7086         * m4/setenv.m4: Likewise.
7087         * m4/settime.m4: Likewise.
7088         * m4/sig2str.m4: Likewise.
7089         * m4/sig_atomic_t.m4: Likewise.
7090         * m4/signalblocking.m4: Likewise.
7091         * m4/signbit.m4: Likewise.
7092         * m4/sigpipe.m4: Likewise.
7093         * m4/sockets.m4: Likewise.
7094         * m4/sockpfaf.m4: Likewise.
7095         * m4/st_dm_mode.m4: Likewise.
7096         * m4/stat-time.m4: Likewise.
7097         * m4/stdbool.m4: Likewise.
7098         * m4/stdint.m4: Likewise.
7099         * m4/stdint_h.m4: Likewise.
7100         * m4/stpcpy.m4: Likewise.
7101         * m4/stpncpy.m4: Likewise.
7102         * m4/strcase.m4: Likewise.
7103         * m4/strchrnul.m4: Likewise.
7104         * m4/strcspn.m4: Likewise.
7105         * m4/strdup.m4: Likewise.
7106         * m4/strftime.m4: Likewise.
7107         * m4/strndup.m4: Likewise.
7108         * m4/strnlen.m4: Likewise.
7109         * m4/strpbrk.m4: Likewise.
7110         * m4/strptime.m4: Likewise.
7111         * m4/strsep.m4: Likewise.
7112         * m4/strtod.m4: Likewise.
7113         * m4/strtoimax.m4: Likewise.
7114         * m4/strtok_r.m4: Likewise.
7115         * m4/strtol.m4: Likewise.
7116         * m4/strtoll.m4: Likewise.
7117         * m4/strtoul.m4: Likewise.
7118         * m4/strtoull.m4: Likewise.
7119         * m4/strtoumax.m4: Likewise.
7120         * m4/strverscmp.m4: Likewise.
7121         * m4/threadlib.m4: Likewise.
7122         * m4/timegm.m4: Likewise.
7123         * m4/tm_gmtoff.m4: Likewise.
7124         * m4/tmpdir.m4: Likewise.
7125         * m4/tmpfile.m4: Likewise.
7126         * m4/tzset.m4: Likewise.
7127         * m4/uintmax_t.m4: Likewise.
7128         * m4/unlinkdir.m4: Likewise.
7129         * m4/unlocked-io.m4: Likewise.
7130         * m4/uptime.m4: Likewise.
7131         * m4/userspec.m4: Likewise.
7132         * m4/utimbuf.m4: Likewise.
7133         * m4/utime.m4: Likewise.
7134         * m4/utimes-null.m4: Likewise.
7135         * m4/utimes.m4: Likewise.
7136         * m4/vararrays.m4: Likewise.
7137         * m4/vasnprintf.m4: Likewise.
7138         * m4/vfprintf-posix.m4: Likewise.
7139         * m4/vprintf-posix.m4: Likewise.
7140         * m4/wait-process.m4: Likewise.
7141         * m4/wchar_t.m4: Likewise.
7142         * m4/wint_t.m4: Likewise.
7143         * m4/write-any-file.m4: Likewise.
7144         * m4/yield.m4: Likewise.
7145
7146 2009-01-13  Bruno Haible  <bruno@clisp.org>
7147
7148         Avoid test-copy-file.sh failures when ACL support insufficient.
7149         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
7150         TESTS_ENVIRONMENT.
7151         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
7152         Reported by Jim Meyering.
7153
7154 2009-01-13  Bruno Haible  <bruno@clisp.org>
7155
7156         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
7157         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
7158         * modules/unistdio/u8-printf-parse (Files): Likewise.
7159         * modules/unistdio/u32-printf-parse (Files): Likewise.
7160         * modules/unistdio/ulc-printf-parse (Files): Likewise.
7161
7162 2009-01-13  Simon Josefsson  <simon@josefsson.org>
7163
7164         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
7165         and m4/inttypes_h.m4 too.
7166
7167 2009-01-12  Eric Blake  <ebb9@byu.net>
7168
7169         tests: IRIX 6.2 cc can't compile -0.0 into .data
7170         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
7171         rather than at compile-time.
7172         * tests/test-floorl.c (minus_zero): Likewise.
7173         * tests/test-frexpl.c (minus_zero): Likewise.
7174         * tests/test-isnan.c (minus_zerol): Likewise.
7175         * tests/test-isnanl.h (minus_zero): Likewise.
7176         * tests/test-ldexpl.c (minus_zero): Likewise.
7177         * tests/test-roundl.c (minus_zero): Likewise.
7178         * tests/test-signbit.c (minus_zerol): Likewise.
7179         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
7180         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
7181         * tests/test-truncl.c (minus_zero): Likewise.
7182         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
7183         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
7184         Reported by Tom G. Christensen and Nelson H. F. Beebe.
7185
7186 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
7187
7188         regex: fix glibc bug 9697
7189         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
7190         handling.
7191
7192 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
7193
7194         regex: fix glibc bug 697
7195         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
7196         being NULL also if there are no backreferences.
7197
7198 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
7199
7200         regex: merge glibc changes
7201         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
7202         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
7203         re_string_skip_chars, re_string_reconstruct): Likewise.
7204         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
7205
7206 2009-01-07  Jim Meyering  <meyering@redhat.com>
7207
7208         poll: filter through cppi
7209         * lib/poll.c: Indent cpp directives to reflect nesting.
7210
7211 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
7212
7213         poll: don't return uninitialized
7214         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
7215
7216 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
7217
7218         avoid compile failure on AIX 6.1
7219         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
7220         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
7221
7222 2009-01-04  Jim Meyering  <meyering@redhat.com>
7223
7224         remove duplicate inclusion of <stdio.h>
7225         * tests/test-fprintf-posix.c: Likewise.
7226         * tests/test-printf-posix.c: Likewise.
7227         * tests/test-snprintf-posix.c: Likewise.
7228         * tests/test-sprintf-posix.c: Likewise.
7229         * tests/test-vasprintf-posix.c: Likewise.
7230         * tests/test-vfprintf-posix.c: Likewise.
7231         * tests/test-vprintf-posix.c: Likewise.
7232         * tests/test-vsnprintf-posix.c: Likewise.
7233         * tests/test-vsprintf-posix.c: Likewise.
7234
7235 2009-01-03  Jim Meyering  <meyering@redhat.com>
7236
7237         gnulib-tool: fix sed-based filtering
7238         * gnulib-tool (func_filter_filelist): Remove extra backslash
7239         in sed_fff_filter definition.
7240
7241 2009-01-02  Jim Meyering  <meyering@redhat.com>
7242
7243         strftime: avoid compilation failure on Solaris 2.6
7244         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
7245         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
7246         Don't #define mbrlen or mbsinit, since now they're guaranteed to
7247         be available.  Reported by Tom G. Christensen.  Details in
7248         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
7249
7250 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7251             Bruno Haible  <bruno@clisp.org>
7252
7253         Speed up gnulib-tool by doing more string processing through shell
7254         built-ins.
7255         * gnulib-tool (fast_func_append): New variable.
7256         (func_remove_prefix, func_remove_suffix): New functions.
7257         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
7258         (func_filter_filelist): New function.
7259         (func_get_dependencies): Use func_remove_suffix instead of sed.
7260         (func_get_automake_snippet): Use func_filter_filelist instead of a
7261         subshell and sed invocation.
7262
7263 2009-01-01  Bruno Haible  <bruno@clisp.org>
7264
7265         Fix a security bug.
7266         * gnulib-tool (func_import, import, update): Don't allow the characters
7267         '"', '$', '`', '\' in macro arguments that become part of commands that
7268         are evaluated.
7269
7270 2009-01-01  Bruno Haible  <bruno@clisp.org>
7271
7272         * gnulib-tool (func_reset_sigpipe): Add more comments.
7273
7274 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7275
7276         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
7277         func_emit_tests_Makefile_am, func_import): Abort loops early if we
7278         already know the answer.
7279
7280 2009-01-01  Jim Meyering  <meyering@redhat.com>
7281
7282         * lib/version-etc.c (version_etc_va): Update copyright year.
7283
7284 2008-12-30  Bruno Haible  <bruno@clisp.org>
7285
7286         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
7287         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
7288         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
7289
7290 2008-12-29  Eric Blake  <ebb9@byu.net>
7291
7292         multiarch: avoid autoconf AC_REQUIRE bug
7293         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
7294         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
7295         2.63 and older.
7296         Reported by Bruno Haible, and analyzed in
7297         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
7298
7299 2008-12-29  Bruno Haible  <bruno@clisp.org>
7300
7301         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
7302         files in subdirectories correctly.
7303         Reported by Ralf Wildenhues.
7304
7305 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7306
7307         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
7308         rather than 'join FILE -', for Solaris join.
7309
7310 2008-12-29  Bruno Haible  <bruno@clisp.org>
7311
7312         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
7313         quoting.
7314         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
7315         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
7316         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
7317         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
7318         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
7319         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
7320         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
7321         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
7322         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
7323         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
7324         * m4/nls.m4 (AM_NLS): Likewise.
7325         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
7326         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
7327         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
7328         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
7329         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
7330         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
7331         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
7332         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
7333         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
7334         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
7335         * m4/xsize.m4 (gl_XSIZE): Likewise.
7336         Suggested by Jim Meyering.
7337
7338 2008-11-17  Bruce Korb  <bkorb@gnu.org>
7339
7340         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
7341         * lib/parse-duration.c: use a switch instead of cascading if's.
7342
7343 2008-12-29  Eric Blake  <ebb9@byu.net>
7344
7345         wchar.h: supply WEOF on Irix 5.3
7346         * lib/wchar.in.h (wint_t): Also supply WEOF.
7347         * lib/wctype.in.h (wint_t): Likewise.
7348         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
7349         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
7350         Reported by Tom G. Christensen.
7351
7352 2008-12-26  Bruno Haible  <bruno@clisp.org>
7353
7354         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
7355         i486, i586, i686.
7356
7357 2008-12-26  Bruno Haible  <bruno@clisp.org>
7358
7359         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
7360
7361 2008-12-26  Bruno Haible  <bruno@clisp.org>
7362
7363         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
7364         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
7365         not __STDC_CONSTANT_MACROS.
7366         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
7367
7368 2008-12-25  Bruno Haible  <bruno@clisp.org>
7369
7370         Add support for universal builds to vasnprintf.
7371         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
7372         universal builds, guess no.
7373         * modules/vasnprintf-posix (Depends-on): Add multiarch.
7374         * modules/vasprintf-posix (Depends-on): Likewise.
7375         * modules/fprintf-posix (Depends-on): Likewise.
7376         * modules/vfprintf-posix (Depends-on): Likewise.
7377         * modules/snprintf-posix (Depends-on): Likewise.
7378         * modules/vsnprintf-posix (Depends-on): Likewise.
7379         * modules/sprintf-posix (Depends-on): Likewise.
7380         * modules/vsprintf-posix (Depends-on): Likewise.
7381         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
7382         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
7383         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
7384         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
7385         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
7386         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
7387         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
7388
7389         Add support for universal builds to <inttypes.h>.
7390         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
7391         _SCNu64_PREFIX): In Apple
7392         universal builds, define directly, using _LP64.
7393         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
7394         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
7395         * modules/inttypes (Depends-on): Add multiarch.
7396         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
7397
7398         Add support for universal builds to <stdint.h>.
7399         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
7400         universal builds, define directly, using _LP64.
7401         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
7402         Apple universal builds, don't test for the size and suffix of ptrdiff_t
7403         and size_t.
7404         * modules/stdint (Depends-on): Add multiarch.
7405         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
7406
7407         New module 'multiarch'.
7408         * modules/multiarch: New file.
7409         * m4/multiarch.m4: New file.
7410
7411 2008-12-25  Bruno Haible  <bruno@clisp.org>
7412
7413         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
7414
7415 2008-12-25  Bruno Haible  <bruno@clisp.org>
7416
7417         * modules/btowc (License): Relicense under LGPLv2+.
7418         * modules/mbsinit (License): Likewise.
7419         * modules/mbrtowc (License): Likewise.
7420         * modules/wcrtomb (License): Likewise.
7421         * modules/streq (License): Likewise.
7422         Reported by David Lutterkort <lutter@redhat.com>.
7423
7424 2008-12-23  Bruno Haible  <bruno@clisp.org>
7425
7426         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
7427
7428 2008-12-23  Bruno Haible  <bruno@clisp.org>
7429
7430         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
7431         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
7432         GETADDRINFO_LIB, not in LIBS.
7433         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
7434         * modules/canon-host (Link): Likewise.
7435         * NEWS: Mention the change.
7436         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
7437         GETADDRINFO_LIB.
7438
7439 2008-12-22  Bruno Haible  <bruno@clisp.org>
7440
7441         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
7442         * doc/posix-functions/iswalpha_l.texi: Likewise.
7443         * doc/posix-functions/iswblank_l.texi: Likewise.
7444         * doc/posix-functions/iswcntrl_l.texi: Likewise.
7445         * doc/posix-functions/iswctype_l.texi: Likewise.
7446         * doc/posix-functions/iswdigit_l.texi: Likewise.
7447         * doc/posix-functions/iswgraph_l.texi: Likewise.
7448         * doc/posix-functions/iswlower_l.texi: Likewise.
7449         * doc/posix-functions/iswprint_l.texi: Likewise.
7450         * doc/posix-functions/iswpunct_l.texi: Likewise.
7451         * doc/posix-functions/iswspace_l.texi: Likewise.
7452         * doc/posix-functions/iswupper_l.texi: Likewise.
7453         * doc/posix-functions/iswxdigit_l.texi: Likewise.
7454         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
7455         * doc/posix-functions/open_wmemstream.texi: Likewise.
7456         * doc/posix-functions/swscanf.texi: Likewise.
7457         * doc/posix-functions/towctrans_l.texi: Likewise.
7458         * doc/posix-functions/towlower.texi: Likewise.
7459         * doc/posix-functions/towlower_l.texi: Likewise.
7460         * doc/posix-functions/towupper.texi: Likewise.
7461         * doc/posix-functions/towupper_l.texi: Likewise.
7462         * doc/posix-functions/vfwprintf.texi: Likewise.
7463         * doc/posix-functions/vfwscanf.texi: Likewise.
7464         * doc/posix-functions/vswscanf.texi: Likewise.
7465         * doc/posix-functions/vwprintf.texi: Likewise.
7466         * doc/posix-functions/vwscanf.texi: Likewise.
7467         * doc/posix-functions/wcpcpy.texi: Likewise.
7468         * doc/posix-functions/wcpncpy.texi: Likewise.
7469         * doc/posix-functions/wcscasecmp.texi: Likewise.
7470         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
7471         * doc/posix-functions/wcscoll_l.texi: Likewise.
7472         * doc/posix-functions/wcsdup.texi: Likewise.
7473         * doc/posix-functions/wcsncasecmp.texi: Likewise.
7474         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
7475         * doc/posix-functions/wcsnlen.texi: Likewise.
7476         * doc/posix-functions/wcsnrtombs.texi: Likewise.
7477         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
7478         * doc/posix-functions/wctrans_l.texi: Likewise.
7479         * doc/posix-functions/wctype_l.texi: Likewise.
7480         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
7481         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
7482         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
7483         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
7484         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
7485         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
7486         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
7487         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
7488         * doc/glibc-functions/wcschrnul.texi: Likewise.
7489         * doc/glibc-functions/wcsftime_l.texi: Likewise.
7490         * doc/glibc-functions/wcstod_l.texi: Likewise.
7491         * doc/glibc-functions/wcstof_l.texi: Likewise.
7492         * doc/glibc-functions/wcstol_l.texi: Likewise.
7493         * doc/glibc-functions/wcstold_l.texi: Likewise.
7494         * doc/glibc-functions/wcstoll_l.texi: Likewise.
7495         * doc/glibc-functions/wcstoq.texi: Likewise.
7496         * doc/glibc-functions/wcstoul_l.texi: Likewise.
7497         * doc/glibc-functions/wcstoull_l.texi: Likewise.
7498         * doc/glibc-functions/wcstouq.texi: Likewise.
7499         * doc/glibc-functions/wmempcpy.texi: Likewise.
7500
7501 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
7502             Eric Blake  <ebb9@byu.net>
7503             Paolo Bonzini  <bonzini@gnu.org>
7504             Bruno Haible  <bruno@clisp.org>
7505
7506         Make c-stack work on Haiku.
7507         * lib/c-stack.c (SA_ONSTACK): Define fallback.
7508         (c_stack_action): Use SA_ONSTACK flag.
7509
7510 2008-12-22  Bruno Haible  <bruno@clisp.org>
7511
7512         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
7513
7514 2008-12-22  Bruno Haible  <bruno@clisp.org>
7515
7516         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
7517         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
7518         being overridden.
7519         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
7520         New macros.
7521         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
7522         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
7523         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
7524         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
7525
7526 2008-12-22  Bruno Haible  <bruno@clisp.org>
7527
7528         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
7529         from test code.
7530
7531 2008-12-22  Eric Blake  <ebb9@byu.net>
7532
7533         Avoid gcc warnings on cygwin.
7534         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
7535         Avoid unused variable.
7536         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
7537         Likewise.
7538
7539 2008-12-22  Bruno Haible  <bruno@clisp.org>
7540
7541         Remove HAVE_MBRTOWC conditionals.
7542         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
7543         (mbscasecmp): Assume mbrtowc function.
7544         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
7545         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
7546         * lib/mbschr.c: Include mbuiter.h unconditionally.
7547         (mbschr): Assume mbrtowc function.
7548         * lib/mbscspn.c: Include mbuiter.h unconditionally.
7549         (mbscspn): Assume mbrtowc function.
7550         * lib/mbslen.c: Include mbuiter.h unconditionally.
7551         (mbslen): Assume mbrtowc function.
7552         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
7553         (mbsncasecmp): Assume mbrtowc function.
7554         * lib/mbsnlen.c: Include mbiter.h unconditionally.
7555         (mbsnlen): Assume mbrtowc function.
7556         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
7557         (mbspbrk): Assume mbrtowc function.
7558         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
7559         (mbspcasecmp): Assume mbrtowc function.
7560         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
7561         (mbsrchr): Assume mbrtowc function.
7562         * lib/mbssep.c: Include mbuiter.h unconditionally.
7563         (mbssep): Assume mbrtowc function.
7564         * lib/mbsspn.c: Include mbuiter.h unconditionally.
7565         (mbsspn): Assume mbrtowc function.
7566         * lib/mbsstr.c: Include mbuiter.h unconditionally.
7567         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
7568         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
7569         (mbstok_r): Assume mbrtowc function.
7570         * lib/propername.c: Include mbuiter.h unconditionally.
7571         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
7572         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
7573         (trim2): Assume mbrtowc function.
7574         * lib/mbswidth.c (mbsinit): Remove fallback definition.
7575         (mbsnwidth): Assume mbrtowc function.
7576         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
7577         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
7578         fallback definitions.
7579         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
7580
7581 2008-12-22  Bruno Haible  <bruno@clisp.org>
7582
7583         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
7584
7585 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
7586
7587         * modules/regex: Request emulations for the mb*/wc* functions we need.
7588         * m4/regex.m4: Don't look for those functions here.
7589         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
7590
7591 2008-12-22  Bruno Haible  <bruno@clisp.org>
7592
7593         * modules/fnmatch (Depends-on): Remove duplicated dependency.
7594
7595 2008-12-21  Bruno Haible  <bruno@clisp.org>
7596
7597         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
7598         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
7599         (Include): Remove conditionalization.
7600         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
7601         (Include): Remove conditionalization.
7602         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
7603         (Include): Remove conditionalization.
7604         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
7605         * m4/mbfile.m4 (gl_MBFILE): Likewise.
7606         * NEWS: Mention the change.
7607         Reported by Alan Hourihane <alanh@fairlite.co.uk>
7608         via Sergey Poznyakoff <gray@gnu.org.ua>.
7609
7610 2008-12-21  Bruno Haible  <bruno@clisp.org>
7611
7612         * MODULES.html.sh (Extended multibyte and wide character utilities
7613         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
7614         wcrtomb, wcsrtombs.
7615         (Support for systems lacking POSIX:2008): Add accept, bind, close,
7616         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
7617         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
7618         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
7619
7620 2008-12-21  Bruno Haible  <bruno@clisp.org>
7621
7622         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
7623
7624 2008-12-21  Bruno Haible  <bruno@clisp.org>
7625
7626         * modules/wcsnrtombs-tests: New file.
7627         * tests/test-wcsnrtombs1.sh: New file.
7628         * tests/test-wcsnrtombs2.sh: New file.
7629         * tests/test-wcsnrtombs3.sh: New file.
7630         * tests/test-wcsnrtombs4.sh: New file.
7631         * tests/test-wcsnrtombs.c: New file.
7632
7633         New module 'wcsnrtombs'.
7634         * lib/wchar.in.h (wcsnrtombs): New declaration.
7635         * lib/wcsnrtombs.c: New file.
7636         * lib/wcsrtombs-state.c: New file.
7637         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
7638         (internal_state): Remove variable.
7639         * m4/wcsnrtombs.m4: New file.
7640         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
7641         compilation units.
7642         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
7643         HAVE_WCSNRTOMBS.
7644         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
7645         HAVE_WCSNRTOMBS.
7646         * modules/wcsnrtombs: New file.
7647         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
7648         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
7649
7650 2008-12-21  Bruno Haible  <bruno@clisp.org>
7651
7652         * modules/wcsrtombs-tests: New file.
7653         * tests/test-wcsrtombs1.sh: New file.
7654         * tests/test-wcsrtombs2.sh: New file.
7655         * tests/test-wcsrtombs3.sh: New file.
7656         * tests/test-wcsrtombs4.sh: New file.
7657         * tests/test-wcsrtombs.c: New file.
7658
7659         New module 'wcsrtombs'.
7660         * lib/wchar.in.h (wcsrtombs): New declaration.
7661         * lib/wcsrtombs.c: New file.
7662         * m4/wcsrtombs.m4: New file.
7663         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
7664         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
7665         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
7666         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
7667         * modules/wcsrtombs: New file.
7668         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
7669         bugs.
7670
7671 2008-12-21  Bruno Haible  <bruno@clisp.org>
7672
7673         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
7674         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
7675         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
7676         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
7677         if not correct.
7678         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
7679         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
7680         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
7681         m4/locale-zh.m4, m4/codeset.m4.
7682         * doc/posix-functions/wcrtomb.texi: Document the bug.
7683
7684 2008-12-21  Bruno Haible  <bruno@clisp.org>
7685
7686         Work around a btowc() bug on IRIX 6.5.
7687         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
7688         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
7689         REPLACE_WTOBC if not.
7690         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
7691         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
7692         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
7693
7694 2008-12-21  Bruno Haible  <bruno@clisp.org>
7695
7696         * modules/wcrtomb-tests: New file.
7697         * tests/test-wcrtomb.sh: New file.
7698         * tests/test-wcrtomb.c: New file.
7699
7700         New module 'wcrtomb'.
7701         * lib/wchar.in.h (wcrtomb): New declaration.
7702         * lib/wcrtomb.c: New file.
7703         * m4/wcrtomb.m4: New file.
7704         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
7705         HAVE_WCRTOMB.
7706         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
7707         HAVE_WCRTOMB.
7708         * modules/wcrtomb: New file.
7709         * doc/posix-functions/wcrtomb.texi: Mention the new module.
7710
7711 2008-12-21  Bruno Haible  <bruno@clisp.org>
7712
7713         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
7714         * modules/mbsrtowcs (Files): Likewise.
7715         * modules/wctob (Files): Likewise.
7716         * modules/c-strcase-tests (Files): Likewise.
7717         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
7718         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
7719         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
7720         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
7721         * modules/vasnprintf-posix-tests (Files): Likewise.
7722
7723 2008-12-21  William Pursell  <bill.pursell@gmail.com>
7724
7725         gitlog-to-changelog: pass all command-line arguments to git-log
7726         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
7727         it is sometimes convenient to filter the commits in various ways.
7728         gitlog-to-changelog only allows --since to specify a start date,
7729         but git-log itself supports many other filtering mechanisms.
7730         At the moment, I want to filter by branch name.  Rather than
7731         adding a --branch option to gitlog-to-changelog, it seems more
7732         flexible to simply pass all options directly to git-log and let
7733         git do the work.  Notice that this effectively makes --since a
7734         redundant option for gitlog-to-changelog, but removing it would
7735         require current usage to change since calls would then require
7736         an additional '--'.
7737
7738 2008-12-21  Bruno Haible  <bruno@clisp.org>
7739
7740         * modules/mbsnrtowcs-tests: New file.
7741         * tests/test-mbsnrtowcs1.sh: New file.
7742         * tests/test-mbsnrtowcs2.sh: New file.
7743         * tests/test-mbsnrtowcs3.sh: New file.
7744         * tests/test-mbsnrtowcs4.sh: New file.
7745         * tests/test-mbsnrtowcs.c: New file.
7746
7747         New module 'mbsnrtowcs'.
7748         * lib/wchar.in.h (mbsnrtowcs): New declaration.
7749         * lib/mbsnrtowcs.c: New file.
7750         * lib/mbsrtowcs-state.c: New file.
7751         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
7752         (internal_state): Remove variable.
7753         * m4/mbsnrtowcs.m4: New file.
7754         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
7755         compilation units.
7756         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
7757         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
7758         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
7759         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
7760         * modules/mbsnrtowcs: New file.
7761         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
7762         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
7763         portability problem.
7764
7765 2008-12-21  Bruno Haible  <bruno@clisp.org>
7766
7767         Work around mbsrtowcs bug.
7768         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
7769         (gl_FUNC_MBSRTOWCS): Invoke it.
7770         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
7771         m4/locale-zh.m4.
7772         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
7773
7774 2008-12-21  Bruno Haible  <bruno@clisp.org>
7775
7776         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
7777
7778 2008-12-21  Bruno Haible  <bruno@clisp.org>
7779
7780         Update doc for AIX.
7781         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
7782         16-bit wchar_t type.
7783         * doc/posix-functions/btowc.texi: Likewise.
7784         * doc/posix-functions/fgetwc.texi: Likewise.
7785         * doc/posix-functions/fgetws.texi: Likewise.
7786         * doc/posix-functions/fputwc.texi: Likewise.
7787         * doc/posix-functions/fputws.texi: Likewise.
7788         * doc/posix-functions/fwide.texi: Likewise.
7789         * doc/posix-functions/fwprintf.texi: Likewise.
7790         * doc/posix-functions/fwscanf.texi: Likewise.
7791         * doc/posix-functions/getwchar.texi: Likewise.
7792         * doc/posix-functions/getwc.texi: Likewise.
7793         * doc/posix-functions/iswalnum.texi: Likewise.
7794         * doc/posix-functions/iswalpha.texi: Likewise.
7795         * doc/posix-functions/iswblank.texi: Likewise.
7796         * doc/posix-functions/iswcntrl.texi: Likewise.
7797         * doc/posix-functions/iswctype.texi: Likewise.
7798         * doc/posix-functions/iswdigit.texi: Likewise.
7799         * doc/posix-functions/iswgraph.texi: Likewise.
7800         * doc/posix-functions/iswlower.texi: Likewise.
7801         * doc/posix-functions/iswprint.texi: Likewise.
7802         * doc/posix-functions/iswpunct.texi: Likewise.
7803         * doc/posix-functions/iswspace.texi: Likewise.
7804         * doc/posix-functions/iswupper.texi: Likewise.
7805         * doc/posix-functions/iswxdigit.texi: Likewise.
7806         * doc/posix-functions/mbrtowc.texi: Likewise.
7807         * doc/posix-functions/mbsrtowcs.texi: Likewise.
7808         * doc/posix-functions/mbstowcs.texi: Likewise.
7809         * doc/posix-functions/mbtowc.texi: Likewise.
7810         * doc/posix-functions/putwchar.texi: Likewise.
7811         * doc/posix-functions/putwc.texi: Likewise.
7812         * doc/posix-functions/swprintf.texi: Likewise.
7813         * doc/posix-functions/tolower.texi: Likewise.
7814         * doc/posix-functions/toupper.texi: Likewise.
7815         * doc/posix-functions/towctrans.texi: Likewise.
7816         * doc/posix-functions/ungetwc.texi: Likewise.
7817         * doc/posix-functions/vswprintf.texi: Likewise.
7818         * doc/posix-functions/wcrtomb.texi: Likewise.
7819         * doc/posix-functions/wcscat.texi: Likewise.
7820         * doc/posix-functions/wcschr.texi: Likewise.
7821         * doc/posix-functions/wcscmp.texi: Likewise.
7822         * doc/posix-functions/wcscoll.texi: Likewise.
7823         * doc/posix-functions/wcscpy.texi: Likewise.
7824         * doc/posix-functions/wcscspn.texi: Likewise.
7825         * doc/posix-functions/wcsftime.texi: Likewise.
7826         * doc/posix-functions/wcslen.texi: Likewise.
7827         * doc/posix-functions/wcsncat.texi: Likewise.
7828         * doc/posix-functions/wcsncmp.texi: Likewise.
7829         * doc/posix-functions/wcsncpy.texi: Likewise.
7830         * doc/posix-functions/wcspbrk.texi: Likewise.
7831         * doc/posix-functions/wcsrchr.texi: Likewise.
7832         * doc/posix-functions/wcsrtombs.texi: Likewise.
7833         * doc/posix-functions/wcsspn.texi: Likewise.
7834         * doc/posix-functions/wcsstr.texi: Likewise.
7835         * doc/posix-functions/wcstod.texi: Likewise.
7836         * doc/posix-functions/wcstof.texi: Likewise.
7837         * doc/posix-functions/wcstoimax.texi: Likewise.
7838         * doc/posix-functions/wcstok.texi: Likewise.
7839         * doc/posix-functions/wcstold.texi: Likewise.
7840         * doc/posix-functions/wcstoll.texi: Likewise.
7841         * doc/posix-functions/wcstol.texi: Likewise.
7842         * doc/posix-functions/wcstombs.texi: Likewise.
7843         * doc/posix-functions/wcstoull.texi: Likewise.
7844         * doc/posix-functions/wcstoul.texi: Likewise.
7845         * doc/posix-functions/wcstoumax.texi: Likewise.
7846         * doc/posix-functions/wcswidth.texi: Likewise.
7847         * doc/posix-functions/wcsxfrm.texi: Likewise.
7848         * doc/posix-functions/wctob.texi: Likewise.
7849         * doc/posix-functions/wctomb.texi: Likewise.
7850         * doc/posix-functions/wctrans.texi: Likewise.
7851         * doc/posix-functions/wctype.texi: Likewise.
7852         * doc/posix-functions/wcwidth.texi: Likewise.
7853         * doc/posix-functions/wmemchr.texi: Likewise.
7854         * doc/posix-functions/wmemcmp.texi: Likewise.
7855         * doc/posix-functions/wmemcpy.texi: Likewise.
7856         * doc/posix-functions/wmemmove.texi: Likewise.
7857         * doc/posix-functions/wmemset.texi: Likewise.
7858         * doc/posix-functions/wprintf.texi: Likewise.
7859         * doc/posix-functions/wscanf.texi: Likewise.
7860
7861 2008-12-21  Bruno Haible  <bruno@clisp.org>
7862
7863         Update doc for HP-UX 11.11.
7864         * doc/posix-functions/btowc.texi: Clarify that the function is missing
7865         in HP-UX version 11.00, not in all versions of HP-UX 11.
7866         * doc/posix-functions/fwide.texi: Likewise.
7867         * doc/posix-functions/fwprintf.texi: Likewise.
7868         * doc/posix-functions/fwscanf.texi: Likewise.
7869         * doc/posix-functions/inet_ntop.texi: Likewise.
7870         * doc/posix-functions/inet_pton.texi: Likewise.
7871         * doc/posix-functions/mbrlen.texi: Likewise.
7872         * doc/posix-functions/mbrtowc.texi: Likewise.
7873         * doc/posix-functions/mbsinit.texi: Likewise.
7874         * doc/posix-functions/mbsrtowcs.texi: Likewise.
7875         * doc/posix-functions/swprintf.texi: Likewise.
7876         * doc/posix-functions/swscanf.texi: Likewise.
7877         * doc/posix-functions/towctrans.texi: Likewise.
7878         * doc/posix-functions/vfwprintf.texi: Likewise.
7879         * doc/posix-functions/vswprintf.texi: Likewise.
7880         * doc/posix-functions/vwprintf.texi: Likewise.
7881         * doc/posix-functions/wcrtomb.texi: Likewise.
7882         * doc/posix-functions/wcsrtombs.texi: Likewise.
7883         * doc/posix-functions/wcsstr.texi: Likewise.
7884         * doc/posix-functions/wctob.texi: Likewise.
7885         * doc/posix-functions/wctrans.texi: Likewise.
7886         * doc/posix-functions/wmemchr.texi: Likewise.
7887         * doc/posix-functions/wmemcmp.texi: Likewise.
7888         * doc/posix-functions/wmemcpy.texi: Likewise.
7889         * doc/posix-functions/wmemmove.texi: Likewise.
7890         * doc/posix-functions/wmemset.texi: Likewise.
7891         * doc/posix-functions/wprintf.texi: Likewise.
7892         * doc/posix-functions/wscanf.texi: Likewise.
7893
7894 2008-12-21  Bruno Haible  <bruno@clisp.org>
7895
7896         Work around a portability problem.
7897         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
7898         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
7899
7900 2008-12-20  Bruno Haible  <bruno@clisp.org>
7901
7902         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
7903         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
7904         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
7905         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
7906         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
7907
7908         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
7909         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
7910         set.
7911         (GNULIB_defined_mbstate_t): New macro.
7912         (mbsinit): Redefine if REPLACE_MBSINIT is set.
7913         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
7914         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
7915         reuses the system's mbrtowc function but works around the bugs.
7916         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
7917         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
7918         macros.
7919         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
7920         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
7921         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
7922         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
7923         REPLACE_MBSINIT if mbsinit needs to be overridden.
7924         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
7925         REPLACE_MBSINIT, REPLACE_MBRTOWC.
7926         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
7927         REPLACE_MBSINIT, REPLACE_MBRTOWC.
7928         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
7929         m4/locale-zh.m4.
7930         (Depends): Add mbsinit.
7931         * modules/mbsinit (Depends): Add mbrtowc.
7932         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
7933
7934 2008-12-20  Bruno Haible  <bruno@clisp.org>
7935
7936         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
7937         so that there are no conversion errors on AIX.
7938         * tests/test-mbsrtowcs.c (main): LIkewise.
7939
7940 2008-12-20  Bruno Haible  <bruno@clisp.org>
7941
7942         Work around wctob bug on Solaris <= 9.
7943         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
7944         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
7945         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
7946         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
7947         * modules/wctob (Files): Add m4/locale-fr.m4.
7948         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
7949
7950 2008-12-20  Bruno Haible  <bruno@clisp.org>
7951
7952         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
7953         /dev/null.
7954         * tests/test-select-in.sh: Likewise.
7955         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
7956
7957 2008-12-20  Bruno Haible  <bruno@clisp.org>
7958
7959         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
7960         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
7961         Cygwin 1.5.x.
7962
7963 2008-12-20  Bruno Haible  <bruno@clisp.org>
7964
7965         Ensure mbstate_t is defined on HP-UX 11.11.
7966         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
7967         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
7968         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
7969         AC_USE_SYSTEM_EXTENSIONS.
7970         * modules/fnmatch (Depends-on): Add extensions.
7971         * modules/mbrlen (Depends-on): Likewise.
7972         * modules/mbrtowc (Depends-on): Likewise.
7973         * modules/mbsinit (Depends-on): Likewise.
7974         * modules/mbsrtowcs (Depends-on): Likewise.
7975         * modules/mbswidth (Depends-on): Likewise.
7976         * modules/quotearg (Depends-on): Likewise.
7977         * modules/strftime (Depends-on): Likewise.
7978
7979 2008-12-20  Bruno Haible  <bruno@clisp.org>
7980
7981         Ensure wctob is declared on IRIX 6.5.
7982         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
7983         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
7984         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
7985         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
7986         of HAVE_WCTOB.
7987         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
7988         HAVE_WCTOB.
7989         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
7990
7991 2008-12-19  Bruno Haible  <bruno@clisp.org>
7992
7993         * modules/mbsrtowcs-tests: New file.
7994         * tests/test-mbsrtowcs1.sh: New file.
7995         * tests/test-mbsrtowcs2.sh: New file.
7996         * tests/test-mbsrtowcs3.sh: New file.
7997         * tests/test-mbsrtowcs4.sh: New file.
7998         * tests/test-mbsrtowcs.c: New file.
7999
8000         New module 'mbsrtowcs'.
8001         * lib/wchar.in.h (mbsrtowcs): New declaration.
8002         * lib/mbsrtowcs.c: New file.
8003         * m4/mbsrtowcs.m4: New file.
8004         * modules/mbsrtowcs: New file.
8005         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
8006         HAVE_MBSRTOWCS.
8007         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
8008         HAVE_MBSRTOWCS.
8009         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
8010
8011 2008-12-19  Bruno Haible  <bruno@clisp.org>
8012
8013         New module 'mbrlen'.
8014         * lib/wchar.in.h (mbrlen): New declaration.
8015         * lib/mbrlen.c: New file.
8016         * m4/mbrlen.m4: New file.
8017         * modules/mbrlen: New file.
8018         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
8019         HAVE_MBRLEN.
8020         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
8021         HAVE_MBRLEN.
8022         * doc/posix-functions/mbrlen.texi: Document the new module.
8023
8024 2008-12-19  Bruno Haible  <bruno@clisp.org>
8025
8026         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
8027         * modules/mbrtowc (Depends-on): Add verify.
8028         Suggested by Paul Eggert.
8029
8030 2008-12-18  Bruno Haible  <bruno@clisp.org>
8031
8032         * modules/mbsinit-tests: New file.
8033         * tests/test-mbsinit.sh: New file.
8034         * tests/test-mbsinit.c: New file.
8035
8036 2008-12-18  Bruno Haible  <bruno@clisp.org>
8037
8038         * modules/mbrtowc-tests: New file.
8039         * tests/test-mbrtowc1.sh: New file.
8040         * tests/test-mbrtowc2.sh: New file.
8041         * tests/test-mbrtowc3.sh: New file.
8042         * tests/test-mbrtowc4.sh: New file.
8043         * tests/test-mbrtowc.c: New file.
8044
8045         New module 'mbrtowc'.
8046         * lib/wchar.in.h (mbstate_t): Override when the system does not have
8047         mbsinit and mbrtowc.
8048         (mbrtowc): New declaration.
8049         * lib/mbrtowc.c: New file.
8050         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
8051         * modules/mbrtowc: New file.
8052         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
8053         HAVE_MBRTOWC.
8054         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
8055         HAVE_MBRTOWC.
8056         * doc/posix-functions/mbrtowc.texi: Document the new module.
8057
8058 2008-12-18  Bruno Haible  <bruno@clisp.org>
8059
8060         New module 'wctob'.
8061         * lib/wchar.in.h (wctob): New declaration.
8062         * lib/wctob.c: New file.
8063         * m4/wctob.m4: New file.
8064         * modules/wctob: New file.
8065         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
8066         HAVE_WCTOB.
8067         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
8068         * doc/posix-functions/wctob.texi: Document the new module.
8069
8070 2008-12-18  Bruno Haible  <bruno@clisp.org>
8071
8072         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
8073         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
8074
8075 2008-12-18  Simon Josefsson  <simon@josefsson.org>
8076
8077         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
8078         G. Christensen" <tgc@jupiterrise.com>.
8079
8080         * lib/flock.c: Need to include errno.h.  Reported by "Tom
8081         G. Christensen" <tgc@jupiterrise.com>.
8082
8083         * lib/flock.c: Need to include string.h.  Reported by "Tom
8084         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
8085         <ebb9@byu.net>.
8086
8087 2008-12-18  Bruno Haible  <bruno@clisp.org>
8088
8089         * m4/locale-ja.m4: New file, from GNU gettext.
8090
8091 2008-12-17  Bruno Haible  <bruno@clisp.org>
8092
8093         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
8094         Suggested by Eric Blake.
8095
8096 2008-12-17  Bruno Haible  <bruno@clisp.org>
8097
8098         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
8099
8100 2008-12-17  Bruno Haible  <bruno@clisp.org>
8101
8102         * lib/mbsinit.c: Include verify.h. Verify an assumption.
8103         * modules/mbsinit (Depends-on): Add verify.
8104         Suggested by Paul Eggert.
8105
8106 2008-12-17  Bruno Haible  <bruno@clisp.org>
8107
8108         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
8109         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
8110         gl_FUNC_MBRTOWC.
8111         * m4/mbiter.m4 (gl_MBITER): LIkewise.
8112         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
8113         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
8114         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
8115         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
8116         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
8117         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
8118         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
8119         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
8120         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
8121         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
8122         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
8123         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
8124         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
8125         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
8126         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
8127         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
8128         * modules/trim (configure.ac): Likewise.
8129
8130 2008-12-17  Bruno Haible  <bruno@clisp.org>
8131
8132         * modules/btowc-tests: New file.
8133         * tests/test-btowc1.sh: New file.
8134         * tests/test-btowc2.sh: New file.
8135         * tests/test-btowc.c: New file.
8136
8137         New module 'btowc'.
8138         * lib/wchar.in.h (btowc): New declaration.
8139         * lib/btowc.c: New file.
8140         * m4/btowc.m4: New file.
8141         * modules/btowc: New file.
8142         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
8143         HAVE_BTOWC.
8144         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
8145         * doc/posix-functions/btowc.texi: Document the new module.
8146
8147 2008-12-17  Bruno Haible  <bruno@clisp.org>
8148
8149         New module 'mbsinit'.
8150         * lib/wchar.in.h (mbsinit): New declaration.
8151         * lib/mbsinit.c: New file.
8152         * m4/mbsinit.m4: New file.
8153         * modules/mbsinit: New file.
8154         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
8155         HAVE_MBSINIT.
8156         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
8157         HAVE_MBSINIT.
8158         * doc/posix-functions/mbsinit.texi: Document the new module.
8159
8160 2008-12-16  Bruno Haible  <bruno@clisp.org>
8161
8162         * lib/unistd.in.h: Add comment.
8163         * tests/test-environ.c: Don't include <stdlib.h>.
8164
8165 2008-12-16  Bruno Haible  <bruno@clisp.org>
8166
8167         * lib/parse-duration.h (parse_duration): Document return value
8168         convention.
8169         * lib/parse-duration.c: Include specification header first. Add
8170         comments.
8171         (_): Remove macro.
8172         (parse_year_month_day, parse_hour_minute_second): Move side effects
8173         outside of strchr call.
8174         (parse_non_iso8601): Move side effects outside of isspace call.
8175         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
8176         call.
8177
8178 2008-12-16  Bruno Haible  <bruno@clisp.org>
8179
8180         * tests/test-parse-duration.sh: Produce no output when the test
8181         succeeds.
8182
8183 2008-12-16  Bruno Haible  <bruno@clisp.org>
8184
8185         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
8186         expressions.
8187
8188 2008-12-15  Bruno Haible  <bruno@clisp.org>
8189
8190         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
8191         * doc/glibc-functions/flistxattr.texi: Likewise.
8192         * doc/glibc-functions/fopencookie.texi: Likewise.
8193         * doc/glibc-functions/fremovexattr.texi: Likewise.
8194         * doc/glibc-functions/fsetxattr.texi: Likewise.
8195         * doc/glibc-functions/getxattr.texi: Likewise.
8196         * doc/glibc-functions/lgetxattr.texi: Likewise.
8197         * doc/glibc-functions/listxattr.texi: Likewise.
8198         * doc/glibc-functions/llistxattr.texi: Likewise.
8199         * doc/glibc-functions/lremovexattr.texi: Likewise.
8200         * doc/glibc-functions/lsetxattr.texi: Likewise.
8201         * doc/glibc-functions/removexattr.texi: Likewise.
8202         * doc/glibc-functions/setxattr.texi: Likewise.
8203         * doc/posix-functions/open_memstream.texi: Likewise.
8204
8205 2008-12-15  Eric Blake  <ebb9@byu.net>
8206
8207         Update doc for cygwin 1.7.
8208         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
8209         functions.
8210         * doc/posix-functions/fchmodat.texi: Likewise.
8211         * doc/posix-functions/fchownat.texi: Likewise.
8212         * doc/posix-functions/fdopendir.texi: Likewise.
8213         * doc/posix-functions/fmemopen.texi: Likewise.
8214         * doc/posix-functions/freeaddrinfo.texi: Likewise.
8215         * doc/posix-functions/fstatat.texi: Likewise.
8216         * doc/posix-functions/futimens.texi: Likewise.
8217         * doc/posix-functions/gai_strerror.texi: Likewise.
8218         * doc/posix-functions/getaddrinfo.texi: Likewise.
8219         * doc/posix-functions/getnameinfo.texi: Likewise.
8220         * doc/posix-functions/if_freenameindex.texi: Likewise.
8221         * doc/posix-functions/if_indextoname.texi: Likewise.
8222         * doc/posix-functions/if_nameindex.texi: Likewise.
8223         * doc/posix-functions/if_nametoindex.texi: Likewise.
8224         * doc/posix-functions/insque.texi: Likewise.
8225         * doc/posix-functions/linkat.texi: Likewise.
8226         * doc/posix-functions/llrint.texi: Likewise.
8227         * doc/posix-functions/llrintf.texi: Likewise.
8228         * doc/posix-functions/llrintl.texi: Likewise.
8229         * doc/posix-functions/lockf.texi: Likewise.
8230         * doc/posix-functions/lrintl.texi: Likewise.
8231         * doc/posix-functions/mkdirat.texi: Likewise.
8232         * doc/posix-functions/mkfifoat.texi: Likewise.
8233         * doc/posix-functions/mknodat.texi: Likewise.
8234         * doc/posix-functions/mq_close.texi: Likewise.
8235         * doc/posix-functions/mq_getattr.texi: Likewise.
8236         * doc/posix-functions/mq_notify.texi: Likewise.
8237         * doc/posix-functions/mq_open.texi: Likewise.
8238         * doc/posix-functions/mq_receive.texi: Likewise.
8239         * doc/posix-functions/mq_send.texi: Likewise.
8240         * doc/posix-functions/mq_setattr.texi: Likewise.
8241         * doc/posix-functions/mq_timedreceive.texi: Likewise.
8242         * doc/posix-functions/mq_timedsend.texi: Likewise.
8243         * doc/posix-functions/mq_unlink.texi: Likewise.
8244         * doc/posix-functions/open_memstream.texi: Likewise.
8245         * doc/posix-functions/openat.texi: Likewise.
8246         * doc/posix-functions/posix_fadvise.texi: Likewise.
8247         * doc/posix-functions/posix_fallocate.texi: Likewise.
8248         * doc/posix-functions/posix_madvise.texi: Likewise.
8249         * doc/posix-functions/posix_memalign.texi: Likewise.
8250         * doc/posix-functions/posix_openpt.texi: Likewise.
8251         * doc/posix-functions/readlinkat.texi: Likewise.
8252         * doc/posix-functions/remque.texi: Likewise.
8253         * doc/posix-functions/renameat.texi: Likewise.
8254         * doc/posix-functions/rintl.texi: Likewise.
8255         * doc/posix-functions/sem_unlink.texi: Likewise.
8256         * doc/posix-functions/shm_open.texi: Likewise.
8257         * doc/posix-functions/shm_unlink.texi: Likewise.
8258         * doc/posix-functions/signgam.texi: Likewise.
8259         * doc/posix-functions/sigset.texi: Likewise.
8260         * doc/posix-functions/stpcpy.texi: Likewise.
8261         * doc/posix-functions/stpncpy.texi: Likewise.
8262         * doc/posix-functions/strerror.texi: Likewise.
8263         * doc/posix-functions/strtod.texi: Likewise.
8264         * doc/posix-functions/symlinkat.texi: Likewise.
8265         * doc/posix-functions/unlinkat.texi: Likewise.
8266         * doc/posix-functions/utimensat.texi: Likewise.
8267         * doc/glibc-functions/bindresvport.texi: Likewise.
8268         * doc/glibc-functions/dn_expand.texi: Likewise.
8269         * doc/glibc-functions/exp10.texi: Likewise.
8270         * doc/glibc-functions/exp10f.texi: Likewise.
8271         * doc/glibc-functions/fgetxattr.texi: Likewise.
8272         * doc/glibc-functions/flistxattr.texi: Likewise.
8273         * doc/glibc-functions/fopencookie.texi: Likewise.
8274         * doc/glibc-functions/freeifaddrs.texi: Likewise.
8275         * doc/glibc-functions/fremovexattr.texi: Likewise.
8276         * doc/glibc-functions/fsetxattr.texi: Likewise.
8277         * doc/glibc-functions/getifaddrs.texi: Likewise.
8278         * doc/glibc-functions/getxattr.texi: Likewise.
8279         * doc/glibc-functions/lgetxattr.texi: Likewise.
8280         * doc/glibc-functions/listxattr.texi: Likewise.
8281         * doc/glibc-functions/llistxattr.texi: Likewise.
8282         * doc/glibc-functions/lremovexattr.texi: Likewise.
8283         * doc/glibc-functions/lsetxattr.texi: Likewise.
8284         * doc/glibc-functions/pow10.texi: Likewise.
8285         * doc/glibc-functions/pow10f.texi: Likewise.
8286         * doc/glibc-functions/rcmd_af.texi: Likewise.
8287         * doc/glibc-functions/removexattr.texi: Likewise.
8288         * doc/glibc-functions/res_init.texi: Likewise.
8289         * doc/glibc-functions/res_mkquery.texi: Likewise.
8290         * doc/glibc-functions/res_query.texi: Likewise.
8291         * doc/glibc-functions/res_querydomain.texi: Likewise.
8292         * doc/glibc-functions/res_send.texi: Likewise.
8293         * doc/glibc-functions/rresvport_af.texi: Likewise.
8294         * doc/glibc-functions/setxattr.texi: Likewise.
8295         * doc/glibc-functions/strcasestr.texi: Likewise.
8296
8297 2008-12-15  Bruno Haible  <bruno@clisp.org>
8298
8299         Fix compilation error on OSF/1 4.0.
8300         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
8301         <sys/time.h>, simply delegate to the system header.
8302         Reported by Daniel Richard G. <oss@teragram.com>.
8303
8304 2008-12-15  Bruno Haible  <bruno@clisp.org>
8305
8306         * doc/posix-functions/openat.texi: Mention the 'openat' module.
8307         * doc/posix-functions/fchmodat.texi: Likewise.
8308         * doc/posix-functions/fchownat.texi: Likewise.
8309         * doc/posix-functions/fdopendir.texi: Likewise.
8310         * doc/posix-functions/fstatat.texi: Likewise.
8311         * doc/posix-functions/mkdirat.texi: Likewise.
8312         * doc/posix-functions/unlinkat.texi: Likewise.
8313
8314 2008-12-14  Bruno Haible  <bruno@clisp.org>
8315
8316         Update doc for POSIX:2008.
8317         * doc/posix-functions/faccessat.texi: New file.
8318         * doc/posix-functions/fchmodat.texi: New file.
8319         * doc/posix-functions/fchownat.texi: New file.
8320         * doc/posix-functions/fdopendir.texi: New file.
8321         * doc/posix-functions/fstatat.texi: New file.
8322         * doc/posix-functions/futimens.texi: New file.
8323         * doc/posix-functions/linkat.texi: New file.
8324         * doc/posix-functions/mkdirat.texi: New file.
8325         * doc/posix-functions/mkfifoat.texi: New file.
8326         * doc/posix-functions/mknodat.texi: New file.
8327         * doc/posix-functions/open_wmemstream.texi: New file.
8328         * doc/posix-functions/openat.texi: New file.
8329         * doc/posix-functions/psiginfo.texi: New file.
8330         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
8331         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
8332         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
8333         * doc/posix-functions/readlinkat.texi: New file.
8334         * doc/posix-functions/renameat.texi: New file.
8335         * doc/posix-functions/strerror_l.texi: New file.
8336         * doc/posix-functions/symlinkat.texi: New file.
8337         * doc/posix-functions/unlinkat.texi: New file.
8338         * doc/posix-functions/utimensat.texi: New file.
8339         * doc/gnulib.texi (Function Substitutes): Add these subsections.
8340
8341 2008-12-14  Bruno Haible  <bruno@clisp.org>
8342
8343         Update doc for POSIX:2008.
8344         * doc/posix-functions/alphasort.texi: Renamed from
8345         doc/glibc-functions/alphasort.texi.
8346         * doc/posix-functions/dirfd.texi: Renamed from
8347         doc/glibc-functions/dirfd.texi.
8348         * doc/posix-functions/dprintf.texi: Renamed from
8349         doc/glibc-functions/dprintf.texi.
8350         * doc/posix-functions/duplocale.texi: Renamed from
8351         doc/glibc-functions/duplocale.texi.
8352         * doc/posix-functions/fexecve.texi: Renamed from
8353         doc/glibc-functions/fexecve.texi.
8354         * doc/posix-functions/fmemopen.texi: Renamed from
8355         doc/glibc-functions/fmemopen.texi.
8356         * doc/posix-functions/freelocale.texi: Renamed from
8357         doc/glibc-functions/freelocale.texi.
8358         * doc/posix-functions/getdate_err.texi: Renamed from
8359         doc/glibc-functions/getdate_err.texi.
8360         * doc/posix-functions/isalnum_l.texi: Renamed from
8361         doc/glibc-functions/isalnum_l.texi.
8362         * doc/posix-functions/isalpha_l.texi: Renamed from
8363         doc/glibc-functions/isalpha_l.texi.
8364         * doc/posix-functions/isblank_l.texi: Renamed from
8365         doc/glibc-functions/isblank_l.texi.
8366         * doc/posix-functions/iscntrl_l.texi: Renamed from
8367         doc/glibc-functions/iscntrl_l.texi.
8368         * doc/posix-functions/isdigit_l.texi: Renamed from
8369         doc/glibc-functions/isdigit_l.texi.
8370         * doc/posix-functions/isgraph_l.texi: Renamed from
8371         doc/glibc-functions/isgraph_l.texi.
8372         * doc/posix-functions/islower_l.texi: Renamed from
8373         doc/glibc-functions/islower_l.texi.
8374         * doc/posix-functions/isprint_l.texi: Renamed from
8375         doc/glibc-functions/isprint_l.texi.
8376         * doc/posix-functions/ispunct_l.texi: Renamed from
8377         doc/glibc-functions/ispunct_l.texi.
8378         * doc/posix-functions/isspace_l.texi: Renamed from
8379         doc/glibc-functions/isspace_l.texi.
8380         * doc/posix-functions/isupper_l.texi: Renamed from
8381         doc/glibc-functions/isupper_l.texi.
8382         * doc/posix-functions/iswalnum_l.texi: Renamed from
8383         doc/glibc-functions/iswalnum_l.texi.
8384         * doc/posix-functions/iswalpha_l.texi: Renamed from
8385         doc/glibc-functions/iswalpha_l.texi.
8386         * doc/posix-functions/iswblank_l.texi: Renamed from
8387         doc/glibc-functions/iswblank_l.texi.
8388         * doc/posix-functions/iswcntrl_l.texi: Renamed from
8389         doc/glibc-functions/iswcntrl_l.texi.
8390         * doc/posix-functions/iswctype_l.texi: Renamed from
8391         doc/glibc-functions/iswctype_l.texi.
8392         * doc/posix-functions/iswdigit_l.texi: Renamed from
8393         doc/glibc-functions/iswdigit_l.texi.
8394         * doc/posix-functions/iswgraph_l.texi: Renamed from
8395         doc/glibc-functions/iswgraph_l.texi.
8396         * doc/posix-functions/iswlower_l.texi: Renamed from
8397         doc/glibc-functions/iswlower_l.texi.
8398         * doc/posix-functions/iswprint_l.texi: Renamed from
8399         doc/glibc-functions/iswprint_l.texi.
8400         * doc/posix-functions/iswpunct_l.texi: Renamed from
8401         doc/glibc-functions/iswpunct_l.texi.
8402         * doc/posix-functions/iswspace_l.texi: Renamed from
8403         doc/glibc-functions/iswspace_l.texi.
8404         * doc/posix-functions/iswupper_l.texi: Renamed from
8405         doc/glibc-functions/iswupper_l.texi.
8406         * doc/posix-functions/iswxdigit_l.texi: Renamed from
8407         doc/glibc-functions/iswxdigit_l.texi.
8408         * doc/posix-functions/isxdigit_l.texi: Renamed from
8409         doc/glibc-functions/isxdigit_l.texi.
8410         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
8411         doc/glibc-functions/mbsnrtowcs.texi.
8412         * doc/posix-functions/mkdtemp.texi: Renamed from
8413         doc/glibc-functions/mkdtemp.texi.
8414         * doc/posix-functions/newlocale.texi: Renamed from
8415         doc/glibc-functions/newlocale.texi.
8416         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
8417         doc/glibc-functions/nl_langinfo_l.texi.
8418         * doc/posix-functions/open_memstream.texi: Renamed from
8419         doc/glibc-functions/open_memstream.texi.
8420         * doc/posix-functions/opterr.texi: Renamed from
8421         doc/glibc-functions/opterr.texi.
8422         * doc/posix-functions/optind.texi: Renamed from
8423         doc/glibc-functions/optind.texi.
8424         * doc/posix-functions/optopt.texi: Renamed from
8425         doc/glibc-functions/optopt.texi.
8426         * doc/posix-functions/psignal.texi: Renamed from
8427         doc/glibc-functions/psignal.texi.
8428         * doc/posix-functions/scandir.texi: Renamed from
8429         doc/glibc-functions/scandir.texi.
8430         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
8431         doc/glibc-functions/sched_get_priority_min.texi.
8432         * doc/posix-functions/signgam.texi: Renamed from
8433         doc/glibc-functions/signgam.texi.
8434         * doc/posix-functions/stpcpy.texi: Renamed from
8435         doc/glibc-functions/stpcpy.texi.
8436         * doc/posix-functions/stpncpy.texi: Renamed from
8437         doc/glibc-functions/stpncpy.texi.
8438         * doc/posix-functions/strcasecmp_l.texi: Renamed from
8439         doc/glibc-functions/strcasecmp_l.texi.
8440         * doc/posix-functions/strcoll_l.texi: Renamed from
8441         doc/glibc-functions/strcoll_l.texi.
8442         * doc/posix-functions/strfmon_l.texi: Renamed from
8443         doc/glibc-functions/strfmon_l.texi.
8444         * doc/posix-functions/strftime_l.texi: Renamed from
8445         doc/glibc-functions/strftime_l.texi.
8446         * doc/posix-functions/strncasecmp_l.texi: Renamed from
8447         doc/glibc-functions/strncasecmp_l.texi.
8448         * doc/posix-functions/strndup.texi: Renamed from
8449         doc/glibc-functions/strndup.texi.
8450         * doc/posix-functions/strnlen.texi: Renamed from
8451         doc/glibc-functions/strnlen.texi.
8452         * doc/posix-functions/strsignal.texi: Renamed from
8453         doc/glibc-functions/strsignal.texi.
8454         * doc/posix-functions/strxfrm_l.texi: Renamed from
8455         doc/glibc-functions/strxfrm_l.texi.
8456         * doc/posix-functions/timer_gettime.texi: Renamed from
8457         doc/glibc-functions/timer_gettime.texi.
8458         * doc/posix-functions/tolower_l.texi: Renamed from
8459         doc/glibc-functions/tolower_l.texi.
8460         * doc/posix-functions/toupper_l.texi: Renamed from
8461         doc/glibc-functions/toupper_l.texi.
8462         * doc/posix-functions/towctrans_l.texi: Renamed from
8463         doc/glibc-functions/towctrans_l.texi.
8464         * doc/posix-functions/towlower_l.texi: Renamed from
8465         doc/glibc-functions/towlower_l.texi.
8466         * doc/posix-functions/towupper_l.texi: Renamed from
8467         doc/glibc-functions/towupper_l.texi.
8468         * doc/posix-functions/uselocale.texi: Renamed from
8469         doc/glibc-functions/uselocale.texi.
8470         * doc/posix-functions/vdprintf.texi: Renamed from
8471         doc/glibc-functions/vdprintf.texi.
8472         * doc/posix-functions/wcpcpy.texi:
8473         Renamed from doc/glibc-functions/wcpcpy.texi.
8474         * doc/posix-functions/wcpncpy.texi: Renamed from
8475         doc/glibc-functions/wcpncpy.texi.
8476         * doc/posix-functions/wcscasecmp.texi: Renamed from
8477         doc/glibc-functions/wcscasecmp.texi.
8478         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
8479         doc/glibc-functions/wcscasecmp_l.texi.
8480         * doc/posix-functions/wcscoll_l.texi: Renamed from
8481         doc/glibc-functions/wcscoll_l.texi.
8482         * doc/posix-functions/wcsdup.texi: Renamed from
8483         doc/glibc-functions/wcsdup.texi.
8484         * doc/posix-functions/wcsncasecmp.texi: Renamed from
8485         doc/glibc-functions/wcsncasecmp.texi.
8486         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
8487         doc/glibc-functions/wcsncasecmp_l.texi.
8488         * doc/posix-functions/wcsnlen.texi: Renamed from
8489         doc/glibc-functions/wcsnlen.texi.
8490         * doc/posix-functions/wcsnrtombs.texi: Renamed from
8491         doc/glibc-functions/wcsnrtombs.texi.
8492         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
8493         doc/glibc-functions/wcsxfrm_l.texi.
8494         * doc/posix-functions/wctrans_l.texi: Renamed from
8495         doc/glibc-functions/wctrans_l.texi.
8496         * doc/posix-functions/wctype_l.texi: Renamed from
8497         doc/glibc-functions/wctype_l.texi.
8498         * doc/gnulib.texi (Function Substitutes): Add these subsections.
8499         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
8500         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
8501         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
8502         these subsections.
8503         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
8504         Remove sections.
8505
8506 2008-12-14  Bruno Haible  <bruno@clisp.org>
8507
8508         Update doc for POSIX:2008.
8509         * doc/posix-functions/*.texi: Update URL of POSIX specification.
8510
8511 2008-12-14  Bruno Haible  <bruno@clisp.org>
8512
8513         Update doc for POSIX:2008.
8514         * doc/pastposix-functions/bcmp.texi: Renamed from
8515         doc/posix-functions/bcmp.texi.
8516         * doc/pastposix-functions/bcopy.texi: Renamed from
8517         doc/posix-functions/bcopy.texi.
8518         * doc/pastposix-functions/bsd_signal.texi: Renamed from
8519         doc/posix-functions/bsd_signal.texi.
8520         * doc/pastposix-functions/bzero.texi: Renamed from
8521         doc/posix-functions/bzero.texi.
8522         * doc/pastposix-functions/ecvt.texi: Renamed from
8523         doc/posix-functions/ecvt.texi.
8524         * doc/pastposix-functions/fcvt.texi: Renamed from
8525         doc/posix-functions/fcvt.texi.
8526         * doc/pastposix-functions/ftime.texi: Renamed from
8527         doc/posix-functions/ftime.texi.
8528         * doc/pastposix-functions/gcvt.texi: Renamed from
8529         doc/posix-functions/gcvt.texi.
8530         * doc/pastposix-functions/getcontext.texi: Renamed from
8531         doc/posix-functions/getcontext.texi.
8532         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
8533         doc/posix-functions/gethostbyaddr.texi.
8534         * doc/pastposix-functions/gethostbyname.texi: Renamed from
8535         doc/posix-functions/gethostbyname.texi.
8536         * doc/pastposix-functions/getwd.texi: Renamed from
8537         doc/posix-functions/getwd.texi.
8538         * doc/pastposix-functions/h_errno.texi: Renamed from
8539         doc/posix-functions/h_errno.texi.
8540         * doc/pastposix-functions/index.texi: Renamed from
8541         doc/posix-functions/index.texi.
8542         * doc/pastposix-functions/makecontext.texi: Renamed from
8543         doc/posix-functions/makecontext.texi.
8544         * doc/pastposix-functions/mktemp.texi: Renamed from
8545         doc/posix-functions/mktemp.texi.
8546         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
8547         doc/posix-functions/pthread_attr_getstackaddr.texi.
8548         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
8549         doc/posix-functions/pthread_attr_setstackaddr.texi.
8550         * doc/pastposix-functions/rindex.texi: Renamed from
8551         doc/posix-functions/rindex.texi.
8552         * doc/pastposix-functions/scalb.texi: Renamed from
8553         doc/posix-functions/scalb.texi.
8554         * doc/pastposix-functions/setcontext.texi: Renamed from
8555         doc/posix-functions/setcontext.texi.
8556         * doc/pastposix-functions/swapcontext.texi: Renamed from
8557         doc/posix-functions/swapcontext.texi.
8558         * doc/pastposix-functions/ualarm.texi: Renamed from
8559         doc/posix-functions/ualarm.texi.
8560         * doc/pastposix-functions/usleep.texi: Renamed from
8561         doc/posix-functions/usleep.texi.
8562         * doc/pastposix-functions/vfork.texi: Renamed from
8563         doc/posix-functions/vfork.texi.
8564         * doc/pastposix-functions/wcswcs.texi: Renamed from
8565         doc/posix-functions/wcswcs.texi.
8566         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
8567         (Function Substitutes): Update.
8568
8569 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8570
8571         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
8572         m4/strerror.m4.
8573
8574 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8575             Bruno Haible  <bruno@clisp.org>
8576
8577         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
8578
8579 2008-12-13  Bruno Haible  <bruno@clisp.org>
8580
8581         * modules/strtoull (Depends-on): Remove unistd.
8582
8583 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8584
8585         * modules/strtoull (Depends-on): Add stdlib.
8586
8587 2008-12-11  Simon Josefsson  <simon@josefsson.org>
8588
8589         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
8590
8591 2008-12-10  Jim Meyering  <meyering@redhat.com>
8592
8593         gl_ASSERT: don't say assertions are disabled when they're not
8594         * m4/assert.m4 (gl_ASSERT): Do not make configure report
8595         "checking whether to enable assertions... no", when they are in
8596         fact enabled.  This is solely a bug in the output of configure.
8597         In spite of saying "no", NDEBUG was not defined in that case.
8598         Also, as noted by Eric Blake, leave assertions enabled upon
8599         --enable-assert=INVALID.
8600
8601 2008-12-10  Bruno Haible  <bruno@clisp.org>
8602
8603         Change MODULES.html to refer to POSIX:2008 where possible.
8604         * MODULES.html.sh (POSIX2008_URL): New variable.
8605         (posix_headers): Remove sys/timeb, ucontext.
8606         (posix2001_headers): New variable.
8607         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
8608         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
8609         index, makecontext, mktemp, pthread_attr_getstackaddr,
8610         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
8611         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
8612         (posix2001_functions): New variable.
8613         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
8614         otherwise.
8615
8616 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8617
8618         add missing include to parse-duration.c
8619         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
8620         * modules/parse-duration (Depends-on): Add xalloc.
8621
8622         fix sed script reading maint.mk
8623         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
8624         (syntax-check-rules): Use it.
8625
8626 2008-12-09  Bruno Haible  <bruno@clisp.org>
8627
8628         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
8629         MacOS X 10.4/PowerPC.
8630         Reported by Simon Josefsson.
8631
8632 2008-12-08  Jim Meyering  <meyering@redhat.com>
8633
8634         work around mingw's lack of some S_IF definitions
8635         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
8636         Reported by Simon Josefsson.
8637
8638 2008-12-08  Bruno Haible  <bruno@clisp.org>
8639
8640         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
8641         applied to variables. Needed on MacOS X 10.4/PowerPC.
8642         Reported by Simon Josefsson.
8643
8644 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
8645         and Eric Blake  <ebb9@byu.net>
8646
8647         assert: honor --enable-assert
8648         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
8649         order to honor --enable-assert, rather than treating it as a
8650         synonym for --disable-assert.
8651
8652 2008-12-08  Jim Meyering  <meyering@redhat.com>
8653
8654         * lib/posixtm.c: Remove now-useless declaration of mktime.
8655
8656         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
8657
8658 2008-12-07  Bruno Haible  <bruno@clisp.org>
8659
8660         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
8661         test_once): Mark functions as static.
8662         * tests/test-tls.c (test_tls): Likewise.
8663
8664 2008-12-07  Bruno Haible  <bruno@clisp.org>
8665
8666         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
8667         iconv_register_autodetect.
8668
8669 2008-12-07  Jim Meyering  <meyering@redhat.com>
8670
8671         posixtm.c: avoid a warning
8672         * lib/posixtm.c (posixtime): Don't initialize tm0.
8673         It's no longer needed to placate gcc4's -Wuninitialized,
8674         and the attempt to placate would elicit a new warning.
8675
8676         unicodeio.c: mark unused parameters
8677         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
8678         (fallback_failure_callback): Likewise.
8679
8680 2008-12-07  Bruno Haible  <bruno@clisp.org>
8681
8682         * gnulib-tool (func_create_testdir): When building the tests
8683         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
8684         Reported by Simon Josefsson.
8685
8686 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8687
8688         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
8689
8690 2008-12-06  Bruno Haible  <bruno@clisp.org>
8691
8692         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
8693         Suggested by Eric Blake.
8694
8695 2008-12-06  Bruno Haible  <bruno@clisp.org>
8696
8697         Fix a c-stack test failure on MacOS X.
8698         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
8699         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
8700         handler for SIGBUS as well.
8701         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
8702         install a signal handler for SIGBUS as well.
8703         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
8704
8705 2008-12-06  Bruno Haible  <bruno@clisp.org>
8706
8707         Advocacy documentation.
8708         * doc/gnulib-intro.texi (Benefits): New section.
8709         * doc/gnulib.texi: Update.
8710
8711 2008-12-06  Bruno Haible  <bruno@clisp.org>
8712
8713         Document the 'manywarnings' module.
8714         * doc/manywarnings.texi: New file.
8715         * doc/gnulib.texi: Include it.
8716
8717 2008-12-05  Eric Blake  <ebb9@byu.net>
8718
8719         tests: silence some gcc warnings
8720         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
8721         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
8722         type mismatches.
8723
8724 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8725             Bruno Haible  <bruno@clisp.org>
8726
8727         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
8728
8729 2008-11-29  Jim Meyering  <meyering@redhat.com>
8730
8731         unicodeio.c: mark unused parameters
8732         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
8733         (fallback_failure_callback): Likewise.
8734
8735         fts: fix a thinko
8736         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
8737         (set_stat_type): Return S_IF*-valued "type" directly.
8738         Prompted by James Youngman's spotting a related bug.
8739         Confirmed by further testing through find.
8740
8741         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
8742         * lib/fts.c (D_TYPE): Define.
8743         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
8744         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
8745         (s_ifmt_shift_bits): New function.
8746         (set_stat_type): New function.
8747         (fts_build): When not calling fts_stat, call set_stat_type
8748         to propagate dirent.d_type info to fts_read caller.
8749         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
8750         fts_statp->st_mode type information may be valid.
8751
8752 2008-11-28  Simon Josefsson  <simon@josefsson.org>
8753
8754         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
8755         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
8756         <sds@gnu.org>.
8757
8758 2008-11-20  Bruno Haible  <bruno@clisp.org>
8759
8760         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
8761         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
8762         INCLUDE_NEXT.
8763         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
8764         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
8765         * modules/math (Makefile.am): Substitute
8766         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
8767         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8768
8769 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
8770             Bruno Haible  <bruno@clisp.org>
8771
8772         * lib/stdint.in.h: Define all type macros so that their expansion is
8773         a single typedef'ed token. Fixes a compilation failure in Boost which
8774         does "using ::int8_t;".
8775
8776 2008-11-18  Simon Josefsson  <simon@josefsson.org>
8777
8778         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
8779         gl_MANYWARN_ALL_GCC.
8780         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
8781         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
8782         * modules/manywarnings: New file.
8783         * MODULES.html.sh: Mention manywarnings module.
8784
8785 2008-11-18  Bruno Haible  <bruno@clisp.org>
8786
8787         * doc/gnulib-tool.texi (Unit tests): New section.
8788
8789 2008-11-18  Simon Josefsson  <simon@josefsson.org>
8790
8791         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
8792         paths like 'lib/po/foo.po'.
8793
8794 2008-11-17  Simon Josefsson  <simon@josefsson.org>
8795
8796         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
8797         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
8798
8799 2008-11-17  Simon Josefsson  <simon@josefsson.org>
8800
8801         * m4/warnings.m4: Use CPPFLAGS to really check whether the
8802         parameter works.
8803
8804 2008-11-17  Simon Josefsson  <simon@josefsson.org>
8805
8806         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
8807
8808 2008-11-17  Bruce Korb  <bkorb@gnu.org>
8809
8810         * modules/parse-duration-tests: New file.
8811         * tests/test-parse-duration.sh: New file.
8812         * tests/test-parse-duration.c: New file.
8813
8814         New module 'parse-duration'.
8815         * lib/parse-duration.h: New file.
8816         * lib/parse-duration.c: New file.
8817         * modules/parse-duration: New file.
8818
8819 2008-11-17  Bruno Haible  <bruno@clisp.org>
8820
8821         * tests/test-select-out.sh: Comment out the first pipe test.
8822         Reported by Simon Josefsson.
8823
8824 2008-11-17  Bruno Haible  <bruno@clisp.org>
8825
8826         * modules/getaddrinfo (Depends-on): Add servent, hostent.
8827         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
8828         gl_HOSTENT.
8829
8830 2008-11-17  Bruno Haible  <bruno@clisp.org>
8831
8832         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
8833         -lnetwork and -lnet. Needed for Haiku and BeOS.
8834
8835 2008-11-16  Bruno Haible  <bruno@clisp.org>
8836
8837         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
8838
8839 2008-11-16  Bruno Haible  <bruno@clisp.org>
8840
8841         Avoid test failure on Haiku.
8842         * tests/test-fsync.c: Include <errno.h>.
8843         (main): Don't require that fsync (0) fails.
8844
8845 2008-11-15  Bruno Haible  <bruno@clisp.org>
8846
8847         New module 'hostent'.
8848         * modules/hostent: New file.
8849         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
8850
8851 2008-11-15  Bruno Haible  <bruno@clisp.org>
8852
8853         New module 'servent'.
8854         * modules/servent: New file.
8855         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
8856
8857 2008-11-15  Bruno Haible  <bruno@clisp.org>
8858
8859         Avoid generating same test program with two different rules.
8860         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
8861         test-frexp to test-frexp-nolibm.
8862         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
8863         test-frexpl to test-frexpl-nolibm.
8864
8865 2008-11-15  Bruno Haible  <bruno@clisp.org>
8866
8867         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
8868         $(FREXPL_LIBM).
8869
8870 2008-11-15  Bruno Haible  <bruno@clisp.org>
8871
8872         * lib/netdb.in.h: Activate the definitions also when the system's
8873         <netdb.h> has 'struct addrinfo'.
8874         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
8875         EAI_OVERFLOW or AI_NUMERICSERV.
8876         * doc/posix-headers/netdb.texi: Document the problem.
8877
8878 2008-11-15  Bruno Haible  <bruno@clisp.org>
8879
8880         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
8881
8882         Make the 'sched' module work on platforms where <sched.h> exists but
8883         is incomplete (such as Haiku).
8884         * lib/sched.in.h; Include the system's <sched.h> if it exists.
8885         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
8886         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
8887         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
8888         HAVE_STRUCT_SCHED_PARAM.
8889         * modules/sched (Depends-on): Add include_next.
8890         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
8891         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
8892         * doc/posix-headers/sched.texi: Document the issue.
8893
8894 2008-11-13  Jim Meyering  <meyering@redhat.com>
8895
8896         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
8897         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
8898         test would fail due to the difference in the Report bugs to ...
8899         line.  The expected address is empty, "<>", while the actual
8900         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
8901
8902 2008-11-12  Bruno Haible  <bruno@clisp.org>
8903
8904         lstat: don't compile lstat.c on systems lacking lstat
8905         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
8906         which don't have lstat; this is handled by lib/sys_stat.in.h already.
8907         Reported by Daniel P. Berrange via Jim Meyering.
8908
8909 2008-11-12  Jim Meyering  <meyering@redhat.com>
8910
8911         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
8912
8913 2008-11-12  Simon Josefsson  <simon@josefsson.org>
8914
8915         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
8916         instead.
8917
8918 2008-11-12  Bruno Haible  <bruno@clisp.org>
8919
8920         * lib/unicodeio.c: Include unistr.h.
8921         (utf8_wctomb): Remove function.
8922         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
8923
8924 2008-11-12  Simon Josefsson  <simon@josefsson.org>
8925
8926         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
8927         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
8928         <bruno@clisp.org>.
8929         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
8930
8931 2008-11-12  Simon Josefsson  <simon@josefsson.org>
8932
8933         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
8934         * doc/gnulib.texi: Add section for warnings.
8935
8936 2008-11-11  Bruno Haible  <bruno@clisp.org>
8937
8938         * lib/sockets.h: Add a comment.
8939
8940 2008-11-11  Karl Berry  <karl@gnu.org>
8941
8942         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
8943
8944 2008-11-11  Eric Blake  <ebb9@byu.net>
8945
8946         fdl.texi: avoid git symlinks
8947         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
8948
8949 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
8950
8951         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
8952
8953 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
8954
8955         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
8956         (gl_WARN_ADD): Substitute $2 if literal.
8957
8958 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
8959
8960         * m4/warning.m4: Remove.
8961
8962 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
8963
8964         * m4/warnings.m4: Almost complete rewrite. :-)
8965
8966 2008-11-10  Simon Josefsson  <simon@josefsson.org>
8967
8968         * modules/warnings: New module.
8969         * m4/warnings.m4: New file.
8970         * MODULES.html.sh: Mention warnings module.
8971         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
8972         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8973
8974 2008-11-10  Eric Blake  <ebb9@byu.net>
8975
8976         fdl.texi: make a symlink to the latest version
8977         * doc/standards.texi: Revert today's earlier change.
8978         * doc/fdl-1.2.texi: Rename from old fdl.texi...
8979         * doc/fdl.texi: ...and replace this with a symlink to the newer
8980         fdl-1.3.texi.
8981
8982 2008-11-10  Bruno Haible  <bruno@clisp.org>
8983
8984         * tests/test-select-fd.c (main): Accept the result file name as fourth
8985         argument.
8986         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
8987         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
8988
8989 2008-11-10  Bruno Haible  <bruno@clisp.org>
8990
8991         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
8992         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
8993         as autoconf-substituted macros.
8994         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
8995         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
8996         gl_NETDB_H_DEFAULTS. Set these variables.
8997         * modules/netdb (Makefile.am): Substitute these variables.
8998
8999 2008-11-10  Eric Blake  <ebb9@byu.net>
9000
9001         standards.texi: include correct file for FDL 1.3
9002         * doc/standards.texi (GNU Free Documentation License): Change
9003         include file to pull in FDL 1.3, not 1.2.
9004
9005         fdl.texi: revert accidental change to license
9006         * doc/fdl.texi: This is FDL 1.2, not 1.3.
9007
9008 2008-11-10  Bruno Haible  <bruno@clisp.org>
9009
9010         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
9011         cross-compiling guesses also when the native compile gives no result.
9012
9013 2008-11-10  Bruno Haible  <bruno@clisp.org>
9014
9015         * lib/spawni.c (__spawni): Force variable into the stack.
9016
9017 2008-11-10  Bruno Haible  <bruno@clisp.org>
9018
9019         Add support for Haiku.
9020         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
9021         glibc and BeOS, but also on Haiku.
9022         * lib/fpurge.c (fpurge): Likewise.
9023         * lib/freadable.c (freadable): Likewise.
9024         * lib/freadahead.c (freadahead): Likewise.
9025         * lib/freading.c (freading): Likewise.
9026         * lib/freadptr.c (freadptr): Likewise.
9027         * lib/freadseek.c (freadptrinc): Likewise.
9028         * lib/fseeko.c (rpl_fseeko): Likewise.
9029         * lib/fseterr.c (fseterr): Likewise.
9030         * lib/fwritable.c (fwritable): Likewise.
9031         * lib/fwriting.c (fwriting): Likewise.
9032         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
9033
9034 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
9035
9036         * lib/config.charset: Treat Haiku like BeOS.
9037
9038 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
9039
9040         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
9041         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
9042
9043 2008-11-08  Bruno Haible  <bruno@clisp.org>
9044
9045         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
9046         AC_CACHE_CHECK.
9047
9048 2008-11-08  Bruno Haible  <bruno@clisp.org>
9049
9050         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
9051
9052 2008-11-08  Bruno Haible  <bruno@clisp.org>
9053
9054         * tests/test-select-fd.c: New file.
9055         * tests/test-select-in.sh: New file.
9056         * tests/test-select-out.sh: New file.
9057         * tests/test-select-stdin.c: New file.
9058         * modules/select-tests (Files): Add the new files.
9059         (Depends-on): Add gettimeofday.
9060         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
9061         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
9062         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
9063
9064 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
9065             Bruno Haible  <bruno@clisp.org>
9066
9067         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
9068
9069 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
9070
9071         * build-aux/pmccabe2html: Added support for C++ source files.
9072
9073 2008-11-05  Ben Pfaff  <blp@gnu.org>
9074
9075         Fix lib/close.c build on Windows.
9076         * modules/close (Files): Add lib/w32sock.h.
9077
9078 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
9079
9080         Accept Bison's NEWS format.
9081         * build-aux/announce-gen (print_news_deltas): Tweak
9082         $re_prefix.
9083
9084 2008-11-04  Bruno Haible  <bruno@clisp.org>
9085
9086         * modules/random_r (Maintainer): Add glibc.
9087
9088 2008-11-04  Simon Josefsson  <simon@josefsson.org>
9089
9090         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
9091         by karl@freefriends.org (Karl Berry).
9092         * doc/alloca.texi: Likewise.
9093         * doc/c-ctype.texi: Likewise.
9094         * doc/c-strcase.texi: Likewise.
9095         * doc/c-strcaseeq.texi: Likewise.
9096         * doc/c-strcasestr.texi: Likewise.
9097         * doc/c-strstr.texi: Likewise.
9098         * doc/c-strtod.texi: Likewise.
9099         * doc/c-strtold.texi: Likewise.
9100         * doc/ctime.texi: Likewise.
9101         * doc/error.texi: Likewise.
9102         * doc/fdl.texi: Likewise.
9103         * doc/gcd.texi: Likewise.
9104         * doc/getdate.texi: Likewise.
9105         * doc/gnulib-intro.texi: Likewise.
9106         * doc/gnulib-tool.texi: Likewise.
9107         * doc/gnulib.texi: Likewise.
9108         * doc/inet_ntoa.texi: Likewise.
9109         * doc/maintain.texi: Likewise.
9110         * doc/make-stds.texi: Likewise.
9111         * doc/quote.texi: Likewise.
9112         * doc/regexprops-generic.texi: Likewise.
9113         * doc/standards.texi: Likewise.
9114         * doc/verify.texi: Likewise.
9115         * doc/visibility.texi: Likewise.
9116         * doc/gnulib.texi (GNU Free Documentation License): Include
9117         fdl-1.3.texi instead of fdl.texi.
9118
9119 2008-11-04  Simon Josefsson  <simon@josefsson.org>
9120
9121         * doc/fdl-1.3.texi: New file, from
9122         <http://www.gnu.org/licenses/fdl-1.3.texi>.
9123         * modules/fdl-1.3: Add.
9124         * MODULES.html.sh: Add fdl-1.3.
9125
9126 2008-11-03  Bruno Haible  <bruno@clisp.org>
9127
9128         Make determination of absolute name of header file work with AIX xlc.
9129         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
9130         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
9131         preprocessing.
9132         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
9133         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
9134
9135 2008-11-03  Simon Josefsson  <simon@josefsson.org>
9136
9137         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
9138         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
9139         <ludo@gnu.org>.
9140
9141 2008-11-02  Bruno Haible  <bruno@clisp.org>
9142
9143         Mark 'strpbrk' obsolete.
9144         * modules/strpbrk (Status, Notice): New sections.
9145         * modules/strtok_r (Depends-on): Add strpbrk.
9146
9147 2008-11-02  Bruno Haible  <bruno@clisp.org>
9148
9149         Mark 'strdup' obsolete.
9150         * modules/strdup (Status, Notice): New sections.
9151         * modules/findprog (Depends-on): Add strdup.
9152         * modules/getaddrinfo (Depends-on): Likewise.
9153         * modules/localename (Depends-on): Likewise.
9154         * modules/relocatable-lib (Depends-on): Likewise.
9155         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
9156         * modules/relocatable-prog (Depends-on): Likewise.
9157         * modules/trim (Depends-on): Likewise.
9158         * modules/unictype/gen-ctype (Depends-on): Likewise.
9159         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
9160
9161 2008-11-02  Bruno Haible  <bruno@clisp.org>
9162
9163         Mark 'strcspn' obsolete.
9164         * modules/strcspn (Status, Notice): New sections.
9165
9166 2008-11-02  Bruno Haible  <bruno@clisp.org>
9167
9168         Mark 'rmdir' obsolete.
9169         * modules/rmdir (Status, Notice): New sections.
9170         * modules/clean-temp (Depends-on): Add rmdir.
9171         * modules/openat (Depends-on): Likewise.
9172
9173 2008-11-02  Bruno Haible  <bruno@clisp.org>
9174
9175         Mark 'raise' obsolete.
9176         * modules/raise (Status, Notice): New sections.
9177         (Include): Specify <signal.h>.
9178         * modules/stdio (Depends-on): Add raise.
9179         * modules/write (Depends-on): Likewise.
9180
9181 2008-11-02  Bruno Haible  <bruno@clisp.org>
9182
9183         Mark 'memset' obsolete.
9184         * modules/memset (Status, Notice): New sections.
9185
9186 2008-11-02  Bruno Haible  <bruno@clisp.org>
9187
9188         Mark 'memmove' obsolete.
9189         * modules/memmove (Status, Notice): New sections.
9190         * modules/argp (Depends-on): Add memmove.
9191         * modules/argz (Depends-on): Likewise.
9192         * modules/canonicalize (Depends-on): Likewise.
9193         * modules/canonicalize-lgpl (Depends-on): Likewise.
9194         * modules/fts (Depends-on): Likewise.
9195         * modules/getcwd (Depends-on): Likewise.
9196         * modules/human (Depends-on): Likewise.
9197         * modules/regex (Depends-on): Likewise.
9198         * modules/striconveh (Depends-on): Likewise.
9199         * modules/trim (Depends-on): Likewise.
9200         * modules/unistr/u8-move (Depends-on): Likewise.
9201         * modules/unistr/u16-move (Depends-on): Likewise.
9202         * modules/unistr/u32-move (Depends-on): Likewise.
9203
9204 2008-11-02  Bruno Haible  <bruno@clisp.org>
9205
9206         Mark 'memcpy' obsolete.
9207         * modules/memcpy (Status, Notice): New sections.
9208
9209 2008-11-02  Bruno Haible  <bruno@clisp.org>
9210
9211         Mark 'memcmp' obsolete.
9212         * modules/memcmp (Status, Notice): New sections.
9213         * modules/argmatch (Depends-on): Add memchr.
9214         * modules/backupfile (Depends-on): Likewise.
9215         * modules/c-strcasestr (Depends-on): Likewise.
9216         * modules/crypto/des (Depends-on): Likewise.
9217         * modules/csharpcomp (Depends-on): Likewise.
9218         * modules/fnmatch (Depends-on): Likewise.
9219         * modules/git-merge-changelog (Depends-on): Likewise.
9220         * modules/isnand (Depends-on): Likewise.
9221         * modules/isnand-nolibm (Depends-on): Likewise.
9222         * modules/isnanf (Depends-on): Likewise.
9223         * modules/isnanf-nolibm (Depends-on): Likewise.
9224         * modules/isnanl (Depends-on): Likewise.
9225         * modules/isnanl-nolibm (Depends-on): Likewise.
9226         * modules/mbchar (Depends-on): Likewise.
9227         * modules/memcoll (Depends-on): Likewise.
9228         * modules/quotearg (Depends-on): Likewise.
9229         * modules/regex (Depends-on): Likewise.
9230         * modules/relocatable-prog (Depends-on): Likewise.
9231         * modules/same (Depends-on): Likewise.
9232         * modules/signbit (Depends-on): Likewise.
9233         * modules/strcasestr-simple (Depends-on): Likewise.
9234         * modules/unictype/gen-ctype (Depends-on): Likewise.
9235         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
9236         * modules/uniname/uniname (Depends-on): Likewise.
9237         * modules/unistr/u8-cmp (Depends-on): Likewise.
9238
9239 2008-11-02  Bruno Haible  <bruno@clisp.org>
9240
9241         Mark 'memchr' obsolete.
9242         * modules/memchr (Status, Notice): New sections.
9243         * modules/argp (Depends-on): Add memchr.
9244         * modules/base64 (Depends-on): Likewise.
9245         * modules/c-strcasestr (Depends-on): Likewise.
9246         * modules/chdir-long (Depends-on): Likewise.
9247         * modules/fnmatch (Depends-on): Likewise.
9248         * modules/getsubopt (Depends-on): Likewise.
9249         * modules/git-merge-changelog (Depends-on): Likewise.
9250         * modules/glob (Depends-on): Likewise.
9251         * modules/strcasestr-simple (Depends-on): Likewise.
9252         * modules/strnlen (Depends-on): Likewise.
9253
9254 2008-11-02  Bruno Haible  <bruno@clisp.org>
9255
9256         Mark 'atexit' obsolete.
9257         * modules/atexit (Status, Notice): New sections.
9258         * modules/chdir-long (Depends-on): Add atexit.
9259         * modules/wait-process (Depends-on): Likewise.
9260
9261 2008-11-02  Bruno Haible  <bruno@clisp.org>
9262
9263         * gnulib-tool: New option --with-obsolete.
9264         (func_usage): Document it.
9265         (func_modules_transitive_closure): Drop obsolete dependencies if
9266         incobsolete is not true.
9267         (func_import): Read and save the incobsolete variable to the cache.
9268
9269 2008-11-02  Bruno Haible  <bruno@clisp.org>
9270
9271         * modules/TEMPLATE-EXTENDED: New field 'Status'.
9272         * gnulib-tool: New option --extract-status.
9273         (func_usage): Document it.
9274         (sed_extract_prog): Recognize it.
9275         (func_get_status): New function.
9276
9277 2008-10-30  Simon Josefsson  <simon@josefsson.org>
9278
9279         * modules/sockets (License): Change from LGPL to LGPLv2+.
9280
9281 2008-10-28  Simon Josefsson  <simon@josefsson.org>
9282
9283         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
9284
9285 2008-10-28  Simon Josefsson  <simon@josefsson.org>
9286
9287         * MODULES.html.sh (Support for systems lacking POSIX:2001):
9288         Mention times and sys_times.
9289         * modules/sys_times, modules/sys_times-tests: New modules.
9290         * modules/times, modules/times-tests: Likewise
9291         * m4/sys_times_h.m4: New file.
9292         * lib/sys_times.in.h: Likewise
9293         * lib/times.c: Likewise.
9294         * tests/test-sys_times.c: Likewise.
9295         * tests/test-times.c: Likewise.
9296         * doc/posix-headers/sys_times.texi: Update.
9297         * doc/posix-functions/times.texi: Update.
9298
9299 2008-10-28  Jim Meyering  <meyering@redhat.com>
9300
9301         * modules/tempname (Depends-on): Add lstat.
9302
9303         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
9304
9305 2008-10-28  Simon Josefsson  <simon@josefsson.org>
9306
9307         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
9308         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
9309         using idiom used elsewhere in gnulib.
9310
9311 2008-10-27  Jim Meyering  <meyering@redhat.com>
9312
9313         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
9314
9315 2008-10-27  Simon Josefsson  <simon@josefsson.org>
9316
9317         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
9318         TESTS_ENVIRONMENT, for shell scripts that needs to call built
9319         programs.
9320         * tests/test-argp-2.sh: Use $EXEEXT when needed.
9321
9322 2008-10-27  Simon Josefsson  <simon@josefsson.org>
9323
9324         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
9325
9326 2008-10-27  Bruno Haible  <bruno@clisp.org>
9327
9328         * tests/test-lstat.c: Include <stdio.h>.
9329
9330 2008-10-27  Simon Josefsson  <simon@josefsson.org>
9331
9332         * modules/lstat-tests: New module.
9333         * tests/test-lstat.c: New file.
9334
9335 2008-10-26  Jim Meyering  <meyering@redhat.com>
9336
9337         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
9338
9339 2008-10-26  Simon Josefsson  <simon@josefsson.org>
9340             Bruno Haible  <bruno@clisp.org>
9341
9342         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
9343         * modules/configmake (Include): Add a note that the include must come
9344         after all system headers.
9345         * lib/javaversion.c: Include configmake.h after all other includes.
9346
9347 2008-10-26  Bruno Haible  <bruno@clisp.org>
9348
9349         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
9350         HAVE_STRUCT_RANDOM_DATA to 1.
9351         (gl_STDLIB_H): Simplify.
9352
9353 2008-10-26  Simon Josefsson  <simon@josefsson.org>
9354
9355         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
9356         substitute HAVE_STRUCT_RANDOM_DATA.
9357         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
9358         random_data.
9359         * modules/stdlib (Makefile.am): Substitute
9360         HAVE_STRUCT_RANDOM_DATA.
9361
9362 2008-10-26  Simon Josefsson  <simon@josefsson.org>
9363
9364         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
9365         * doc/gnulib-intro.texi (Copyright): Likewise.
9366
9367 2008-10-26  Simon Josefsson  <simon@josefsson.org>
9368
9369         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
9370         findings.
9371
9372 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
9373             Bruno Haible  <bruno@clisp.org>
9374
9375         * lib/unistd.in.h: Include <winsock2.h>.
9376         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
9377         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
9378         Provide dummy declarations.
9379         (gethostname): Override.
9380         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
9381         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
9382         gl_PREREQ_SYS_H_WINSOCK2.
9383         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
9384         * doc/posix-functions/gethostname.texi: More details.
9385
9386 2008-10-25  Bruno Haible  <bruno@clisp.org>
9387
9388         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
9389         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
9390         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
9391
9392         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
9393         here ...
9394         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
9395         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
9396         gl_UNISTD_H_DEFAULTS.
9397
9398 2008-10-25  Eric Blake  <ebb9@byu.net>
9399
9400         signbit: avoid spurious compiler failure
9401         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
9402         declarations inside function.
9403
9404 2008-10-24  Simon Josefsson  <simon@josefsson.org>
9405             Bruno Haible  <bruno@clisp.org>
9406
9407         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
9408         * modules/random_r (Depends-on): Add stdint.
9409
9410 2008-10-24  Bruno Haible  <bruno@clisp.org>
9411
9412         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
9413         Eggert.
9414         * modules/strerror (License): Likewise.
9415
9416 2008-10-24  Jim Meyering  <meyering@redhat.com>
9417
9418         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
9419         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
9420
9421 2008-10-24  Eric Blake  <ebb9@byu.net>
9422
9423         getgroups: fix compilation when getgroups is available
9424         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
9425         but with <config.h> override of getgroups disabled.
9426
9427 2008-10-24  Simon Josefsson  <simon@josefsson.org>
9428
9429         * doc/gnulib.texi (Header files): Add note about C++ problems.
9430         Explained by Bruno Haible <bruno@clisp.org>.
9431
9432 2008-10-23  Bruno Haible  <bruno@clisp.org>
9433
9434         Define a dummy SA_NODEFER macro on Interix.
9435         * lib/signal.in.h (SA_NODEFER): Define fallback.
9436         Reported by Aleksey Cheusov <cheusov@tut.by> via
9437         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
9438
9439 2008-10-23  Bruno Haible  <bruno@clisp.org>
9440
9441         * modules/freadahead (License): Change to LGPLv2+.
9442         Suggested by Simon Josefsson.
9443
9444 2008-10-23  Jim Meyering  <meyering@redhat.com>
9445
9446         random_r: new module
9447         * modules/random_r: New file.
9448         * m4/random_r.m4: New file.
9449         * lib/random_r.c: New file, from glibc.
9450         * modules/random_r-tests: New file.
9451         * tests/test-random_r.c: New file.
9452         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
9453          Declare.
9454         (RAND_MAX): Define.
9455         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
9456         * modules/stdlib: Substitute them, too.
9457         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
9458         * doc/glibc-functions/initstate_r.texi: Mention the new module.
9459         * doc/glibc-functions/random_r.texi: Likewise.
9460         * doc/glibc-functions/setstate_r.texi: Likewise.
9461         * doc/glibc-functions/srandom_r.texi: Likewise.
9462         * config/srclist.txt: Mention it.
9463
9464 2008-10-23  David Lutterkort  <lutter@redhat.com>
9465
9466         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
9467         link requirement
9468
9469 2008-10-23  Jim Meyering  <meyering@redhat.com>
9470
9471         selinux-h: mark parameters of stub functions as intentionally unused
9472         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
9473         * lib/se-context.in.h: Likewise.
9474
9475 2008-10-22  Simon Josefsson  <simon@josefsson.org>
9476
9477         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
9478
9479 2008-10-22  Simon Josefsson  <simon@josefsson.org>
9480
9481         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
9482
9483 2008-10-22  Eric Blake  <ebb9@byu.net>
9484
9485         glthread/thread: avoid compiler warning
9486         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
9487         Add unreachable abort to silence compiler.
9488
9489 2008-10-22  Eric Blake  <ebb9@byu.net>
9490
9491         netdb: also supply struct addrinfo for cygwin 1.5.x
9492         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
9493         older cygwin.
9494         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
9495         cygwin.
9496         * doc/posix-headers/netdb.texi (netdb.h): Document this.
9497
9498 2008-10-22  Bruno Haible  <bruno@clisp.org>
9499
9500         * users.txt: Update entry about pspp.
9501
9502 2008-10-21  Bruno Haible  <bruno@clisp.org>
9503
9504         Simplification.
9505         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
9506         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
9507
9508         Simplification.
9509         * lib/ioctl.c (ioctl): Don't undefine.
9510         * lib/socket.c (socket): Don't undefine.
9511
9512         Remove unused module indicator macros.
9513         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
9514         GNULIB_$1 as a C macro.
9515
9516         * doc/posix-functions/close.texi: Undo last change.
9517         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
9518         Windows platforms.
9519
9520 2008-10-21  Bruno Haible  <bruno@clisp.org>
9521
9522         Add gethostname() declaration to <unistd.h>.
9523         * lib/unistd.in.h (gethostname): New declaration.
9524         * lib/gethostname.c: Include <unistd.h>.
9525         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
9526         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
9527         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
9528         and HAVE_GETHOSTNAME.
9529         * modules/gethostname (Depends-on): Add unistd.
9530         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9531         (Include): Specify <unistd.h>.
9532         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
9533         HAVE_GETHOSTNAME.
9534         * tests/test-gethostname.c: Include <unistd.h> first.
9535
9536 2008-10-21  Bruno Haible  <bruno@clisp.org>
9537
9538         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
9539         * modules/select-tests (Depends-on): Likewise.
9540         Reported by Simon Josefsson.
9541
9542 2008-10-21  Simon Josefsson  <simon@josefsson.org>
9543
9544         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
9545         * lib/accept.c: New file, based on winsock.c.
9546         * lib/bind.c: New file, based on winsock.c.
9547         * lib/connect.c: New file, based on winsock.c.
9548         * lib/getpeername.c: New file, based on winsock.c.
9549         * lib/getsockname.c: New file, based on winsock.c.
9550         * lib/getsockopt.c: New file, based on winsock.c.
9551         * lib/ioctl.c: New file, based on winsock.c.
9552         * lib/listen.c: New file, based on winsock.c.
9553         * lib/recv.c: New file, based on winsock.c.
9554         * lib/recvfrom.c: New file, based on winsock.c.
9555         * lib/send.c: New file, based on winsock.c.
9556         * lib/sendto.c: New file, based on winsock.c.
9557         * lib/setsockopt.c: New file, based on winsock.c.
9558         * lib/shutdown.c: New file, based on winsock.c.
9559         * lib/socket.c: New file, based on winsock.c.
9560         * lib/w32sock.h: New file, based on winsock.c.
9561         * lib/winsock.c: Remove file.
9562         * modules/accept: Likewise.
9563         * modules/bind: Likewise.
9564         * modules/connect: Likewise.
9565         * modules/getpeername: Likewise.
9566         * modules/getsockname: Likewise.
9567         * modules/getsockopt: Likewise.
9568         * modules/ioctl: Likewise.
9569         * modules/listen: Likewise.
9570         * modules/recv: Likewise.
9571         * modules/recvfrom: Likewise.
9572         * modules/send: Likewise.
9573         * modules/sendto: Likewise.
9574         * modules/setsockopt: Likewise.
9575         * modules/shutdown: Likewise.
9576         * modules/socket: Use socket.c instead of winsock.c.
9577         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
9578         * doc/posix-functions/accept.texi: Doc fix.
9579         * doc/posix-functions/bind.texi: Doc fix.
9580         * doc/posix-functions/close.texi: Doc fix.
9581         * doc/posix-functions/connect.texi: Doc fix.
9582         * doc/posix-functions/getpeername.texi: Doc fix.
9583         * doc/posix-functions/getsockname.texi: Doc fix.
9584         * doc/posix-functions/getsockopt.texi: Doc fix.
9585         * doc/posix-functions/ioctl.texi: Doc fix.
9586         * doc/posix-functions/listen.texi: Doc fix.
9587         * doc/posix-functions/recv.texi: Doc fix.
9588         * doc/posix-functions/recvfrom.texi: Doc fix.
9589         * doc/posix-functions/send.texi: Doc fix.
9590         * doc/posix-functions/sendto.texi: Doc fix.
9591         * doc/posix-functions/setsockopt.texi: Doc fix.
9592         * doc/posix-functions/shutdown.texi: Doc fix.
9593         * doc/posix-functions/socket.texi: Doc fix.
9594
9595 2008-10-20  Bruno Haible  <bruno@clisp.org>
9596
9597         Take into account the role of SIGABRT_COMPAT on Windows 2008.
9598         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
9599         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
9600         as an alias for SIGABRT.
9601         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
9602         (sigaction): Map it to SIGABRT.
9603         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
9604
9605 2008-10-20  Bruno Haible  <bruno@clisp.org>
9606
9607         * lib/fts.c: Don't include lstat.h.
9608         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
9609
9610         Move the lstat() declaration to <sys/stat.h>.
9611         * lib/lstat.h: Remove file.
9612         * lib/sys_stat.in.h: Add special invocation convention.
9613         (lstat): New declaration.
9614         * lib/lstat.c (orig_lstat): New function.
9615         (rpl_lstat): Use orig_lstat instead of lstat.
9616         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
9617         AC_C_INLINE. Set REPLACE_LSTAT.
9618         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
9619         and REPLACE_LSTAT.
9620         * modules/lstat (Files): Remove lib/lstat.h.
9621         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
9622         (Include): Specify <sys/stat.h> instead of lstat.h.
9623         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
9624         REPLACE_LSTAT.
9625         * NEWS: Mention the change.
9626
9627 2008-10-20  Bruno Haible  <bruno@clisp.org>
9628
9629         * modules/posix_spawn-tests: New file.
9630         * tests/test-posix_spawn3.c: New file.
9631
9632 2008-10-20  Bruno Haible  <bruno@clisp.org>
9633
9634         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
9635         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
9636         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
9637         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
9638         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
9639
9640 2008-10-20  Bruno Haible  <bruno@clisp.org>
9641
9642         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
9643         of posix_spawn on AIX 5.3.
9644
9645 2008-10-20  Bruno Haible  <bruno@clisp.org>
9646
9647         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
9648
9649 2008-10-20  Bruno Haible  <bruno@clisp.org>
9650
9651         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
9652         of AC_LANG_PROGRAM.
9653
9654 2008-10-20  Simon Josefsson  <simon@josefsson.org>
9655
9656         * lib/netdb.in.h: Don't define GNU specific constants until they
9657         are supported or needed.  Reported by Bruno Haible
9658         <bruno@clisp.org>.
9659
9660 2008-10-20  Simon Josefsson  <simon@josefsson.org>
9661
9662         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
9663
9664 2008-10-20  Simon Josefsson  <simon@josefsson.org>
9665
9666         * lib/getaddrinfo.h: Remove file.
9667         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
9668         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
9669         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
9670         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
9671         * modules/netdb: Substitute GNULIB_GETADDRINFO.
9672         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
9673         * tests/test-getaddrinfo.c: Likewise.
9674         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
9675         * NEWS: Mention change.
9676
9677 2008-10-19  Bruno Haible  <bruno@clisp.org>
9678
9679         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
9680
9681 2008-10-19  Bruno Haible  <bruno@clisp.org>
9682
9683         * lib/wait-process.c: Include simply <sys/wait.h>.
9684         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
9685         WIFSTOPPED): Remove fallback definitions.
9686         * modules/wait-process (Depends-on): Add sys_wait.
9687
9688         New module 'sys_wait'.
9689         * modules/sys_wait: New file.
9690         * lib/sys_wait.in.h: New file, partially copied from
9691         lib/wait-process.c.
9692         * m4/sys_wait_h.m4: New file.
9693         * doc/posix-headers/sys_wait.texi: Mention the new module.
9694
9695 2008-10-19  Bruno Haible  <bruno@clisp.org>
9696
9697         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
9698
9699 2008-10-19  Bruno Haible  <bruno@clisp.org>
9700
9701         Assume that waitpid() fills an 'int' status, not a 'union wait'.
9702         * lib/wait-process.c (WAIT_T): Remove type.
9703         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
9704         (wait_subprocess): Update.
9705
9706 2008-10-19  Bruno Haible  <bruno@clisp.org>
9707
9708         New module 'atoll'.
9709         * modules/atoll: New file.
9710         * lib/stdlib.in.h (atoll): New declaration.
9711         * lib/atoll.c: New file, from glibc with modifications.
9712         * m4/atoll.m4: New file.
9713         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
9714         HAVE_ATOLL.
9715         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
9716         * doc/posix-functions/atoll.texi: Mention the new module.
9717
9718 2008-10-19  Bruno Haible  <bruno@clisp.org>
9719
9720         Add strtoull() declaration to <stdlib.h>.
9721         * lib/stdlib.in.h (strtoull): New declaration.
9722         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
9723         Set HAVE_STRTOULL.
9724         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
9725         HAVE_STRTOULL.
9726         * modules/strtoull (Depends-on): Add stdlib.
9727         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
9728         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
9729         HAVE_STRTOULL.
9730
9731 2008-10-19  Bruno Haible  <bruno@clisp.org>
9732
9733         Add strtoll() declaration to <stdlib.h>.
9734         * lib/stdlib.in.h (strtoll): New declaration.
9735         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
9736         Set HAVE_STRTOLL.
9737         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
9738         HAVE_STRTOLL.
9739         * modules/strtoll (Depends-on): Add stdlib.
9740         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
9741         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
9742
9743 2008-10-19  Bruno Haible  <bruno@clisp.org>
9744
9745         * modules/bcopy (Depends-on): Add strings.
9746         (Include): Specify <strings.h>.
9747
9748 2008-10-19  Bruno Haible  <bruno@clisp.org>
9749
9750         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
9751
9752 2008-10-19  Bruno Haible  <bruno@clisp.org>
9753
9754         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
9755         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
9756         mingw.
9757
9758 2008-10-19  Bruno Haible  <bruno@clisp.org>
9759
9760         * lib/atanl.c: Don't include isnanl.h.
9761         * lib/cosl.c: Likewise.
9762         * lib/ldexpl.c: Likewise.
9763         * lib/logl.c: Likewise.
9764         * lib/sinl.c: Likewise.
9765         * lib/sqrtl.c: Likewise.
9766         * lib/tanl.c: Likewise.
9767
9768         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
9769         * lib/isnanf.h: Remove file.
9770         * lib/isnand.h: Remove file.
9771         * lib/isnanl.h: Remove file.
9772         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
9773         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
9774         macros.
9775         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
9776         HAVE_ISNANF, don't define it as a C macro.
9777         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
9778         HAVE_ISNAND, don't define it as a C macro.
9779         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
9780         HAVE_ISNANL, don't define it as a C macro.
9781         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
9782         HAVE_ISNAN[FDL].
9783         * modules/isnanf (Files): Remove lib/isnanf.h.
9784         (Depends-on): Add math.
9785         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
9786         (Include): Specify <math.h> instead of isnanf.h.
9787         * modules/isnand (Files): Remove lib/isnand.h.
9788         (Depends-on): Add math.
9789         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
9790         (Include): Specify <math.h> instead of isnand.h.
9791         * modules/isnanl (Files): Remove lib/isnanl.h.
9792         (Depends-on): Add math.
9793         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
9794         (Include): Specify <math.h> instead of isnanl.h.
9795         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
9796         HAVE_ISNAN[FDL].
9797         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
9798         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
9799         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
9800         * NEWS: Mention the change.
9801
9802 2008-10-18  Bruno Haible  <bruno@clisp.org>
9803
9804         Add getusershell(), setusershell(), endusershell() declarations to
9805         <unistd.h>.
9806         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
9807         declarations.
9808         * lib/getusershell.c: Include unistd.h.
9809         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
9810         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
9811         HAVE_GETUSERSHELL.
9812         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
9813         and HAVE_GETUSERSHELL.
9814         * modules/getusershell (Depends-on): Add unistd, extensions.
9815         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9816         (Include): Specify <unistd.h>.
9817         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
9818         HAVE_GETUSERSHELL.
9819
9820 2008-10-18  Bruno Haible  <bruno@clisp.org>
9821
9822         Add a getloadavg() declaration to <stdlib.h>.
9823         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
9824         getloadavg declaration.
9825         (getloadavg): New declaration.
9826         * lib/getloadavg.c: Include <stdlib.h> first.
9827         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
9828         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
9829         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
9830         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
9831         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
9832         * modules/getloadavg (Depends-on): Add stdlib, extensions.
9833         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
9834         (Include): Specify <stdlib.h>.
9835         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
9836         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
9837
9838 2008-10-18  Bruno Haible  <bruno@clisp.org>
9839
9840         * lib/dirchownmod.c: Don't include lchmod.h.
9841
9842         Move the lchmod() declaration to <sys/stat.h>.
9843         * lib/lchmod.h: Remove file.
9844         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
9845         (lchmod): New declaration, moved here from lib/lchown.h.
9846         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
9847         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
9848         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
9849         and HAVE_LCHMOD.
9850         * modules/lchmod (Files): Remove lib/lchmod.h.
9851         (Depends-on): Add sys_stat, extensions.
9852         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
9853         (Include): Specify <sys/stat.h> instead of lchmod.h.
9854         * modules/sys_stat (Depends-on): Add link-warning.
9855         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
9856         definition of GL_LINK_WARNING.
9857         * NEWS: Mention the change.
9858
9859 2008-10-18  Bruno Haible  <bruno@clisp.org>
9860
9861         * lib/fchdir.c: Don't include dirfd.h.
9862         * lib/fts.c: Likewise.
9863         * lib/getcwd.c: Likewise.
9864         * lib/glob.c: Likewise.
9865
9866         Move the dirfd() declaration to <dirent.h>.
9867         * lib/dirfd.h: Remove file.
9868         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
9869         (dirfd): New declaration.
9870         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
9871         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
9872         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
9873         HAVE_DECL_DIRFD.
9874         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
9875         HAVE_DECL_DIRFD.
9876         * modules/dirfd (Files): Remove lib/dirfd.h.
9877         (Depends-on): Add dirent, extensions.
9878         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
9879         (Include): Specify <dirent.h> instead of dirfd.h.
9880         * modules/dirent (Depends-on): Add link-warning.
9881         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
9882         definition of GL_LINK_WARNING.
9883         * NEWS: Mention the change.
9884
9885 2008-10-18  Bruno Haible  <bruno@clisp.org>
9886
9887         Move the euidaccess() declaration to <unistd.h>.
9888         * lib/euidaccess.h: Remove file.
9889         * lib/unistd.in.h (euidaccess): New declaration.
9890         * lib/euidaccess.c: Don't include euidaccess.h.
9891         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
9892         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
9893         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
9894         and HAVE_EUIDACCESS.
9895         * modules/euidaccess (Files): Remove lib/euidaccess.h.
9896         (Depends-on): Add unistd.
9897         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9898         (Include): Specify <unistd.h> instead of euidaccess.h.
9899         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
9900         HAVE_EUIDACCESS.
9901         * NEWS: Mention the change.
9902
9903 2008-10-18  Bruno Haible  <bruno@clisp.org>
9904
9905         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
9906
9907         Move the getdomainname() declaration to <unistd.h>.
9908         * lib/getdomainname.h: Remove file.
9909         * lib/unistd.in.h (getdomainname): New declaration.
9910         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
9911         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
9912         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
9913         HAVE_GETDOMAINNAME.
9914         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
9915         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
9916         * modules/getdomainname (Files): Remove lib/getdomainname.h.
9917         (Depends-on): Add unistd, extensions.
9918         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
9919         (Includes): Specify <unistd.h> instead of getdomainname.h.
9920         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
9921         HAVE_GETDOMAINNAME.
9922         * NEWS: Mention the change.
9923
9924 2008-10-18  Bruno Haible  <bruno@clisp.org>
9925
9926         * modules/dirent: New file.
9927         * m4/dirent_h.m4: New file.
9928         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
9929         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
9930         * modules/fchdir (Files): Remove lib/dirent.in.h.
9931         (Depends-on): Add dirent.
9932         (Makefile.am): Move rules to modules/dirent.
9933         * doc/posix-headers/dirent.texi: Mention the new module.
9934
9935 2008-10-18  Bruno Haible  <bruno@clisp.org>
9936
9937         Avoid -Wunused-parameter warnings in public gnulib header files.
9938         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
9939         macro.
9940         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
9941
9942 2008-10-18  Bruno Haible  <bruno@clisp.org>
9943
9944         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
9945         * doc/glibc-functions/error.texi: Mention the module 'error'.
9946         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
9947         * doc/glibc-functions/getdomainname.texi: Mention the module
9948         'getdomainname'.
9949         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
9950         * doc/glibc-functions/getpagesize.texi: Mention the module
9951         'getpagesize'.
9952         * doc/glibc-functions/getusershell.texi: Mention the module
9953         'getusershell'.
9954         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
9955         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
9956         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
9957         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
9958         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
9959         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
9960         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
9961         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
9962         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
9963         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
9964         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
9965         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
9966         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
9967         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
9968
9969 2008-10-17  Bruno Haible  <bruno@clisp.org>
9970
9971         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
9972         HP-UX and IRIX, use -0.0L.
9973         * tests/test-ceill.c (minus_zero): Likewise.
9974         * tests/test-floorl.c (minus_zero): Likewise.
9975         * tests/test-frexpl.c (minus_zero): Likewise.
9976         * tests/test-isnan.c (minus_zerol): Likewise.
9977         * tests/test-isnanl.h (minus_zero): Likewise.
9978         * tests/test-ldexpl.c (minus_zero): Likewise.
9979         * tests/test-roundl.c (minus_zero): Likewise.
9980         * tests/test-signbit.c (minus_zerol): Likewise.
9981         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
9982         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
9983         * tests/test-truncl.c (minus_zero): Likewise.
9984         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
9985         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
9986         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
9987         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
9988
9989 2008-10-17  Bruno Haible  <bruno@clisp.org>
9990
9991         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
9992         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
9993         that it gets activated only for gcc >= 3.0.
9994         * lib/dirent.in.h: Likewise.
9995         * lib/errno.in.h: Likewise.
9996         * lib/fcntl.in.h: Likewise.
9997         * lib/float.in.h: Likewise.
9998         * lib/iconv.in.h: Likewise.
9999         * lib/inttypes.in.h: Likewise.
10000         * lib/locale.in.h: Likewise.
10001         * lib/math.in.h: Likewise.
10002         * lib/netdb.in.h: Likewise.
10003         * lib/netinet_in.in.h: Likewise.
10004         * lib/search.in.h: Likewise.
10005         * lib/signal.in.h: Likewise.
10006         * lib/spawn.in.h: Likewise.
10007         * lib/stdarg.in.h: Likewise.
10008         * lib/stdint.in.h: Likewise.
10009         * lib/stdio.in.h: Likewise.
10010         * lib/stdlib.in.h: Likewise.
10011         * lib/string.in.h: Likewise.
10012         * lib/strings.in.h: Likewise.
10013         * lib/sys_file.in.h: Likewise.
10014         * lib/sys_ioctl.in.h: Likewise.
10015         * lib/sys_select.in.h: Likewise.
10016         * lib/sys_socket.in.h: Likewise.
10017         * lib/sys_stat.in.h: Likewise.
10018         * lib/sys_time.in.h: Likewise.
10019         * lib/sysexits.in.h: Likewise.
10020         * lib/time.in.h: Likewise.
10021         * lib/unistd.in.h: Likewise.
10022         * lib/wchar.in.h: Likewise.
10023         * lib/wctype.in.h: Likewise.
10024         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10025
10026 2008-10-17  Jim Meyering  <meyering@redhat.com>
10027
10028         ignore-value: don't depend on inline module
10029         * modules/ignore-value (Depends-on): Remove 'inline'.
10030         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
10031         Suggestion from Bruno Haible.
10032
10033 2008-10-17  Bruno Haible  <bruno@clisp.org>
10034
10035         New implementation of condition variables for Win32.
10036         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
10037         (gl_linked_waitqueue_t): New type.
10038         (gl_cond_t): Use it.
10039         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
10040         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
10041         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
10042         (glthread_cond_init_func, glthread_cond_wait_func,
10043         glthread_cond_timedwait_func, glthread_cond_signal_func,
10044         glthread_cond_broadcast_func, glthread_cond_destroy_func):
10045         Reimplemented on the basis of gl_linked_waitqueue_t.
10046         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
10047         gl_waitqueue_t.
10048         (gl_rwlock_t): Update.
10049         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
10050
10051 2008-10-17  Simon Josefsson  <simon@josefsson.org>
10052
10053         * modules/recvfrom (Depends-on): Add dependency on getpeername.
10054         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
10055
10056 2008-10-17  Jim Meyering  <meyering@redhat.com>
10057
10058         ignore-value: new module
10059         * modules/ignore-value: New file.
10060         * lib/ignore-value.h: New file.
10061         * MODULES.html.sh (Compiler warning management): New section,
10062         just for this module.  More to come.
10063
10064 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
10065
10066         open-safer.c: avoid 'signed and unsigned in conditional...' warning
10067         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
10068         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
10069
10070 2008-10-16  Jim Meyering  <meyering@redhat.com>
10071
10072         openat-die.c: avoid 'no previous prototype' warning
10073         * lib/openat-die.c: Include "openat.h".
10074         Reported by Reuben Thomas <rrt@sc3d.org>.
10075
10076 2008-10-16  Simon Josefsson  <simon@josefsson.org>
10077
10078         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
10079         * lib/netdb.in.h: Fix typo.
10080         Reported by Bruno Haible  <bruno@clisp.org>
10081
10082         * lib/netdb.in.h: Include sys/socket.h for platforms without
10083         netdb.h, to get structures like hostent on MinGW.
10084         * modules/netdb (Depends-on): Add sys_socket.
10085
10086 2008-10-15  Simon Josefsson  <simon@josefsson.org>
10087
10088         * modules/netdb, modules/netdb-tests: New file.
10089         * m4/netdb_h.m4: New file.
10090         * lib/netdb.in.h: Add, currently just an empty file pending
10091         definitions.
10092         * tests/test-netdb.c: New file.
10093         * doc/posix-headers/netdb.texi: Mention that we replace it if
10094         needed.
10095         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10096         netdb.
10097
10098 2008-10-15  Simon Josefsson  <simon@josefsson.org>
10099
10100         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
10101         with code.
10102
10103 2008-10-13  Bruno Haible  <bruno@clisp.org>
10104
10105         * lib/glthread/cond.c (glthread_cond_wait_func,
10106         glthread_cond_timedwait_func): Add a comment.
10107
10108 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
10109
10110         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
10111         * tests/test-select.c: Likewise,
10112
10113 2008-10-13  Bruno Haible  <bruno@clisp.org>
10114
10115         * lib/glthread/cond.c (glthread_cond_wait_func,
10116         glthread_cond_timedwait_func): Fix variable name.
10117         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
10118
10119 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
10120
10121         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
10122         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
10123         struct sockaddr.sa_len.
10124         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
10125
10126 2008-10-13  Simon Josefsson  <simon@josefsson.org>
10127
10128         * build-aux/pmccabe2html: Add css and css_url parameters.
10129
10130 2008-10-12  Bruno Haible  <bruno@clisp.org>
10131
10132         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
10133         calling aclx_get.
10134         Reported by Rainer Tammer <tammer@tammer.net>.
10135
10136 2008-10-12  Bruno Haible  <bruno@clisp.org>
10137
10138         Use msvcrt aware primitives for creation/termination of Win32 threads.
10139         * lib/glthread/thread.c: Include <process.h>.
10140         (glthread_create_func): Use _beginthreadex instead of CreateThread.
10141         (wrapper_func): Update signature.
10142         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
10143
10144 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
10145             Bruno Haible  <bruno@clisp.org>
10146
10147         Provide a Win32 implementation of the 'cond' module.
10148         * lib/glthread/cond.h [USE_WIN32]: New implementation.
10149         * lib/glthread/cond.c (glthread_cond_init_func,
10150         glthread_cond_wait_func, glthread_cond_timedwait_func,
10151         glthread_cond_signal_func, glthread_cond_broadcast_func,
10152         glthread_cond_destroy_func) [USE_WIN32]: New functions.
10153         * modules/cond (Dependencies): Add gettimeofday.
10154
10155 2008-10-11  Bruno Haible  <bruno@clisp.org>
10156
10157         Make sleep work on older versions of mingw.
10158         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
10159         only whether it exists.
10160         * doc/posix-functions/sleep.texi: Mention the problem with older
10161         versions of mingw.
10162
10163 2008-10-11  Bruno Haible  <bruno@clisp.org>
10164
10165         New module 'shutdown'.
10166         * modules/shutdown: New file.
10167         * lib/sys_socket.in.h (shutdown): New declaration.
10168         * lib/winsock.c (shutdown): New function.
10169         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
10170         GNULIB_SHUTDOWN.
10171         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
10172         * doc/posix-functions/shutdown.texi: Document the new module.
10173
10174 2008-10-11  Jim Meyering  <meyering@redhat.com>
10175
10176         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
10177
10178 2008-10-11  Bruno Haible  <bruno@clisp.org>
10179
10180         New module 'fclose'.
10181         * modules/fclose: New file.
10182         * lib/stdio.in.h (fclose): New declaration.
10183         * lib/fclose.c: New file.
10184         * m4/fclose.m4: New file.
10185         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
10186         REPLACE_FCLOSE.
10187         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
10188         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
10189         REPLACE_FCLOSE.
10190         * modules/close (Depends-on): fclose.
10191         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
10192
10193 2008-10-11  Bruno Haible  <bruno@clisp.org>
10194
10195         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
10196         set errno and don't call _close.
10197
10198 2008-10-10  Bruno Haible  <bruno@clisp.org>
10199
10200         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
10201         ACL, not afterwards. Fixes test failure on Cygwin.
10202
10203 2008-10-09  Ben Pfaff  <blp@gnu.org>
10204
10205         * build-aux/announce-gen: Fix gnulib version related part of usage
10206         message.  Die with a useful error message if no tarballs are
10207         found.
10208
10209 2008-10-10  Jim Meyering  <meyering@redhat.com>
10210
10211         bootstrap: use git's --depth=N option only if it's supported
10212         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
10213         recognize the --depth option.  Reported by Pádraig Brady.
10214
10215 2008-10-09  Bruno Haible  <bruno@clisp.org>
10216
10217         New module 'ioctl'.
10218         * modules/ioctl: New file.
10219         * lib/sys_socket.in.h (ioctl): Remove declaration.
10220         * lib/winsock.c: Include <sys/ioctl.h>.
10221         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
10222         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
10223         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
10224         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
10225         * doc/posix-functions/ioctl.texi: Mention the new module.
10226
10227 2008-10-09  Bruno Haible  <bruno@clisp.org>
10228
10229         New module 'sys_ioctl'.
10230         * lib/sys_ioctl.in.h: New file.
10231         * m4/sys_ioctl_h.m4: New file.
10232         * modules/sys_ioctl: New file.
10233         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
10234
10235 2008-10-09  Bruno Haible  <bruno@clisp.org>
10236
10237         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
10238         * lib/winsock.c: Include <stdarg.h>.
10239         (rpl_ioctl): Change to second argument 'int' and then varargs.
10240
10241 2008-10-09  Bruno Haible  <bruno@clisp.org>
10242
10243         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
10244         when the sys_socket module is present and the system has <winsock2.h>.
10245
10246 2008-10-09  Bruno Haible  <bruno@clisp.org>
10247
10248         * doc/posix-functions/close.texi: Mention module 'close' instead of
10249         module 'sys_socket'.
10250
10251 2008-10-09  Bruno Haible  <bruno@clisp.org>
10252
10253         * doc/glibc-headers/sys_ioctl.texi: New file.
10254         * doc/gnulib.texi: Include it.
10255
10256 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
10257             Bruno Haible  <bruno@clisp.org>
10258
10259         Combine the two replacements of 'close'.
10260         * lib/sys_socket.in.h (close): Define to a reminder to include
10261         <unistd.h>.
10262         (_gl_close_fd_maybe_socket): New declaration.
10263         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
10264         * lib/winsock.c (close): Remove undefinition.
10265         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
10266         needed for the gnulib module 'close'.
10267         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
10268         define to an error symbol or to a warning, if suitable.
10269         * lib/close.c: Include <sys/socket.h>.
10270         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
10271         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
10272         UNISTD_H_HAVE_WINSOCK2_H.
10273         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
10274         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
10275         UNISTD_H_HAVE_WINSOCK2_H.
10276         * modules/sys_socket (Files): Add m4/unistd_h.m4.
10277         (configure.ac): Set a module indicator.
10278         (Makefile.am): Substitute GNULIB_CLOSE.
10279         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
10280         * modules/poll-tests (Depends-on): Add close.
10281         * modules/select-tests (Depends-on): Likewise.
10282
10283 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
10284             Bruno Haible  <bruno@clisp.org>
10285
10286         New module 'close'.
10287         * modules/close: New file.
10288         * lib/unistd.in.h (close): Move declaration out of the
10289         FCHDIR_REPLACEMENT scope.
10290         (_gl_unregister_fd): New declaration.
10291         * lib/close.c: New file.
10292         * lib/fchdir.c (rpl_close): Remove function.
10293         * m4/close.m4: New file.
10294         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
10295         close.
10296         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
10297         REPLACE_CLOSE.
10298         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
10299         REPLACE_CLOSE.
10300         * modules/fchdir (Depends-on): Add close.
10301
10302 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
10303             Bruno Haible  <bruno@clisp.org>
10304
10305         * lib/fcntl.in.h (open): Simplify conditionals.
10306         (_gl_register_fd): New declaration.
10307         * lib/fchdir.c (rpl_open): Remove function.
10308         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
10309         also.
10310         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
10311         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
10312         open.
10313
10314 2008-10-09  Jim Meyering  <meyering@redhat.com>
10315
10316         GNUmakefile: use the more name-space-friendly "_version"
10317         * top/GNUmakefile (_dummy): Update.
10318         (_version): Rename from "version".
10319
10320 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
10321             Bruno Haible  <bruno@clisp.org>
10322
10323         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
10324         rpl_close.
10325         (_gl_register_fd): New function, extracted from rpl_open.
10326         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
10327         (rpl_open, rpl_opendir): Use _gl_register_fd.
10328
10329 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
10330
10331         Fix organization of 'open' replacement.
10332         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
10333         (gl_FUNC_OPEN): Use it.
10334         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
10335
10336 2008-10-08  Bruno Haible  <bruno@clisp.org>
10337
10338         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
10339
10340 2008-10-08  Simon Josefsson  <simon@josefsson.org>
10341
10342         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
10343         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
10344         listen).
10345
10346 2008-10-08  Eric Blake  <ebb9@byu.net>
10347
10348         GNUmakefile: add 'make version' target
10349         * top/GNUmakefile (_curr-ver): Split version update rules...
10350         (version): ...into a target.
10351
10352 2008-10-07  Bruno Haible  <bruno@clisp.org>
10353
10354         Use a more portable replacement expression for -0.0L.
10355         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
10356         instead of -0.0L. Fix m4 quotation.
10357
10358         * tests/test-signbit.c: Include <float.h>.
10359         (minus_zero): New variable.
10360         (test_signbitl): Use minus_zero instead of -zero.
10361         * modules/signbit-tests (Depends-on): Add float.
10362
10363         * tests/test-ceill.c: Include <float.h>.
10364         (zero): Remove variable.
10365         (minus_zero): New variable.
10366         (main): Use minus_zero instead of -zero.
10367         * modules/ceill-tests (Depends-on): Add float.
10368
10369         * tests/test-floorl.c: Include <float.h>.
10370         (zero): Remove variable.
10371         (minus_zero): New variable.
10372         (main): Use minus_zero instead of -zero.
10373         * modules/floorl-tests (Depends-on): Add float.
10374
10375         * tests/test-roundl.c: Include <float.h>.
10376         (zero): Remove variable.
10377         (minus_zero): New variable.
10378         (main): Use minus_zero instead of -zero.
10379         * modules/roundl-tests (Depends-on): Add float.
10380
10381         * tests/test-truncl.c: Include <float.h>.
10382         (zero): Remove variable.
10383         (minus_zero): New variable.
10384         (main): Use minus_zero instead of -zero.
10385         * modules/truncl-tests (Depends-on): Add float.
10386
10387         * tests/test-frexpl.c (zero): Remove variable.
10388         (minus_zero): New variable.
10389         (main): Use minus_zero instead of -zero.
10390         * modules/frexpl-tests (Depends-on): Add float.
10391
10392         * tests/test-isnan.c (zerol): Remove variable.
10393         (minus_zerol): New variable.
10394         (test_long_double): Use minus_zerol instead of -zerol.
10395         * modules/isnan-tests (Depends-on): Add float.
10396
10397         * tests/test-isnanl.h (zero): Remove variable.
10398         (minus_zero): New variable.
10399         (main): Use minus_zero instead of -zero.
10400         * modules/isnanl-nolibm-tests (Depends-on): Add float.
10401         * modules/isnanl-tests (Depends-on): Add float.
10402
10403         * tests/test-ldexpl.c (zero): Remove variable.
10404         (minus_zero): New variable.
10405         (main): Use minus_zero instead of -zero.
10406         * modules/ldexpl-tests (Depends-on): Add float.
10407
10408         * tests/test-snprintf-posix.h (zerol): Remove variable.
10409         (minus_zerol): New variable.
10410         (test_function): Use minus_zerol instead of -zerol.
10411         * modules/snprintf-posix-tests (Depends-on): Add float.
10412         * modules/vsnprintf-posix-tests (Depends-on): Add float.
10413
10414         * tests/test-sprintf-posix.h (zerol): Remove variable.
10415         (minus_zerol): New variable.
10416         (test_function): Use minus_zerol instead of -zerol.
10417         * modules/sprintf-posix-tests (Depends-on): Add float.
10418         * modules/vsprintf-posix-tests (Depends-on): Add float.
10419
10420         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
10421         (minus_zerol): New variable.
10422         (test_function): Use minus_zerol instead of -zerol.
10423         * modules/vasnprintf-posix-tests (Depends-on): Add float.
10424
10425         * tests/test-vasprintf-posix.c (zerol): Remove variable.
10426         (minus_zerol): New variable.
10427         (test_function): Use minus_zerol instead of -zerol.
10428         * modules/vasprintf-posix-tests (Depends-on): Add float.
10429
10430 2008-10-07  Simon Josefsson  <simon@josefsson.org>
10431
10432         * MODULES.html.sh (Support for building documentation): Mention
10433         pmccabe2html.  Sort entries.
10434
10435         Add pmccabe2html module, from gnupdf.
10436         * build-aux/pmccabe.css: New file.
10437         * build-aux/pmccabe2html: New file.
10438         * m4/pmccabe2html.m4: New file.
10439         * modules/pmccabe2html: New file.
10440
10441 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
10442
10443         flock: new module
10444         * MODULES.html.sh: Add to list of modules.
10445         * lib/flock.c: flock implementation for Windows and Unix systems
10446         which have fcntl.
10447         * doc/glibc-functions/flock.texi: Update documentation.
10448         * lib/sys_file.in.h: <sys/file.h> header file.
10449         * m4/flock.m4: M4 macros.
10450         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
10451         * modules/flock: flock module.
10452         * modules/flock-tests: flock tests module.
10453         * modules/sys_file: sys/file.h module.
10454         * tests/test-flock.c: test suite for flock.
10455
10456 2008-10-06  Jim Meyering  <meyering@redhat.com>
10457
10458         bootstrap: check for LT_INIT more portably still ;-)
10459         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
10460         Spotted by Bruno Haible.
10461
10462 2008-10-06  Eric Blake  <ebb9@byu.net>
10463
10464         test-signbit: avoid tripping Irix cc bug on -0.0L
10465         * tests/test-signbit.c (minus_zerol): Delete, and replace with
10466         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
10467         entire testsuite consistent and avoids an Irix 6.2 bug.
10468
10469 2008-10-05  Bruno Haible  <bruno@clisp.org>
10470             Jim Meyering  <jim@meyering.net>
10471
10472         Add an option for ignoring EPIPE during close_stdout.
10473         * lib/closeout.h: Include <stdbool.h>.
10474         (close_stdout_set_ignore_EPIPE): New declaration.
10475         * lib/closeout.c: Include <stdbool.h>.
10476         (ignore_EPIPE): New variable.
10477         (close_stdout_set_ignore_EPIPE): New function.
10478         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
10479         * lib/close-stream.c (close_stream): Mention the possible EPIPE
10480         failure.
10481         * modules/closeout (Depends-on): Add stdbool.
10482
10483 2008-10-05  Bruno Haible  <bruno@clisp.org>
10484
10485         * modules/accept: New file.
10486         * modules/bind: New file.
10487         * modules/connect: New file.
10488         * modules/getpeername: New file.
10489         * modules/getsockname: New file.
10490         * modules/getsockopt: New file.
10491         * modules/listen: New file.
10492         * modules/recv: New file.
10493         * modules/recvfrom: New file.
10494         * modules/send: New file.
10495         * modules/sendto: New file.
10496         * modules/setsockopt: New file.
10497         * modules/socket: New file.
10498         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
10499         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
10500         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
10501         the particular module is requested. Add a link warning when the
10502         particular module is not requested.
10503         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
10504         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
10505         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
10506         the particular module is requested.
10507         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
10508         gl_SYS_SOCKET_H_DEFAULTS): New macros.
10509         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
10510         * modules/sys_socket (Depends-on): Add link-warning.
10511         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
10512         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
10513         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
10514         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
10515         GL_LINK_WARNING.
10516         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
10517         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
10518         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
10519         * doc/posix-functions/getpeername.texi: Mention the new module
10520         'getpeername'.
10521         * doc/posix-functions/getsockname.texi: Mention the new module
10522         'getsockname'.
10523         * doc/posix-functions/getsockopt.texi: Mention the new module
10524         'getsockopt'.
10525         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
10526         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
10527         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
10528         * doc/posix-functions/send.texi: Mention the new module 'send'.
10529         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
10530         * doc/posix-functions/setsockopt.texi: Mention the new module
10531         'setsockopt'.
10532         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
10533         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
10534         listen, connect, accept.
10535         * modules/select-tests (Depends-on): Likewise.
10536
10537 2008-10-05  Bruno Haible  <bruno@clisp.org>
10538
10539         * lib/winsock.c (strerror): Remove unused #undef.
10540         (rpl_close): Remove unused local variable.
10541
10542         * modules/sys_socket (Depends-on); Add errno.
10543
10544 2008-10-05  Bruno Haible  <bruno@clisp.org>
10545
10546         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
10547         (select): Add a link warning when the 'select' module is not used.
10548         * modules/sys_select (Depends-on): Add link-warning.
10549         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
10550         Suggested by Paolo Bonzini.
10551
10552 2008-10-05  Jim Meyering  <meyering@redhat.com>
10553
10554         bootstrap: check for LT_INIT more portably
10555         * build-aux/bootstrap: Avoid using grep -E, since it's not
10556         portable enough.  Suggestion from Bruno Haible.
10557
10558 2008-10-05  Bruno Haible  <bruno@clisp.org>
10559
10560         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
10561         as being fixed by gnulib.
10562
10563 2008-10-05  Bruno Haible  <bruno@clisp.org>
10564
10565         * modules/select-tests: New file, mostly copied from
10566         modules/sys_select-tests.
10567         * tests/test-select.c: New file, mostly copied from
10568         tests/test-sys_select.c.
10569         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
10570         * modules/sys_select-tests (Depends-on): Remove all dependencies.
10571         (Makefile.am): Remove test_sys_select_LDADD.
10572
10573         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
10574         to an undefined symbol, for an error message.
10575         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
10576         (gl_SYS_SELECT_H_DEFAULTS): New macro.
10577         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
10578         winsock-select.c here.
10579         * modules/sys_select (Files): Remove lib/winsock-select.c.
10580         (Depends-on): Remove alloca.
10581         (Makefile.am): Substitute GNULIB_SELECT.
10582         * modules/select: New file.
10583         * doc/posix-functions/select.texi: Update.
10584
10585 2008-10-05  Bruno Haible  <bruno@clisp.org>
10586
10587         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
10588         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
10589         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
10590         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
10591         getdtablesize.
10592         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
10593         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
10594
10595 2008-10-05  Bruno Haible  <bruno@clisp.org>
10596
10597         * modules/getdtablesize-tests: New file.
10598         * tests/test-getdtablesize.c: New file.
10599
10600         New module 'getdtablesize'.
10601         * lib/unistd.in.h (getdtablesize): New declaration.
10602         * lib/getdtablesize.c: New file.
10603         * m4/getdtablesize.m4: New file.
10604         * modules/getdtablesize: New file.
10605         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
10606         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
10607         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
10608         HAVE_GETDTABLESIZE.
10609         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
10610
10611 2008-10-05  Bruno Haible  <bruno@clisp.org>
10612
10613         * modules/sched (Makefile.am): Fix typo.
10614         Reported by Simon Josefsson.
10615
10616 2008-10-05  Jim Meyering  <meyering@redhat.com>
10617
10618         bootstrap: check for LT_INIT, too
10619         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
10620         are deprecated.  Suggestion from Ralf Wildenhues.
10621
10622 2008-10-05  Bruno Haible  <bruno@clisp.org>
10623
10624         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
10625         overriding them by ours.
10626         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
10627
10628 2008-10-05  Jim Meyering  <meyering@redhat.com>
10629
10630         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
10631         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
10632         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
10633
10634 2008-10-04  Bruno Haible  <bruno@clisp.org>
10635
10636         * modules/dup2 (License): Change to LGPLv2+.
10637         * modules/sleep (License): Likewise.
10638         * modules/perror (License): Likewise.
10639         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
10640         Blake.
10641         * modules/signal (License): Likewise.
10642         * modules/sigprocmask (License): Likewise.
10643         * modules/raise (License): Change to LGPLv2+, with approval by Jim
10644         Meyering.
10645
10646 2008-10-04  Bruno Haible  <bruno@clisp.org>
10647
10648         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
10649         Reported by Rainer Tammer <tammer@tammer.net>.
10650
10651 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
10652             Bruno Haible  <bruno@clisp.org>
10653
10654         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
10655         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
10656         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
10657
10658 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
10659
10660         filevercmp: new module
10661         * lib/filevercmp.h: New function filevercmp comparing version strings.
10662         * lib/filevercmp.c: Implementation of filevercmp function.
10663         * modules/filevercmp: Module metadata.
10664         * tests/test-filevercmp.c: Unit test for new module.
10665         * modules/filevercmp-tests: Unit test metadata.
10666         * MODULES.html.sh: Add filevercmp module.
10667
10668 2008-10-03  Bruno Haible  <bruno@clisp.org>
10669
10670         * lib/c-ctype.h: Add comment.
10671         Reported by Jim Meyering.
10672
10673 2008-10-02  Bruno Haible  <bruno@clisp.org>
10674
10675         * modules/posix_spawn-internal (Depends-on): Add 'open'.
10676
10677 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
10678
10679         * build-aux/bootstrap: Allow renaming bootstrap, and change the
10680         name of bootstrap.conf accordingly.
10681
10682 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
10683
10684         * build-aux/bootstrap: Install git-merge-changelog configuration
10685         items into .gitconfig if needed.
10686
10687 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
10688
10689         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
10690         git repository, and initialize/update it accordingly.
10691
10692 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
10693
10694         * modules/fsync-tests: New file.
10695         * tests/test-fsync.c: New file.
10696
10697         New module 'fsync'.
10698         * lib/fsync.c: New file.
10699         * m4/fsync.m4: New file.
10700         * modules/fsync: New file.
10701         * lib/unistd.in.h (fsync): New declaration.
10702         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
10703         GNULIB_FSYNC and HAVE_FSYNC.
10704         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
10705         * MODULES.html.sh (posix_functions): Add fsync.
10706         * doc/posix-functions/fsync.texi: Mention the new module.
10707
10708 2008-10-02  Jim Meyering  <meyering@redhat.com>
10709
10710         fts.c: sync with similar code from coreutils' remove.c
10711         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
10712         Guard also with "#if defined __linux__", since for now at least,
10713         this code is Linux-kernel-specific.
10714
10715 2008-10-02  Jim Meyering  <meyering@redhat.com>
10716
10717         fts: bug fixes
10718         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
10719         Include <sys/vfs.h>, not <sys/statfs.h>.
10720
10721         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
10722         Include <sys/vfs.h>, not <sys/statfs.h>.
10723
10724 2008-10-01  Bruno Haible  <bruno@clisp.org>
10725
10726         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
10727         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
10728         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
10729         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
10730         * doc/posix-functions/posix_spawnp.texi: Likewise.
10731         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
10732         whether posix_spawn actually works.
10733         * m4/pipe.m4 (gl_PIPE): Likewise.
10734         * modules/execute (Files): Add m4/posix_spawn.m4.
10735         * modules/pipe (Files): Add m4/posix_spawn.m4.
10736         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
10737
10738 2008-10-01  Jim Meyering  <meyering@redhat.com>
10739
10740         remove trailing spaces
10741         * NEWS: Likewise.
10742         * lib/poll.c (poll): Likewise.
10743         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
10744         * lib/winsock.c (rpl_close): Likewise.
10745         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
10746         * modules/yield: Likewise.
10747         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
10748         * tests/test-sys_select.c (connect_to_socket): Likewise.
10749
10750         fts.c: adjust a new interface to be more generally useful
10751         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
10752         (fts_build): Adjust caller.
10753
10754 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10755
10756         * modules/cond-tests: New file.
10757         * tests/test-cond.c: New file.
10758
10759 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10760             Bruno Haible  <bruno@clisp.org>
10761
10762         * modules/cond (Dependencies): Add errno, time.
10763         * lib/glthread/cond.h: Include <time.h>.
10764         (gl_cond_define, gl_cond_define_initialized): Use the same definition
10765         across platforms.
10766
10767 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10768             Bruno Haible  <bruno@clisp.org>
10769
10770         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
10771
10772 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10773             Bruno Haible  <bruno@clisp.org>
10774
10775         * modules/tls-tests (Depends-on): Add thread, yield.
10776         (configure.ac): Remove all checks.
10777         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
10778         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
10779         gl_thread_self): Remove definitions. Include glthread/thread.h and
10780         glthread/yield.h instead.
10781         (test_tls): Pass an additional NULL argument to gl_thread_join.
10782
10783 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10784             Bruno Haible  <bruno@clisp.org>
10785
10786         * modules/lock-tests (Depends-on): Add thread, yield.
10787         (configure.ac): Remove all checks.
10788         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
10789         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
10790         gl_thread_self): Remove definitions. Include glthread/thread.h and
10791         glthread/yield.h instead.
10792         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
10793         additional NULL argument to gl_thread_join.
10794
10795 2008-09-30  Bruno Haible  <bruno@clisp.org>
10796
10797         Fix the Win32 implementation of the 'thread' module.
10798         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
10799         pointer type.
10800         (gl_thread_self): Invoke gl_thread_self_func.
10801         (gl_thread_self_func): New declaration.
10802         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
10803         (do_init_self_key, init_self_key): New functions.
10804         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
10805         Remove some fields.
10806         (running_threads, running_lock): Remove variables.
10807         (get_current_thread_handle): New function.
10808         (gl_thread_self_func, wrapper_func, glthread_create_func,
10809         glthread_join_func, gl_thread_exit_func): Largely rewritten and
10810         simplified.
10811
10812 2008-09-30  Bruno Haible  <bruno@clisp.org>
10813
10814         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
10815         files.
10816
10817 2008-09-30  Jim Meyering  <meyering@redhat.com>
10818
10819         fts.m4: correct the test for statfs.f_type
10820         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
10821         when checking for statfs.f_type.
10822
10823 2008-09-15  Simon Josefsson  <simon@josefsson.org>
10824
10825         tests: avoid some compiler warnings
10826         * tests/test-memchr.c (main): Pass NULL indirectly.
10827         * tests/test-getdate.c (main): Remove unused variable 'ret'.
10828
10829 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
10830
10831         getdate.y: disallow countable dayshifts like "4 yesterday ago"
10832         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
10833         exactly specified dayshifts.
10834         (dayshift): New rule.
10835         (rel): Add dayshift.
10836         (relative_time_table) [tomorrow, yesterday, today, now]:
10837         Use tDAY_SHIFT in place of tDAY_UNIT.
10838         * tests/test-getdate.c: Add tests for now-disallowed countable
10839         dayshifts, e.g., "4 yesterday ago".
10840
10841 2008-09-29  Bruno Haible  <bruno@clisp.org>
10842
10843         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
10844         * tests/test-posix_spawn1.in.sh: Renamed from
10845         tests/test-posix_spawn.in.sh.
10846         * tests/test-posix_spawn2.c: New file.
10847         * tests/test-posix_spawn2.in.sh: New file.
10848         * modules/posix_spawnp-tests (Files): Update.
10849         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
10850
10851 2008-09-29  Bruno Haible  <bruno@clisp.org>
10852
10853         Propagate effects of putenv/setenv/unsetenv to child processes.
10854         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
10855         * lib/pipe.c (create_pipe): Likewise.
10856
10857 2008-09-29  Bruno Haible  <bruno@clisp.org>
10858
10859         Enable use of shell scripts as executables in mingw.
10860         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
10861         run the program as a shell script.
10862         * lib/pipe.c (create_pipe): Likewise.
10863         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
10864         resulting array.
10865
10866 2008-09-29  Eric Blake  <ebb9@byu.net>
10867
10868         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
10869
10870 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
10871
10872         * doc/posix-functions/accept.texi: Update mingw problems.
10873         * doc/posix-functions/bind.texi: Update mingw problems.
10874         * doc/posix-functions/close.texi: Update mingw problems.
10875         * doc/posix-functions/connect.texi: Update mingw problems.
10876         * doc/posix-functions/getpeername.texi: Update mingw problems.
10877         * doc/posix-functions/getsockname.texi: Update mingw problems.
10878         * doc/posix-functions/getsockopt.texi: Update mingw problems.
10879         * doc/posix-functions/ioctl.texi: Update mingw problems.
10880         * doc/posix-functions/listen.texi: Update mingw problems.
10881         * doc/posix-functions/recv.texi: Update mingw problems.
10882         * doc/posix-functions/recvfrom.texi: Update mingw problems.
10883         * doc/posix-functions/select.texi: Update mingw problems.
10884         * doc/posix-functions/send.texi: Update mingw problems.
10885         * doc/posix-functions/sendto.texi: Update mingw problems.
10886         * doc/posix-functions/setsockopt.texi: Update mingw problems.
10887         * doc/posix-functions/socket.texi: Update mingw problems.
10888
10889 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
10890             Bruno Haible  <bruno@clisp.org>
10891
10892         * lib/sys_select.in.h: Include sys/time.h.
10893         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
10894         * modules/sys_select: Depend on sys_time.
10895         * tests/test-sys_select.c: Test that sys/select.h defines struct
10896         timeval fully.
10897
10898 2008-09-29  Bruno Haible  <bruno@clisp.org>
10899
10900         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
10901         * lib/sys_select.in.h: Likewise.
10902
10903 2008-09-29  Bruno Haible  <bruno@clisp.org>
10904
10905         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
10906
10907 2008-09-29  Bruno Haible  <bruno@clisp.org>
10908
10909         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
10910         Set LIBSOCKET instead of augmenting LIBS.
10911         * modules/sockets (Link): New section.
10912         * modules/sockets-tests (test_sockets_LDADD): New variable.
10913         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
10914         * modules/poll-tests (test_poll_LDADD): New variable.
10915         * NEWS: Document the change.
10916
10917 2008-09-29  Bruno Haible  <bruno@clisp.org>
10918
10919         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
10920         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
10921         ARPA_INET_H directly.
10922         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
10923
10924 2008-09-28  Bruno Haible  <bruno@clisp.org>
10925
10926         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
10927         from gl_HEADER_SYS_SOCKET.
10928         (gl_HEADER_SYS_SOCKET): Invoke it.
10929         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
10930
10931 2008-09-28  Bruno Haible  <bruno@clisp.org>
10932
10933         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
10934         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
10935         Needed on OSF/1 4.0.
10936
10937 2008-09-28  Bruno Haible  <bruno@clisp.org>
10938
10939         Override open more carefully.
10940         * lib/open.c (orig_open): New function.
10941         (rpl_open): Use orig_open instead of open.
10942         * lib/fcntl.in.h: Add special invocation convention.
10943         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
10944         (gl_FUNC_OPEN): Invoke it.
10945
10946         Override freopen more carefully.
10947         * lib/freopen.c (orig_freopen): New function.
10948         (rpl_freopen): Use orig_freopen instead of freopen.
10949         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
10950         (gl_FUNC_FREOPEN): Invoke it.
10951
10952         Override fopen more carefully.
10953         * lib/fopen.c (orig_fopen): New function.
10954         (rpl_fopen): Use orig_fopen instead of fopen.
10955         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
10956         (gl_FUNC_FOPEN): Invoke it.
10957         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
10958
10959 2008-09-28  Bruno Haible  <bruno@clisp.org>
10960
10961         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
10962         SIGPIPE.
10963
10964 2008-09-28  Bruno Haible  <bruno@clisp.org>
10965
10966         * tests/test-sigaction.c (handler, main): Disable the check whether
10967         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
10968         glibc systems with LinuxThreads.
10969
10970 2008-09-28  Bruno Haible  <bruno@clisp.org>
10971
10972         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
10973
10974         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
10975         with AIX xlc.
10976         * lib/fcntl.in.h (open): Likewise.
10977         Reported by Rainer Tammer <tammer@tammer.net>.
10978
10979 2008-09-28  Bruno Haible  <bruno@clisp.org>
10980
10981         * modules/posix_spawnp-tests: New file.
10982         * tests/test-posix_spawn.c: New file.
10983         * tests/test-posix_spawn.in.sh: New file.
10984
10985         New module 'posix_spawnp'.
10986         * modules/posix_spawnp: New file.
10987         * lib/spawnp.c: New file, from GNU libc with modifications.
10988         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
10989
10990         New module 'posix_spawn'.
10991         * modules/posix_spawn: New file.
10992         * lib/spawn.c: New file, from GNU libc with modifications.
10993         * doc/posix-functions/posix_spawn.texi: Mention the new module.
10994
10995         New module 'posix_spawnattr_destroy'.
10996         * modules/posix_spawnattr_destroy: New file.
10997         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
10998         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
10999         module.
11000
11001         New module 'posix_spawnattr_setsigmask'.
11002         * modules/posix_spawnattr_setsigmask: New file.
11003         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
11004         modifications.
11005         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
11006         new module.
11007
11008         New module 'posix_spawnattr_getsigmask'.
11009         * modules/posix_spawnattr_getsigmask: New file.
11010         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
11011         modifications.
11012         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
11013         new module.
11014
11015         New module 'posix_spawnattr_setsigdefault'.
11016         * modules/posix_spawnattr_setsigdefault: New file.
11017         * lib/spawnattr_setdefault.c: New file, from GNU libc with
11018         modifications.
11019         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
11020         new module.
11021
11022         New module 'posix_spawnattr_getsigdefault'.
11023         * modules/posix_spawnattr_getsigdefault: New file.
11024         * lib/spawnattr_getdefault.c: New file, from GNU libc with
11025         modifications.
11026         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
11027         new module.
11028
11029         New module 'posix_spawnattr_setschedpolicy'.
11030         * modules/posix_spawnattr_setschedpolicy: New file.
11031         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
11032         modifications.
11033         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
11034         new module.
11035
11036         New module 'posix_spawnattr_getschedpolicy'.
11037         * modules/posix_spawnattr_getschedpolicy: New file.
11038         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
11039         modifications.
11040         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
11041         new module.
11042
11043         New module 'posix_spawnattr_setschedparam'.
11044         * modules/posix_spawnattr_setschedparam: New file.
11045         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
11046         modifications.
11047         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
11048         new module.
11049
11050         New module 'posix_spawnattr_getschedparam'.
11051         * modules/posix_spawnattr_getschedparam: New file.
11052         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
11053         modifications.
11054         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
11055         new module.
11056
11057         New module 'posix_spawnattr_setpgroup'.
11058         * modules/posix_spawnattr_setpgroup: New file.
11059         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
11060         modifications.
11061         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
11062         module.
11063
11064         New module 'posix_spawnattr_getpgroup'.
11065         * modules/posix_spawnattr_getpgroup: New file.
11066         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
11067         modifications.
11068         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
11069         module.
11070
11071         New module 'posix_spawnattr_setflags'.
11072         * modules/posix_spawnattr_setflags: New file.
11073         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
11074         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
11075         module.
11076
11077         New module 'posix_spawnattr_getflags'.
11078         * modules/posix_spawnattr_getflags: New file.
11079         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
11080         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
11081         module.
11082
11083         New module 'posix_spawnattr_init'.
11084         * modules/posix_spawnattr_init: New file.
11085         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
11086         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
11087         module.
11088
11089         New module 'posix_spawn_file_actions_destroy'.
11090         * modules/posix_spawn_file_actions_destroy: New file.
11091         * lib/spawn_faction_destroy.c: New file, from GNU libc with
11092         modifications.
11093         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
11094         the new module.
11095
11096         New module 'posix_spawn_file_actions_addopen'.
11097         * modules/posix_spawn_file_actions_addopen: New file.
11098         * lib/spawn_faction_addopen.c: New file, from GNU libc with
11099         modifications.
11100         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
11101         the new module.
11102
11103         New module 'posix_spawn_file_actions_adddup2'.
11104         * modules/posix_spawn_file_actions_adddup2: New file.
11105         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
11106         modifications.
11107         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
11108         the new module.
11109
11110         New module 'posix_spawn_file_actions_addclose'.
11111         * modules/posix_spawn_file_actions_addclose: New file.
11112         * lib/spawn_faction_addclose.c: New file, from GNU libc with
11113         modifications.
11114         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
11115         the new module.
11116
11117         New module 'posix_spawn_file_actions_init'.
11118         * modules/posix_spawn_file_actions_init: New file.
11119         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
11120         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
11121         new module.
11122
11123         New module 'posix_spawn-internal'.
11124         * modules/posix_spawn-internal: New file.
11125         * lib/spawn_int.h: New file, from GNU libc with modifications.
11126         * lib/spawni.c: New file, from GNU libc with modifications.
11127         * m4/posix_spawn.m4: New file.
11128
11129         New module 'spawn'.
11130         * modules/spawn: New file.
11131         * lib/spawn.in.h: New file, from GNU libc with modifications.
11132         * m4/spawn_h.m4: New file.
11133         * doc/posix-headers/spawn.texi: Mention the new module.
11134
11135 2008-09-28  Bruno Haible  <bruno@clisp.org>
11136
11137         * modules/sched-tests: New file.
11138         * tests/test-sched.c: New file.
11139
11140         New module 'sched'.
11141         * modules/sched: New file.
11142         * lib/sched.in.h: New file.
11143         * m4/sched_h.m4: New file.
11144         * doc/posix-headers/sched.texi: Mention the new module.
11145
11146 2008-09-27  Eric Blake  <ebb9@byu.net>
11147
11148         Fix previous patch, and tweak references to $0.
11149         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
11150         (func_version, func_gnulib_dir): Don't call this program
11151         gnulib-tool.
11152         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
11153         with using $0 in function.
11154         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
11155         (func_fatal_error): Reuse the name the user invoked us with.
11156
11157 2008-09-27  Bruno Haible  <bruno@clisp.org>
11158
11159         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
11160         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
11161         (gl_ICONV_H): Not here.
11162         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
11163         instead of assigning ICONV_H directly.
11164
11165         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
11166         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
11167         WCHAR_H directly.
11168
11169 2008-09-27  Bruno Haible  <bruno@clisp.org>
11170
11171         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
11172         * modules/arpa_inet (Depends-on): Add link-warning.
11173         (Makefile.am): Insert the definition of GL_LINK-WARNING.
11174         * modules/unistd (Makefile.am): Likewise.
11175
11176 2008-09-26  Bruno Haible  <bruno@clisp.org>
11177
11178         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
11179         variables.
11180         (func_version): Essentially copied from gnulib-tool.
11181         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
11182         func_readlink): Copied from gnulib-tool.
11183
11184 2008-09-26  Bruno Haible  <bruno@clisp.org>
11185
11186         * gnulib-tool (func_version): Change directory to $gnulib_dir before
11187         invoking git-version-gen.
11188
11189 2008-09-26  Bruno Haible  <bruno@clisp.org>
11190
11191         * posix-modules: Update to directory names changed on 2008-01-19.
11192         Remove commas in output before splitting into words. No more need to
11193         avoid 'ftruncate' since 2007-02-19.
11194
11195 2008-09-26  Bruno Haible  <bruno@clisp.org>
11196
11197         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
11198
11199 2008-09-26  Bruno Haible  <bruno@clisp.org>
11200
11201         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
11202         * modules/fwriteerror (Depends-on): Add errno.
11203
11204 2008-09-26  Bruno Haible  <bruno@clisp.org>
11205
11206         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
11207         * tests/test-vc-list-files-cvs.sh: Likewise.
11208
11209 2008-09-26  Bruno Haible  <bruno@clisp.org>
11210
11211         * doc/posix-headers/sys_resource.texi: Reorder items.
11212
11213 2008-09-26  Jim Meyering  <meyering@redhat.com>
11214
11215         fts: tweak inode comparison function
11216         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
11217         inode numbers, as documented.
11218
11219         fts: sort dirent entries on inode number before traversing
11220         This avoids a quadratic, seek-related performance penalty when
11221         operating on a directory containing many entries (measurable at 10k;
11222         3.5 hours at 2 million entries with a cold cache) on certain types
11223         of file systems, including ext3 and ext4, but not tmpfs.
11224         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
11225         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
11226         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
11227         (fs_handles_readdir_ordered_dirents_efficiently): New function.
11228         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
11229         (fts_build): Set the stat.st_ino member from D_INO.
11230         If it is likely to be useful, sort dirent entries on inode number.
11231
11232         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
11233         and the struct statfs.f_type member.
11234         * modules/fts (Depends-on): Add d-ino.
11235
11236 2008-09-26  Bruno Haible  <bruno@clisp.org>
11237
11238         * modules/sigpipe-die (Depends-on): Add sigpipe.
11239
11240         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
11241         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
11242         and GNULIB_STDIO_H_SIGPIPE are set.
11243         * lib/stdio-write.c: New file.
11244         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
11245         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
11246         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
11247         REPLACE_STDIO_WRITE_FUNCS.
11248         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
11249         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
11250         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
11251         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
11252         * modules/stdio (Files): Add lib/stdio-write.c.
11253         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
11254         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
11255         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
11256         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
11257         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
11258         REPLACE_FPRINTF_POSIX.
11259         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
11260         REPLACE_PRINTF_POSIX.
11261         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
11262         REPLACE_VFPRINTF_POSIX.
11263         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
11264         REPLACE_VPRINTF_POSIX.
11265         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
11266         SIGPIPE issue.
11267         * doc/posix-functions/fputc.texi: Likewise.
11268         * doc/posix-functions/fputs.texi: Likewise.
11269         * doc/posix-functions/fwrite.texi: Likewise.
11270         * doc/posix-functions/printf.texi: Likewise.
11271         * doc/posix-functions/putc.texi: Likewise.
11272         * doc/posix-functions/putchar.texi: Likewise.
11273         * doc/posix-functions/puts.texi: Likewise.
11274         * doc/posix-functions/vfprintf.texi: Likewise.
11275         * doc/posix-functions/vprintf.texi: Likewise.
11276
11277         * modules/safe-write (Depends-on): Add write.
11278
11279         * modules/sigpipe-tests: New file.
11280         * tests/test-sigpipe.c: New file.
11281         * tests/test-sigpipe.sh: New file.
11282
11283         * modules/write: New file.
11284         * lib/unistd.in.h: Include <sys/types.h>.
11285         (write): New declaration.
11286         * lib/write.c: New file.
11287         * m4/write.m4: New file.
11288         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11289         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
11290         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
11291         GNULIB_WRITE, REPLACE_WRITE.
11292         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
11293         and the SIGPIPE issue.
11294
11295         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
11296         (raise): New declaration.
11297         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
11298         (ext_signal): New function.
11299         (rpl_raise): New function.
11300         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
11301         GNULIB_SIGNAL_H_SIGPIPE.
11302         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
11303         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
11304
11305         * modules/sigpipe: New file.
11306         * m4/sigpipe.m4: New file.
11307
11308 2008-09-25  Derek Price  <derek@ximbiot.com>
11309             Bruno Haible  <bruno@clisp.org>
11310
11311         * gnulib-tool (func_import): Report all license incompatibilities, not
11312         just the first one.
11313
11314 2008-09-25  Bruno Haible  <bruno@clisp.org>
11315
11316         * gnulib-tool (func_import): When computing the edits, consider not
11317         only the Makefile.ams that exist but also those that will be generated.
11318
11319 2008-09-25  Simon Josefsson  <simon@josefsson.org>
11320
11321         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
11322         fixes gnulib-tool --test warning about duplicate dependency.
11323
11324 2008-09-25  Bruno Haible  <bruno@clisp.org>
11325
11326         * gnulib-tool: Don't ask the user to perform edits in the generated
11327         Makefile.ams.
11328         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
11329         apply to the Makefile.am being generated.
11330         (func_emit_tests_Makefile_am): Execute edits that apply to the
11331         Makefile.am being generated.
11332         (func_import): Setup list of Makefile.am edits before emitting the
11333         Makefile.ams, not at the end.
11334         (func_create_testdir): Update.
11335         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11336
11337 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11338
11339         * gnulib-tool (func_import): Store the --tests-base option in the
11340         comment in gnulib-cache.m4.
11341
11342 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
11343
11344         * NEWS: Document increased portability that sys_select now provides.
11345
11346         * lib/sys_select.in.h: Install select wrapper.
11347         * lib/sys_socket.in.h: Use more descriptive name when there is no
11348         select wrapper.
11349         * lib/winsock-select.c: New.
11350         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
11351         Require gl_HEADER_SYS_SOCKET.
11352         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
11353         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
11354         * tests/test-sys_select.c: Add functional tests.
11355
11356 2008-09-24  Eric Blake  <ebb9@byu.net>
11357
11358         open, fopen: close fd leak in last patch
11359         * lib/open.c (rpl_open): Close fd before returning error.
11360         * lib/fopen.c (rpl_fopen): Close fd before returning error.
11361         * doc/posix-functions/open.texi (open): Document that Irix also
11362         has the bug.
11363         * doc/posix-functions/fopen.texi (fopen): Likewise.
11364         Reported by Paolo Bonzini.
11365
11366 2008-09-24  Bruno Haible  <bruno@clisp.org>
11367
11368         Ensure that a filename ending in a slash cannot be used to access a
11369         non-directory.
11370         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
11371         to check whether it's really a directory.
11372         * lib/fopen.c: Include fcntl.h, unistd.h.
11373         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
11374         and fdopen().
11375         * modules/fopen (Depends-on): Add unistd.
11376         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
11377         * tests/test-fopen.c (main): Likewise.
11378         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
11379         * doc/posix-functions/fopen.texi: Likewise.
11380         Reported by Eric Blake.
11381
11382 2008-09-23  Eric Blake  <ebb9@byu.net>
11383
11384         c-stack: avoid compiler optimizations when provoking overflow
11385         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
11386         recursion harder to optimize, to ensure a stack overflow occurs.
11387         * tests/test-c-stack.c (recurse): Likewise.
11388         Borrowed from libsigsegv.
11389
11390         c-stack: work around Irix sigaltstack bug
11391         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
11392         whether sigaltstack uses wrong end of stack_t (copied in part from
11393         libsigsegv).
11394         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
11395         Irix bug, without requiring an over-allocation.
11396         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
11397         bug.
11398
11399         fopen: document mingw bug on directories
11400         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
11401         not allowing a stream visiting a directory, even though reading
11402         from such a stream is not portable.
11403
11404 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
11405
11406         * lib/poll.c: Rewrite.
11407         * modules/poll: Depend on alloca.
11408
11409 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
11410
11411         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
11412         instead define prototypes for a full set of wrappers.  Ensure
11413         that Cygwin does not use the compatibility code, which is only
11414         for MinGW.
11415         * lib/winsock.c: New.
11416         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
11417         * modules/sys_socket: Add lib/winsock.c.
11418
11419         * modules/poll-tests: Add errno and perror.
11420         * tests/test-poll.c: Use ioctl, not ioctlsocket.
11421
11422 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
11423
11424         * tests/test-poll.c: Downgrade minimum needed Winsock version.
11425
11426 2008-09-23  Bruno Haible  <bruno@clisp.org>
11427
11428         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
11429         * doc/glibc-functions/*: Likewise.
11430
11431 2008-09-23  Simon Josefsson  <simon@josefsson.org>
11432
11433         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
11434         success.
11435
11436 2008-09-22  Eric Blake  <ebb9@byu.net>
11437             Bruno Haible  <bruno@clisp.org>
11438
11439         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
11440         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
11441         supply %A but mishandle pseudo-NaN.
11442         Reported by Simon Josefsson.
11443
11444 2008-09-21  Bruno Haible  <bruno@clisp.org>
11445
11446         * tests/test-lock.c (main): Tweak skip message.
11447         * tests/test-tls.c (main): Likewise.
11448
11449 2008-09-21  Bruno Haible  <bruno@clisp.org>
11450
11451         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
11452         whether 'struct sigaction' has sa_sigaction here...
11453         (gl_PREREQ_SIG_HANDLER_H): ... not here.
11454         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
11455
11456 2008-09-21  Bruno Haible  <bruno@clisp.org>
11457
11458         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
11459         section.
11460         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
11461         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
11462         the new section.
11463         (Support for obsolete systems lacking POSIX:2001): New section.
11464         (String handling <string.h>): Move strdup to the new section.
11465         Suggested by Simon Josefsson and Paolo Bonzini.
11466
11467 2008-09-21  Bruno Haible  <bruno@clisp.org>
11468
11469         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
11470         exponents in %e and %g results on 'long double'. Needed for mingw's
11471         improved *printf functions.
11472         * tests/test-vasprintf-posix.c (test_function): Likewise.
11473         * tests/test-snprintf-posix.h (test_function): Likewise.
11474         * tests/test-sprintf-posix.h (test_function): Likewise.
11475         Reported by Eric Blake.
11476
11477 2008-09-21  Bruno Haible  <bruno@clisp.org>
11478
11479         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
11480         * tests/test-sprintf-posix.h (test_function): Likewise.
11481
11482 2008-09-21  Bruno Haible  <bruno@clisp.org>
11483
11484         * modules/getpass (Depends-on): Add strdup-posix.
11485
11486         New module 'strdup-posix'.
11487         * modules/strdup-posix: New file.
11488         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
11489         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
11490         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
11491         REPLACE_STRDUP.
11492         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
11493         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
11494         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11495         strdup-posix.
11496
11497         * modules/strdup (Depends-on): Remove malloc-posix.
11498
11499 2008-09-20  Bruno Haible  <bruno@clisp.org>
11500
11501         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
11502         Wildenhues.
11503
11504 2008-09-20  Bruno Haible  <bruno@clisp.org>
11505
11506         Ensure that wint_t gets defined on IRIX 5.3.
11507         * lib/wchar.in.h (wint_t): Define if not defined by the system.
11508         * lib/wctype.in.h (wint_t): Likewise.
11509         (__wctype_wint_t): Remove type.
11510         (isw*): Use wint_t instead of __wctype_wint_t.
11511         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
11512         * modules/wchar (Files): Add m4/wint_t.m4.
11513         (Makefile.am): Substitute HAVE_WINT_T.
11514         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
11515         * tests/test-wctype.c: Check that wint_t is defined.
11516         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
11517         * doc/posix-headers/wctype.texi: Likewise.
11518         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11519
11520 2008-09-18  Bruno Haible  <bruno@clisp.org>
11521
11522         * gnulib-tool (func_exit): Update comment.
11523
11524 2008-09-18  Simon Josefsson  <simon@josefsson.org>
11525
11526         * modules/getaddrinfo (Depends-on): Remove strdup, this module
11527         assumes strdup exists and does not depend on strdup to return
11528         ENOMEM on out of memory conditions.
11529
11530 2008-09-18  Bruno Haible  <bruno@clisp.org>
11531
11532         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
11533         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
11534         digits for the exponent.
11535
11536 2008-09-18  Jim Meyering  <meyering@redhat.com>
11537             Bruno Haible  <bruno@clisp.org>
11538
11539         * lib/vasnprintf.c (decimal_point_char): Define also if
11540         NEED_PRINTF_INFINITE_LONG_DOUBLE.
11541
11542 2008-09-16  Bruno Haible  <bruno@clisp.org>
11543         and Eric Blake  <ebb9@byu.net>
11544
11545         vasnprintf: support Irix 5.3
11546         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
11547         that mishandle long double infinity.
11548         Reported by Tom G. Christensen.
11549
11550 2008-09-16  Bruno Haible  <bruno@clisp.org>
11551
11552         * doc/glibc-functions/scandir.texi: Mention the function is missing on
11553         Solaris 9.
11554         * doc/glibc-functions/alphasort.texi: Likewise.
11555         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
11556
11557 2008-09-16  Jim Meyering  <meyering@redhat.com>
11558
11559         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
11560         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
11561         a umask modification leak out of a subshell.  Otherwise, the
11562         opensolaris /bin/sh would be accepted and thus cause unwarranted
11563         failures in the coreutils test suite.
11564
11565 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
11566
11567         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
11568         to succeed.
11569
11570 2008-09-16  Jim Meyering  <meyering@redhat.com>
11571
11572         avoid spurious test failure when library is built without ACL support
11573         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
11574         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
11575         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
11576         * tests/test-copy-acl.sh: Likewise.
11577
11578 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11579
11580         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
11581         based on character occurrence counts.
11582
11583 2008-09-15  Eric Blake  <ebb9@byu.net>
11584
11585         tests: avoid some compiler warnings
11586         * tests/test-memchr.c (main): Pass NULL indirectly.
11587         * tests/test-closein.c (main): Avoid unused variable.
11588
11589 2008-09-15  Bruno Haible  <bruno@clisp.org>
11590
11591         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
11592         are missing on OpenBSD 4.0 individually.
11593         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11594
11595 2008-09-15  Bruno Haible  <bruno@clisp.org>
11596
11597         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
11598         * doc/posix-functions/strerror.texi: Mention also Cygwin.
11599         * doc/posix-functions/perror.texi: Likewise.
11600         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
11601         is missing.
11602         Reported by Eric Blake.
11603
11604         * lib/errno.in.h: Use replacement values >= 2000.
11605         Reported by Eric Blake.
11606
11607 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11608
11609         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
11610         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
11611         limit.
11612         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
11613         compareseq was aborted.
11614
11615 2008-09-14  Bruno Haible  <bruno@clisp.org>
11616
11617         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
11618         yvec_edit_count.
11619         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
11620         (fstrcmp_bounded): Simplify result computation accordingly.
11621
11622 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11623
11624         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
11625         (fstrcmp): Define in terms of fstrcmp_bounded.
11626         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
11627         lower_bound argument.
11628         Return quickly if the result is certainly < lower_bound.
11629         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
11630
11631 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11632
11633         * lib/diffseq.h (EARLY_ABORT): New macro.
11634         (compareseq): Change return type to bool. Return true when EARLY_ABORT
11635         evaluates to true.
11636
11637 2008-09-14  Bruno Haible  <bruno@clisp.org>
11638
11639         * modules/perror-tests: New file.
11640         * tests/test-perror.sh: New file.
11641         * tests/test-perror.c: New file.
11642
11643         New module 'perror'.
11644         * lib/stdio.in.h (perror): New declaration.
11645         * lib/perror.c: New file.
11646         * m4/perror.m4: New file.
11647         * modules/perror: New file.
11648         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
11649         * doc/posix-functions/perror.texi: Mention the perror module.
11650         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
11651         REPLACE_PERROR.
11652         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
11653         REPLACE_PERROR.
11654
11655 2008-09-14  Bruno Haible  <bruno@clisp.org>
11656
11657         * modules/stdio (Makefile.am): Reorder to match the order in
11658         lib/stdio.in.h.
11659         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11660
11661 2008-09-13  Bruno Haible  <bruno@clisp.org>
11662
11663         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
11664
11665 2008-09-13  Bruno Haible  <bruno@clisp.org>
11666
11667         Extend strerror to cover the added errno values.
11668         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
11669         (rpl_strerror): Provide error messages for the added errno values and
11670         for the WSA* values.
11671         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
11672         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
11673         strerror.
11674         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
11675         * modules/strerror (Depends-on): Add errno.
11676         * doc/posix-functions/strerror.texi: Document the change.
11677         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
11678         and EOVERFLOW.
11679
11680 2008-09-13  Bruno Haible  <bruno@clisp.org>
11681
11682         * modules/EOVERFLOW: Remove file.
11683         * m4/eoverflow.m4: Remove file.
11684         * modules/EOVERFLOW-tests: Remove file.
11685         * tests/test-EOVERFLOW.c: Remove file.
11686         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
11687         * modules/ftell (Depends-on): Likewise.
11688         * modules/getdelim (Depends-on): Likewise.
11689         * modules/getugroups (Depends-on): Likewise.
11690         * modules/poll (Depends-on): Likewise.
11691         * modules/snprintf (Depends-on): Likewise.
11692         * modules/sprintf-posix (Depends-on): Likewise.
11693         * modules/vasnprintf (Depends-on): Likewise.
11694         * modules/vasprintf (Depends-on): Likewise.
11695         * modules/vfprintf-posix (Depends-on): Likewise.
11696         * modules/vsnprintf (Depends-on): Likewise.
11697         * modules/vsprintf-posix (Depends-on): Likewise.
11698         * modules/xvasprintf (Depends-on): Likewise.
11699         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11700         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
11701         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
11702         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
11703         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11704         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
11705         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
11706         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
11707         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11708         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
11709         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
11710         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
11711         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11712         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
11713         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
11714         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
11715         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11716         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
11717         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
11718         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
11719         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11720         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
11721         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
11722         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
11723         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
11724         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11725         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
11726         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
11727         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
11728         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
11729         * MODULES.html.sh: Remove EOVERFLOW.
11730         * NEWS: Mention the change.
11731
11732 2008-09-13  Bruno Haible  <bruno@clisp.org>
11733
11734         * modules/errno-tests: New file.
11735         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
11736
11737         * lib/errno.in.h: New file.
11738         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
11739         * modules/errno: New file.
11740         * doc/posix-headers/errno.texi: Update documentation.
11741         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
11742
11743 2008-09-13  Bruno Haible  <bruno@clisp.org>
11744
11745         * tests/test-poll.c: Use #if for native Windows, rather than testing
11746         __MSVCRT__.
11747
11748 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11749             Bruno Haible  <bruno@clisp.org>
11750
11751         * lib/glob.c: Don't include <pwd.h> on native Windows.
11752         (WINDOWS32): New macro.
11753         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
11754
11755 2008-09-13  Bruno Haible  <bruno@clisp.org>
11756
11757         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
11758         (ETIMEDOUT): Remove macro.
11759         (glthread_cond_timedwait_multithreaded): New declaration.
11760         (glthread_cond_timedwait): Use it.
11761         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
11762         (glthread_cond_timedwait_multithreaded): New function.
11763
11764 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
11765
11766         * modules/poll-tests: Do not check for io.h.
11767         * tests/test-poll.c: Check for __MSVCRT__ instead.
11768
11769 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
11770
11771         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
11772         * modules/poll-tests: Add inet_pton, stdbool, sockets.
11773         * tests/test-poll.c: Use them.  Use _pipe on Windows.
11774
11775 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
11776
11777         * modules/poll-tests: New.
11778         * tests/test-poll.c: New.
11779
11780 2008-09-12  Eric Blake  <ebb9@byu.net>
11781
11782         frexp: test for NetBSD failure on -0.0
11783         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
11784         not all, bugs from NetBSD 3.0 have been fixed.
11785         * doc/posix-functions/frexp.texi (frexp): Document bug.
11786         Reported by Thomas Klausner.
11787
11788         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
11789         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
11790         literal -0.0.
11791         Reported by Jonathan C. Patschke <jp@centtech.com>.
11792
11793 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11794
11795         * lib/glthread/cond.h: Use dummy implementation also if
11796         USE_WIN32_THREADS.
11797
11798 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11799
11800         * modules/fnmatch-posix (License): Change to LGPLv2+.
11801         * modules/fnmatch-gnu (License): Likewise.
11802
11803 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11804
11805         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
11806
11807 2008-09-11  Jim Meyering  <meyering@redhat.com>
11808
11809         * users.txt: Add gtk-vnc.
11810
11811 2008-09-08  Simon Josefsson  <simon@josefsson.org>
11812
11813         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
11814         rotate amounts.
11815
11816         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
11817         required for 16-bit and 8-bit rotates.
11818         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
11819         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
11820         UINT8_MAX instead of hard-coded constants.
11821         Suggested by Paul Eggert.
11822
11823 2008-09-07  Bruno Haible  <bruno@clisp.org>
11824
11825         * tests/test-striconveh.c (main): Check behaviour when converting from
11826         UTF-7.
11827
11828         Make striconveh work better with stateful encodings.
11829         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
11830         that iconv does not increment the inptr when returning -1/EINVAL.
11831
11832 2008-09-07  Bruno Haible  <bruno@clisp.org>
11833
11834         * build-aux/config.rpath: Update according to libtool-2.2.6.
11835         * build-aux/config.libpath: Likewise.
11836
11837 2008-09-06  Bruno Haible  <bruno@clisp.org>
11838
11839         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
11840         * lib/freadptr.c (freadptr): Likewise.
11841         * lib/freadseek.c (freadptrinc): Likewise.
11842         Reported by Simon Josefsson.
11843
11844 2008-09-06  Bruno Haible  <bruno@clisp.org>
11845
11846         * modules/freadptr (License): Change to LGPLv2+.
11847         * modules/freadseek (License): Likewise.
11848         Suggested by Eric Blake.
11849
11850         * modules/memchr2 (License): Change to LGPLv2+.
11851         Approved by Eric Blake.
11852
11853 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11854             Bruno Haible  <bruno@clisp.org>
11855
11856         Make gnulib-tool work with native 'sed' on AIX.
11857         * gnulib-tool (sed_noop): New variable.
11858         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
11859         func_add_or_update, func_create_testdir): Use it to initialize sed
11860         script variables.
11861         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11862
11863 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
11864             Bruno Haible  <bruno@clisp.org>
11865
11866         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
11867         also works after #include directives.
11868
11869 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
11870
11871         getdate.y: reject an out-of-range timezone value
11872         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
11873         the range [-24...+24].  When specified with only one or two digits,
11874         * tests/test-getdate.c: Tests for the fix.
11875         * doc/getdate.texi: Document this change.
11876
11877 2008-09-03  Bruno Haible  <bruno@clisp.org>
11878
11879         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
11880
11881 2008-09-02  Simon Josefsson  <simon@josefsson.org>
11882
11883         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
11884         <bruce.korb@gmail.com> with ideas from Ben Pfaff
11885         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
11886         Blake <ebb9@byu.net>.
11887
11888         * tests/test-bitrotate.c: Add more test vectors.
11889
11890 2008-09-02  Eric Blake  <ebb9@byu.net>
11891
11892         vasnprintf-posix: handle large precision via %.*d
11893         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
11894         when handling it ourselves.
11895         * tests/test-vasnprintf-posix.c (test_function): Add test.
11896         * tests/test-snprintf-posix.h (test_function): Likewise.
11897         * tests/test-sprintf-posix.h (test_function): Likewise.
11898         * tests/test-vasprintf-posix.c (test_function): Likewise.
11899         Reported by Alain Guibert.
11900
11901 2008-09-01  Eric Blake  <ebb9@byu.net>
11902
11903         c-stack: make configure-time check more robust
11904         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
11905         successful sigaction call.
11906         Reported by Tom G. Christensen.
11907
11908 2008-09-01  Bruno Haible  <bruno@clisp.org>
11909
11910         New module 'findprog-lgpl'.
11911         * modules/findprog-lgpl: New file.
11912         * lib/findprog-lgpl.c: New file.
11913         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
11914         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
11915         to decide whether to use strdup or xstrdup, concatenated_filename or
11916         xconcatenated_filename.
11917
11918 2008-09-01  Bruno Haible  <bruno@clisp.org>
11919
11920         Split module 'concat-filename' into 'concat-filename' (LGPL) and
11921         'xconcat-filename' (GPL).
11922         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
11923         (License): Change to LGPLv2+.
11924         * modules/xconcat-filename: New file.
11925         * lib/concat-filename.h (concatenated_filename): Change specification.
11926         (xconcatenated_filename): New declaration.
11927         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
11928         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
11929         memory situations.
11930         * lib/xconcat-filename.c: New file.
11931         * NEWS: Mention the change.
11932         * lib/findprog.c: Include concat-filename.h, not filename.h.
11933         (find_in_path): Use xconcatenated_filename instead of
11934         concatenated_filename.
11935         * lib/javacomp.c: Include concat-filename.h, not filename.h.
11936         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
11937         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
11938         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
11939         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
11940         instead of concatenated_filename.
11941         * lib/javaexec.c: Include concat-filename.h, not filename.h.
11942         (execute_java_class): Use xconcatenated_filename instead of
11943         concatenated_filename.
11944         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
11945         * modules/javacomp (Depends-on): Likewise.
11946         * modules/javaexec (Depends-on): Likewise.
11947
11948 2008-09-01  Bruno Haible  <bruno@clisp.org>
11949
11950         Split module 'filename' into 'filename' and 'concat-filename'.
11951         * modules/filename: Keep only lib/filename.h.
11952         (License): Change to LGPLv2+.
11953         * modules/concat-filename: New file, extracted from modules/filename.
11954         * lib/filename.h (concatenated_filename): Remove declaration.
11955         * lib/concat-filename.h: New file, extracted from lib/filename.h.
11956         * lib/concat-filename.c: Include concat-filename.h.
11957         * NEWS: Mention the change.
11958
11959 2008-09-01  Simon Josefsson  <simon@josefsson.org>
11960
11961         * lib/bitrotate.h (rotl8, rotr8): Add.
11962
11963         * modules/bitrotate (configure.ac): Need
11964         AC_REQUIRE([AC_C_INLINE]).
11965         (Description): Mention stdint.h.  Reported by Bruno Haible
11966         <bruno@clisp.org>.
11967
11968         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
11969         Paolo Bonzini <bonzini@gnu.org>.
11970
11971 2008-08-31  Bruno Haible  <bruno@clisp.org>
11972
11973         Assume Solaris specific bi-arch conventions on Solaris systems.
11974         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
11975         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
11976         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
11977         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
11978         like acl_libdirstem.
11979         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
11980         acl_libdirstem.
11981         * NEWS: Mention the change.
11982         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
11983
11984 2008-08-31  Jim Meyering  <meyering@redhat.com>
11985
11986         * lib/strftime.h: Add comments describing the two added arguments.
11987
11988         remove duplicate #include directives
11989         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
11990         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
11991
11992 2008-08-31  Bruno Haible  <bruno@clisp.org>
11993
11994         New module 'sigpipe-die'.
11995         * modules/sigpipe-die: New file.
11996         * lib/sigpipe-die.h: New file.
11997         * lib/sigpipe-die.c: New file.
11998         * MODULES.html.sh (Signal handling): Add sigpipe-die.
11999
12000 2008-08-31  Bruno Haible  <bruno@clisp.org>
12001
12002         Don't override previously installed signal handlers.
12003         * lib/fatal-signal.c (saved_sigactions): New variable.
12004         (uninstall_handlers): Reset the signal to the saved handler, not
12005         to SIG_DFL (except when ignored).
12006         (install_handlers): Save the previous handlers.
12007
12008 2008-08-30  Bruno Haible  <bruno@clisp.org>
12009
12010         * gnulib-tool (func_reset_sigpipe): New function.
12011         (func_get_automake_snippet, func_modules_transitive_closure,
12012         func_import): Invoke it before a join command that reads from stdin,
12013         to avoid "echo: write error: Broken pipe" error messages on stderr.
12014         Reported by Sam Steingold <sds@gnu.org>.
12015
12016 2008-08-30  Bruno Haible  <bruno@clisp.org>
12017
12018         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
12019         Code copied from m4/open.m4.
12020         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
12021         access and the filename ends in a slash. Code copied from lib/open.c.
12022         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
12023         * tests/test-fopen.c (main): Check against bug with trailing slash.
12024
12025 2008-08-29  Bruno Haible  <bruno@clisp.org>
12026
12027         Avoid some "gcc -pedantic" warnings.
12028         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
12029         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
12030         * lib/dirent.in.h: Likewise.
12031         * lib/fcntl.in.h: Likewise.
12032         * lib/float.in.h: Likewise.
12033         * lib/iconv.in.h: Likewise.
12034         * lib/inttypes.in.h: Likewise.
12035         * lib/locale.in.h: Likewise.
12036         * lib/math.in.h: Likewise.
12037         * lib/netinet_in.in.h: Likewise.
12038         * lib/search.in.h: Likewise.
12039         * lib/signal.in.h: Likewise.
12040         * lib/stdarg.in.h: Likewise.
12041         * lib/stdint.in.h: Likewise.
12042         * lib/stdio.in.h: Likewise.
12043         * lib/stdlib.in.h: Likewise.
12044         * lib/string.in.h: Likewise.
12045         * lib/strings.in.h: Likewise.
12046         * lib/sys_select.in.h: Likewise.
12047         * lib/sys_socket.in.h: Likewise.
12048         * lib/sys_stat.in.h: Likewise.
12049         * lib/sys_time.in.h: Likewise.
12050         * lib/sysexits.in.h: Likewise.
12051         * lib/time.in.h: Likewise.
12052         * lib/unistd.in.h: Likewise.
12053         * lib/wchar.in.h: Likewise.
12054         * lib/wctype.in.h: Likewise.
12055         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
12056         * modules/fchdir (Makefile.am): Likewise.
12057         * modules/fcntl (Makefile.am): Likewise.
12058         * modules/float (Makefile.am): Likewise.
12059         * modules/iconv_open (Makefile.am): Likewise.
12060         * modules/inttypes (Makefile.am): Likewise.
12061         * modules/locale (Makefile.am): Likewise.
12062         * modules/math (Makefile.am): Likewise.
12063         * modules/netinet_in (Makefile.am): Likewise.
12064         * modules/search (Makefile.am): Likewise.
12065         * modules/signal (Makefile.am): Likewise.
12066         * modules/stdarg (Makefile.am): Likewise.
12067         * modules/stdint (Makefile.am): Likewise.
12068         * modules/stdio (Makefile.am): Likewise.
12069         * modules/stdlib (Makefile.am): Likewise.
12070         * modules/string (Makefile.am): Likewise.
12071         * modules/strings (Makefile.am): Likewise.
12072         * modules/sys_select (Makefile.am): Likewise.
12073         * modules/sys_socket (Makefile.am): Likewise.
12074         * modules/sys_stat (Makefile.am): Likewise.
12075         * modules/sys_time (Makefile.am): Likewise.
12076         * modules/sysexits (Makefile.am): Likewise.
12077         * modules/time (Makefile.am): Likewise.
12078         * modules/unistd (Makefile.am): Likewise.
12079         * modules/wchar (Makefile.am): Likewise.
12080         * modules/wctype (Makefile.am): Likewise.
12081         Reported by Reuben Thomas <rrt@sc3d.org>.
12082
12083 2008-08-29  Bruno Haible  <bruno@clisp.org>
12084
12085         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
12086         any more.
12087
12088 2008-08-29  Simon Josefsson  <simon@josefsson.org>
12089
12090         * MODULES.html.sh (Misc): Add bitrotate.
12091
12092         * modules/bitrotate: New file.
12093
12094         * lib/bitrotate.h: New file.
12095
12096         * modules/bitrotate-tests: New file.
12097
12098         * tests/test-bitrotate.c: New file.
12099
12100         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
12101         on the bitrotate module.
12102
12103         * lib/arctwo.c: Use new bitrotate module.
12104
12105 2008-08-29  Jim Meyering  <meyering@redhat.com>
12106
12107         bootstrap: merge changes from coreutils
12108         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
12109         of copied files.  Remove a kludge, now that this is fixed.
12110         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
12111         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
12112         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
12113
12114 2008-08-29  Bruno Haible  <bruno@clisp.org>
12115
12116         * MODULES.html.sh: Remove --cvs-urls option.
12117
12118 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
12119
12120         maint.mk: adjust to file name change
12121         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
12122
12123 2008-08-28  Jim Meyering  <meyering@redhat.com>
12124
12125         * modules/getndelim2 (License): Relicense to LGPLv2+.
12126         Approved by Richard Stallman for the version of 1995, and by
12127         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
12128
12129 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
12130
12131         * lib/getdelim.c (flockfile, funlockfile): Make all of them
12132         dummy if one is not available.  Do not touch them if
12133         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
12134         (getc_maybe_unlocked): New.
12135         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
12136
12137 2008-08-26  Eric Blake  <ebb9@byu.net>
12138
12139         doc/INSTALL: resync from autoconf
12140         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
12141         (INSTALL_PRELUDE): Delete; this is done more efficiently by
12142         moving...
12143         * install.texi [!autoconf]: ...here.  Resync from autoconf.
12144         * INSTALL: Regenerate.
12145         * INSTALL.ISO: New file.
12146         * INSTALL.UTF-8: Likewise.
12147
12148 2008-08-26  Jim Meyering  <meyering@redhat.com>
12149
12150         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
12151         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
12152         these definitions conditional, so that they may be overridden, too.
12153
12154 2008-08-26  Bruno Haible  <bruno@clisp.org>
12155
12156         Generate INSTALL file variants with prettier quotes.
12157         * doc/Makefile (INSTALL_PRELUDE): New macro.
12158         (INSTALL): Use it.
12159         (INSTALL.ISO, INSTALL.UTF-8): New rules.
12160
12161 2008-08-26  Bruno Haible  <bruno@clisp.org>
12162
12163         Run makeinfo in an English locale.
12164         * doc/Makefile (MAKEINFO): New variable.
12165
12166 2008-08-26  Bruno Haible  <bruno@clisp.org>
12167
12168         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
12169         Suggested by Eric Blake.
12170
12171 2008-08-25  Bruno Haible  <bruno@clisp.org>
12172
12173         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
12174
12175 2008-08-25  Eric Blake  <ebb9@byu.net>
12176
12177         c-stack: test that stack overflow can be caught
12178         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
12179         that platform allows handling stack overflow; at least OS/2 EMX
12180         has sigaltstack, but crashes before transferring control to
12181         handler on stack overflow.
12182         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
12183         check for HAVE_STACK_OVERFLOW_HANDLING.
12184         Reported by Elbert Pol.
12185
12186 2008-08-25  Bruno Haible  <bruno@clisp.org>
12187
12188         * doc/posix-functions/strftime.texi: Fix description of strftime
12189         module.
12190
12191 2008-08-24  Bruno Haible  <bruno@clisp.org>
12192
12193         * tests/uniwidth/test-uc_width2.c: New file.
12194         * tests/uniwidth/test-uc_width2.sh: New file.
12195         * modules/uniwidth/width-tests (Files): Add the new files.
12196         (TESTS): Add uniwidth/test-uc_width2.sh.
12197         (TESTS_ENVIRONMENT): New variable.
12198         (check_PROGRAMS): Add test-uc_width2.
12199         (test_uc_width2_SOURCES): New variable.
12200
12201         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
12202         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
12203         not 0x00AB.
12204         Reported by Alexander V. Lukyanov <lav@netis.ru>.
12205
12206 2008-08-22  Eric Blake  <ebb9@byu.net>
12207
12208         test-lock, test-tls: mention why a test is skipped
12209         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
12210         skipped.
12211         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
12212
12213         count-one-bits: relax license
12214         * modules/count-one-bits (License): Relicense to LGPLv2+.
12215         Suggested by Ludovic Courtès, approved by Ben Pfaff.
12216
12217 2008-08-22  Andreas Schwab  <schwab@suse.de>
12218
12219         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
12220         Remove spurious space in assignment.
12221
12222 2008-08-21  Simon Josefsson  <simon@josefsson.org>
12223
12224         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
12225         Paul Eggert <eggert@CS.UCLA.EDU>.
12226
12227 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
12228
12229         * modules/gettext: Add m4/threadlib.m4.
12230
12231 2008-08-19  Eric Blake  <ebb9@byu.net>
12232
12233         test-c-stack: fix compilation failure on FreeBSD 5.0
12234         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
12235         headers before <sys/resource.h>.
12236         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
12237         the bug.
12238         Reported by Nelson H. F. Beebe.
12239
12240         strverscmp: migrate from "strverscmp.h" to <string.h>
12241         * modules/string (Makefile.am): Add new hooks.
12242         * modules/strverscmp (Files): Remove strverscmp.h.
12243         (Depends-on): Add string.
12244         (configure.ac): Add indicator.
12245         (Include): Mention new header.
12246         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
12247         defaults.
12248         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
12249         results.
12250         * lib/strverscmp.h: Delete.
12251         * lib/string.in.h (strverscmp): Provide declaration, when needed.
12252         * tests/test-strverscmp.c (includes): Adjust client.
12253         * lib/check-version.c (includes): Likewise.
12254         * NEWS: Document the change.
12255
12256         strverscmp: add unit test
12257         * modules/strverscmp-tests: New file.
12258         * tests/test-strverscmp.c: Likewise.
12259
12260 2008-08-19  Simon Josefsson  <simon@josefsson.org>
12261
12262         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
12263         regarding Windows crypto stuff, from Mono.
12264
12265 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
12266
12267         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
12268         if present, for intel RND.  Return error on failures.
12269
12270 2008-08-18  Ben Pfaff  <blp@gnu.org>
12271
12272         gitlog-to-changelog: give better diagnostic for failed pipe-open
12273         * build-aux/gitlog-to-changelog: Improve error message: suggest
12274         that the version of Git may be too old.
12275
12276 2008-08-18  Simon Josefsson  <simon@josefsson.org>
12277
12278         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
12279         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
12280
12281 2008-08-18  Bruno Haible  <bruno@clisp.org>
12282
12283         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
12284         pthread_in_use().
12285
12286 2008-08-18  Bruno Haible  <bruno@clisp.org>
12287
12288         * lib/glthread/threadlib.c: Include <pthread.h>.
12289
12290 2008-08-18  Bruno Haible  <bruno@clisp.org>
12291
12292         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
12293         glthread_recursive_lock_* macros.
12294         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
12295         Fix syntax error.
12296
12297 2008-08-18  Bruno Haible  <bruno@clisp.org>
12298
12299         * lib/glthread/thread.c: Avoid forcing a context switch right after
12300         thread creation.
12301
12302 2008-08-17  Bruno Haible  <bruno@clisp.org>
12303
12304         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
12305         * lib/glthread/thread.h: Provide Win32 specific implementation.
12306         * modules/thread (Files): Add lib/glthread/thread.c.
12307         (Depends-on): Add lock.
12308         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
12309
12310 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12311
12312         New module 'yield'.
12313         * modules/yield: New file.
12314         * lib/glthread/yield.h: New file.
12315         * m4/yield.m4: New file.
12316         * MODULES.html.sh (Multithreading): Add yield.
12317
12318 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12319
12320         New module 'thread'.
12321         * modules/thread: New file.
12322         * lib/glthread/thread.h: New file.
12323         * m4/thread.m4: New file.
12324         * MODULES.html.sh (Multithreading): Add thread.
12325
12326 2008-08-17  Bruno Haible  <bruno@clisp.org>
12327
12328         * lib/glthread/lock.h: Include <stdlib.h> always.
12329         * lib/glthread/tls.h: Likewise.
12330         * lib/glthread/cond.h: Likewise.
12331
12332 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12333
12334         New module 'cond'.
12335         * modules/cond: New file.
12336         * lib/glthread/cond.h: New file.
12337         * lib/glthread/cond.c: New file.
12338         * m4/cond.m4: New file.
12339         * MODULES.html.sh (Multithreading): Add cond.
12340
12341 2008-08-16  Eric Blake  <ebb9@byu.net>
12342
12343         c-stack: fix regression on Irix 5.3 from 2008-06-21
12344         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
12345         sa_sigaction...
12346         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
12347         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
12348         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
12349         * modules/signal (Makefile.am): Use the value.
12350         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
12351         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
12352         * doc/posix-headers/signal.texi (signal.h): Document this
12353         portability issue.
12354         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
12355         Reported by Tom G. Christensen.
12356
12357 2008-08-17  Bruno Haible  <bruno@clisp.org>
12358
12359         New module 'threadlib'.
12360         * modules/threadlib: New file.
12361         * lib/glthread/threadlib.c: New file, extracted from
12362         lib/glthread/lock.c.
12363         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
12364         functions.
12365         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
12366         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
12367         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
12368         macros.
12369         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
12370         (gl_DISABLE_THREADS): Remove macro.
12371         * modules/lock (Files): Remove build-aux/config.rpath.
12372         (Depends-on): Remove havelib. Add threadlib.
12373         (configure.ac-early): Remove section.
12374         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
12375         * modules/tls (Depends-on): Remove lock. Add threadlib.
12376         (Link): New section, copied from threadlib.
12377         * MODULES.html.sh (Multithreading): Add threadlib.
12378
12379 2008-08-14  Bruno Haible  <bruno@clisp.org>
12380
12381         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
12382         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
12383         glthread_rwlock_unlock, glthread_rwlock_destroy,
12384         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
12385         glthread_recursive_lock_destroy): Define as macros always.
12386         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
12387         glthread_lock_lock.
12388         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
12389         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
12390         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
12391         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
12392         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
12393         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
12394         (glthread_recursive_lock_lock_func): Renamed from
12395         glthread_recursive_lock_lock.
12396         (glthread_recursive_lock_unlock_func): Renamed from
12397         glthread_recursive_lock_unlock.
12398         (glthread_recursive_lock_destroy_func): Renamed from
12399         glthread_recursive_lock_destroy.
12400
12401 2008-08-14  Bruno Haible  <bruno@clisp.org>
12402
12403         * lib/glthread/lock.h: Renamed from lib/lock.h.
12404         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
12405         * lib/glthread/tls.h: Renamed from lib/tls.h.
12406         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
12407         * lib/fstrcmp.c: Update includes.
12408         * lib/strsignal.c: Update includes.
12409         * modules/lock (Files, Makefile.am): Update.
12410         (Include): Change to "glthread/lock.h".
12411         * modules/tls (Files, Makefile.am): Update.
12412         (Include): Change to "glthread/tls.h".
12413         * tests/test-lock.c: Update includes.
12414         * tests/test-tls.c: Update includes.
12415         * NEWS: Mention the renamed header files.
12416
12417 2008-08-11  Jim Meyering  <meyering@redhat.com>
12418
12419         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
12420
12421 2008-08-11  Eric Blake  <ebb9@byu.net>
12422
12423         test-c-stack: avoid C99-ism
12424         * tests/test-c-stack.c (main): Fix whitespace, move declaration
12425         before statement.
12426         Reported by Alain Guibert.
12427
12428 2008-08-10  Jim Meyering  <meyering@redhat.com>
12429
12430         ensure that return value of uinttostr et al are not ignored
12431         * lib/inttostr.h (__GNUC_PREREQ): Define.
12432         (__attribute_warn_unused_result__): Define.
12433         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
12434
12435 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
12436
12437         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
12438         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
12439
12440 2008-08-07  Jim Meyering  <meyering@redhat.com>
12441
12442         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
12443
12444         * modules/mkstemp (License): Relicense under LGPLv2+.
12445         * modules/tempname (License): Likewise.
12446
12447 2008-08-06  Bruno Haible  <bruno@clisp.org>
12448
12449         * lib/poll.c (poll): Further micro-optimization.
12450
12451 2008-08-06  Jim Meyering  <meyering@redhat.com>
12452
12453         inet_pton.c: use locale-independent tolower
12454         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
12455         (inet_pton6): Use c_tolower rather than tolower.
12456         * modules/inet_pton (Depends-on): Add c-ctype.
12457
12458 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
12459
12460         * lib/poll.c (poll): Avoid division when timeout is 0, cache
12461         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
12462
12463 2008-08-06  Jim Meyering  <meyering@redhat.com>
12464
12465         * modules/inet_pton (License): Relicense under LGPLv2+.
12466
12467 2008-08-03  Bruno Haible  <bruno@clisp.org>
12468
12469         Additional non-aborting API for lock and tls.
12470         * lib/lock.h: Include <errno.h>.
12471         (glthread_lock_init): New macro/function.
12472         (gl_lock_init): Define as wrapper around glthread_lock_init.
12473         (glthread_lock_lock): New macro/function.
12474         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
12475         (glthread_lock_unlock): New macro/function.
12476         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
12477         (glthread_lock_destroy): New macro/function.
12478         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
12479         (glthread_rwlock_init): New macro/function.
12480         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
12481         (glthread_rwlock_rdlock): New macro/function.
12482         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
12483         (glthread_rwlock_wrlock): New macro/function.
12484         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
12485         (glthread_rwlock_unlock): New macro/function.
12486         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
12487         (glthread_rwlock_destroy): New macro/function.
12488         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
12489         (glthread_recursive_lock_init): New macro/function.
12490         (gl_recursive_lock_init): Define as wrapper around
12491         glthread_recursive_lock_init.
12492         (glthread_recursive_lock_lock): New macro/function.
12493         (gl_recursive_lock_lock): Define as wrapper around
12494         glthread_recursive_lock_lock.
12495         (glthread_recursive_lock_unlock): New macro/function.
12496         (gl_recursive_lock_unlock): Define as wrapper around
12497         glthread_recursive_lock_unlock.
12498         (glthread_recursive_lock_destroy): New macro/function.
12499         (gl_recursive_lock_destroy): Define as wrapper around
12500         glthread_recursive_lock_destroy.
12501         (glthread_once): New macro/function.
12502         (gl_once): Define as wrapper around glthread_once.
12503         Update function declarations.
12504         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
12505         glthread_rwlock_init. Return error code.
12506         (glthread_rwlock_rdlock_multithreaded): Renamed from
12507         glthread_rwlock_rdlock. Return error code.
12508         (glthread_rwlock_wrlock_multithreaded): Renamed from
12509         glthread_rwlock_wrlock. Return error code.
12510         (glthread_rwlock_unlock_multithreaded): Renamed from
12511         glthread_rwlock_unlock. Return error code.
12512         (glthread_rwlock_destroy_multithreaded): Renamed from
12513         glthread_rwlock_destroy. Return error code.
12514         (glthread_recursive_lock_init_multithreaded): Renamed from
12515         glthread_recursive_lock_init. Return error code.
12516         (glthread_recursive_lock_lock_multithreaded): Renamed from
12517         glthread_recursive_lock_lock. Return error code.
12518         (glthread_recursive_lock_unlock_multithreaded): Renamed from
12519         glthread_recursive_lock_unlock. Return error code.
12520         (glthread_recursive_lock_destroy_multithreaded): Renamed from
12521         glthread_recursive_lock_destroy. Return error code.
12522         (glthread_once_call): Make static.
12523         (glthread_once_multithreaded): Renamed from glthread_once.
12524         * lib/tls.h: Include <errno.h>.
12525         (glthread_tls_key_init): New macro/function.
12526         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
12527         (glthread_tls_set): New macro/function.
12528         (gl_tls_set): Define as wrapper around glthread_tls_set.
12529         (glthread_tls_key_destroy): New macro/function.
12530         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
12531         Update function declarations.
12532         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
12533         glthread_tls_get.
12534         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
12535
12536 2008-08-04  Eric Blake  <ebb9@byu.net>
12537
12538         gnumakefile: use space, not TAB, outside of targets
12539         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
12540
12541 2008-08-02  Jim Meyering  <meyering@redhat.com>
12542
12543         getdate.y: avoid locale-dependent date parsing failure
12544         In Turkish locales, getdate would fail to recognize keywords
12545         containing a lowercase "i".  The solution is not to rely on
12546         locale-sensitive case-conversion.
12547         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
12548         (lookup_word): Use c_toupper in place of toupper.
12549         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
12550         Reported by Vefa Bicakci <bicave@superonline.com> in
12551         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
12552         * modules/getdate (Depends-on): Add c-ctype.
12553
12554 2008-08-02  Bruno Haible  <bruno@clisp.org>
12555
12556         * gnulib-tool (func_import): When updating or creating a .gitignore
12557         file, prepend each added line with a slash, and ignore leading slashes
12558         from the existing lines.
12559         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
12560
12561 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12562
12563         Portability fix for GNU make 3.79.1.
12564         * top/GNUmakefile: Avoid 'else COND', which older GNU make
12565         versions do not understand.
12566
12567 2008-08-01  Bruno Haible  <bruno@clisp.org>
12568
12569         Work around bug of HP-UX 10.20 cc with -0.0 literal.
12570         * tests/test-isnanf.h (zero): New variable.
12571         (main): Avoid literal -0.0f.
12572         * tests/test-isnand.h (zero): New variable.
12573         (main): Avoid literal -0.0.
12574         * tests/test-isnanl.h (zero): New variable.
12575         (main): Avoid literal -0.0L.
12576         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
12577         (test_float, test_double, test_long_double): Avoid literals -0.0f,
12578         -0.0, -0.0L.
12579         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
12580         (test_signbitd): Avoid literal -0.0.
12581         (test_signbitl): Avoid literal -0.0L.
12582         * tests/test-ceilf1.c (zero): New variable.
12583         (main): Avoid literal -0.0f.
12584         * tests/test-ceill.c (zero): New variable.
12585         (main): Avoid literal -0.0L.
12586         * tests/test-floorf1.c (zero): New variable.
12587         (main): Avoid literal -0.0f.
12588         * tests/test-floorl.c (zero): New variable.
12589         (main): Avoid literal -0.0L.
12590         * tests/test-roundf1.c (zero): New variable.
12591         (main): Avoid literal -0.0f.
12592         * tests/test-round1.c (zero): New variable.
12593         (main): Avoid literal -0.0.
12594         * tests/test-roundl.c (zero): New variable.
12595         (main): Avoid literal -0.0L.
12596         * tests/test-truncf1.c (zero): New variable.
12597         (main): Avoid literal -0.0f.
12598         * tests/test-trunc1.c (zero): New variable.
12599         (main): Avoid literal -0.0.
12600         * tests/test-truncl.c (zero): New variable.
12601         (main): Avoid literal -0.0L.
12602         * tests/test-frexp.c (zero): New variable.
12603         (main): Avoid literal -0.0.
12604         * tests/test-frexpl.c (zero): New variable.
12605         (main): Avoid literal -0.0L.
12606         * tests/test-ldexpl.c (zero): New variable.
12607         (main): Avoid literal -0.0L.
12608         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
12609         (zerod, zerol): New variables.
12610         (test_function): Avoid literals -0.0, -0.0L.
12611         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
12612         (zerod, zerol): New variables.
12613         (test_function): Avoid literals -0.0, -0.0L.
12614         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
12615         (zerod, zerol): New variables.
12616         (test_function): Avoid literals -0.0, -0.0L.
12617         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
12618         (zerod, zerol): New variables.
12619         (test_function): Avoid literals -0.0, -0.0L.
12620         * tests/test-strtod.c (zero): New variable.
12621         (main): Avoid literal -0.0.
12622         Reported by Jonathan C. Patschke <jp@centtech.com>.
12623
12624 2008-07-31  Jim Meyering  <meyering@redhat.com>
12625
12626         sha256.h: correct definition of SHA224_DIGEST_SIZE
12627         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
12628         Reported by Paulie Pena IV <paulie4@gmail.com>.
12629         Define as 224 / 8, rather than as a literal.
12630         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
12631         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
12632         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
12633
12634 2008-07-31  Bruno Haible  <bruno@clisp.org>
12635
12636         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
12637         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
12638         Reported by Jonathan Patschke <jp@centtech.com>.
12639
12640 2008-07-31  Bruno Haible  <bruno@clisp.org>
12641
12642         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
12643         Reported by Paolo Bonzini <bonzini@gnu.org>.
12644
12645 2008-07-30  Eric Blake  <ebb9@byu.net>
12646
12647         test-strtod: allow compilation without -lm
12648         * tests/test-strtod.c (main): Avoid link dependence on fabs.
12649         Reported by Dennis Clarke <blastwave@gmail.com>.
12650
12651 2008-07-28  Jim Meyering  <meyering@redhat.com>
12652
12653         bootstrap: work also when there are no .po files in po/
12654         * build-aux/bootstrap (update_po_files): Complete the change
12655         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
12656
12657 2008-07-27  Jim Meyering  <meyering@redhat.com>
12658
12659         * users.txt: Add zile.
12660
12661 2008-07-26  Ben Pfaff  <blp@gnu.org>
12662
12663         Add missing dependencies on new m4/exponent[fdl].m4 files.
12664         * modules/isnanf-nolibm: Add m4/exponentf.m4.
12665         * modules/isnand-nolibm: Add m4/exponentd.m4.
12666         * modules/isnanl-nolibm: Add m4/exponentl.m4.
12667         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
12668         m4/isnan[fdl].m4, because the macros actually used moved.
12669         Reported by Jim Meyering.
12670
12671 2008-07-14  Ben Pfaff  <blp@gnu.org>
12672
12673         Add isinf module.
12674         * lib/isinf.c: New file.
12675         * lib/math.in.h: Define isinf macro if we have decided to replace
12676         it.
12677         * m4/isinf.m4: New file.
12678         * m4/math_h.m4: Initialize and substitute variables for isinf
12679         module.
12680         * modules/isinf: New file.
12681         * modules/isinf-tests: New file.
12682         * modules/math: Add substitutions for new module.
12683         * tests/test-isinf.c: New file.
12684         * doc/posix-functions/isinf.texi: Mention new module.
12685         * MODULES.html.sh: Mention new module.
12686
12687 2008-07-14  Ben Pfaff  <blp@gnu.org>
12688
12689         Factor out some macros for use by additional modules.
12690         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
12691         exponentf.m4.
12692         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
12693         exponentd.m4.
12694         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
12695         file exponentl.m4.
12696         * m4/exponentf.m4: New file.
12697         * m4/exponentd.m4: New file.
12698         * m4/exponentl.m4: New file.
12699         * modules/isnanf: Use new file m4/exponentf.m4.
12700         * modules/isnand: Use new file m4/exponentd.m4.
12701         * modules/isnanl: Use new file m4/exponentl.m4.
12702
12703 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
12704
12705         mktime.c: normalize tp->tm_isdst value to -1/0/1.
12706         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
12707         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
12708         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
12709
12710         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
12711         readlink on platforms without PATH_MAX.
12712
12713 2008-07-21  Eric Blake  <ebb9@byu.net>
12714
12715         Warn, not fail, on stale version.
12716         * top/GNUmakefile (_curr-ver): Tone down previous patch.
12717
12718         Don't allow installation with stale devel version number.
12719         * top/GNUmakefile (_is-install-target): New macro.
12720         (_curr-ver): Forbid installation with stale version number.
12721
12722 2008-07-20  Bruno Haible  <bruno@clisp.org>
12723
12724         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
12725         TESTS_ENVIRONMENT.
12726         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
12727
12728 2008-07-20  Bruno Haible  <bruno@clisp.org>
12729
12730         * lib/c-stack.h (c_stack_action): Add documentation.
12731         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
12732
12733 2008-07-20  Bruno Haible  <bruno@clisp.org>
12734
12735         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
12736         * modules/readlink (License): Likewise.
12737
12738 2008-07-17  Eric Blake  <ebb9@byu.net>
12739
12740         * modules/c-stack (Link): Fix typo.
12741
12742         Make c-stack use libsigsegv, when available.
12743         * modules/c-stack (Depends-on): Add libsigsegv.
12744         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
12745         needed.
12746         * lib/c-stack.c (SIGSTKSZ): Define fallback.
12747         (segv_handler, overflow_handler, c_stack_action)
12748         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
12749         implementation when libsigsegv is available, but only when using
12750         the library is necessary.
12751         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
12752         comment, explaining why XSI check fails on Linux.
12753         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
12754         * tests/test-c-stack2.sh: Tweak skip message.
12755         * NEWS: Document new link-time requirements.
12756
12757 2008-07-16  Eric Blake  <ebb9@byu.net>
12758
12759         c-stack: Expose false positives when not using libsigsegv.
12760         * modules/c-stack-tests (Files): Expand test.
12761         * tests/test-c-stack.c (main): Add means to conditionally trigger
12762         non-overflow SIGSEGV.
12763         * tests/test-c-stack2.sh: New file.
12764
12765 2008-07-14  Bruno Haible  <bruno@clisp.org>
12766
12767         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
12768         Reported by Eric Blake.
12769
12770 2008-07-14  Sam Steingold  <sds@gnu.org>
12771             Bruno Haible  <bruno@clisp.org>
12772
12773         New module libsigsegv.
12774         * modules/libsigsegv: New file.
12775         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
12776         modifications.
12777         * MODULES.html.sh (Signal handling): New section.
12778
12779 2008-07-14  Bruno Haible  <bruno@clisp.org>
12780
12781         * modules/unictype/ctype-* (Description): Add the word "function".
12782         Improves the resulting doc in MODULES.html.
12783
12784 2008-07-12  Ben Pfaff  <blp@gnu.org>
12785
12786         Add longlong module.
12787         * modules/longlong: New file.
12788
12789 2008-07-12  Bruno Haible  <bruno@clisp.org>
12790
12791         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
12792         to empty.
12793
12794 2008-07-10  Ben Pfaff  <blp@gnu.org>
12795
12796         Add isnan module.
12797         * doc/posix-functions/isnan.texi: Mention new module.
12798         * lib/math.in.h: Define isnan macro if we have decided to replace
12799         it.
12800         * m4/isnan.m4: New file.
12801         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
12802         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
12803         also.
12804         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
12805         redundancy.
12806         * m4/math_h.m4: Initialize and substitute variables for isnan
12807         module.
12808         * modules/isnan: New file.
12809         * modules/isnan-tests: New file.
12810         * modules/math: Add substitutions for new module.
12811         * tests/test-isnan.c: New file.
12812         * MODULES.html.sh: Mention new module.
12813
12814 2008-07-10  Ben Pfaff  <blp@gnu.org>
12815
12816         Add isnanf module.
12817         * lib/isnanf.m4: New file.
12818         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
12819         (gl_HAVE_ISNANF_IN_LIBM): New macro.
12820         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
12821         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
12822         * modules/isnanf: New file.
12823         * modules/isnanf-tests: New file.
12824         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
12825         files.
12826         * tests/test-isnanf-nolibm.c: factored most of its contents into
12827         new file tests/test-isnanf.h.
12828         * tests/test-isnanf.h: New file.
12829         * tests/test-isnanf.c: New file.
12830         * MODULES.html.sh: Mention new module.
12831         * doc/glibc-functions/isnanf.texi: Mention new module.
12832
12833 2008-07-10  Ben Pfaff  <blp@gnu.org>
12834
12835         Add isnand module.
12836         * lib/isnand.h: New file.
12837         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
12838         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
12839         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
12840         functionality also.
12841         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
12842         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
12843         (gl_HAVE_ISNAND_IN_LIBM): New macro.
12844         * modules/isnand: New file.
12845         * modules/isnand-tests: New file.
12846         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
12847         files.
12848         * tests/test-isnand-nolibm.c: factored most of its contents into
12849         new file tests/test-isnand.h.
12850         * tests/test-isnand.h: New file.
12851         * tests/test-isnand.c: New file.
12852         * MODULES.html.sh: Mention new module.
12853
12854 2008-07-10  Ben Pfaff  <blp@gnu.org>
12855
12856         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
12857         * lib/isnand.h: Rename lib/isnand-nolibm.h.
12858         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
12859         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
12860         * modules/isnanf-nolibm: Update references to renamed files.
12861         * modules/isnand-nolibm: Likewise.
12862         * modules/isnanf-nolibm-tests: Likewise.
12863         * modules/isnand-nolibm-tests: Likewise.
12864         * lib/frexp.c: Likewise.
12865         * lib/isfinite.c: Likewise.
12866         * lib/signbitd.c: Likewise.
12867         * lib/signbitf.c: Likewise.
12868         * lib/vasnprintf.c: Likewise.
12869         * tests/test-ceilf1.c: Likewise.
12870         * tests/test-ceilf2.c: Likewise.
12871         * tests/test-floorf1.c: Likewise.
12872         * tests/test-floorf2.c: Likewise.
12873         * tests/test-frexp.c: Likewise.
12874         * tests/test-round1.c: Likewise.
12875         * tests/test-round2.c: Likewise.
12876         * tests/test-roundf1.c: Likewise.
12877         * tests/test-strtod.c: Likewise.
12878         * tests/test-trunc1.c: Likewise.
12879         * tests/test-trunc2.c: Likewise.
12880         * tests/test-truncf1.c: Likewise.
12881         * tests/test-truncf2.c: Likewise.
12882         * NEWS: Mention the renamed header files.
12883
12884 2008-07-11  Jim Meyering  <meyering@redhat.com>
12885
12886         vc-list-files: make the last-resort awk code more portable
12887         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
12888         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
12889         does not support it.
12890
12891 2008-07-10  Eric Blake  <ebb9@byu.net>
12892
12893         Work with tar's bootstrap.
12894         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
12895         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
12896         an m4 comment.
12897
12898 2008-07-09  Jim Meyering  <meyering@redhat.com>
12899
12900         posix-shell.m4: fix typo that made this test malfunction
12901         * m4/posix-shell.m4: Remove capitalization in variable name.
12902
12903 2008-07-08  Bruno Haible  <bruno@clisp.org>
12904
12905         * m4/onceonly.m4: Update comments.
12906         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12907
12908 2008-07-04  Jim Meyering  <meyering@redhat.com>
12909
12910         * users.txt: Add vc-dwim.
12911         (bison, coreutils): Use the gitweb URL.
12912
12913 2008-07-03  Jim Meyering  <meyering@redhat.com>
12914
12915         * users.txt: Add libffcall.  From Sam Steingold.
12916
12917 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
12918
12919         getdate.y: do not ignore TZ with relative day, month or year offset
12920         * lib/getdate.y (get_date): Move the tz-handling block to follow the
12921         relative-date-handling, since otherwise, the latter would clobber the
12922         sole output (an updated Start value) of the tz-handling block.
12923         * tests/test-getdate.c: Tests for the fix
12924
12925 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12926
12927         Recognize 'foo_LIBRARIES += libgnu.a'.
12928         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
12929         makefile snippet has already specified an installation location,
12930         also using '+='.
12931
12932 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
12933
12934         getdate.y: factor out common actions
12935         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
12936         Use them in place of open-coded actions.
12937
12938 2008-07-01  Simon Josefsson  <simon@josefsson.org>
12939
12940         Add self-test for getdate module.
12941         * modules/getdate-tests: New file.
12942         * tests/test-getdate.c: New file.
12943
12944 2008-06-29  Bruno Haible  <bruno@clisp.org>
12945
12946         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
12947         .gitignore.
12948         Reported by Sylvain Beucler <beuc@beuc.net>.
12949
12950 2008-06-29  Bruno Haible  <bruno@clisp.org>
12951
12952         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
12953         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
12954
12955 2008-06-29  Bruno Haible  <bruno@clisp.org>
12956
12957         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
12958         EXTRA_DIST.
12959         Reported by Sylvain Beucler <beuc@beuc.net>.
12960
12961 2008-06-26  Jim Meyering  <meyering@redhat.com>
12962
12963         make several modules depend on the "open" module
12964         This provides slightly increased consistency when opening-for-write
12965         the name of a non-directory spelled with a trailing slash.
12966         * modules/chdir-safer: Likewise.
12967         * modules/chown: Likewise.
12968         * modules/clean-temp: Likewise.
12969         * modules/copy-file: Likewise.
12970         * modules/fchdir: Likewise.
12971         * modules/fcntl-safer: Likewise.
12972         * modules/pipe: Likewise.
12973         * modules/utime: Likewise.
12974         Prompted by Eric Blake and Bruno Haible.
12975
12976 2008-06-24  Andreas Schwab  <schwab@suse.de>
12977
12978         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
12979         literals can be used as initializers for global variables.
12980
12981 2008-06-23  Eric Blake  <ebb9@byu.net>
12982
12983         Make gnulib-cache.m4 easier to diff.
12984         * gnulib-tool (func_import): Allow newlines when reading cached
12985         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
12986
12987 2008-06-23  Bruno Haible  <bruno@clisp.org>
12988
12989         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
12990         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
12991         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
12992         m4/signalblocking.m4.
12993         (gl_PREREQ_SIGACTION): Don't invoke it.
12994         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
12995         gl_PREREQ_SIG_HANDLER_H.
12996         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
12997         Don't check for sigaction here.
12998
12999 2008-06-23  Bruno Haible  <bruno@clisp.org>
13000
13001         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
13002         (install_handlers): Don't set the SA_RESETHAND flag.
13003
13004 2008-06-23  Bruno Haible  <bruno@clisp.org>
13005
13006         * m4/sigaction.m4: Comment fixes.
13007         * lib/signal.in.h: Likewise.
13008
13009 2008-06-23  Eric Blake  <ebb9@byu.net>
13010
13011         Fix typo.
13012         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
13013
13014         Avoid SA_ namespace.
13015         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
13016         Reported by Ralf Wildenhues.
13017
13018         Avoid test failure due to SA_RESTORER.
13019         * tests/test-sigaction.c (SA_MASK): New macro.
13020         (main): Avoid failing due to extension flags being set.
13021         Reported by Jim Meyering.
13022
13023         Revert use of sig-handler.h in sigprocmask.c.
13024         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
13025         it requires the existence of struct sigaction.
13026         * lib/sigprocmask.c (handler_t): Restore typedef.
13027         (rpl_signal, old_handlers): Use local type.
13028
13029 2008-06-22  Bruno Haible  <bruno@clisp.org>
13030
13031         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
13032         conditionally.
13033         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13034
13035 2008-06-22  Bruno Haible  <bruno@clisp.org>
13036
13037         * doc/posix-functions/siginterrupt.texi: Move note.
13038
13039         * lib/signal.in.h (SA_RESTART): New macro.
13040         * lib/sigaction.c: Update comment.
13041
13042         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
13043
13044         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
13045         (gl_PREREQ_SIGPROCMASK): Invoke it.
13046         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
13047
13048         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
13049
13050         * lib/sigprocmask.c: Update a comment.
13051
13052 2008-06-21  Eric Blake  <ebb9@byu.net>
13053
13054         Use sigaction module rather than signal().
13055         * modules/c-stack (Depends-on): Add sigaction.
13056         * modules/fatal-signal (Depends-on): Likewise.
13057         * modules/nanosleep (Depends-on): Likewise.
13058         * modules/sigprocmask (Files): Add sig-handler.h.
13059         * modules/sigaction (Files): Likewise.
13060         * lib/sig-handler.h (get_handler): New file, suggested by Paul
13061         Eggert.
13062         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
13063         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
13064         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
13065         (init_fatal_signals): Likewise.
13066         * lib/nanosleep.c (rpl_nanosleep): Likewise.
13067         (siginterrupt): Delete fallback.
13068         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
13069         instead.
13070         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
13071         siginterrupt.
13072
13073         New module sigaction, for mingw.
13074         * modules/sigaction: New module...
13075         * modules/sigaction-tests: ...and its test.
13076         * m4/sigaction.m4: New file.
13077         * lib/sigaction.c: Likewise.
13078         * tests/test-sigaction.c: Likewise.
13079         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
13080         * modules/signal (Makefile.am): Likewise.
13081         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
13082         needed.
13083         * doc/posix-headers/signal.texi (signal.h): Mention provided
13084         types.
13085         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
13086         that sigaction is preferable.
13087         * doc/posix-functions/sigaction.texi (sigaction): Mention new
13088         module.
13089         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13090         sigaction.
13091
13092         Improve robustness of sigprocmask by overriding signal.
13093         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
13094         is in use.
13095         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
13096         (SIGKILL, SIGSTOP): Provide fallbacks.
13097         (rpl_signal): Implement.
13098         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
13099         signal can be called inside handlers.
13100
13101         Fix nanosleep module on mingw.
13102         * modules/nanosleep (Depends-on): Add sys_select.
13103         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
13104
13105         Fix licensing of sigprocmask.
13106         * modules/raise (License): Relicense as LGPL.
13107
13108 2008-06-21  Bruno Haible  <bruno@clisp.org>
13109
13110         * lib/propername.c (proper_name_utf8): Don't use the transliterated
13111         result if it contains question marks.
13112         Reported by Michael Geng <linux@michaelgeng.de>.
13113
13114 2008-06-19  Bruno Haible  <bruno@clisp.org>
13115
13116         Fix CVS-ism.
13117         * doc/gnulib.texi: Include updated-stamp.texi.
13118         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
13119         (updated-stamp.texi): New rule.
13120         (gnulib.info): Depend on it.
13121         * doc/.gitignore: Add updated-stamp.texi.
13122         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
13123
13124 2008-06-19  Bruno Haible  <bruno@clisp.org>
13125
13126         * doc/Makefile (gnulib.info): Update and simplify dependencies.
13127         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
13128
13129 2008-06-19  Eric Blake  <ebb9@byu.net>
13130
13131         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
13132         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
13133         Reported by Stepan Kasal.
13134
13135 2008-06-18  Bruno Haible  <bruno@clisp.org>
13136
13137         * lib/fatal-signal.c (init_fatal_signals): Add comment.
13138         Reported by Eric Blake.
13139
13140 2008-06-18  Eric Blake  <ebb9@byu.net>
13141
13142         Work around cygwin 1.5.25 strsignal bug.
13143         * tests/test-strsignal.c: Allow for const char *.
13144         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
13145
13146 2008-06-18  Simon Josefsson  <simon@josefsson.org>
13147
13148         * users.txt: Update URL to article and add author/date
13149         information.
13150
13151 2008-06-17  Bruno Haible  <bruno@clisp.org>
13152
13153         New macro gl_DISABLE_THREADS.
13154         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
13155         if the user did not pass --enable-threads or --disable-threads option.
13156         (gl_DISABLE_THREADS): New macro.
13157         Reported by Eric Blake <ebb9@byu.net>.
13158
13159 2008-06-17  Bruno Haible  <bruno@clisp.org>
13160
13161         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
13162         when the macro ignores it.
13163         Based on a patch by Eric Blake <ebb9@byu.net>.
13164
13165 2008-06-17  Bruno Haible  <bruno@clisp.org>
13166
13167         * modules/tls (License): Change to LGPLv2+.
13168         Reported by Eric Blake.
13169
13170 2008-06-17  Eric Blake  <ebb9@byu.net>
13171
13172         Simplify c-stack prerequisites.
13173         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
13174         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
13175         no longer requires <ucontext.h> to exist.  Optimize setrlimit
13176         check.
13177         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
13178         <sys/resource.h>.
13179
13180         Move c-stack test into testsuite.
13181         * modules/c-stack-tests: New file.
13182         * lib/c-stack.c [DEBUG]: Move test program...
13183         * tests/test-c-stack.c: ...into this new file.  Skip rather than
13184         fail test if sigaltstack is lacking.
13185         * tests/test-c-stack.sh: New driver file.
13186
13187 2008-06-16  Eric Blake  <ebb9@byu.net>
13188
13189         Use raise module consistently.
13190         * modules/fatal-signal (Depends-on): Add raise.
13191         * modules/sigprocmask (Depends-on): Likewise.
13192         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
13193         * lib/sigprocmask.c (sigprocmask): Likewise.
13194         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
13195         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
13196
13197         Fix compliance bug in sigpending.
13198         * lib/sigprocmask.c (sigpending): Return pending array via
13199         parameter, not return value.
13200
13201 2008-06-14  Eric Blake  <ebb9@byu.net>
13202
13203         Improve obstack-printf test code.
13204         * tests/test-obstack-printf.c (test_function): Fix comment, and
13205         simplify usage of obstack_* in macros.  Add a test for coverage.
13206         Reported by Bruno Haible.
13207
13208 2008-06-14  Bruno Haible  <bruno@clisp.org>
13209
13210         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
13211         array size as a constant, not as a const variable.
13212         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
13213         AC_USE_SYSTEM_EXTENSIONS.
13214         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
13215         Test whether the obstack_printf function actually exists.
13216         * modules/obstack-printf (Depends-on): Add extensions.
13217         (Include): Remove obstack.h.
13218         * modules/obstack-printf-posix (Depends-on): Add extensions.
13219         (Include): Remove obstack.h.
13220
13221 2008-06-13  Eric Blake  <ebb9@byu.net>
13222
13223         Add obstack-printf and obstack-printf-posix modules.
13224         * modules/obstack-printf: New file.
13225         * modules/obstack-printf-posix: Likewise.
13226         * MODULES.html.sh (Misc): Mention them.
13227         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
13228         Likewise.
13229         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
13230         Likewise.
13231         * modules/stdio (Makefile.am): Accomodate new modules.
13232         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
13233         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
13234         Declare.
13235         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
13236         functions.
13237         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
13238         (gl_REPLACE_OBSTACK_PRINTF): New macros
13239         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
13240         * tests/test-obstack-printf.c: New file.
13241         * modules/obstack-printf-tests: Likewise.
13242         * modules/obstack-printf-posix-tests: Likewise.
13243
13244 2008-06-11  Bruno Haible  <bruno@clisp.org>
13245
13246         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
13247         * lib/open.c: Include errno.h.
13248         (open): Fail when attempting to write to a file that has a trailing
13249         slash.
13250         * tests/test-open.c (main): Test against trailing slash bug.
13251         * doc/posix-functions/open.texi: Mention the trailing slash bug.
13252
13253 2008-06-10  Bruno Haible  <bruno@clisp.org>
13254
13255         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
13256         for $? to work inside the trap command, with various /bin/sh-s.
13257         * tests/test-vc-list-files-cvs.sh: Likewise.
13258
13259 2008-06-10  Bruno Haible  <bruno@clisp.org>
13260
13261         * lib/acl-internal.h: Don't include gettext.h here.
13262         * lib/set-mode-acl.c: Include gettext.h here.
13263         * lib/copy-acl.c: Likewise.
13264
13265 2008-06-10  Bruno Haible  <bruno@clisp.org>
13266
13267         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
13268         * lib/wait-process.c (wait_subprocess): Likewise.
13269         * lib/execute.h (execute): Add termsigp argument.
13270         * lib/execute.c (execute): Likewise.
13271         * lib/csharpcomp.c (compile_csharp_using_pnet,
13272         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
13273         * lib/csharpexec.c (execute_csharp_using_pnet,
13274         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
13275         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
13276         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
13277         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
13278         is_jikes_present): Update.
13279         * lib/javaexec.c (execute_java_class): Update.
13280         * lib/javaversion.c (execute_and_read_line): Update.
13281         * NEWS: Document the changes.
13282         Reported by Eric Blake.
13283
13284 2008-06-10  Eric Blake  <ebb9@byu.net>
13285
13286         Add missing include.
13287         * tests/test-strstr.c (includes): Add <signal.h>.
13288         * tests/test-strcasestr.c (includes): Likewise.
13289         * tests/test-memmem.c (includes): Likewise.
13290
13291 2008-06-10  Bruno Haible  <bruno@clisp.org>
13292
13293         * lib/wait-process.c (wait_subprocess): Add an assertion.
13294
13295 2008-06-10  Bruno Haible  <bruno@clisp.org>
13296
13297         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
13298
13299 2008-06-10  Bruno Haible  <bruno@clisp.org>
13300
13301         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
13302         using alarm().
13303         * tests/test-strcasestr.c (main): Likewise.
13304         * tests/test-strstr.c (main): Likewise.
13305
13306 2008-06-09  Bruno Haible  <bruno@clisp.org>
13307
13308         Work around the Solaris 10 ACE ACLs ABI change.
13309         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
13310         declare if ACL_NO_TRIVIAL is present.
13311         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
13312         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
13313         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
13314         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
13315         define if ACL_NO_TRIVIAL is present.
13316         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
13317         and use the current ABI.
13318         (file_has_acl): Use same #if condition as elsewhere.
13319         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
13320         in use, and use the current ABI.
13321         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
13322         Reported by Jim Meyering.
13323
13324 2008-06-09  Eric Blake  <ebb9@byu.net>
13325
13326         Work around environments that (stupidly) ignore SIGALRM.
13327         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
13328         before using alarm().
13329         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
13330         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
13331         Reported by Ian Beckwith <ianb@erislabs.net>.
13332
13333         Produce autobuild blurb earlier in log.
13334         * modules/autobuild (configure.ac-early): Move AB_INIT here.
13335
13336 2008-06-09  Jim Meyering  <meyering@redhat.com>
13337         and Ondřej Vašík  <ovasik@redhat.com>
13338
13339         utimens.c: correct kernel bug work-around
13340         Ondřej Vašík found that the invalid return value of 280 indicates
13341         failure, not success, and the kernel bug we're trying to work
13342         around affects not just the utimensat call, but also the fallback
13343         futimens call.
13344         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
13345         not success.
13346         [HAVE_FUTIMENS]: Use the same work-around, here.
13347
13348 2008-06-09  Jim Meyering  <meyering@redhat.com>
13349
13350         add more guards around definition of ACE_-related code
13351         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
13352         ALLOW and ACE_OWNER are also defined.
13353
13354 2008-06-08  Bruno Haible  <bruno@clisp.org>
13355
13356         * lib/acl-internal.h: Add me as co-author.
13357         * lib/file-has-acl.c: Likewise.
13358         * lib/set-mode-acl.c: Likewise.
13359         * lib/copy-acl.c: Likewise.
13360
13361 2008-06-08  Bruno Haible  <bruno@clisp.org>
13362
13363         Add support for AIX ACLs.
13364         * lib/acl-internal.h (acl_nontrivial): New declaration.
13365         * lib/file-has-acl.c (acl_nontrivial): New function.
13366         (file_has_acl): Add implementation using AIX 4 ACL API.
13367         * lib/set-mode-acl.c (qset_acl): Likewise.
13368         * lib/copy-acl.c (qcopy_acl): Likewise.
13369
13370 2008-06-08  Bruno Haible  <bruno@clisp.org>
13371
13372         Add support for HP-UX ACLs.
13373         * lib/acl-internal.h (acl_nontrivial): New declaration.
13374         * lib/file-has-acl.c (acl_nontrivial): New function.
13375         (file_has_acl): Add implementation using HP-UX 11 ACL API.
13376         * lib/set-mode-acl.c (qset_acl): Likewise.
13377         * lib/copy-acl.c (qcopy_acl): Likewise.
13378
13379 2008-06-08  Bruno Haible  <bruno@clisp.org>
13380
13381         Add support for Cygwin ACLs.
13382         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
13383         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
13384         the chmod_or_fchmod call.
13385         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
13386
13387 2008-06-08  Bruno Haible  <bruno@clisp.org>
13388
13389         Fix bug with setuid modes in Solaris 10+ code.
13390         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
13391         succeeded, when the mode contains some special bits.
13392
13393 2008-06-08  Bruno Haible  <bruno@clisp.org>
13394
13395         Add support for Solaris 7..10 ACLs.
13396         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
13397         declarations.
13398         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
13399         functions.
13400         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
13401         * lib/set-mode-acl.c (qset_acl): Likewise.
13402         * lib/copy-acl.c (qcopy_acl): Likewise.
13403
13404 2008-06-08  Bruno Haible  <bruno@clisp.org>
13405
13406         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
13407         declaration.
13408         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
13409         (acl_access_nontrivial): Remove MacOS X case.
13410         (file_has_acl): Use acl_extended_nontrivial.
13411         * lib/copy-acl.c (qcopy_acl): Likewise.
13412
13413 2008-06-08  Bruno Haible  <bruno@clisp.org>
13414
13415         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
13416
13417 2008-06-08  Jim Meyering  <meyering@redhat.com>
13418
13419         * modules/acl (Maintainer): Add Bruno Haible.
13420
13421 2008-06-07  Bruno Haible  <bruno@clisp.org>
13422
13423         Improve support for Tru64 ACLs.
13424         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
13425         ACL on OSF/1.
13426
13427 2008-06-07  Bruno Haible  <bruno@clisp.org>
13428
13429         Add support for MacOS X ACLs.
13430         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
13431         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
13432         * lib/set-mode-acl.c (qset_acl): Likewise.
13433         * lib/copy-acl.c (qcopy_acl): Likewise.
13434
13435 2008-06-07  Bruno Haible  <bruno@clisp.org>
13436
13437         Fix memory leak introduced on 2008-05-22.
13438         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
13439         use.
13440
13441 2008-06-07  Bruno Haible  <bruno@clisp.org>
13442
13443         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
13444         to construct an empty ACL.
13445
13446 2008-06-07  Bruno Haible  <bruno@clisp.org>
13447
13448         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
13449         precisely.
13450         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
13451
13452 2008-06-07  Bruno Haible  <bruno@clisp.org>
13453
13454         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
13455         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
13456
13457 2008-06-07  Bruno Haible  <bruno@clisp.org>
13458
13459         * doc/posix-functions/_setjmp.texi: Explain the use of this function
13460         regardless of POSIX.
13461         * doc/posix-functions/_longjmp.texi: Likewise.
13462         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
13463         SystemV platform in this case.
13464
13465 2008-06-06  Eric Blake  <ebb9@byu.net>
13466
13467         Document abort() bugs.
13468         * doc/posix-functions/abort.texi (abort): Mention anomalies.
13469
13470         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
13471         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
13472         sigsetjmp.
13473         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
13474         siglongjmp, but only as a macro.
13475         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
13476         is obsolete.
13477         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
13478
13479         Tweak documentation to cover cygwin argz bugs.
13480         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
13481         argz bug fix; no code change needed since no cygwin releases
13482         occurred between the last fix and the bug being tested.
13483         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
13484         module and recently fixed cygwin bugs.
13485         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
13486         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
13487         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
13488         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
13489         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
13490         Likewise.
13491         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
13492         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
13493         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
13494         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
13495         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
13496         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
13497         Likewise.
13498
13499         Avoid gcc warning on cygwin.
13500         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
13501         !ACL_NO_TRIVIAL]: Avoid unused variable.
13502
13503 2008-06-05  Eric Blake  <ebb9@byu.net>
13504
13505         Be tolerant of UNKNOWN version in gnulib-tool test dir.
13506         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
13507         git-version-gen fails to come up with a version.
13508         Reported by Simon Josefsson.
13509
13510 2008-06-05  Jim Meyering  <meyering@redhat.com>
13511             Paul Eggert  <eggert@cs.ucla.edu>
13512
13513         utimens.c: work around a probable Linux kernel bug
13514         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
13515         appears to be a kernel bug that causes utimensat to return 280
13516         instead of 0, indicating success.
13517
13518 2008-06-04  Bruno Haible  <bruno@clisp.org>
13519
13520         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
13521         2008-06-01 commit.
13522
13523 2008-06-04  Bruno Haible  <bruno@clisp.org>
13524
13525         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
13526         * lib/file-has-acl.c (acl_access_nontrivial): New function.
13527         (file_has_acl): Use it. Save errno afterwards.
13528         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
13529
13530 2008-06-03  Bruno Haible  <bruno@clisp.org>
13531
13532         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
13533         draft code. Simplify #ifs.
13534         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
13535         Put Solaris code after POSIX-draft code. Fix comments regarding
13536         Solaris 10, HP-UX. Mention Cygwin.
13537         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
13538
13539 2008-06-03  Eric Blake  <ebb9@byu.net>
13540
13541         Provide fallback for older kernels.
13542         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
13543         Provide runtime fallback if kernel lacks support.
13544         Reported by Mike Frysinger.
13545
13546 2008-06-02  Bruno Haible  <bruno@clisp.org>
13547
13548         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
13549         it exists.
13550
13551 2008-06-02  Bruno Haible  <bruno@clisp.org>
13552
13553         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
13554         * lib/copy-acl.c (qcopy_acl): Update comment.
13555
13556 2008-06-02  Bruno Haible  <bruno@clisp.org>
13557
13558         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
13559         like ACL APIs.
13560
13561 2008-06-02  Bruno Haible  <bruno@clisp.org>
13562
13563         * tests/test-file-has-acl.sh: Use different code for Cygwin.
13564         * tests/test-set-mode-acl.sh: Likewise.
13565         * tests/test-copy-acl.sh: Likewise.
13566         * tests/test-copy-file.sh: Likewise.
13567
13568 2008-06-02  Bruno Haible  <bruno@clisp.org>
13569
13570         * tests/test-file-has-acl.sh: Remove unused code.
13571
13572 2008-06-01  Bruno Haible  <bruno@clisp.org>
13573
13574         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
13575         (copy_acl): Just a wrapper around qcopy_acl that emits the error
13576         messages.
13577         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
13578
13579 2008-06-01  Bruno Haible  <bruno@clisp.org>
13580
13581         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
13582         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
13583         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
13584         APIs.
13585         * modules/acl-tests (configure.ac): Remove tests now contained in
13586         m4/acl.m4.
13587
13588 2008-06-02  Jim Meyering  <meyering@redhat.com>
13589
13590         announce-gen: use a better key-server host name
13591         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
13592         it may be more consistently reliable.  Suggested by Werner Koch
13593         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
13594
13595 2008-06-01  Bruno Haible  <bruno@clisp.org>
13596
13597         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
13598         Reported by Voroskoi Andras <voroskoi@gmail.com>.
13599
13600 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
13601
13602         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
13603
13604 2008-06-01  Bruno Haible  <bruno@clisp.org>
13605
13606         New ACL tests.
13607         * tests/test-file-has-acl.sh: New file.
13608         * tests/test-file-has-acl.c: New file.
13609         * tests/test-set-mode-acl.sh: New file.
13610         * tests/test-set-mode-acl.c: New file.
13611         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
13612         * tests/test-copy-acl.c: New file.
13613         * modules/acl-tests: New file, based on modules/copy-file-tests.
13614         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
13615         (Depends-on): Add acl-tests.
13616         (configure.ac): Remove checks.
13617         (Makefile.am): Don't create test-sameacls program here any more.
13618
13619 2008-06-01  Bruno Haible  <bruno@clisp.org>
13620
13621         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
13622         * tests/test-sameacls.c: Include progname.h.
13623         (main): Invoke set_program_name. Portability fixes for MacOS X,
13624         Solaris, HP-UX.
13625
13626 2008-06-01  Bruno Haible  <bruno@clisp.org>
13627
13628         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
13629         function.
13630         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
13631
13632 2008-06-01  Bruno Haible  <bruno@clisp.org>
13633
13634         * modules/rpmatch (Depends-on): Add strdup.
13635
13636 2008-06-01  Bruno Haible  <bruno@clisp.org>
13637
13638         * lib/pipe.c: Include unistd-safer.h.
13639         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
13640         * modules/pipe (Depends-on): Add unistd-safer.
13641
13642 2008-05-30  Simon Josefsson  <simon@josefsson.org>
13643
13644         * modules/autobuild (configure.ac): Call AB_INIT.
13645
13646 2008-05-30  Simon Josefsson  <simon@josefsson.org>
13647
13648         * tests/test-getaddrinfo.c: Don't print debug messages by default.
13649         Suggested by Bruno Haible <bruno@clisp.org>.
13650
13651 2008-05-30  Simon Josefsson  <simon@josefsson.org>
13652
13653         * tests/test-base64.c: Cast size_t to unsigned long when invoking
13654         printf.  Use %lu instead of %d.  Reported by Bruno Haible
13655         <bruno@clisp.org>.
13656
13657 2008-05-29  Eric Blake  <ebb9@byu.net>
13658
13659         Prefer new POSIX 200x interfaces over futimesat.
13660         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
13661         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
13662         when available.
13663         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
13664
13665 2008-05-28  Bruno Haible  <bruno@clisp.org>
13666
13667         * modules/stpcpy (License): Change to LGPLv2+.
13668         Requested by David Lutterkort <dlutter@redhat.com>.
13669
13670 2008-05-27  Bruno Haible  <bruno@clisp.org>
13671
13672         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
13673         current mingw.
13674         Reported by Jose E. Marchesi <jemarch@gnu.org>.
13675
13676 2008-05-27  Bruno Haible  <bruno@clisp.org>
13677
13678         * modules/iconv_open (Link): New section, from module 'iconv'.
13679         * modules/striconv (Link): Likewise.
13680         * modules/striconveh (Link): Likewise.
13681         * modules/xstriconv (Link): Likewise.
13682         * modules/unicodeio (Link): Likewise.
13683         * modules/propername (Link): Likewise.
13684         Reported by Jim Meyering.
13685
13686 2008-05-26  Jim Meyering  <meyering@redhat.com>
13687
13688         sha256: do not artificially restrict buffer length to be < 2^32
13689         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
13690         uint32_t to size_t.
13691         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
13692         to match.
13693
13694         avoid unaligned access errors, e.g., on sparc
13695         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
13696         direct access through a possibly-unaligned uint64* pointer.
13697         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
13698         direct access through a possibly-unaligned uint32* pointer.
13699         Prompted by this patch from Tom "spot" Callaway:
13700         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
13701
13702         sha512.c: fix typo in comment
13703         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
13704
13705 2008-05-25  Bruno Haible  <bruno@clisp.org>
13706
13707         * lib/set-mode-acl.c: Renamed from lib/acl.c.
13708         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
13709         (Makefile.am): Update lib_SOURCES.
13710
13711 2008-05-25  Bruno Haible  <bruno@clisp.org>
13712
13713         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
13714
13715 2008-05-25  Jim Meyering  <meyering@redhat.com>
13716
13717         useless-if-before-free: freed expr may have white-space differences
13718         * build-aux/useless-if-before-free: Recognize cases in which the
13719         freed expression differs from the tested one in embedded white
13720         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
13721         $1 was used, so we can't make any regexp shy.  Improved tests now
13722         detect this.
13723
13724         useless-if-before-free: accept white space in the expression.
13725         * build-aux/useless-if-before-free: For now, any white space
13726         in the expression must be identical in the free argument.
13727
13728         useless-if-before-free: efficiency tweak
13729         * build-aux/useless-if-before-free: Make the expression-matching
13730         regexp "shy".
13731         Make the *outer* regexp shy, not the expr-matching one.
13732
13733         update code-in-comment to accept cast of free arg
13734         * build-aux/useless-if-before-free: Update regexp.
13735
13736 2008-05-25  Bruno Haible  <bruno@clisp.org>
13737
13738         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
13739         * modules/copy-file-tests (Files, Makefile.am): Update.
13740         * tests/test-copy-file.c (func_test_copy): Update.
13741
13742 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
13743
13744         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
13745
13746 2008-05-23  Bruno Haible  <bruno@clisp.org>
13747
13748         Improve support for ACLs on OSF/1.
13749         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
13750         Remove fallback for unknown flavors of ACLs.
13751
13752 2008-05-22  Bruno Haible  <bruno@clisp.org>
13753
13754         Add support for ACLs on OSF/1.
13755         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
13756         replacements.
13757         (acl_free_text): New macro fallback.
13758         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
13759         acl_free.
13760         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
13761         acl_free_text function. Require AC_C_INLINE.
13762
13763 2008-05-22  Bruno Haible  <bruno@clisp.org>
13764
13765         Make copy_acl work on MacOS X 10.5.
13766         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
13767         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
13768         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
13769         If MODE_INSIDE_ACL, don't assume that every system has the same text
13770         representation for ACLs as FreeBSD.
13771         * lib/copy-acl.c (copy_acl): Add support for platforms with
13772         !MODE_INSIDE_ACL.
13773         * lib/file-has-acl.c (file_has_acl): Likewise.
13774         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
13775         FreeBSD, MacOS X, or IRIX, respectively.
13776
13777 2008-05-22  Bruno Haible  <bruno@clisp.org>
13778
13779         * lib/acl.h: Don't include <sys/acl.h>.
13780         (GETACLCNT): Move fallback to lib/acl-internal.h.
13781         * lib/acl-internal.h: Include <sys/acl.h> here.
13782         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
13783
13784 2008-05-22  Bruno Haible  <bruno@clisp.org>
13785
13786         Split off copy_acl function to separate file.
13787         * lib/copy-acl.c: New file, extracted from lib/acl.c.
13788         * lib/acl.c (copy_acl): Moved function to separate file.
13789         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
13790         * modules/acl (Files): Add lib/copy-acl.c.
13791         (Makefiles.am): Augment lib_SOURCES.
13792
13793 2008-05-22  Bruno Haible  <bruno@clisp.org>
13794
13795         * modules/copy-file-tests: New file.
13796         * tests/test-copy-file.sh: New file.
13797         * tests/test-copy-file.c: New file.
13798         * tests/test-copy-file-sameacls.c: New file.
13799
13800 2008-05-22  Eric Blake  <ebb9@byu.net>
13801
13802         Avoid gcc warning.
13803         * tests/test-memcmp.c (main): Pass NULL indirectly.
13804
13805 2008-05-21  Bruno Haible  <bruno@clisp.org>
13806
13807         Add reference doc about ACLs.
13808         * doc/acl-resources.txt: New file.
13809         * doc/acl-cygwin.txt: New file.
13810
13811 2008-05-21  Bruno Haible  <bruno@clisp.org>
13812
13813         Avoid one more warning from gcc.
13814         * lib/vasnprintf.c (IF_LINT): Update comments.
13815         (VASNPRINTF): Use it also for the 'prefix' array initializer.
13816
13817 2008-05-21  Jim Meyering  <meyering@redhat.com>
13818
13819         avoid a warning from gcc
13820         * lib/vasnprintf.c (IF_LINT): Define.
13821         (scale10_round_decimal_long_double):
13822         Use it to avoid a "may be used uninitialized" warning.
13823         (scale10_round_decimal_double): Likewise.
13824
13825 2008-05-21  Simon Josefsson  <simon@josefsson.org>
13826
13827         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
13828         declared.
13829
13830 2008-05-20  Bruno Haible  <bruno@clisp.org>
13831
13832         * tests/test-memcmp.c (main): Test also the sign of the result. Test
13833         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
13834
13835 2008-05-20  Simon Josefsson  <simon@josefsson.org>
13836
13837         * modules/memcmp-tests: New file.
13838         * tests/test-memcmp.c: New file.
13839
13840 2008-05-19  Bruno Haible  <bruno@clisp.org>
13841
13842         * modules/propername (Notice, configure.ac): Put quoted "..." into
13843         --keyword option.
13844         * lib/propername.h: Update comments accordingly.
13845         Reported by Eric Blake.
13846
13847 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
13848
13849         * modules/getpass-gnu (Depends-on): Add fseeko.
13850
13851 2008-05-19  Simon Josefsson  <simon@josefsson.org>
13852
13853         * modules/base64-tests: New file.
13854
13855 2008-05-19  Bo Borgerson <gigabo@gmail.com>
13856
13857         * lib/base64.c (base64_decode_ctx): If a decode context structure
13858         was passed in use it to ignore newlines.  If a context structure
13859         was _not_ passed in, continue to treat newlines as garbage (this
13860         is the historical behavior).  Formerly base64_decode.
13861         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
13862         takes a decode context structure.
13863         * lib/base64.h (base64_decode): Macro for four-argument calls.
13864         (base64_decode_alloc): Likewise.
13865         * lib/base64.c (base64_decode_ctx): If a decode context structure
13866         was passed in use it to ignore newlines.  If a context structure
13867         was _not_ passed in, continue to treat newlines as garbage (this
13868         is the historical behavior).  Formerly base64_decode.
13869         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
13870         takes a decode context structure.
13871         * lib/base64.h (base64_decode): Macro for four-argument calls.
13872         (base64_decode_alloc): Likewise.
13873
13874 2008-05-19  Jim Meyering  <meyering@redhat.com>
13875
13876         avoid a warning from gcc
13877         * lib/trim.c (IF_LINT): Define.
13878         (trim2): Use it to avoid a "may be used uninitialized" warning.
13879
13880         Fix doc typo.
13881         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
13882
13883 2008-05-19  Bruno Haible  <bruno@clisp.org>
13884
13885         * doc/glibc-functions/getpass.texi: Document limits of other
13886         implementations.
13887
13888 2008-05-19  Simon Josefsson  <simon@josefsson.org>
13889             Bruno Haible <bruno@clisp.org>
13890
13891         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
13892
13893 2008-05-18  Bruno Haible  <bruno@clisp.org>
13894
13895         * modules/propername: New file, from GNU gettext.
13896         * lib/propername.h: New file, from GNU gettext.
13897         * lib/propername.c: New file, from GNU gettext.
13898         * MODULES.html.sh (Internationalization functions): Add propername.
13899
13900 2008-05-16  Jim Meyering  <meyering@redhat.com>
13901             Bruno Haible  <bruno@clisp.org>
13902
13903         Avoid some warnings from "gcc -Wshadow".
13904         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
13905
13906 2008-05-15  Eric Blake  <ebb9@byu.net>
13907
13908         Extend previous patch to cygwin 1.7.0.
13909         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
13910         fast implementation in cygwin >= 1.7.0.
13911         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
13912         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
13913
13914 2008-05-15  Bruno Haible  <bruno@clisp.org>
13915
13916         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
13917         implementation in glibc >= 2.9.
13918         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
13919         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
13920
13921 2008-05-15  Bruno Haible  <bruno@clisp.org>
13922
13923         * MODULES.html.sh (Internationalization functions): Remove linebreak.
13924         (Unicode string functions): Add unilbrk/*.
13925         Reported by Karl Berry.
13926
13927 2008-05-15  Eric Blake  <ebb9@byu.net>
13928
13929         Fix violation of <stdbool.h> replacement in regex.
13930         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
13931         * lib/regexec.c (re_search_internal): Likewise.
13932         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
13933
13934 2008-05-15  Jim Meyering  <meyering@redhat.com>
13935
13936         avoid distracting test output when git or cvs is not found
13937         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
13938         * tests/test-vc-list-files-git.sh: Likewise.
13939
13940 2008-05-15  Eric Blake  <ebb9@byu.net>
13941
13942         Glibc finally accepted the memmem speedup code, bugzilla #5514.
13943         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
13944         glibc version.
13945         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
13946         * doc/posix-functions/strstr.texi (strstr): Likewise.
13947         * lib/str-two-way.h (MAX): Sychronize with glibc.
13948
13949 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
13950
13951         * lib/regcomp.c (optimize_utf8): Add a note on why we test
13952         opr.ctx_type.
13953         (calc_first): Initialize constraint field.
13954         (duplicate_node_closure): Use it instead of special casing ANCHORS.
13955         Fix grammar.
13956         (duplicate_node): Merge constraint field for all node types.
13957         (calc_eclosure_iter): Look at constraint field for all node types.
13958         * lib/regex_internal.c (create_cd_newstate): Don't look at
13959         opr.ctx_type.
13960
13961 2008-05-14  Bruno Haible  <bruno@clisp.org>
13962
13963         Help GCC to do better code generation.
13964         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
13965         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
13966         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
13967         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
13968         Declare with attribute 'malloc' if supported.
13969
13970 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
13971
13972         use "echo STR|wc -c" rather than unportable "expr length STR"
13973         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
13974         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
13975
13976 2008-05-14  Jim Meyering  <meyering@redhat.com>
13977
13978         use dd ibs=$n count=1 ... rather than less-portable head -c$n
13979         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
13980         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
13981         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
13982         via Collin Lasse.
13983
13984 2008-05-14  Eric Blake  <ebb9@byu.net>
13985
13986         Avoid quadratic growth in gl_LIBSOURCES.
13987         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
13988         Suggested by Bruno Haible.
13989
13990         Test xmemdup0.
13991         * modules/xmemdup0-tests: New file.
13992         * tests/test-xmemdup0.c: Likewise.
13993
13994 2008-05-13  Eric Blake  <ebb9@byu.net>
13995
13996         Split xmemdup0 into its own module.
13997         * modules/xmemdup0: New file.
13998         * lib/xmemdup0.h: Likewise.
13999         * lib/xmemdup0.c: Likewise.
14000         * MODULES.html.sh (Memory management functions): Add xmemdup0.
14001         * lib/xalloc.h (xmemdup0): Remove.
14002         * lib/xmalloc.c (xmemdup0): Likewise.
14003
14004 2008-05-13  Eric Blake  <ebb9@byu.net>
14005             Bruno Haible  <bruno@clisp.org>
14006
14007         Reduce number of forks required during autoconf.
14008         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
14009         and gl_LIBSOURCES_DIR.
14010         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
14011         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
14012         m4_syscmd per file.
14013         <m4_foreach_w>: Move...
14014         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
14015
14016 2008-05-13  Eric Blake  <ebb9@byu.net>
14017
14018         * gnulib-tool: Fix various comment typos.
14019
14020 2008-05-12  Bruno Haible  <bruno@clisp.org>
14021
14022         Tailor the linebreaking algorithm.
14023         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
14024
14025 2008-05-12  Bruno Haible  <bruno@clisp.org>
14026
14027         Update to Unicode 5.0.0.
14028         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
14029         LBP_JV, LBP_JT. Redistribute values.
14030         (unilbrk_table): Change size.
14031         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
14032         Unicode TR#14 rev. 22.
14033         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
14034         LBP_JV, LBP_JT. Redistribute values.
14035         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
14036         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
14037         Update.
14038         * lib/unilbrk/lbrkprop1.h: Regenerated.
14039         * lib/unilbrk/lbrkprop2.h: Regenerated.
14040         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
14041         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
14042         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
14043         Likewise.
14044         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
14045         Likewise.
14046         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
14047         result.
14048         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
14049         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
14050         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
14051         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
14052         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
14053         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
14054
14055 2008-05-11  Bruno Haible  <bruno@clisp.org>
14056
14057         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
14058
14059 2008-05-11  Bruno Haible  <bruno@clisp.org>
14060
14061         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
14062         * modules/unilbrk/gen-lbrk: New file.
14063
14064 2008-05-11  Bruno Haible  <bruno@clisp.org>
14065
14066         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
14067         * m4/sha512.m4 (gl_SHA512): Likewise.
14068
14069 2008-05-11  Jim Meyering  <meyering@redhat.com>
14070
14071         New modules: crypto/sha256, crypto/sha512 (from coreutils)
14072         * modules/crypto/sha256: New file.
14073         * modules/crypto/sha512: Likewise.
14074         * lib/sha256.c: Likewise.
14075         * lib/sha256.h: Likewise.
14076         * lib/sha512.c: Likewise.
14077         * lib/sha512.h: Likewise.
14078         * lib/u64.h: Likewise.
14079         * m4/sha256.m4: Likewise.
14080         * m4/sha512.m4: Likewise.
14081         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
14082
14083 2008-05-10  Bruno Haible  <bruno@clisp.org>
14084
14085         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
14086         (Input/Output <stdio.h>): Add xprintf.
14087         (Signal handling <signal.h>): Add strsignal.
14088         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
14089         (Core language properties): Add func.
14090         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
14091         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
14092         strings.
14093         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
14094         (Input/output): New section.
14095         (File system functions): Add openat-die, stat-macros.
14096         (Networking functions): Add sockets.
14097         (Unicode string functions): Add unictype/*.
14098         (Support for building libraries and executables): Add gperf.
14099         (Support for building documentation): Add agpl-3.0.
14100         (Misc): Add nocrash.
14101
14102 2008-05-10  Bruno Haible  <bruno@clisp.org>
14103
14104         * modules/unictype/gen-ctype: New file.
14105
14106 2008-05-10  Jim Meyering  <meyering@redhat.com>
14107
14108         Make chdir-safer.c more efficient on a system with no symlinks.
14109         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
14110         also if ELOOP is zero.  Suggested by Bruno Haible.
14111
14112         Make chdir-safer.c slightly safer.
14113         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
14114         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
14115
14116         Avoid compile failure on systems without ELOOP (like mingw).
14117         * lib/chdir-safer.c (ELOOP): Define if not already defined.
14118         Reported by Bruno Haible.
14119
14120 2008-05-10  Bruno Haible  <bruno@clisp.org>
14121
14122         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
14123         (is_utf8_encoding): Use a case-insensitive comparison.
14124         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
14125         streq.
14126
14127 2008-05-10  Bruno Haible  <bruno@clisp.org>
14128
14129         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
14130         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
14131         * lib/unilbrk/ulc-common.h (iconv_string_length,
14132         iconv_string_keeping_offsets): Remove declarations.
14133         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
14134         Don't include <iconv.h>, streq.h, xsize.h.
14135         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
14136         conversion.
14137         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
14138         <iconv.h>, streq.h, xsize.h.
14139         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
14140         conversion.
14141         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
14142         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
14143         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
14144         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
14145
14146 2008-05-10  Bruno Haible  <bruno@clisp.org>
14147
14148         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
14149         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
14150
14151         * modules/unilbrk/u32-width-linebreaks-tests: New file.
14152         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
14153
14154         * modules/unilbrk/u16-width-linebreaks-tests: New file.
14155         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
14156
14157         * modules/unilbrk/u8-width-linebreaks-tests: New file.
14158         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
14159
14160         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
14161         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
14162
14163         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
14164         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
14165
14166         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
14167         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
14168
14169         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
14170         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
14171
14172 2008-05-10  Bruno Haible  <bruno@clisp.org>
14173
14174         Split up 'linebreak' module.
14175         * lib/unilbrk.h: New file, based on lib/linebreak.h.
14176         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
14177         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
14178         modifications.
14179         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
14180         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
14181         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
14182         lib/linebreak.c.
14183         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
14184         lib/linebreak.c.
14185         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
14186         lib/linebreak.c.
14187         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
14188         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
14189         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
14190         lib/linebreak.c.
14191         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
14192         lib/linebreak.c.
14193         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
14194         lib/linebreak.c.
14195         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
14196         lib/linebreak.c.
14197         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
14198         lib/linebreak.c.
14199         * modules/unilbrk/base: New file.
14200         * modules/unilbrk/tables: New file.
14201         * modules/unilbrk/u8-possible-linebreaks: New file.
14202         * modules/unilbrk/u16-possible-linebreaks: New file.
14203         * modules/unilbrk/u32-possible-linebreaks: New file.
14204         * modules/unilbrk/ulc-common: New file.
14205         * modules/unilbrk/ulc-possible-linebreaks: New file.
14206         * modules/unilbrk/u8-width-linebreaks: New file.
14207         * modules/unilbrk/u16-width-linebreaks: New file.
14208         * modules/unilbrk/u32-width-linebreaks: New file.
14209         * modules/unilbrk/ulc-width-linebreaks: New file.
14210         * lib/linebreak.h: Remove file.
14211         * lib/linebreak.c: Remove file.
14212         * m4/linebreak.m4: Remove file.
14213         * modules/linebreak: Remove file.
14214         * NEWS: Mention the changes.
14215
14216 2008-05-09  Eric Blake  <ebb9@byu.net>
14217
14218         Add xmemdup0.
14219         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
14220         implementation.
14221         * lib/xmalloc.c (xmemdup0): New C implementation.
14222
14223 2008-05-08  Bruno Haible  <bruno@clisp.org>
14224
14225         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
14226
14227 2008-05-07  Eric Blake  <ebb9@byu.net>
14228
14229         Support cross-compilation of <wctype.h>.
14230         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
14231         AC_CACHE_CHECK.
14232
14233 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
14234
14235         * build-aux/vc-list-files: Add support for bzr.
14236
14237 2008-05-03  Jim Meyering  <meyering@redhat.com>
14238
14239         avoid failed assertion with tight malloc
14240         * tests/test-getndelim2.c: Correct an off-by-one assertion.
14241
14242 2008-05-03  Simon Josefsson  <simon@josefsson.org>
14243
14244         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
14245         are needed from arpa/inet.h.
14246         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
14247         Reported by Bruno Haible.
14248
14249 2008-05-02  Jim Meyering  <meyering@redhat.com>
14250
14251         avoid compilation error on FreeBSD 6
14252         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
14253
14254 2008-05-01  Jim Meyering  <meyering@redhat.com>
14255
14256         useless-if-before-free: correct --help's exit status description
14257         * build-aux/useless-if-before-free (usage): Like grep, exit 0
14258         for one or more matches, etc.  Reported by Bruno Haible.
14259
14260         vc-list-files: make the stand-alone gnulib test work
14261         * modules/vc-list-files-tests (configure.ac):
14262         Define and AC_SUBST abs_aux_dir.
14263         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
14264         $(abs_top_srcdir) to each script and having each of them
14265         duplicate the work of setting PATH, set PATH here, using
14266         the new variable, abs_aux_dir instead.
14267         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
14268         * tests/test-vc-list-files-git.sh: Likewise.
14269         Reported by Bruno Haible.
14270
14271 2008-05-01  Bruno Haible  <bruno@clisp.org>
14272
14273         * lib/getndelim2.c (getndelim2): Fix newsize computation during
14274         reallocation. Rename 'done' to 'found_delimiter'.
14275
14276 2008-05-01  Jim Meyering  <meyering@redhat.com>
14277
14278         vc-list-files: accommodate /bin/sh like the one from Solaris 10
14279         * build-aux/vc-list-files: Use `...`, not $(...).
14280
14281 2008-04-30  Jim Meyering  <meyering@redhat.com>
14282
14283         add tests for vc-list-files
14284         * modules/vc-list-files-tests: New module.
14285         * tests/test-vc-list-files-cvs.sh: New file.
14286         * tests/test-vc-list-files-git.sh: New file.
14287
14288         avoid a warning from gcc
14289         * lib/getndelim2.c (IF_LINT): Define.
14290         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
14291
14292         vc-list-files: work properly with build-aux/cvsu, too
14293         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
14294         to all cvs-based clauses.
14295
14296         vc-list-files: work properly in the CVS+awk case, too
14297         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
14298
14299         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
14300         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
14301         take more than one file argument, so .  Add quotes, just in case $dir
14302         ever contains a shell meta-character.  Prompted by Soren Hansen in
14303         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
14304
14305 2008-04-29  Eric Blake  <ebb9@byu.net>
14306
14307         Optimize getndelim2 to use block operations when possible.
14308         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
14309         freadseek, and memchr2.
14310         * lib/getndelim2.c (getndelim2): Use them for block reads.
14311
14312 2008-04-29  Bruno Haible  <bruno@clisp.org>
14313
14314         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
14315         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14316         * modules/inet_ntop (Depends-on): Add extensions.
14317         * modules/inet_pton (Depends-on): Likewise.
14318         Reported by Simon Josefsson.
14319
14320 2008-04-29  Jim Meyering  <meyering@redhat.com>
14321
14322         When the is more than one match in a block, match all of them.
14323         * build-aux/useless-if-before-free: Iterate through each block
14324         until there are no more matches.
14325
14326         Fix broken useless-if-before-free script.
14327         * build-aux/useless-if-before-free: Fix typo: missing "?" after
14328         the expression to match cast of argument to free-like function.
14329
14330 2008-04-29  Eric Blake  <ebb9@byu.net>
14331
14332         Use new header.
14333         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
14334
14335 2008-04-29  Jim Meyering  <meyering@redhat.com>
14336
14337         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
14338         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
14339         by gnulib to exist and to declare e.g., inet_ntop.
14340         Don't include "inet_ntop.h", now removed.
14341
14342         * m4/arpa_inet_h.m4: Remove trailing blanks.
14343
14344 2008-04-29  Eric Blake  <ebb9@byu.net>
14345
14346         Silence valgrind on safe reads beyond potential array bounds.
14347         * lib/rawmemchr.valgrind: New file.
14348         * lib/strchrnul.valgrind: Likewise.
14349         * modules/rawmemchr (Files): Distribute new file.
14350         * modules/strchrnul (Files): Likewise.
14351         Suggested by Bruno Haible.
14352
14353 2008-04-29  Bruno Haible  <bruno@clisp.org>
14354
14355         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
14356         (inet_ntop, inet_pton): Change portability warning's wording.
14357         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
14358         Invoke gl_CHECK_NEXT_HEADERS.
14359         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
14360         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
14361         set ARPA_INET_H.
14362         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14363         * modules/arpa_inet (Description): No longer only for systems that
14364         lack it.
14365         (Depends-on): Add include_next.
14366         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
14367         HAVE_ARPA_INET_H.
14368
14369 2008-04-29  Jim Meyering  <meyering@redhat.com>
14370
14371         * modules/mkdir (License): Re-license as LGPLv2+.
14372
14373 2008-04-29  Bruno Haible  <bruno@clisp.org>
14374
14375         * modules/rawmemchr (Maintainer): Set to Eric.
14376         * modules/strchrnul (Maintainer): Likewise.
14377
14378 2008-04-29  Simon Josefsson  <simon@josefsson.org>
14379
14380         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
14381         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
14382
14383         * modules/arpa_inet (arpa/inet.h): Use them.
14384
14385 2008-04-28  Eric Blake  <ebb9@byu.net>
14386
14387         Test getndelim2.
14388         * modules/getndelim2-tests: New file.
14389         * tests/test-getndelim2.c: Likewise.
14390         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
14391         stream.
14392         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
14393
14394         * MODULES.html.sh: Document new module.
14395
14396 2008-04-20  Bruno Haible  <bruno@clisp.org>
14397
14398         * lib/c-stack.c (die): Use raise.
14399         * modules/c-stack (Depends-on): Add raise.
14400
14401 2008-04-28  Bruno Haible  <bruno@clisp.org>
14402
14403         Expect rpmatch to be declared.
14404         * lib/yesno.c (rpmatch): Remove declaration.
14405
14406         Declare rpmatch.
14407         * lib/stdlib.in.h (rpmatch): New declaration.
14408         * lib/rpmatch.c: Include <stdlib.h> first.
14409         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
14410         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
14411         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
14412         HAVE_RPMATCH.
14413         * modules/rpmatch (Depends-on): Add stdlib, extensions.
14414         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14415         (Include): Set to <stdlib.h>.
14416         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
14417         HAVE_RPMATCH.
14418         * NEWS: Document the change.
14419
14420 2008-04-28  Bruno Haible  <bruno@clisp.org>
14421
14422         Change rpmatch to use nl_langinfo when appropriate.
14423         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
14424         (N_): New macro.
14425         (localized_pattern): New function/macro.
14426         (try): Remove match, nomatch arguments. Copy the pattern into safe
14427         memory before caching it.
14428         (rpmatch): Use localized_pattern. Add translator comments.
14429         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
14430         Suggested by Eric Blake.
14431         * modules/rpmatch (Depends-on): Add stdbool.
14432
14433 2008-04-28  Eric Blake  <ebb9@byu.net>
14434
14435         Add rawmemchr module, matching glibc.
14436         * modules/string (Makefile.am): New indicator.
14437         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
14438         * lib/string.in.h (rawmemchr): Declare when appropriate.
14439         * modules/rawmemchr: New file.
14440         * m4/rawmemchr.m4: Likewise.
14441         * lib/rawmemchr.c: Likewise.
14442         * modules/rawmemchr-tests: Likewise.
14443         * tests/test-rawmemchr.c: Likewise.
14444         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
14445         module.
14446         * modules/strchrnul (Depends-on): Add rawmemchr.
14447         * lib/strchrnul.c (strchrnul): Optimize a corner case.
14448
14449         Whitespace cleanup.
14450         * tests/test-strchrnul.c: Reindent.
14451         * lib/strchrnul.c: Likewise.
14452
14453         Optimize and test strchrnul.
14454         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
14455         * modules/strchrnul-tests: New file.
14456         * tests/test-strchrnul.c: Likewise.
14457
14458         Remove intprops dependency.
14459         * modules/memchr (Depends-on): Remove intprops.
14460         * modules/memrchr (Depends-on): Likewise.
14461         * modules/memchr2 (Depends-on): Likewise.
14462         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
14463         * lib/memrchr.c (__memrchr): Likewise.
14464         * lib/memrchr2.c (memchr2): Likewise.
14465         Reported by Simon Josefsson.
14466
14467 2008-04-28  Simon Josefsson  <simon@josefsson.org>
14468
14469         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
14470         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14471
14472 2008-04-28  Simon Josefsson  <simon@josefsson.org>
14473
14474         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
14475
14476         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
14477
14478         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
14479
14480         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
14481         declarations.
14482         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
14483
14484         * m4/inet_pton.m4: Don't check for header files.
14485
14486         * m4/inet_ntop.m4: Don't check for header files.
14487
14488 2008-04-28  Simon Josefsson  <simon@josefsson.org>
14489
14490         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
14491         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
14492         trigger for cygwin).
14493         Reported by Bruno Haible  <bruno@clisp.org>.
14494
14495 2008-04-28  Bruno Haible  <bruno@clisp.org>
14496
14497         * doc/posix-functions/strdup.texi: Mention mingw problem.
14498
14499 2008-04-27  Bruno Haible  <bruno@clisp.org>
14500
14501         * modules/stat-time-tests (Depends-on): Add sleep.
14502         * tests/test-stat-time.c (force_unlink): New function.
14503         (cleanup): Use it.
14504         (test_mtime): Remove the ctime related tests.
14505         (test_ctime): New function, containing the ctime related tests.
14506         (main): Call test_ctime, except on native Windows platforms.
14507
14508 2008-04-27  Bruno Haible  <bruno@clisp.org>
14509
14510         * lib/rpmatch.c (rpmatch): Add some comments.
14511         Reported by James Youngman <jay@gnu.org>.
14512
14513 2008-04-27  Bruno Haible  <bruno@clisp.org>
14514
14515         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
14516         quiet NaNs.
14517
14518 2008-04-27  Bruno Haible  <bruno@clisp.org>
14519
14520         Make test-yesno.sh work on mingw.
14521         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
14522         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
14523         (main): Set stdin to binary mode.
14524         * modules/yesno-tests (Depends-on): Add binary-io.
14525
14526 2008-04-27  Bruno Haible  <bruno@clisp.org>
14527
14528         Fix 'isfinite' on x86, x86_64, ia64 platforms.
14529         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
14530         argument that lie outside the IEEE 854 domain.
14531         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
14532         (gl_ISFINITE): Use it.
14533         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
14534
14535 2008-04-27  Bruno Haible  <bruno@clisp.org>
14536
14537         Allow local renaming in config.h.
14538         * lib/memrchr.c (memrchr): Don't undefine outside libc.
14539
14540 2008-04-27  Bruno Haible  <bruno@clisp.org>
14541
14542         * lib/memchr.c (__memchr): Change type of 'i'.
14543         * lib/memchr2.c (memchr2): Likewise.
14544
14545 2008-04-26  Eric Blake  <ebb9@byu.net>
14546         and Bruno Haible  <bruno@clisp.org>
14547
14548         Optimize and test memrchr.
14549         * modules/memrchr (Depends-on): Add intprops.
14550         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
14551         * modules/memrchr-tests: New file.
14552         * tests/test-memrchr.c: New file.
14553
14554 2008-04-26  Bruno Haible  <bruno@clisp.org>
14555
14556         Add tentative support for DragonFly BSD.
14557         * lib/stdio-impl.h: Add macros for DragonFly BSD.
14558         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
14559         fp.
14560         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
14561         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
14562         * lib/fpurge.c (fpurge): Likewise.
14563         * lib/freadable.c (freaadable): Likewise.
14564         * lib/freadahead.c (freadahead): Likewise.
14565         * lib/freading.c (freading): Likewise.
14566         * lib/freadptr.c (freadptr): Likewise.
14567         * lib/freadseek.c (freadptrinc): Likewise.
14568         * lib/fseeko.c (fseeko): Likewise.
14569         * lib/fseterr.c (fseterr): Likewise.
14570         * lib/fwritable.c (fwritable): Likewise.
14571         * lib/fwriting.c (fwriting): Likewise.
14572
14573 2008-04-26  Bruno Haible  <bruno@clisp.org>
14574
14575         * lib/stdio-impl.h: New file.
14576         * lib/fbufmode.c: Include stdio-impl.h.
14577         (fbufmode): Use fp_, remove redundant #defines.
14578         * lib/fflush.c: Include stdio-impl.h.
14579         (clear_ungetc_buffer): Remove redundant #defines.
14580         * lib/fpurge.c: Include stdio-impl.h.
14581         (fpurge): Remove redundant #defines.
14582         * lib/freadable.c: Include stdio-impl.h.
14583         (freadable): Remove redundant #defines.
14584         * lib/freadahead.c: Include stdio-impl.h.
14585         (freadahead): Remove redundant #defines.
14586         * lib/freading.c: Include stdio-impl.h.
14587         (freading): Remove redundant #defines.
14588         * lib/freadptr.c: Include stdio-impl.h.
14589         (freadptr): Remove redundant #defines.
14590         * lib/freadseek.c: Include stdio-impl.h.
14591         (freadptrinc): Remove redundant #defines.
14592         * lib/fseeko.c: Include stdio-impl.h.
14593         (rpl_fseeko): Remove redundant #defines.
14594         * lib/fseterr.c: Include stdio-impl.h.
14595         (fseterr): Remove redundant #defines.
14596         * lib/fwritable.c: Include stdio-impl.h.
14597         (fwritable: Remove redundant #defines.
14598         * lib/fwriting.c: Include stdio-impl.h.
14599         (fwriting): Remove redundant #defines.
14600         * modules/fbufmode (Files): Add lib/stdio-impl.h.
14601         * modules/fflush (Files): Likewise.
14602         * modules/fpurge (Files): Likewise.
14603         * modules/freadable (Files): Likewise.
14604         * modules/freadahead (Files): Likewise.
14605         * modules/freading (Files): Likewise.
14606         * modules/freadptr (Files): Likewise.
14607         * modules/freadseek (Files): Likewise.
14608         * modules/fseeko (Files): Likewise.
14609         * modules/fseterr (Files): Likewise.
14610         * modules/fwritable (Files): Likewise.
14611         * modules/fwriting (Files): Likewise.
14612
14613 2008-04-26  Bruno Haible  <bruno@clisp.org>
14614
14615         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
14616         restore_seek_optimization, update_fpos_cache): New functions, extracted
14617         from rpl_fflush.
14618         (rpl_fflush): Use them.
14619         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
14620         (gl_REPLACE_FFLUSH): Use it.
14621
14622 2008-04-26  Bruno Haible  <bruno@clisp.org>
14623
14624         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
14625         on Solaris.
14626         * tests/test-xstrtoimax.sh: Likewise.
14627         * tests/test-xstrtoumax.sh: Likewise.
14628         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14629
14630 2008-04-26  Bruno Haible  <bruno@clisp.org>
14631
14632         * modules/memchr-tests: New file.
14633         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
14634
14635 2008-04-26  Eric Blake  <ebb9@byu.net>
14636             Bruno Haible  <bruno@clisp.org>
14637
14638         * lib/memchr.c: Include intprops.h.
14639         (__memchr): Optimize parallel detection of matching bytes. Rename local
14640         variables. Add explanatory comments.
14641
14642 2008-04-26  Bruno Haible  <bruno@clisp.org>
14643
14644         Fix module 'memchr', broken since 2000-10-28.
14645         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
14646
14647 2008-04-26  Bruno Haible  <bruno@clisp.org>
14648
14649         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
14650         comments.
14651
14652 2008-04-25  Eric Blake  <ebb9@byu.net>
14653
14654         Use native fstatat on cygwin 1.7.0.
14655         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
14656         first.
14657
14658 2008-04-23  Eric Blake  <ebb9@byu.net>
14659
14660         Improve memchr2 performance.
14661         * lib/memchr2.c (memchr2): Further optimize parallel detection of
14662         NUL bytes.
14663         * modules/memchr2 (Depends-on): Use intprops.h.
14664
14665 2008-04-23  Simon Josefsson  <simon@josefsson.org>
14666
14667         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
14668         an inline function instead of a CPP macro.  Patch by Ben Pfaff
14669         <blp@cs.stanford.edu>.
14670
14671 2008-04-23  Simon Josefsson  <simon@josefsson.org>
14672
14673         * lib/arpa_inet.in.h: New file.
14674
14675         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
14676         (Makefile.am): Sed in substitute header file.
14677
14678         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
14679         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
14680
14681         * modules/inet_ntop (configure.ac): Use
14682         gl_ARPA_INET_MODULE_INDICATOR.
14683
14684         * modules/inet_pton (configure.ac): Use
14685         gl_ARPA_INET_MODULE_INDICATOR.
14686
14687 2008-04-22  Jim Meyering  <meyering@redhat.com>
14688
14689         * modules/verify (License): Re-license as LGPLv2+.
14690
14691 2008-04-22  Simon Josefsson  <simon@josefsson.org>
14692
14693         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
14694         parameter to void* as per POSIX standard (MinGW uses char*).
14695
14696 2008-04-21  Bruno Haible  <bruno@clisp.org>
14697
14698         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
14699         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
14700         Define to replacements if REPLACE_ISWCNTRL is 1.
14701         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
14702         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
14703         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
14704         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
14705         what it fixes.
14706         * doc/posix-functions/iswalpha.texi: Likewise.
14707         * doc/posix-functions/iswblank.texi: Likewise.
14708         * doc/posix-functions/iswcntrl.texi: Likewise.
14709         * doc/posix-functions/iswdigit.texi: Likewise.
14710         * doc/posix-functions/iswgraph.texi: Likewise.
14711         * doc/posix-functions/iswlower.texi: Likewise.
14712         * doc/posix-functions/iswprint.texi: Likewise.
14713         * doc/posix-functions/iswpunct.texi: Likewise.
14714         * doc/posix-functions/iswspace.texi: Likewise.
14715         * doc/posix-functions/iswupper.texi: Likewise.
14716         * doc/posix-functions/iswxdigit.texi: Likewise.
14717         Reported by Alain Guibert.
14718
14719 2008-04-21  Bruno Haible  <bruno@clisp.org>
14720
14721         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
14722         Patch by Alain Guibert.
14723
14724 2008-04-21  Bruno Haible  <bruno@clisp.org>
14725
14726         Fix test failures on mingw.
14727         * tests/test-xstrtol.c (print_no_progname): New function.
14728         (main): Install it in error_print_progname hook.
14729         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
14730         * tests/test-xstrtoimax.sh: Likewise.
14731         * tests/test-xstrtoumax.sh: Likewise.
14732
14733 2008-04-21  Bruno Haible  <bruno@clisp.org>
14734
14735         Fix test failure on mingw.
14736         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
14737
14738 2008-04-21  Bruno Haible  <bruno@clisp.org>
14739
14740         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
14741         Actually assign a value.
14742
14743 2008-04-20  Bruno Haible  <bruno@clisp.org>
14744
14745         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
14746         take 2.
14747         * lib/canonicalize.c (canonicalize_file_name): Elide if the
14748         'canonicalize-lgpl' module is also used.
14749         * lib/canonicalize-lgpl.c: Undo last change.
14750         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
14751
14752 2008-04-20  Bruno Haible  <bruno@clisp.org>
14753
14754         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
14755         config.h. Provide _mkdir based fallback for mingw.
14756         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
14757         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
14758         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
14759         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
14760         rather than defining mkdir in config.h.
14761         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
14762         (gl_SYS_STAT_H_DEFAULTS): New macro.
14763         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
14764         HAVE_IO_H any more.
14765         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
14766         HAVE_DECL_MKDIR and HAVE_IO_H.
14767
14768 2008-04-20  Bruno Haible  <bruno@clisp.org>
14769
14770         * lib/isapipe.c: Port to native Windows platforms.
14771
14772 2008-04-20  Bruno Haible  <bruno@clisp.org>
14773
14774         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
14775
14776 2008-04-21  Eric Blake  <ebb9@byu.net>
14777
14778         Work around preprocessors that don't handle UINTMAX_MAX.
14779         * lib/memchr2.c (memchr2): Avoid embedded #if.
14780         Reported by Alain Guibert, fix suggested by Bruno Haible.
14781
14782 2008-04-21  Simon Josefsson  <simon@josefsson.org>
14783
14784         * doc/posix-functions/strftime.texi (strftime): Explain better
14785         Windows incompatibility.  Suggested by Micah Cowan
14786         <micah@cowan.name>.
14787
14788 2008-04-20  Bruno Haible  <bruno@clisp.org>
14789
14790         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
14791         unistr/u8-mblen.
14792
14793 2008-04-20  Bruno Haible  <bruno@clisp.org>
14794
14795         Fix test failure on platforms with non-GNU iconv.
14796         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
14797         (U_TO_U8): Use it, rather than u16_to_u8.
14798         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
14799         units at the end of the input string.
14800         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
14801
14802 2008-04-20  Bruno Haible  <bruno@clisp.org>
14803
14804         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
14805         when the resulting length is 0.
14806         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
14807
14808 2008-04-20  Bruno Haible  <bruno@clisp.org>
14809
14810         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
14811         works.
14812         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
14813
14814 2008-04-20  Bruno Haible  <bruno@clisp.org>
14815
14816         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
14817         * modules/tsearch-tests (configure.ac): Test for initstate function.
14818
14819 2008-04-20  Bruno Haible  <bruno@clisp.org>
14820
14821         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
14822         for nlink_t if missing.
14823         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
14824
14825 2008-04-19  Bruno Haible  <bruno@clisp.org>
14826
14827         Work around snprintf bug on Linux libc5.
14828         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
14829         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
14830         gl_SNPRINTF_SIZE1.
14831         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
14832         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
14833         that test failed.
14834         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
14835         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
14836         * modules/snprintf (Files): Add m4/printf.m4.
14837         * modules/vsnprintf (Files): Likewise.
14838         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
14839         * doc/posix-functions/vsnprintf.texi: Likewise.
14840
14841 2008-04-19  Bruno Haible  <bruno@clisp.org>
14842
14843         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
14844         from 0.0058 to less than 10^-7.
14845
14846 2008-04-19  Bruno Haible  <bruno@clisp.org>
14847
14848         Fix rounding when a precision is given.
14849         * lib/vasnprintf.c (is_borderline): New function.
14850         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
14851         9...9x.
14852         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
14853         %e, %g.
14854         * tests/test-vasprintf-posix.c (test_function): Likewise.
14855         * tests/test-snprintf-posix.h (test_function): Likewise.
14856         * tests/test-sprintf-posix.h (test_function): Likewise.
14857         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
14858         * tests/test-printf-posix.h (test_function): Likewise.
14859         * tests/test-printf-posix.output: Update.
14860         Reported by John Darrington <john@darrington.wattle.id.au> via
14861         Ben Pfaff <blp@cs.stanford.edu>.
14862
14863 2008-04-18  Simon Josefsson  <simon@josefsson.org>
14864
14865         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
14866         Suggested by Bruno Haible <bruno@clisp.org>.
14867
14868 2008-04-17  Bruno Haible  <bruno@clisp.org>
14869
14870         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
14871         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
14872         implementation.
14873         Patch by Bruce Merry <bmerry@gmail.com>.
14874
14875 2008-04-17  Simon Josefsson  <simon@josefsson.org>
14876
14877         * doc/posix-functions/strftime.texi (strftime): Mention that %e
14878         doesn't work under Windows.
14879
14880 2008-04-16  Bruno Haible  <bruno@clisp.org>
14881
14882         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
14883         New macros.
14884         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
14885         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
14886         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
14887         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
14888         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
14889         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
14890         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
14891         macros.
14892         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
14893         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
14894         Northern Sotho, Uighur.
14895
14896 2008-04-16  Bruno Haible  <bruno@clisp.org>
14897
14898         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
14899         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
14900         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
14901         Reported by Daniel Bergström <daniel@octocode.com>.
14902
14903 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
14904             Bruno Haible  <bruno@clisp.org>
14905
14906         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
14907         function.
14908         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
14909         New functions, mostly extracted from gl_locale_name_default.
14910         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
14911
14912 2008-04-16  Eric Blake  <ebb9@byu.net>
14913
14914         Adjust strtod detection to catch glibc 2.7 bug.
14915         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
14916         Reported by John Gatewood Ham.
14917
14918 2008-04-16  Bruno Haible  <bruno@clisp.org>
14919
14920         Add tentative support for Linux libc5.
14921         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
14922         * lib/fpurge.c (fpurge): Likewise.
14923         * lib/freadable.c (freadable): Likewise.
14924         * lib/freadahead.c (freadahead): Likewise.
14925         * lib/freading.c (freading): Likewise.
14926         * lib/freadptr.c (freadptr): Likewise.
14927         * lib/freadseek.c (freadptrinc): Likewise.
14928         * lib/fseeko.c (rpl_fseeko): Likewise.
14929         * lib/fseterr.c (fseterr): Likewise.
14930         * lib/fwritable.c (fwritable): Likewise.
14931         * lib/fwriting.c (fwriting): Likewise.
14932         Reported by Alain Guibert <alguibert+bts@free.fr>.
14933
14934 2008-04-15  Bruno Haible  <bruno@clisp.org>
14935
14936         * modules/mathl (configure.ac): Define module indicator.
14937
14938 2008-04-15  Bruno Haible  <bruno@clisp.org>
14939
14940         * lib/logl.c (logl): Remove unused variables.
14941
14942 2008-04-15  Bruno Haible  <bruno@clisp.org>
14943
14944         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
14945         fails.
14946
14947 2008-04-15  Bruno Haible  <bruno@clisp.org>
14948
14949         * lib/trim.c (trim2): Fix argument of isspace() macro.
14950
14951 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
14952
14953         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
14954         to 0.
14955         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
14956
14957 2008-04-14  Bruno Haible  <bruno@clisp.org>
14958
14959         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
14960         AC_LANG_PROGRAM argument.
14961         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
14962         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
14963         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
14964         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
14965         * m4/math_h.m4 (gl_MATH_H): Likewise.
14966         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
14967         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
14968         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
14969         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
14970         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
14971         * m4/regex.m4 (gl_REGEX): Likewise.
14972         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
14973         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
14974         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
14975         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
14976         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
14977         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
14978         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
14979         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
14980
14981 2008-04-14  Jim Meyering  <meyering@redhat.com>
14982
14983         test-strtod: fix typos: s/abs/fabs/
14984         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
14985
14986 2008-04-13  Bruno Haible  <bruno@clisp.org>
14987
14988         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
14989         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
14990         module is also used and while not building the reloc-wrapper.
14991
14992 2008-04-13  Bruno Haible  <bruno@clisp.org>
14993
14994         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
14995
14996 2008-04-13  Bruno Haible  <bruno@clisp.org>
14997
14998         Fix AIX compilation failure introduced on 2008-04-02.
14999         * tests/test-frexp.c (exp): Undefine before redefining.
15000         * tests/test-frexpl.c (exp): Likewise.
15001
15002 2008-04-13  Bruno Haible  <bruno@clisp.org>
15003
15004         Work around a HP-UX stdio bug.
15005         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
15006         * tests/test-ftello.c (main): Likewise.
15007         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
15008         * doc/posix-functions/ftello.texi: Likewise.
15009
15010 2008-04-13  Bruno Haible  <bruno@clisp.org>
15011
15012         Make test-signbit pass on HP-UX/hppa.
15013         * tests/test-signbit.c (minus_zerol): New variable.
15014         (test_signbitl): Use it.
15015
15016 2008-04-13  Bruno Haible  <bruno@clisp.org>
15017
15018         Make truncl work on OSF/1 4.0.
15019         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
15020         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
15021         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
15022         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
15023         HAVE_DECL_TRUNCL.
15024         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
15025         HAVE_DECL_TRUNCL.
15026         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
15027
15028 2008-04-13  Bruno Haible  <bruno@clisp.org>
15029
15030         * lib/unictype.h: Remove trailing comma from enumeration definitions.
15031
15032 2008-04-13  Bruno Haible  <bruno@clisp.org>
15033
15034         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
15035         expression, so as to avoid HP-UX 11 cc compiler bug.
15036
15037 2008-04-13  Bruno Haible  <bruno@clisp.org>
15038
15039         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
15040
15041 2008-04-13  Bruno Haible  <bruno@clisp.org>
15042
15043         * lib/git-merge-changelog.c: Remove empty declaration outside of
15044         functions.
15045
15046 2008-04-13  Bruno Haible  <bruno@clisp.org>
15047
15048         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
15049
15050 2008-04-13  Bruno Haible  <bruno@clisp.org>
15051
15052         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
15053         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
15054         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
15055         also if it exists but lacks definitions of the SHUT_* macros.
15056         * modules/sys_socket (Description): Update.
15057         Reported by Elbert Pol <e.pol@chello.nl>.
15058
15059 2008-04-13  Bruno Haible  <bruno@clisp.org>
15060
15061         * lib/localcharset.c (OS2): Don't redefine if already defined.
15062         Reported by Elbert Pol <e.pol@chello.nl>.
15063
15064 2008-04-13  Bruno Haible  <bruno@clisp.org>
15065
15066         * lib/binary-io.h [__EMX__]: Include <io.h>.
15067         Reported by Elbert Pol <e.pol@chello.nl>.
15068
15069 2008-04-12  Bruno Haible  <bruno@clisp.org>
15070
15071         * lib/fpucw.h: Enable the definitions also for x86_64.
15072         Needed for NetBSD/x86_64.
15073         Reported by Thomas Klausner <tk@giga.or.at>.
15074
15075 2008-04-12  Bruno Haible  <bruno@clisp.org>
15076
15077         * tests/test-strtod.c: Include isnand.h.
15078         (main): Use isnand instead of isnan.
15079         Reported by Jim Meyering.
15080
15081 2008-04-12  Bruno Haible  <bruno@clisp.org>
15082
15083         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
15084         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
15085
15086 2008-04-12  Jim Meyering  <meyering@redhat.com>
15087
15088         * m4/math_h.m4 (gl_MATH_H): Fix typos.
15089
15090 2008-04-12  Bruno Haible  <bruno@clisp.org>
15091
15092         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
15093         Reported by Elbert Pol <e.pol@chello.nl>.
15094
15095 2008-04-12  Eric Blake  <ebb9@byu.net>
15096
15097         Work around Solaris 10 math.h bug.
15098         * m4/math_h.m4 (gl_MATH_H): Check for bug.
15099         (gl_MATH_H_DEFAULTS): Set up default.
15100         * modules/math (Makefile.am): Replace new indicators.
15101         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
15102         * tests/test-math.c (main): Test this.
15103         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
15104         * doc/posix-headers/math.texi (math.h): Mention bug.
15105         Reported by Nelson H. F. Beebe and Jim Meyering.
15106
15107 2008-04-11  Bruno Haible  <bruno@clisp.org>
15108
15109         Adapt to future versions of Apple GCC.
15110         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
15111         Reported by Peter O'Gorman <peter@pogma.com>.
15112
15113 2008-04-11  Bruno Haible  <bruno@clisp.org>
15114
15115         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
15116
15117 2008-04-11  Bruno Haible  <bruno@clisp.org>
15118
15119         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
15120
15121         * modules/getaddrinfo-tests (Makefile.am): Define
15122         test_getaddrinfo_LDADD.
15123
15124 2008-04-11  Bruno Haible  <bruno@clisp.org>
15125
15126         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
15127         (init): Fix syntax error.
15128         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
15129         is declared.
15130
15131 2008-04-11  Bruno Haible  <bruno@clisp.org>
15132
15133         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
15134         * modules/glob (Depends-on): Add stdbool.
15135
15136 2008-04-11  Bruno Haible  <bruno@clisp.org>
15137
15138         * lib/trim.c: Include <string.h>.
15139
15140 2008-04-11  Eric Blake  <ebb9@byu.net>
15141
15142         Avoid compile failure on OS/2.
15143         * lib/regex_internal.h (internal_function): Disable optimization
15144         on OS/2 (__EMX__), where it caused compiler error.
15145         Reported by Elbert Pol.
15146
15147 2008-04-11  Bruno Haible  <bruno@clisp.org>
15148
15149         Flush the standard error stream before aborting. Needed on mingw.
15150         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
15151         * tests/test-array_list.c (ASSERT): Likewise.
15152         * tests/test-array_oset.c (ASSERT): Likewise.
15153         * tests/test-avltree_list.c (ASSERT): Likewise.
15154         * tests/test-avltree_oset.c (ASSERT): Likewise.
15155         * tests/test-avltreehash_list.c (ASSERT): Likewise.
15156         * tests/test-binary-io.c (ASSERT): Likewise.
15157         * tests/test-byteswap.c (ASSERT): Likewise.
15158         * tests/test-c-ctype.c (ASSERT): Likewise.
15159         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
15160         * tests/test-c-strcasestr.c (ASSERT): Likewise.
15161         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
15162         * tests/test-c-strstr.c (ASSERT): Likewise.
15163         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
15164         * tests/test-canonicalize.c (ASSERT): Likewise.
15165         * tests/test-carray_list.c (ASSERT): Likewise.
15166         * tests/test-ceilf1.c (ASSERT): Likewise.
15167         * tests/test-ceilf2.c (ASSERT): Likewise.
15168         * tests/test-ceill.c (ASSERT): Likewise.
15169         * tests/test-count-one-bits.c (ASSERT): Likewise.
15170         * tests/test-fbufmode.c (ASSERT): Likewise.
15171         * tests/test-fflush2.c (ASSERT): Likewise.
15172         * tests/test-floorf1.c (ASSERT): Likewise.
15173         * tests/test-floorf2.c (ASSERT): Likewise.
15174         * tests/test-floorl.c (ASSERT): Likewise.
15175         * tests/test-fopen.c (ASSERT): Likewise.
15176         * tests/test-fpending.c (ASSERT): Likewise.
15177         * tests/test-fprintf-posix.c (ASSERT): Likewise.
15178         * tests/test-fpurge.c (ASSERT): Likewise.
15179         * tests/test-freadable.c (ASSERT): Likewise.
15180         * tests/test-freadahead.c (ASSERT): Likewise.
15181         * tests/test-freading.c (ASSERT): Likewise.
15182         * tests/test-freadptr.c (ASSERT): Likewise.
15183         * tests/test-freadptr2.c (ASSERT): Likewise.
15184         * tests/test-freadseek.c (ASSERT): Likewise.
15185         * tests/test-freopen.c (ASSERT): Likewise.
15186         * tests/test-frexp.c (ASSERT): Likewise.
15187         * tests/test-frexpl.c (ASSERT): Likewise.
15188         * tests/test-fseek.c (ASSERT): Likewise.
15189         * tests/test-fseeko.c (ASSERT): Likewise.
15190         * tests/test-fstrcmp.c (ASSERT): Likewise.
15191         * tests/test-ftell.c (ASSERT): Likewise.
15192         * tests/test-ftello.c (ASSERT): Likewise.
15193         * tests/test-func.c (ASSERT): Likewise.
15194         * tests/test-fwritable.c (ASSERT): Likewise.
15195         * tests/test-fwriting.c (ASSERT): Likewise.
15196         * tests/test-getdelim.c (ASSERT): Likewise.
15197         * tests/test-getline.c (ASSERT): Likewise.
15198         * tests/test-i-ring.c (ASSERT): Likewise.
15199         * tests/test-iconv-utf.c (ASSERT): Likewise.
15200         * tests/test-iconv.c (ASSERT): Likewise.
15201         * tests/test-isfinite.c (ASSERT): Likewise.
15202         * tests/test-isnand.c (ASSERT): Likewise.
15203         * tests/test-isnanf.c (ASSERT): Likewise.
15204         * tests/test-isnanl.h (ASSERT): Likewise.
15205         * tests/test-ldexpl.c (ASSERT): Likewise.
15206         * tests/test-linked_list.c (ASSERT): Likewise.
15207         * tests/test-linkedhash_list.c (ASSERT): Likewise.
15208         * tests/test-localename.c (ASSERT): Likewise.
15209         * tests/test-lseek.c (ASSERT): Likewise.
15210         * tests/test-mbscasecmp.c (ASSERT): Likewise.
15211         * tests/test-mbscasestr1.c (ASSERT): Likewise.
15212         * tests/test-mbscasestr2.c (ASSERT): Likewise.
15213         * tests/test-mbscasestr3.c (ASSERT): Likewise.
15214         * tests/test-mbscasestr4.c (ASSERT): Likewise.
15215         * tests/test-mbschr.c (ASSERT): Likewise.
15216         * tests/test-mbscspn.c (ASSERT): Likewise.
15217         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
15218         * tests/test-mbspbrk.c (ASSERT): Likewise.
15219         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
15220         * tests/test-mbsrchr.c (ASSERT): Likewise.
15221         * tests/test-mbsspn.c (ASSERT): Likewise.
15222         * tests/test-mbsstr1.c (ASSERT): Likewise.
15223         * tests/test-mbsstr2.c (ASSERT): Likewise.
15224         * tests/test-mbsstr3.c (ASSERT): Likewise.
15225         * tests/test-memchr2.c (ASSERT): Likewise.
15226         * tests/test-memmem.c (ASSERT): Likewise.
15227         * tests/test-open.c (ASSERT): Likewise.
15228         * tests/test-printf-frexp.c (ASSERT): Likewise.
15229         * tests/test-printf-frexpl.c (ASSERT): Likewise.
15230         * tests/test-printf-posix.c (ASSERT): Likewise.
15231         * tests/test-quotearg.c (ASSERT): Likewise.
15232         * tests/test-rbtree_list.c (ASSERT): Likewise.
15233         * tests/test-rbtree_oset.c (ASSERT): Likewise.
15234         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
15235         * tests/test-round1.c (ASSERT): Likewise.
15236         * tests/test-roundf1.c (ASSERT): Likewise.
15237         * tests/test-roundl.c (ASSERT): Likewise.
15238         * tests/test-signbit.c (ASSERT): Likewise.
15239         * tests/test-sleep.c (ASSERT): Likewise.
15240         * tests/test-snprintf-posix.c (ASSERT): Likewise.
15241         * tests/test-snprintf.c (ASSERT): Likewise.
15242         * tests/test-sprintf-posix.c (ASSERT): Likewise.
15243         * tests/test-stat-time.c (ASSERT): Likewise.
15244         * tests/test-strcasestr.c (ASSERT): Likewise.
15245         * tests/test-strerror.c (ASSERT): Likewise.
15246         * tests/test-striconv.c (ASSERT): Likewise.
15247         * tests/test-striconveh.c (ASSERT): Likewise.
15248         * tests/test-striconveha.c (ASSERT): Likewise.
15249         * tests/test-strsignal.c (ASSERT): Likewise.
15250         * tests/test-strstr.c (ASSERT): Likewise.
15251         * tests/test-strtod.c (ASSERT): Likewise.
15252         * tests/test-trunc1.c (ASSERT): Likewise.
15253         * tests/test-trunc2.c (ASSERT): Likewise.
15254         * tests/test-truncf1.c (ASSERT): Likewise.
15255         * tests/test-truncf2.c (ASSERT): Likewise.
15256         * tests/test-truncl.c (ASSERT): Likewise.
15257         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
15258         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
15259         * tests/test-vasnprintf.c (ASSERT): Likewise.
15260         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
15261         * tests/test-vasprintf.c (ASSERT): Likewise.
15262         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
15263         * tests/test-vprintf-posix.c (ASSERT): Likewise.
15264         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
15265         * tests/test-vsnprintf.c (ASSERT): Likewise.
15266         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
15267         * tests/test-wcwidth.c (ASSERT): Likewise.
15268         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
15269         * tests/test-xprintf-posix.c (ASSERT): Likewise.
15270         * tests/test-xvasprintf.c (ASSERT): Likewise.
15271         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
15272         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
15273         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
15274         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
15275         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
15276         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
15277         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
15278         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
15279         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
15280         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
15281         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
15282         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
15283         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
15284         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
15285         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
15286         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
15287         * tests/unictype/test-block_list.c (ASSERT): Likewise.
15288         * tests/unictype/test-block_of.c (ASSERT): Likewise.
15289         * tests/unictype/test-block_test.c (ASSERT): Likewise.
15290         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
15291         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
15292         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
15293         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
15294         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
15295         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
15296         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
15297         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
15298         * tests/unictype/test-combining.c (ASSERT): Likewise.
15299         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
15300         * tests/unictype/test-digit.c (ASSERT): Likewise.
15301         * tests/unictype/test-mirror.c (ASSERT): Likewise.
15302         * tests/unictype/test-numeric.c (ASSERT): Likewise.
15303         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
15304         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
15305         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
15306         * tests/unictype/test-scripts.c (ASSERT): Likewise.
15307         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
15308         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
15309         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
15310         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
15311         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
15312         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
15313         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
15314         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
15315         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
15316         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
15317         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
15318         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
15319         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
15320         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
15321         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
15322         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
15323         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
15324         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
15325         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
15326         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
15327         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
15328         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
15329         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
15330         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
15331         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
15332         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
15333         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
15334         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
15335         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
15336         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
15337         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
15338         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
15339         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
15340         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
15341         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
15342         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
15343         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
15344         Reported by Eric Blake.
15345
15346 2008-04-11  Bruno Haible  <bruno@clisp.org>
15347
15348         * lib/wchar.in.h: Tweak comment.
15349
15350 2008-04-11  Bruno Haible  <bruno@clisp.org>
15351
15352         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
15353         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
15354         gl_COMMON.
15355         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
15356
15357 2008-04-11  Bruno Haible  <bruno@clisp.org>
15358
15359         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
15360
15361 2008-04-11  Simon Josefsson  <simon@josefsson.org>
15362
15363         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
15364         of attempting to use non-existing /dev/*random.  Based on patch
15365         from Adam Strzelecki <ono@java.pl> in
15366         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
15367
15368 2008-04-08  Bruno Haible  <bruno@clisp.org>
15369
15370         Add tentative support for emx+gcc.
15371         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
15372         * lib/fpurge.c (fpurge): Likewise.
15373         * lib/freadable.c (freadable): Likewise.
15374         * lib/freadahead.c (freadahead): Likewise.
15375         * lib/freading.c (freading): Likewise.
15376         * lib/freadptr.c (freadptr): Likewise.
15377         * lib/freadseek.c (freadptrinc): Likewise.
15378         * lib/fseeko.c (rpl_fseeko): Likewise.
15379         * lib/fseterr.c (fseterr): Likewise.
15380         * lib/fwritable.c (fwritable): Likewise.
15381         * lib/fwriting.c (fwriting): Likewise.
15382         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
15383
15384 2008-04-09  Eric Blake  <ebb9@byu.net>
15385
15386         Avoid some autoconf warnings.
15387         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
15388         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
15389         * m4/afs.m4 (gl_AFS): Likewise.
15390         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
15391         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
15392         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
15393         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
15394         (gl_INTEGER_TYPE_SUFFIX): Likewise.
15395         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
15396         (AC_CHECK_DECLS_ONCE): Likewise.
15397         Rename file...
15398         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
15399         gnulib-tool requires autoconf 2.59 or better.
15400         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
15401
15402 2008-04-08  Eric Blake  <ebb9@byu.net>
15403
15404         Use 'git describe --match' if present (added in git 1.5.5).
15405         * build-aux/git-version-gen: Limit result to tags that match 'v*'
15406         if possible.
15407
15408 2008-04-08  Bruno Haible  <bruno@clisp.org>
15409
15410         Add tentative support for OpenServer.
15411         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
15412         _ptr, _cnt.
15413         * lib/fpurge.c (fpurge): Likewise.
15414         * lib/freadable.c (freadable): Likewise.
15415         * lib/freadahead.c (freadahead): Likewise.
15416         * lib/freading.c (freading): Likewise.
15417         * lib/freadptr.c (freadptr): Likewise.
15418         * lib/freadseek.c (freadptrinc): Likewise.
15419         * lib/fseeko.c (rpl_fseeko): Likewise.
15420         * lib/fseterr.c (fseterr): Likewise.
15421         * lib/fwritable.c (fwritable): Likewise.
15422         * lib/fwriting.c (fwriting): Likewise.
15423         Reported by Roger Cornelius <rac@tenzing.org> and
15424         Brian K. White <brian@aljex.com>.
15425
15426 2008-04-06  Jim Meyering  <meyering@redhat.com>
15427
15428         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
15429
15430 2008-04-06  Bruno Haible  <bruno@clisp.org>
15431
15432         Avoid possible error with non-ASCII bytes in UTF-8 locales.
15433         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
15434         * tests/test-printf-posix.sh: Likewise.
15435         * tests/test-vfprintf-posix.sh: Likewise.
15436         * tests/test-vprintf-posix.sh: Likewise.
15437         * tests/test-xprintf-posix.sh: Likewise.
15438
15439 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15440
15441         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
15442         hide error from 'ls', needed on OS/2.
15443         Report by Elbert Pol <elbert.pol@gmail.com>.
15444
15445 2008-04-04  Eric Blake  <ebb9@byu.net>
15446
15447         Make test-fseeko.c failures meaningful.
15448         * tests/test-fseeko.c: Print line number on failure.
15449         * tests/test-fseek.c: Likewise.
15450         Reported by Nelson H. F. Beebe.
15451
15452         Improve strtod bug detection check.
15453         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
15454         required for Solaris 10.
15455         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
15456
15457 2008-04-04  Bruno Haible  <bruno@clisp.org>
15458
15459         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
15460         by m4/setenv.m4.
15461
15462 2008-04-03  Eric Blake  <ebb9@byu.net>
15463
15464         Ensure sane .version contents.
15465         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
15466         version string.
15467         * build-aux/git-version-gen: Improve documentation.
15468
15469         Make GNU make output nicer.
15470         * top/GNUmakefile [!_have-Makefile]: Add dependency on
15471         MAKECMDGOALS to enforce message for all command line targets.  Set
15472         srcdir for use in maint.mk.
15473
15474         Another maintainer tweak.
15475         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
15476         a target that regenerates version.
15477
15478 2008-04-03  Jim Meyering  <meyering@redhat.com>
15479
15480         vc-list-files: don't cause coreutils "make po-check" failure
15481         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
15482
15483 2008-04-03  Eric Blake  <ebb9@byu.net>
15484
15485         Allow VPATH usage of vc-list-files.
15486         * build-aux/vc-list-files (scriptversion): Add timestamp.
15487         (options): Add --help, --version, -C.
15488         (CVS): Support installed cvsu.
15489
15490 2008-04-02  Bruno Haible  <bruno@clisp.org>
15491
15492         Avoid some "statement with no effect" warnings from gcc.
15493         * tests/test-wctype.c (main): Explicitly ignore unused values.
15494         Reported by Jim Meyering.
15495
15496 2008-04-02  Jim Meyering  <meyering@redhat.com>
15497
15498         Avoid some warnings from "gcc -Wshadow".
15499         * tests/test-frexp.c (exp): Define to a different identifier.
15500         * tests/test-frexpl.c (exp): Likewise.
15501
15502 2008-04-03  Jim Meyering  <meyering@redhat.com>
15503
15504         bootstrap: remove dangling *.[ch] symlinks from lib
15505         * build-aux/bootstrap [dangling symlink removal]: Move find's
15506         -depth option to precede all others, to avoid a warning.
15507         Remove *.[ch] files too, and from "$source_base" (usually lib/).
15508
15509 2008-04-02  Bruno Haible  <bruno@clisp.org>
15510
15511         Avoid some warnings from "gcc -Wshadow".
15512         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
15513         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
15514         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
15515         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
15516         Reported by Jim Meyering.
15517
15518 2008-04-01  Bruno Haible  <bruno@clisp.org>
15519
15520         Fix test to work on IRIX 6.5 with cc.
15521         * tests/test-math.c (numeric_equal): New function.
15522         (main): Use it.
15523
15524 2008-04-01  Bruno Haible  <bruno@clisp.org>
15525
15526         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
15527
15528 2008-04-01  Bruno Haible  <bruno@clisp.org>
15529
15530         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
15531         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
15532         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
15533         (Depends-on): Remove math.
15534
15535         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
15536         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
15537         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
15538         (Depends-on): Remove math.
15539
15540         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
15541         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
15542         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
15543         (Depends-on): Remove math.
15544         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
15545         (Depends-on): Remove math.
15546
15547         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
15548         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
15549         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
15550         (Depends-on): Remove math.
15551         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
15552         (Depends-on): Remove math.
15553
15554         * tests/test-round1.c: Include nan.h.
15555         (main): Use NaNd instead of NAN.
15556         * modules/round-tests (Files): Add tests/nan.h.
15557
15558         * tests/test-trunc1.c: Include nan.h.
15559         (main): Use NaNd instead of NAN.
15560         * modules/trunc-tests (Files): Add tests/nan.h.
15561
15562         * tests/test-roundf1.c: Include nan.h.
15563         (main): Use NaNf instead of NAN.
15564         * modules/roundf-tests (Files): Add tests/nan.h.
15565
15566         * tests/test-truncf1.c: Include nan.h.
15567         (main): Use NaNf instead of NAN.
15568         * modules/truncf-tests (Files): Add tests/nan.h.
15569
15570         * tests/test-ceilf1.c: Include nan.h.
15571         (main): Use NaNf instead of NAN.
15572         * modules/ceilf-tests (Files): Add tests/nan.h.
15573
15574         * tests/test-floorf1.c: Include nan.h.
15575         (main): Use NaNf instead of NAN.
15576         * modules/floorf-tests (Files): Add tests/nan.h.
15577
15578         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
15579         (main): Use NaNf instead of NAN.
15580         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
15581
15582         * tests/test-isnand.c: Include nan.h instead of <math.h>.
15583         (main): Use NaNd instead of NAN.
15584         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
15585
15586         * tests/test-frexp.c: Include nan.h.
15587         (main): Use NaNd instead of NAN.
15588         * modules/frexp-tests (Files): Add tests/nan.h.
15589
15590         * lib/isnan.c: Don't include <math.h>.
15591         (FUNC): Don't use NAN macro.
15592         * modules/isnand-nolibm (Depends-on): Remove math.
15593         * modules/isnanf-nolibm (Depends-on): Remove math.
15594         * modules/isnanl (Depends-on): Remove math.
15595         * modules/isnanl-nolibm (Depends-on): Remove math.
15596
15597         * tests/nan.h: New file.
15598
15599 2008-04-01  Eric Blake  <ebb9@byu.net>
15600
15601         Fix typos.
15602         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
15603         values to be the right type.
15604
15605         For now, cater to gnulib strtod inaccuracies.
15606         * tests/test-strtod.c (main): Allow 1-ulp error on expected
15607         fractional results.  While not as nice from a QoI perspective, it
15608         is a quicker patch than correctly implementing decimal to binary
15609         rounding.
15610
15611 2008-03-31  Eric Blake  <ebb9@byu.net>
15612
15613         Guarantee a definition of NAN.
15614         * lib/math.in.h (NAN): Define if missing.
15615         * tests/test-math.c (main): Test it.
15616         * doc/posix-headers/math.texi (math.h): Document this.
15617         * lib/isnan.c (rpl_isnand): Use it.
15618         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
15619         * tests/test-floorf1.c (NaN): Likewise.
15620         * tests/test-frexp.c (NaN): Likewise.
15621         * tests/test-isnand.c (NaN): Likewise.
15622         * tests/test-isnanf.c (NaN): Likewise.
15623         * tests/test-round1.c (NaN): Likewise.
15624         * tests/test-roundf1.c (NaN): Likewise.
15625         * tests/test-snprintf-posix.h (NaN): Likewise.
15626         * tests/test-sprintf-posix.h (NaN): Likewise.
15627         * tests/test-trunc1.c (NaN): Likewise.
15628         * tests/test-truncf1.c (NaN): Likewise.
15629         * tests/test-vasnprintf-posix.c (NaN): Likewise.
15630         * tests/test-vasprintf-posix.c (NaN): Likewise.
15631         * modules/isnand-nolibm (Depends-on): Add math.
15632         * modules/isnanf-nolibm (Depends-on): Likewise.
15633         * modules/isnanl (Depends-on): Likewise.
15634         * modules/isnanl-nolibm (Depends-on): Likewise.
15635         * modules/snprintf-posix-tests (Depends-on): Likewise.
15636         * modules/sprintf-posix-tests (Depends-on): Likewise.
15637         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
15638         * modules/vsprintf-posix-tests (Depends-on): Likewise.
15639         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
15640         * modules/vasprintf-posix-tests (Depends-on): Likewise.
15641
15642 2008-03-31  Bruno Haible  <bruno@clisp.org>
15643
15644         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
15645         * doc/posix-functions/strtod.texi: Likewise.
15646
15647 2008-03-31  Bruno Haible  <bruno@clisp.org>
15648
15649         * tests/test-strtod.c (main): Don't use C99 syntax.
15650
15651 2008-03-31  Bruno Haible  <bruno@clisp.org>
15652
15653         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
15654         Reported by Eric Blake.
15655
15656 2008-03-31  Jim Meyering  <meyering@redhat.com>
15657
15658         Don't compare actual signbit return values.
15659         * tests/test-strtod.c (main): Rather, compare only their
15660         zero/non-zero nature.
15661
15662 2008-03-31  Eric Blake  <ebb9@byu.net>
15663
15664         More strtod documentation.
15665         * doc/posix-functions/strtod.texi (strtod): Interpret more test
15666         failures as distinct bugs.
15667
15668 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
15669
15670         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
15671         Problem reported by Erik Benada in
15672         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
15673
15674 2008-03-30  Bruno Haible  <bruno@clisp.org>
15675
15676         * tests/test-strtod.c: Add comments about which assertion fails on which
15677         platform.
15678         * doc/posix-functions/strtod.texi: Add info about many more platforms.
15679
15680 2008-03-30  Eric Blake  <ebb9@byu.net>
15681
15682         Test signbit behavior on zeros.
15683         * tests/test-signbit.c (test_signbitf): Add tests for zero.
15684         (test_signbitd, test_signbitl): Likewise.
15685
15686         More strtod touchups.
15687         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
15688         sign of negative underflow, for now.  Use .5, not .1.
15689         * doc/posix-functions/strtod.texi (strtod): Mention these
15690         limitations.
15691         Reported by Jim Meyering.
15692
15693 2008-03-30  Bruno Haible  <bruno@clisp.org>
15694
15695         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
15696         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
15697
15698 2008-03-30  Bruno Haible  <bruno@clisp.org>
15699
15700         Avoid failure when attempting to return empty iconv results on some
15701         platforms.
15702         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
15703         allocation, don't report ENOMEM when the resulting string is empty.
15704
15705 2008-03-30  Bruno Haible  <bruno@clisp.org>
15706
15707         Fix buffer overrun.
15708         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
15709         Don't consider the width for tmp_length. Check count against tmp_length
15710         before doing the padding. Ensure enough allocation during padding.
15711
15712 2008-03-30  Eric Blake  <ebb9@byu.net>
15713
15714         strtod touchups.
15715         * lib/strtod.c (strtod): Avoid compiler warnings.
15716         Reported by Jim Meyering.
15717
15718 2008-03-30  Bruno Haible  <bruno@clisp.org>
15719
15720         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
15721         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
15722         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
15723         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
15724         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
15725         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
15726         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
15727         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
15728
15729         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
15730         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
15731         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
15732         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
15733         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
15734         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
15735         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
15736         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
15737
15738         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
15739         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
15740         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
15741         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
15742         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
15743         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
15744         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
15745         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
15746
15747         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
15748         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
15749
15750         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
15751         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
15752
15753         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
15754         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
15755
15756         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
15757         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
15758         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
15759
15760         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
15761         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
15762         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
15763
15764         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
15765         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
15766         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
15767
15768         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
15769         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
15770         * modules/vasprintf (Depends-on): Add EOVERFLOW.
15771
15772         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
15773         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
15774         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
15775         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
15776         (Depends-on): Add EOVERFLOW.
15777         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
15778         (Depends-on): Add EOVERFLOW.
15779         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
15780         (Depends-on): Add EOVERFLOW.
15781         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
15782         (Depends-on): Add EOVERFLOW.
15783         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
15784         (Depends-on): Add EOVERFLOW.
15785         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
15786         (Depends-on): Add EOVERFLOW.
15787         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
15788         (Depends-on): Add EOVERFLOW.
15789         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
15790         (Depends-on): Add EOVERFLOW.
15791
15792         * lib/sprintf.c (EOVERFLOW): Remove fallback.
15793         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
15794         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
15795
15796         * lib/snprintf.c (EOVERFLOW): Remove fallback.
15797         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
15798         * modules/snprintf (Depends-on): Add EOVERFLOW.
15799
15800         * lib/poll.c (EOVERFLOW): Remove fallback.
15801         * modules/poll (Depends-on): Add EOVERFLOW.
15802
15803         * lib/getugroups.c (EOVERFLOW): Remove fallback.
15804         * modules/getugroups (Depends-on): Add EOVERFLOW.
15805
15806         * lib/getdelim.c (EOVERFLOW): Remove fallback.
15807         * modules/getdelim (Depends-on): Add EOVERFLOW.
15808
15809         * lib/ftell.c (EOVERFLOW): Remove fallback.
15810         * modules/ftell (Depends-on): Add EOVERFLOW.
15811
15812         * lib/fprintf.c (EOVERFLOW): Remove fallback.
15813         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
15814         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
15815
15816         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
15817
15818         * modules/EOVERFLOW-tests: New file.
15819         * tests/test-EOVERFLOW.c: New file.
15820
15821         * modules/EOVERFLOW: New file.
15822         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
15823
15824 2008-03-30  Bruno Haible  <bruno@clisp.org>
15825
15826         Fix bug introduced on 2007-06-10.
15827         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
15828         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
15829
15830 2008-03-30  Bruno Haible  <bruno@clisp.org>
15831
15832         Improve freadseek's efficiency after ungetc.
15833         * lib/freadseek.c: Include freadahead.h.
15834         (freadptrinc): New function, extracted from freadseek.
15835         (freadseek): Use it in a loop. Use freadahead to determine the number
15836         of loop iterations.
15837         * modules/freadseek (Depends-on): Add freadahead.
15838         (configure.ac): Require AC_C_INLINE.
15839
15840 2008-03-30  Bruno Haible  <bruno@clisp.org>
15841
15842         * lib/freadseek.c (freadseek): Don't ignore the return value of
15843         freadptr.
15844
15845 2008-03-29  Eric Blake  <ebb9@byu.net>
15846
15847         Add hex float support.
15848         * modules/strtod (Depends-on): Add c-ctype.
15849         (Link): Mention POW_LIB.
15850         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
15851         whitespace between 'e' and exponent.
15852         * tests/test-strtod.c (main): Enable hex float tests.
15853         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
15854         now provides.
15855
15856         Document various strtod bugs, with some fixes.
15857         * doc/posix-functions/strtod.texi (strtod): Document bugs with
15858         "-0x", "inf", "nan", and hex constants.
15859         * doc/posix-functions/atof.texi (atof): Likewise.
15860         * modules/stdlib (Makefile.am): Support strtod.
15861         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
15862         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
15863         detect additional strtod bugs.
15864         * lib/stdlib.in.h (rpl_strtod): Add declarations.
15865         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
15866         bool where appropriate.  Parse 'inf' and 'nan'.
15867         * tests/test-strtod.c: New file.
15868         * modules/strtod (Depends-on): Add stdbool, stdlib.
15869         (configure.ac): Turn on module indicator.
15870         * modules/strtod-tests: New module.
15871
15872 2008-03-29  Eric Blake  <ebb9@byu.net>
15873
15874         Fix ftell on mingw.
15875         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
15876         * modules/ftell-tests (Depends-on): Add binary-io.
15877         * modules/ftello-tests (Depends-on): Likewise.
15878         * tests/test-ftell.c (main): Enhance test to cover behavior after
15879         ungetc.  Enforce binary mode.
15880         * tests/test-ftello.c (main): Likewise.
15881
15882         Pass test-freadseek on cygwin.
15883         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
15884         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
15885         ungetc buffer.
15886
15887         * tests/test-fflush2.c (main): Fix typo.
15888
15889 2008-03-29  Bruno Haible  <bruno@clisp.org>
15890
15891         * tests/test-fflush2.c (main): Temporarily disable the contents of
15892         this test.
15893         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
15894         Reported by Eric Blake.
15895
15896 2008-03-28  Simon Josefsson  <simon@josefsson.org>
15897
15898         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
15899         (GC_SHA224_DIGEST_SIZE): Add.
15900
15901         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
15902         (gc_hash_digest_length): Likewise.
15903         (gc_hash_buffer): Likewise.
15904
15905 2008-03-25  Bruno Haible  <bruno@clisp.org>
15906
15907         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
15908         detail which gettext release to use.
15909         Reported by Simon Josefsson.
15910
15911 2008-03-26  Jim Meyering  <meyering@redhat.com>
15912
15913         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
15914         * modules/gnumakefile (clean-GNUmakefile): Also, use
15915         test ... && ... || : syntax rather than if-then ... fi.
15916
15917         gnumakefile: Don't double-quote-expand $(VPATH) value.
15918         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
15919
15920 2008-03-24  Eric Blake  <ebb9@byu.net>
15921
15922         Alter GNUmakefile to install into top directory.
15923         * modules/maintainer-makefile: Split, and add dependency...
15924         * modules/gnumakefile: to this new module.
15925         * build-aux/GNUmakefile: Move...
15926         * top/GNUmakefile: ...here.
15927         * build-aux/maint.mk: Move...
15928         * top/maint.mk: ...here.
15929         * MODULES.html.sh (Support for maintaining...): Document new
15930         module.
15931
15932 2008-03-23  Bruno Haible  <bruno@clisp.org>
15933
15934         * gnulib-tool: New options --vc-files, --no-vc-files.
15935         (func_usage): Document them.
15936         (vc_files): New variable.
15937         (func_import): Consider vc_files.
15938         (func_create_testdir): Set vc_files to empty.
15939         Suggested by Jim Meyering and Karl Berry.
15940
15941 2008-03-23  Bruno Haible  <bruno@clisp.org>
15942
15943         Fix regex compilation error on HP-UX 11.
15944         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
15945         * modules/regex (Files): Add m4/mbstate_t.m4.
15946         Reported by Ton Voon <ton.voon@altinity.com>.
15947
15948 2008-03-23  Bruno Haible  <bruno@clisp.org>
15949
15950         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
15951
15952 2008-03-23  Eric Blake  <ebb9@byu.net>
15953             Bruno Haible  <bruno@clisp.org>
15954
15955         Install files from top/ in the destination directory.
15956         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
15957         augmentation also for the files from top/.
15958         (func_import, func_create_testdir): Rewrite file names:
15959         top/filename -> filename.
15960
15961 2008-03-23  Bruno Haible  <bruno@clisp.org>
15962
15963         Tweak "gnulib --version" output.
15964         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
15965
15966 2008-03-23  Bruno Haible  <bruno@clisp.org>
15967
15968         Tweak "gnulib --version" output.
15969         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
15970         rather than contents of ChangeLog, when possible.
15971
15972 2008-03-21  Eric Blake  <ebb9@byu.net>
15973
15974         More --version tweaks.
15975         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
15976         date of last ChangeLog entry.
15977
15978 2008-03-21  Jim Meyering  <meyering@redhat.com>
15979
15980         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
15981
15982 2008-03-20  Eric Blake  <ebb9@byu.net>
15983
15984         VPATH fix.
15985         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
15986
15987 2008-03-20  Simon Josefsson  <simon@josefsson.org>
15988
15989         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
15990         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
15991
15992 2008-03-20  Eric Blake  <ebb9@byu.net>
15993
15994         Sync GNUmakefile with coreutils.
15995         * build-aux/GNUmakefile (have-Makefile): Rename...
15996         (_have-Makefile): ...to this, for namespace consideration.
15997         (GNUmakefile.cfg): Include, if present.
15998         (_autoreconf): Define a default.
15999         (_is-dist-target): New rule for rebuilds to pick up intra-release
16000         version.
16001         (maint-cfg.mk): Rename...
16002         (cfg.mk): ...to this.
16003
16004 2008-03-18  Jim Meyering  <meyering@redhat.com>
16005
16006         New script and module: mktempd
16007         * MODULES.html.sh (maint+release support): Add mktempd.
16008         * build-aux/mktempd: New file.
16009         * modules/mktempd: New file.
16010
16011 2008-03-15  Jim Meyering  <meyering@redhat.com>
16012
16013         Undo last change.
16014         * lib/sha1.c, lib/md5.c: 63 != ~63.
16015         Reported by Andreas Schwab.
16016
16017         sha1.c, md5.c: Hoist a redundant expression.
16018         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
16019         "ctx->buflen" only once, before calling *_process_block.
16020         * lib/md5.c (md5_process_bytes): Likewise.
16021
16022 2008-03-14  Eric Blake  <ebb9@byu.net>
16023
16024         Bump copyright year in files generated by gnulib-tool.
16025         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
16026         gnulib-tool, rather than hard-coding it.
16027
16028         Fix 'gnulib-tool --version' output to work with git.
16029         * gnulib-tool (func_gnulib_dir): New function, extracted from...
16030         (startup): ...here.
16031         (func_version): Use it to invoke git-version-gen, rather than
16032         relying on CVS keyword expansion.  Modernize wording.
16033         (cvsdatestamp, last_checkin_date, version): Kill unused
16034         variables.
16035
16036 2008-03-12  Jim Meyering  <meyering@redhat.com>
16037
16038         Recognize optional cast of the argument to free.
16039         * build-aux/useless-if-before-free: Update regexps.
16040
16041         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
16042
16043 2008-03-11  Bruno Haible  <bruno@clisp.org>
16044
16045         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
16046         by a single package.
16047         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
16048         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
16049         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
16050         Reported by Sam Steingold <sds@gnu.org>.
16051
16052 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
16053
16054         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
16055         repositories.
16056
16057 2008-03-11  Bruno Haible  <bruno@clisp.org>
16058
16059         Avoid conflicts between local macro definitions.
16060         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
16061         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
16062
16063 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
16064             Bruno Haible  <bruno@clisp.org>
16065
16066         Make va_copy work with some version of xlc on AIX 5.1.
16067         * lib/stdarg.in.h: New file.
16068         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
16069         On AIX, use a <stdarg.h> file substitute.
16070         * modules/stdarg (Files): Add lib/stdarg.in.h.
16071         (Depends-on): Add include_next.
16072         (Makefile.am): Build a stdarg.h substitute if requested.
16073         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
16074
16075 2008-03-10  Bruno Haible  <bruno@clisp.org>
16076
16077         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
16078         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
16079         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
16080
16081 2008-03-10  Bruno Haible  <bruno@clisp.org>
16082
16083         * modules/stdlib (Depends-on): Add include_next, remove
16084         absolute-header.
16085
16086 2008-03-09  Bruno Haible  <bruno@clisp.org>
16087
16088         * lib/freadahead.h (freadahead): Document more precisely.
16089         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
16090         the sum of both buffer sizes.
16091         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
16092         * NEWS: Document the change.
16093
16094 2008-03-09  Bruno Haible  <bruno@clisp.org>
16095
16096         Extend freadptr to return also the buffer size.
16097         * lib/freadptr.h (freadptr): Add sizep argument.
16098         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
16099         (freadptr): Add sizep argument. Determine buffer size like freadahead
16100         does.
16101         * tests/test-freadptr.c: Don't include freadahead.h.
16102         (main): Adapt for new calling convention of freadptr.
16103         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
16104         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
16105         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
16106         tests/test-freadptr2.sh.
16107         (Depends): Remove freadahead.
16108         (TESTS): Add test-freadptr2.sh.
16109         (check_PROGRAMS): Add test-freadptr2.
16110
16111 2008-03-09  Bruno Haible  <bruno@clisp.org>
16112
16113         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
16114         Report and solution by Simon Josefsson.
16115
16116 2008-03-06  Bruno Haible  <bruno@clisp.org>
16117
16118         Make fflush after ungetc work on BSD platforms.
16119         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
16120         * tests/test-fflush2.c: New file.
16121         * tests/test-fflush2.sh: New file.
16122         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
16123         tests/test-fflush2.c.
16124         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
16125         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
16126
16127 2008-03-06  Eric Blake  <ebb9@byu.net>
16128
16129         Likewise for ftello.
16130         * modules/ftello (Dependencies): Add extensions.
16131         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
16132
16133 2008-03-06  Bruno Haible  <bruno@clisp.org>
16134
16135         * modules/fseeko (Dependencies): Add extensions.
16136         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
16137         Needed on glibc systems.
16138
16139 2008-03-06  Bruno Haible  <bruno@clisp.org>
16140
16141         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
16142         email address.
16143         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
16144
16145 2008-03-06  Bruno Haible  <bruno@clisp.org>
16146
16147         * users.txt: Add libgnupdf.
16148
16149 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
16150
16151         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
16152         (Header File Substitutes, Function Substitutes,
16153         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
16154         (Build robot for gnulib): Fix typo.
16155
16156 2008-03-06  Bruno Haible  <bruno@clisp.org>
16157
16158         * doc/gnulib-tool.texi (VCS Issues): Small updates.
16159         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
16160
16161 2008-03-06  Bruno Haible  <bruno@clisp.org>
16162
16163         * doc/func.texi: New file, extracted from doc/gnulib.texi.
16164         * doc/gnulib.texi: Include it.
16165
16166 2008-03-06  Simon Josefsson  <simon@josefsson.org>
16167
16168         * modules/func (License): Change license to unlimited; there was
16169         no LGPL parts in the module anyway.
16170
16171 2008-03-06  Simon Josefsson  <simon@josefsson.org>
16172
16173         * modules/__func__: Renamed to modules/func.
16174         * modules/__func__-tests: Renamed to modules/func-tests.
16175         * tests/test-__func__.c: Renamed to tests/test-func.c.
16176         * m4/__func__.m4: Renamed to m4/func.m4.
16177         * doc/gnulib.texi (__func__): Section renamed to func.
16178         Suggested by Eric Blake <ebb9@byu.net>.
16179
16180 2008-03-06  Simon Josefsson  <simon@josefsson.org>
16181
16182         * doc/gnulib.texi (__func__): Use C99 terminology when talking
16183         about __func__.  Make example self-contained.  Suggested by Eric
16184         Blake <ebb9@byu.net>.
16185
16186         * tests/test-__func__.c (main): Avoid extraneous () around __func.
16187         Suggested by Eric Blake <ebb9@byu.net>.
16188
16189 2008-03-06  Simon Josefsson  <simon@josefsson.org>
16190
16191         * modules/__func__: New file.
16192         * modules/__func__-tests: New file.
16193         * tests/test-__func__.c: New file.
16194         * m4/__func__.m4: New file.
16195         * doc/gnulib.texi (__func__): Document __func__ module.
16196
16197 2008-03-05  Simon Josefsson  <simon@josefsson.org>
16198
16199         * modules/byteswap (License): Re-license as LGPLv2+.
16200
16201 2008-03-05  Simon Josefsson  <simon@josefsson.org>
16202
16203         * doc/Makefile: Add pdf target.
16204
16205 2008-03-05  Simon Josefsson  <simon@josefsson.org>
16206
16207         * modules/inline (License): Use 'unlimited', since there are only
16208         *.m4 files in this module.
16209
16210 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
16211             Bruno Haible  <bruno@clisp.org>
16212
16213         Add support for HP C 7.1 on OpenVMS 8.3.
16214         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
16215
16216 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
16217
16218         Update VMS specifics.
16219         * lib/getopt.c [VMS]: Remove include of unixlib.h.
16220
16221 2008-03-02  Jim Meyering  <meyering@redhat.com>
16222
16223         Remove the last dependency on the "free" module.
16224         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
16225         Reported by Bob Proulx.
16226
16227         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
16228
16229         Remove useless "if" tests before free.  Deprecate "free" module.
16230         * doc/posix-functions/free.texi: Mention that this
16231         module is no longer useful.
16232         * modules/free (Notice): Say this module is obsolete.
16233         * modules/readutmp (Depends-on): Remove free.
16234         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
16235         * lib/putenv.c (putenv): Likewise.
16236         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
16237         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
16238         * tests/test-c-strcasestr.c (main): Likewise.
16239         * tests/test-c-strstr.c (main): Likewise.
16240         * tests/test-mbscasestr1.c (main): Likewise.
16241         * tests/test-mbscasestr2.c (main): Likewise.
16242         * tests/test-mbsstr1.c (main): Likewise.
16243         * tests/test-mbsstr2.c (main): Likewise.
16244         * tests/test-memmem.c (main): Likewise.
16245         * tests/test-strcasestr.c (main): Likewise.
16246         * tests/test-striconv.c (main): Likewise.
16247         * tests/test-striconveh.c (main): Likewise.
16248         * tests/test-striconveha.c (main): Likewise.
16249         * tests/test-strstr.c (main): Likewise.
16250
16251         * build-aux/git-version-gen: Adjust a comment and the Usage string.
16252
16253         bootstrap: sync from coreutils again
16254         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
16255
16256 2008-03-01  Jim Meyering  <meyering@redhat.com>
16257
16258         bootstrap: sync from coreutils
16259         * build-aux/bootstrap (update_po_files): Copy a .po file into place
16260         also when the target doesn't exist.
16261
16262 2008-03-01  Eric Blake  <ebb9@byu.net>
16263
16264         Fix bugs in last patch.
16265         * lib/memchr2.c (memchr2): Fix typo.
16266         * tests/test-memchr2.c: Test previous bug, and don't use GNU
16267         extension.
16268         Reported by Bruce Korb.
16269
16270         New module 'memchr2'.
16271         * modules/memchr2: New file.
16272         * modules/memchr2-tests: Likewise.
16273         * lib/memchr2.h: Likewise.
16274         * lib/memchr2.c: Likewise, based on memchr.c.
16275         * tests/test-memchr2.c: New test.
16276         * MODULES.html.sh (String handling): Add memchr2.
16277
16278 2008-02-29  Bruno Haible  <bruno@clisp.org>
16279
16280         * modules/freadseek-tests: New file.
16281         * tests/test-freadseek.sh: New file.
16282         * tests/test-freadseek.c: New file.
16283
16284         New module 'freadseek'.
16285         * modules/freadseek: New file.
16286         * lib/freadseek.h: New file.
16287         * lib/freadseek.c: New file.
16288         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
16289
16290 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
16291
16292         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
16293         wydawca.
16294
16295         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
16296         program_invocation_name and program_invocation_short_name are
16297         present.
16298
16299 2008-02-28  Bruno Haible  <bruno@clisp.org>
16300
16301         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
16302         * tests/test-freadptr.sh: Also test non-seekable stdin.
16303
16304 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
16305
16306         * build-aux/bootstrap (source_base, m4_base)
16307         (doc_base, tests_base): New variables.
16308         (gnulib_tool_options): Do not hardcode base directories, use
16309         the above variables instead.
16310
16311 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
16312
16313         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
16314
16315 2008-02-28  Bruno Haible  <bruno@clisp.org>
16316
16317         * modules/freadptr-tests: New file.
16318         * tests/test-freadptr.sh: New file.
16319         * tests/test-freadptr.c: New file.
16320
16321         New module 'freadptr'.
16322         * modules/freadptr: New file.
16323         * lib/freadptr.h: New file.
16324         * lib/freadptr.c: New file.
16325         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
16326
16327 2008-02-26  Karl Berry  <karl@freefriends.org>
16328
16329         Sync from Libtool:
16330         * libltdl/argz.c (argz_add, argz_count): New functions.
16331         * libltdl/argz.in.h: Declare them.
16332         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
16333
16334 2008-02-22  Bruno Haible  <bruno@clisp.org>
16335
16336         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
16337         is a pointer type.  Needed for HP-UX 10.
16338         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
16339         * doc/posix-functions/gmtime_r.texi: Likewise.
16340         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
16341
16342 2008-02-24  Bruno Haible  <bruno@clisp.org>
16343
16344         * modules/environ-tests: New file.
16345         * tests/test-environ.c: New file.
16346
16347         New module 'environ'.
16348         * modules/environ: New file.
16349         * lib/unistd.in.h (environ): New declaration.
16350         * m4/environ.m4: New file.
16351         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
16352         after use.
16353         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
16354         HAVE_DECL_ENVIRON.
16355         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
16356         HAVE_DECL_ENVIRON.
16357         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
16358         wrong claim that 'environ' is missing on some systems.
16359         * modules/execute (Depends-on): Add environ.
16360         * lib/execute.c (environ): Remove fallback declaration.
16361         * modules/pipe (Depends-on): Add environ.
16362         * lib/pipe.c (environ): Remove fallback declaration.
16363         * modules/setenv (Depends-on): Add environ.
16364         * lib/setenv.c (environ): Remove fallback declaration.
16365         * modules/unsetenv (Depends-on): Add environ.
16366         * lib/unsetenv.c (environ): Remove fallback declaration.
16367         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
16368         m4/environ.m4.
16369         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
16370         (gl_PREREQ_UNSETENV): Likewise.
16371
16372 2008-02-24  Bruno Haible  <bruno@clisp.org>
16373
16374         * doc/posix-functions/environ.texi: Document the MacOS X problem.
16375
16376 2008-02-20  Bob Proulx  <bob@proulx.com>
16377
16378         Enable use of older two part flavor 'git describe'.
16379         * build-aux/git-version-gen: If using the older two part flavor of
16380         git version then recreate the third part now present in the
16381         newer three part flavor of git describe.
16382
16383 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
16384
16385         * lib/fts.c (fts_build): Typo correction to comment.
16386
16387 2008-02-17  Bruno Haible  <bruno@clisp.org>
16388
16389         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
16390         generating no-op conflicts.
16391
16392 2008-02-17  Bruno Haible  <bruno@clisp.org>
16393
16394         Speed up by 10%.
16395         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
16396         result_entries, rather than an index-based loop.
16397
16398 2008-02-17  Bruno Haible  <bruno@clisp.org>
16399
16400         Speed up by 25%.
16401         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
16402         'hashcode_cached'.
16403         (entry_create): New function.
16404         (entry_hashcode): Use the cached hashcode if possible.
16405         (read_changelog_file, try_split_merged_entry): Use entry_create.
16406
16407 2008-02-17  Bruno Haible  <bruno@clisp.org>
16408
16409         Speed up from O(n^2) to O(n) for long ChangeLog files.
16410         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
16411         (read_changelog_file): Change implementation of entries_reversed list
16412         to rbtreehash.
16413         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
16414
16415 2008-02-17  Bruno Haible  <bruno@clisp.org>
16416
16417         New option --split-merged-entry.
16418         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
16419         (find_paragraph_end, try_split_merged_entry): New functions.
16420         (long_options): Add option --split-merged-entry.
16421         (usage): Document option --split-merged-entry.
16422         (main): Implement option --split-merged-entry.
16423         Reported by Eric Blake.
16424
16425 2008-02-17  Bruno Haible  <bruno@clisp.org>
16426
16427         * lib/git-merge-changelog.c: Include c-strstr.h.
16428         (main): Support the "git pull --rebase" situation.
16429         * modules/git-merge-changelog (Depends-on): Add c-strstr.
16430         Reported by Eric Blake.
16431
16432 2008-02-16  Eric Blake  <ebb9@byu.net>
16433
16434         Avoid doubling \ in common case of "c-maybe" quoting style.
16435         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
16436         eliding outer quotes.
16437         * lib/quotearg.h: Document this.
16438         * tests/test-quotearg.c (result_strings, inputs, results_g)
16439         (flag_results, locale_results): Test it by adding a new string to
16440         each test group.
16441         (compare_strings): Test new string.
16442
16443 2008-02-13  Eric Blake  <ebb9@byu.net>
16444
16445         Avoid trigraph quoting in default output.
16446         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
16447         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
16448         unless explicitly requested.
16449         * tests/test-quotearg.c (flag_results, main): Add additional tests.
16450
16451 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
16452
16453         Don't rely on signed integer overflowing to negative value.
16454         * lib/getugroups.c (getugroups): Include <limits.h>.
16455         Instead, compare against INT_MAX, and increment only if the test passes.
16456
16457 2008-02-13  Jim Meyering  <meyering@redhat.com>
16458         and Eric Blake  <ebb9@byu.net>
16459
16460         Avoid shadowing warning and compile errors on Linux.
16461         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
16462         forwarding macros on Linux.
16463         (dcgettext): Define a stub, for Linux.
16464         (results_g, main): Avoid warnings.
16465
16466 2008-02-12  Eric Blake  <ebb9@byu.net>
16467
16468         Silence warning in last patch.
16469         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
16470
16471         Quotearg part 4: add tests, fix c-maybe colon quoting.
16472         * lib/quotearg.h: Improve documentation.
16473         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
16474         escapes when adding outer quotes.  When quoting trigraphs, use
16475         valid C notation.  When quoting NUL, omit extra characters if next
16476         character is not digit.  Alter prototype.
16477         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
16478         callers.
16479         * modules/quotearg-tests: New module.
16480         * tests/test-quotearg.c: New test.
16481
16482 2008-02-07  Eric Blake  <ebb9@byu.net>
16483
16484         Quotearg part 3: add flag to control outer quote elision.
16485         * lib/quotearg.h (c_maybe_quoting_style): New style.
16486         (enum quoting_flags): Better documentation of flags.
16487         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
16488         c-maybe style.
16489         (quotearg_buffer_restyled): Handle new flag to elide outer
16490         quotes.
16491
16492         Quotearg part 2: add flag that can control NUL elision.
16493         * lib/quotearg.h (set_quoting_flags): New prototype.
16494         * lib/quotearg.c (struct quoting_options): Add flag field.
16495         (set_quoting_flags): New function.
16496         (quotearg_buffer_restyled): Add flags parameter.
16497         (quotearg_alloc_mem): Set the flag if length cannot be returned.
16498         (quotearg_n_options): Set the flag, since length cannot be
16499         returned.
16500         (quoting_options_from_style): Default flags correctly.
16501
16502         Quotearg part 1: more wrappers, restore quotearg_char state.
16503         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
16504         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
16505         (quotearg_colon_mem): New wrappers.
16506         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
16507         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
16508         functions.
16509         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
16510         (quotearg_colon_mem): New functions.
16511
16512 2008-02-11  Bruno Haible  <bruno@clisp.org>
16513
16514         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
16515         library in the current directory: it does not work with parallel make.
16516         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16517
16518 2008-02-11  Bruno Haible  <bruno@clisp.org>
16519
16520         * .gitattributes: New file.
16521
16522 2008-02-11  Jim Meyering  <meyering@redhat.com>
16523
16524         useless-if-before-free: Fix reversed exit values.
16525         * build-aux/useless-if-before-free: Use correct values
16526         for EXIT_MATCH and EXIT_NO_MATCH.
16527
16528         * build-aux/useless-if-before-free: Close stdout carefully.
16529
16530 2008-02-10  Bruno Haible  <bruno@clisp.org>
16531
16532         New module 'git-merge-changelog'.
16533         * modules/git-merge-changelog: New file.
16534         * lib/git-merge-changelog.c: New file.
16535
16536 2008-02-10  Jim Meyering  <meyering@redhat.com>
16537
16538         useless-if-before-free: New option: --list (-l).
16539
16540         useless-if-before-free: Don't exit immediately upon open failure.
16541         * build-aux/useless-if-before-free: Exit 2 for errors.
16542         Upon failure to open a file, don't exit immediately.
16543         Rather, just warn and continue with any remaining files.
16544
16545 2008-02-10  Bruno Haible  <bruno@clisp.org>
16546
16547         New abstract list operation 'node_set_value'.
16548         * lib/gl_list.h (gl_list_node_set_value): New function.
16549         (struct gl_list_implementation): New field node_set_value.
16550         * lib/gl_list.c (gl_list_node_set_value): New function.
16551         * lib/gl_array_list.c (gl_array_node_set_value): New function.
16552         (gl_array_list_implementation): Update.
16553         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
16554         (gl_carray_list_implementation): Update.
16555         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
16556         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
16557         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
16558         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
16559         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
16560         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
16561         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
16562         Update.
16563         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
16564         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
16565         (gl_sublist_list_implementation): Update.
16566
16567 2008-02-10  Bruno Haible  <bruno@clisp.org>
16568
16569         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
16570         Needed when ELEMENT is #defined to 'some_type *'.
16571
16572 2008-02-10  Jim Meyering  <meyering@redhat.com>
16573
16574         New script and module: useless-if-before-free
16575         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
16576         * build-aux/useless-if-before-free: New file.
16577         * modules/useless-if-before-free: New file.
16578
16579         * build-aux/gitlog-to-changelog: Use committer date, not author date.
16580
16581         xstrtol_error: Fix typo.
16582         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
16583         s/exit_failure/exit_status/.
16584
16585 2008-02-09  Jim Meyering  <meyering@redhat.com>
16586
16587         New script and module: gitlog-to-changelog
16588         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
16589         * modules/gitlog-to-changelog: New file.
16590         * build-aux/gitlog-to-changelog: New file.
16591
16592 2008-02-08  Jim Meyering  <meyering@redhat.com>
16593
16594         Avoid two "parameter unused" warnings.
16595         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
16596         Mark "st" as used.
16597
16598         Use "git COMMAND", not "git-COMMAND".
16599         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
16600         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
16601         * build-aux/git-version-gen: Use "git status", not "git-status".
16602
16603 2008-02-07  Bruno Haible  <bruno@clisp.org>
16604
16605         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
16606         Avoids a crash on Windows Vista.
16607         Reported by Adam Strzelecki <ono@java.pl> via
16608         Simon Josefsson <simon@josefsson.org>.
16609
16610 2008-02-06  Bruno Haible  <bruno@clisp.org>
16611
16612         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
16613         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
16614         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
16615         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
16616         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16617         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16618         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
16619         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
16620         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16621         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16622         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16623         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16624         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16625         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16626         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16627         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
16628         left-adjust flag.
16629         * tests/test-snprintf-posix.h (test_function): Likewise.
16630         * tests/test-sprintf-posix.h (test_function): Likewise.
16631         * tests/test-vasprintf-posix.c (test_function): Likewise.
16632         * doc/posix-functions/fprintf.texi: Update.
16633         * doc/posix-functions/printf.texi: Update.
16634         * doc/posix-functions/snprintf.texi: Update.
16635         * doc/posix-functions/sprintf.texi: Update.
16636         * doc/posix-functions/vfprintf.texi: Update.
16637         * doc/posix-functions/vprintf.texi: Update.
16638         * doc/posix-functions/vsnprintf.texi: Update.
16639         * doc/posix-functions/vsprintf.texi: Update.
16640         Reported by Peter Fales <psfales@alcatel-lucent.com>.
16641
16642 2008-02-06  Bruno Haible  <bruno@clisp.org>
16643
16644         Fix bug introduced on 2008-01-26.
16645         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
16646
16647 2008-02-06  Bruno Haible  <bruno@clisp.org>
16648
16649         Fix bug introduced on 2007-06-10.
16650         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
16651         !NEED_PRINTF_FLAG_ZERO.
16652
16653 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
16654
16655         getloadavg: use libperfstat on AIX5
16656         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
16657
16658 2008-02-03  Bruno Haible  <bruno@clisp.org>
16659
16660         * lib/diffseq.h: Add comments about required #includes.
16661         Reported by Michael Biggs <gnulib@doubleplum.net>.
16662
16663 2008-02-01  Bruno Haible  <bruno@clisp.org>
16664
16665         * users.txt: Add gnuit.
16666
16667 2008-01-31  Bruno Haible  <bruno@clisp.org>
16668
16669         * lib/md4.c (set_uint32): Mark as inline.
16670         * lib/md5.c (set_uint32): Likewise.
16671         * lib/sha1.c (set_uint32): Likewise.
16672         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
16673         * m4/md5.m4 (gl_MD5): Likewise.
16674         * m4/sha1.m4 (gl_SHA1): Likewise.
16675
16676 2008-01-31  Jim Meyering  <meyering@redhat.com>
16677
16678         Use "sizeof VAR", rather than a literal "4".
16679         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
16680         * lib/md4.c (md4_read_ctx): Likewise.
16681         * lib/sha1.c (sha1_read_ctx): Likewise.
16682
16683 2008-01-31  Simon Josefsson  <simon@josefsson.org>
16684
16685         * tests/test-sha1.c: New file, based on test-md5.c.
16686
16687         * modules/crypto/sha1-tests: New file.
16688
16689 2008-01-31  Simon Josefsson  <simon@josefsson.org>
16690
16691         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
16692
16693 2008-01-31  Jim Meyering  <meyering@redhat.com>
16694
16695         Prefer "sizeof v" over the equivalent "4".
16696         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
16697         * lib/md5.c (set_uint32): Likewise.
16698         * lib/sha1.c (set_uint32): Likewise.
16699
16700 2008-01-31  Simon Josefsson  <simon@josefsson.org>
16701
16702         * lib/sha1.c (set_uint32): Mark function as static.
16703
16704 2008-01-31  Simon Josefsson  <simon@josefsson.org>
16705
16706         md2: clarify comments to say that alignment is not required.
16707         * lib/md2.h: Remove warning about alignment in comment.
16708         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
16709         never been required.
16710
16711 2008-01-31  Simon Josefsson  <simon@josefsson.org>
16712
16713         md4: adapt alignment constraint fix from sha1.
16714         * lib/md4.c (set_uint32): New function, from sha1.c
16715         (md4_read_ctx): Use it.
16716         (md4_finish_ctx): Doc fix.
16717         * lib/md4.h: Doc fix.
16718
16719 2008-01-31  Simon Josefsson  <simon@josefsson.org>
16720
16721         md5: adapt alignment constraint fix from sha1.
16722         * lib/md5.c (set_uint32): New function, from sha1.c
16723         (md5_read_ctx): Use it.
16724         (md5_finish_ctx): Doc fix.
16725         * lib/md5.h: Doc fix.
16726
16727 2008-01-30  Peter Palfrader  <weasel@debian.org>
16728
16729         sha1: remove the result buffer alignment constraint
16730         * lib/sha1.c (set_uint32): New function.
16731         (sha1_read_ctx): Rewrite to remove the result buffer alignment
16732         constraint.
16733         (sha1_finish_ctx): Remove comment warning about alignment constraint.
16734         * lib/sha1.h: Likewise.
16735
16736 2008-01-30  Andreas Schwab  <schwab@suse.de>
16737             Bruno Haible  <bruno@clisp.org>
16738
16739         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
16740         correct definition of LDBL_MIN_EXP.
16741
16742 2008-01-30  Karl Berry  <karl@gnu.org>
16743
16744         * config/srclist-update: try to preserve x bit on updates.
16745         * config/srclistvars.sh: update for karl.
16746
16747 2008-01-29  Jim Meyering  <meyering@redhat.com>
16748
16749         vasnprintf.c: Avoid warning about unused label
16750         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
16751         "overflow" label definition and associated code with the
16752         same cpp condition that guards the sole use of that label.
16753
16754 2008-01-26  Bruno Haible  <bruno@clisp.org>
16755
16756         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
16757         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
16758         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
16759         * lib/isnanl-nolibm.h (isnanl): Likewise.
16760         Reported by Paul Eggert <eggert@cs.ucla.edu>.
16761
16762 2008-01-26  Bruno Haible  <bruno@clisp.org>
16763
16764         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
16765         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
16766
16767 2008-01-26  Bruno Haible  <bruno@clisp.org>
16768
16769         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
16770         GCC >= 4.0 built-in.
16771         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
16772
16773 2008-01-26  Bruno Haible  <bruno@clisp.org>
16774
16775         Rename isnan, applicable to 'double' only, to isnand.
16776         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
16777         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
16778         (configure.ac): Update.
16779         (Include): Replace "isnan.h" with "isnand.h".
16780         * m4/isnand.m4: Renamed from m4/isnan.m4.
16781         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
16782         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
16783         instead of isnan.c.
16784         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
16785         instead of HAVE_ISNAN_IN_LIBC.
16786         (isnand): Renamed from isnan.
16787         * lib/isnand.c: New file.
16788         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
16789         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
16790         (Makefile.am): Update.
16791         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
16792         Include isnand.h instead of isnan.h.
16793         (main): Test isnand instead of isnan.
16794         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
16795         isnan-nolibm.
16796         * modules/frexp (Depends-on): Likewise.
16797         * modules/frexp-tests (Depends-on): Likewise.
16798         * modules/frexp-nolibm (Depends-on): Likewise.
16799         * modules/frexp-nolibm-tests (Depends-on): Likewise.
16800         * modules/isfinite (Depends-on): Likewise.
16801         * modules/round-tests (Depends-on): Likewise.
16802         * modules/signbit (Depends-on): Likewise.
16803         * modules/signbit-tests (Depends-on): Likewise.
16804         * modules/snprintf-posix (Depends-on): Likewise.
16805         * modules/sprintf-posix (Depends-on): Likewise.
16806         * modules/trunc-tests (Depends-on): Likewise.
16807         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
16808         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
16809         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
16810         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
16811         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
16812         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
16813         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
16814         * modules/vasnprintf-posix (Depends-on): Likewise.
16815         * modules/vasprintf-posix (Depends-on): Likewise.
16816         * modules/vfprintf-posix (Depends-on): Likewise.
16817         * modules/vsnprintf-posix (Depends-on): Likewise.
16818         * modules/vsprintf-posix (Depends-on): Likewise.
16819         * lib/frexp.c: Include isnand.h instead of isnan.h.
16820         (ISNAN): Set to isnand instead of isnan.
16821         * lib/isfinite.c: Include isnand.h instead of isnan.h.
16822         (gl_isfinited): Use isnand instead of isnan.
16823         * lib/signbitd.c: Include isnand.h instead of isnan.h.
16824         (gl_signbitd): Use isnand instead of isnan.
16825         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
16826         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
16827         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
16828         (main): Use isnand instead of isnan.
16829         * tests/test-round1.c: Include isnand.h.
16830         (main): Use isnand instead of isnan.
16831         * tests/test-round2.c: Include isnand.h instead of isnan.h.
16832         (ISNAN): Set to isnand instead of isnan.
16833         * tests/test-trunc1.c: Include isnand.h.
16834         (main): Use isnand instead of isnan.
16835         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
16836         (equal): Use isnand instead of isnan.
16837         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
16838         isnand-nolibm.
16839         * NEWS: Mention the change.
16840
16841 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
16842             Bruno Haible  <bruno@clisp.org>
16843
16844         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
16845         the GCC builtins for signbits are present and set
16846         REPLACE_SIGNBIT_USING_GCC if so.
16847         * lib/math.in.h (signbit): Define using GCC builtins if
16848         REPLACE_SIGNBIT_USING_GCC is set.
16849         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
16850         REPLACE_SIGNBIT_USING_GCC.
16851         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
16852
16853 2008-01-25  Jim Meyering  <meyering@redhat.com>
16854
16855         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
16856         * lib/poll.c: Include <config.h>, not "config.h".
16857         * tests/test-getaddrinfo.c: Likewise.
16858
16859 2008-01-25  Simon Josefsson  <simon@josefsson.org>
16860
16861         * modules/sockets-tests: New file.
16862
16863 2008-01-24  Simon Josefsson  <simon@josefsson.org>
16864
16865         * modules/sockets: New module, can be used to call WSA_Startup and
16866         WSA_Cleanup when needed.
16867
16868         * lib/sockets.h, lib/sockets.c: New files.
16869
16870         * m4/sockets.m4: New file.
16871
16872         * tests/test-sockets.c: New file.
16873
16874 2008-01-19  Bruno Haible  <bruno@clisp.org>
16875
16876         * doc/posix-headers: Renamed from doc/headers.
16877         * doc/posix-functions: Renamed from doc/functions.
16878         * doc/gnulib.texi: Update.
16879
16880 2008-01-19  Bruno Haible  <bruno@clisp.org>
16881
16882         * doc/glibc-functions/strcasestr.texi: Include contents of
16883         doc/functions/strcasestr.texi, fixing the list of platforms.
16884         * doc/functions/strcasestr.texi: Remove file.
16885
16886 2008-01-19  Bruno Haible  <bruno@clisp.org>
16887
16888         * doc/glibc-functions/memmem.texi: Include contents of
16889         doc/functions/memmem.texi.
16890         * doc/functions/memmem.texi: Remove file.
16891
16892 2008-01-18  Bruno Haible  <bruno@clisp.org>
16893
16894         * doc/glibc-functions/*.texi: New files.
16895         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
16896         to use the new files.
16897
16898 2008-01-17  Bruno Haible  <bruno@clisp.org>
16899
16900         * tests/test-gethostname.c (main): Fix printf statement.
16901
16902 2008-01-17  Simon Josefsson  <simon@josefsson.org>
16903
16904         * modules/gethostname-tests: New file.
16905
16906         * tests/test-gethostname.c: New file.
16907
16908 2008-01-17  Simon Josefsson  <simon@josefsson.org>
16909
16910         * lib/gethostname.c: Include string.h unconditionally, strncpy is
16911         used by the UNAME case.  Reported by Bruno Haible
16912         <bruno@clisp.org>.
16913
16914 2008-01-17  Eric Blake  <ebb9@byu.net>
16915
16916         Convert c-strcasestr to be more efficient.
16917         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
16918         (Depends-on): Add c-strcase, remove malloca, strnlen.
16919         * tests/test-c-strcasestr.c (main): Enhance test.
16920         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
16921
16922 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
16923
16924         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
16925         Use it in creating po/Makevars.
16926
16927 2008-01-15  Simon Josefsson  <simon@josefsson.org>
16928
16929         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
16930         Applications that requires it should initialize libgcrypt
16931         manually.
16932
16933 2008-01-16  Simon Josefsson  <simon@josefsson.org>
16934
16935         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
16936
16937 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
16938
16939         Fix problem with getdate on mingw32 reported by Simon Josefsson
16940         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
16941         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
16942         tzname", when deciding whether to declare tzname.
16943         * lib/strftime.c (tzname): Likewise.
16944
16945 2008-01-15  Bruno Haible  <bruno@clisp.org>
16946
16947         Work around a MacOS X 10.5 bug in frexpl().
16948         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
16949         * doc/functions/frexpl.texi: Document the bug.
16950         Reported by Elias Pipping <pipping@gentoo.org>.
16951
16952 2008-01-14  Eric Blake  <ebb9@byu.net>
16953
16954         Touch up previous patch.
16955         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
16956         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
16957
16958         Convert strcasestr module to use Two-Way algorithm.
16959         * modules/strcasestr-simple: New module, based on the old
16960         strcasestr, but with Two-Way rather than KMP.
16961         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
16962         * lib/string.in.h (rpl_strcasestr): Declare.
16963         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
16964         performance.
16965         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
16966         * modules/string (Makefile.am): Support strcasestr.
16967         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
16968         * modules/strcasestr-tests (Depends-on): Check for alarm.
16969         * tests/test-strcasestr.c: Augment test.
16970         * lib/str-two-way.h: Clean up stray macro.
16971         * NEWS: Document new module.
16972         * MODULES.html.sh (string handling): Likewise.
16973         * doc/functions/strcasestr.texi: New file.
16974         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
16975         here, since it is not a POSIX function.
16976
16977 2008-01-14  Colin Watson  <cjwatson@debian.org>
16978             Bruno Haible  <bruno@clisp.org>
16979
16980         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
16981         works fine; if not, set REPLACE_STRSIGNAL.
16982         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
16983         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
16984         REPLACE_STRSIGNAL.
16985         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
16986         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
16987         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
16988
16989 2008-01-14  Bruno Haible  <bruno@clisp.org>
16990
16991         * modules/strsignal (Include): Change to <string.h>.
16992
16993 2008-01-14  Colin Watson  <cjwatson@debian.org>
16994
16995         * modules/argp (Notice): Add a notice recommending to change
16996         XGETTEXT_OPTIONS.
16997         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
16998
16999 2008-01-13  Colin Watson  <cjwatson@debian.org>
17000
17001         * modules/strsignal-tests: New file.
17002         * tests/test-strsignal.c: New file.
17003
17004         * lib/strsignal.c: New file, from glibc with modifications.
17005         * lib/siglist.h: New file, from glibc with modifications.
17006         * lib/string.in.h (strsignal): New declaration.
17007         * m4/strsignal.m4: New file.
17008         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17009         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
17010         * modules/strsignal: New file.
17011         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
17012         HAVE_DECL_STRSIGNAL.
17013
17014 2008-01-13  Bruno Haible  <bruno@clisp.org>
17015
17016         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
17017         locale encoding is not ASCII. Needed for OpenBSD 4.0.
17018         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
17019         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
17020
17021 2008-01-13  Bruno Haible  <bruno@clisp.org>
17022
17023         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
17024         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
17025         * lib/argp.h (__attribute__): Likewise.
17026         * lib/c-stack.c (__attribute__): Likewise.
17027         * lib/error.h (__attribute__): Likewise.
17028         * lib/fts.c (__attribute__): Likewise.
17029         * lib/openat.h (__attribute__): Likewise.
17030         * lib/stdio.in.h (__attribute__): Likewise.
17031         * lib/string.in.h (__attribute__): Likewise.
17032         * lib/utimens.c (__attribute__): Likewise.
17033         * lib/vasnprintf.h (__attribute__): Likewise.
17034         * lib/xalloc.h (__attribute__): Likewise.
17035         * lib/xprintf.h (__attribute__): Likewise.
17036         * lib/xstrtol.h (__attribute__): Likewise.
17037         * lib/xvasprintf.h (__attribute__): Likewise.
17038
17039 2008-01-12  Bruno Haible  <bruno@clisp.org>
17040
17041         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
17042         * doc/glibc-headers/a.out.texi: New file.
17043         * doc/glibc-headers/aliases.texi: New file.
17044         * doc/glibc-headers/alloca.texi: New file.
17045         * doc/glibc-headers/ar.texi: New file.
17046         * doc/glibc-headers/argp.texi: New file.
17047         * doc/glibc-headers/argz.texi: New file.
17048         * doc/glibc-headers/byteswap.texi: New file.
17049         * doc/glibc-headers/crypt.texi: New file.
17050         * doc/glibc-headers/endian.texi: New file.
17051         * doc/glibc-headers/envz.texi: New file.
17052         * doc/glibc-headers/err.texi: New file.
17053         * doc/glibc-headers/error.texi: New file.
17054         * doc/glibc-headers/execinfo.texi: New file.
17055         * doc/glibc-headers/fpu_control.texi: New file.
17056         * doc/glibc-headers/fstab.texi: New file.
17057         * doc/glibc-headers/fts.texi: New file.
17058         * doc/glibc-headers/getopt.texi: New file.
17059         * doc/glibc-headers/ieee754.texi: New file.
17060         * doc/glibc-headers/ifaddrs.texi: New file.
17061         * doc/glibc-headers/libintl.texi: New file.
17062         * doc/glibc-headers/mcheck.texi: New file.
17063         * doc/glibc-headers/mntent.texi: New file.
17064         * doc/glibc-headers/obstack.texi: New file.
17065         * doc/glibc-headers/paths.texi: New file.
17066         * doc/glibc-headers/printf.texi: New file.
17067         * doc/glibc-headers/pty.texi: New file.
17068         * doc/glibc-headers/resolv.texi: New file.
17069         * doc/glibc-headers/shadow.texi: New file.
17070         * doc/glibc-headers/sysexits.texi: New file.
17071         * doc/glibc-headers/ttyent.texi: New file.
17072
17073 2008-01-12  Jim Meyering  <meyering@redhat.com>
17074
17075         announce-gen: emit Gnulib's git-based version string.
17076         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
17077         New option --gnulib-version=V, where V is expected to be
17078         the output of running git describe in the gnulib directory.
17079         (get_tool_versions): Request feedback on xdelta.  I suspect it's
17080         not useful, and plan to stop publishing an xdelta file with each
17081         coreutils release.
17082
17083         * build-aux/announce-gen: Also check for lzma-compressed files.
17084
17085 2008-01-11  Bruno Haible  <bruno@clisp.org>
17086
17087         * tests/test-memmem.c (main): Increase maximum allowed time.
17088         * tests/test-strstr.c (main): Likewise.
17089
17090 2008-01-11  Bruno Haible  <bruno@clisp.org>
17091
17092         * doc/functions/memmem.texi: Add more precisions about platforms.
17093         * doc/functions/strstr.texi: Likewise.
17094
17095 2008-01-10  Eric Blake  <ebb9@byu.net>
17096
17097         * m4/strstr.m4: Delete cruft from copy-n-paste.
17098         Reported by Bruno Haible.
17099
17100 2008-01-10  Bruno Haible  <bruno@clisp.org>
17101
17102         Make c-strstr rely on strstr.
17103         * lib/c-strstr.c: Don't include str-kmp.h.
17104         (c_strstr): Define in terms of strstr.
17105         * modules/c-strstr (Files): Remove lib/str-kmp.h.
17106         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
17107
17108 2008-01-10  Bruno Haible  <bruno@clisp.org>
17109
17110         * doc/gnulib.texi (String Functions in C Locale): New section.
17111         * doc/c-ctype.texi: New file.
17112         * doc/c-strcase.texi: New file.
17113         * doc/c-strcaseeq.texi: New file.
17114         * doc/c-strcasestr.texi: New file.
17115         * doc/c-strstr.texi: New file.
17116         * doc/c-strtod.texi: New file.
17117         * doc/c-strtold.texi: New file.
17118
17119 2008-01-10  Eric Blake  <ebb9@byu.net>
17120
17121         * lib/relocatable.h: Fix a comment.
17122
17123 2008-01-10  Eric Blake  <ebb9@byu.net>
17124
17125         Share two-way algorithm.
17126         * lib/str-two-way.h: New file, merged from...
17127         * lib/memmem.c: ...here...
17128         * lib/strstr.c: ...and here.
17129         * modules/memmem (Files): Use it.
17130         * modules/strstr (Files): Likewise.
17131
17132         Avoid quadratic strstr implementations.
17133         * lib/strstr.c: New file.
17134         * m4/strstr.m4: Likewise.
17135         * modules/strstr: Likewise.
17136         * modules/strstr-tests: Likewise.
17137         * tests/test-strstr.c: Likewise.
17138         * lib/string.in.h (rpl_strstr): Declare.
17139         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
17140         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
17141         * modules/string (Makefile.am): Likewise.
17142         * MODULES.html.sh (string handling): Mention new module.
17143         * doc/functions/strstr.texi (strstr): Document the bug.
17144
17145 2008-01-10  Bruno Haible  <bruno@clisp.org>
17146
17147         * lib/relocatable.h (relocate): State whether result is freshly
17148         allocated or not.
17149         * lib/relocatable.c (relocate): Return a freshly allocated string
17150         instead of a pointer to a privately held string.
17151         Reported by Sylvain Beucler <beuc@gnu.org>.
17152
17153 2008-01-10  Colin Watson  <cjwatson@debian.org>
17154
17155         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
17156         s/S_ISNLK/S_ISLNK/.
17157
17158 2008-01-09  Bruno Haible  <bruno@clisp.org>
17159
17160         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
17161         and other files.
17162         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
17163         if it's only a guess.
17164         * modules/memmem: Simplify by depending on memmem-simple.
17165
17166 2008-01-09  Bruno Haible  <bruno@clisp.org>
17167
17168         Work around OpenBSD 4.0 tdelete() bug.
17169         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
17170         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
17171         macros and don't redefine the enum values.
17172         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
17173         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
17174         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
17175
17176 2008-01-09  Bruno Haible  <bruno@clisp.org>
17177
17178         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
17179         (main): Don't perform the tests if setlocale did not install a UTF-8
17180         locale. Needed on OpenBSD 4.0.
17181         * modules/wcwidth-tests (Depends-on): Add localcharset.
17182
17183 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
17184
17185         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
17186         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
17187         * NEWS: announce this.
17188         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
17189
17190 2008-01-09  Simon Josefsson  <simon@josefsson.org>
17191         and Eric Blake  <ebb9@byu.net>
17192
17193         Add memmem-simple module.
17194         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
17195         (gl_FUNC_MEMMEM): Separate performance from presence checks.
17196         * modules/memmem-simple: New file.
17197         * modules/memmem (Description): Tweak.
17198         * MODULES.html.sh (string handling): Mention new module.
17199         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
17200         addressed by memmem-simple.
17201         * NEWS: Document the difference.
17202
17203 2008-01-09  Eric Blake  <ebb9@byu.net>
17204
17205         Give gcc some memmem optimization hints.
17206         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
17207         (strcasestr): Declare as pure.
17208         * modules/memmem (Maintainer): Claim my implementation.
17209
17210 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17211
17212         Support AIX 6.1 and higher.
17213         * build-aux/config.libpath: Likewise.
17214         * build-aux/config.rpath: Likewise.
17215
17216 2008-01-08  Jim Meyering  <meyering@redhat.com>
17217             Bruno Haible  <bruno@clisp.org>
17218
17219         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
17220         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
17221         Reported by Peter Fales in
17222         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
17223
17224 2008-01-08  Bruno Haible  <bruno@clisp.org>
17225
17226         * modules/unictype/category-of (Depends-on): Add
17227         unictype/category-none.
17228         * modules/unictype/category-and-tests (Depends-on): Add
17229         unictype/category-{L,N,Lu,Nd}.
17230         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
17231         * modules/unictype/category-or-tests (Depends-on): Add
17232         unictype/category-{L,N}.
17233         * modules/unictype/category-name-tests (Depends-on): Add
17234         unictype/category-{Z,Nl}.
17235         Reported by Simon Josefsson.
17236
17237 2008-01-08  Bruno Haible  <bruno@clisp.org>
17238
17239         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
17240         convention better.
17241         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
17242         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
17243         Reported by Peter Miller <millerp@canb.auug.org.au>.
17244
17245 2008-01-08  Eric Blake  <ebb9@byu.net>
17246
17247         Rewrite memmem to guarantee linear complexity without malloc.
17248         * lib/memmem.c (memmem): Use Two-Way rather than
17249         Knuth-Morris-Pratt, to allow O(1) space usage.
17250         (critical_factorization, two_way_short_needle)
17251         (two_way_long_needle): New functions.
17252         (knuth_morris_pratt): Delete.
17253         * modules/memmem (Depends-on): No longer need malloca or stdbool.
17254         Add stdint.
17255         * tests/test-memmem.c (main): Add tests for periodic needle and
17256         sublinear performance.
17257         * doc/functions/memmem.texi (memmem): Document other deficiencies
17258         in cygwin and older glibc.
17259
17260 2008-01-08  Bruno Haible  <bruno@clisp.org>
17261
17262         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
17263         augmentation.
17264
17265 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
17266
17267         Add a configure time option: --disable-acl.
17268         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
17269         AC_ARG_ENABLE(acl).
17270
17271 2008-01-06  Simon Josefsson  <simon@josefsson.org>
17272
17273         * tests/test-localename.c: Don't include obsolete "setenv.h".
17274
17275         * modules/localename-tests (Depends-on): Need unsetenv.
17276
17277 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17278
17279         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
17280
17281 2008-01-06  Colin Watson  <cjwatson@debian.org>
17282
17283         * users.txt: Add man-db.
17284
17285 2008-01-07  Bruno Haible  <bruno@clisp.org>
17286
17287         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
17288         previous section name.
17289
17290 2008-01-07  Bruno Haible  <bruno@clisp.org>
17291
17292         * lib/progname.c (set_program_name): Don't strip off a leading
17293         "lt-" prefix outside a .libs directory.
17294         Suggested by Paul Eggert.
17295
17296 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
17297             Bruno Haible  <bruno@clisp.org>
17298
17299         Improve memory cleanup in 'relocatable' module.
17300         * lib/relocatable.h (compute_curr_prefix): Change return type to
17301         'char *'.
17302         * lib/relocatable.c (compute_curr_prefix): Change return type to
17303         'char *'. Free curr_installdir after use.
17304         (relocate): Free curr_prefix_better after use.
17305         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
17306
17307 2008-01-01  Bruno Haible  <bruno@clisp.org>
17308
17309         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
17310         failure on older glibc systems.
17311         Reported by Peter Fales <psfales@alcatel-lucent.com>.
17312
17313 2008-01-05  Eric Blake  <ebb9@byu.net>
17314
17315         Avoid quadratic system memmem.
17316         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
17317         Reported by Ralf Wildenhues.
17318
17319         Fix memmem test for mingw.
17320         * modules/memmem-tests (configure.ac): Check for alarm.
17321         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
17322         it.
17323         * doc/functions/memmem.texi: New file.
17324         * doc/gnulib.texi (Function Substitutes): Add memmem.
17325         Reported by Bruno Haible.
17326
17327 2008-01-04  Bruno Haible  <bruno@clisp.org>
17328
17329         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
17330         Require gl_HEADER_STRINGS_H_DEFAULTS, not
17331         gl_HEADER_STRING_H_DEFAULTS.
17332
17333 2008-01-04  Eric Blake  <ebb9@byu.net>
17334
17335         Shorten duration of memmem test.
17336         * tests/test-memmem.c (main): Use alarm to declare failure if test
17337         is taking too long.
17338         Reported by Ralf Wildenhues.
17339
17340 2007-12-21  Simon Josefsson  <simon@josefsson.org>
17341
17342         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
17343         string, needed by strerror.
17344
17345 2008-01-03  Colin Watson  <cjwatson@debian.org>
17346             Bruno Haible  <bruno@clisp.org>
17347
17348         * doc/gnulib-tool.texi (Localization): New section.
17349
17350 2008-01-02  Bruno Haible  <bruno@clisp.org>
17351
17352         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
17353         variables to 'unsigned char *' type.
17354         Reported by Paul Eggert.
17355
17356 2008-01-02  Jim Meyering  <jim@meyering.net>
17357
17358         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
17359
17360 2007-12-31  Jim Meyering  <jim@meyering.net>
17361
17362         Avoid use of private FTS type name.
17363         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
17364
17365 2007-12-30  Karl Berry  <karl@gnu.org>
17366
17367         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
17368         work around defect in Texinfo and/or the standalone Info browser.
17369
17370 2007-12-30  Bruno Haible  <bruno@clisp.org>
17371
17372         Unify 5 copies of the KMP code.
17373         * lib/str-kmp.h: New file.
17374         * lib/c-strcasestr.c: Include str-kmp.h.
17375         (knuth_morris_pratt): Remove function.
17376         (c_strcasestr): Update.
17377         * lib/c-strstr.c: Include str-kmp.h.
17378         (knuth_morris_pratt): Remove function.
17379         (c_strcasestr): Update.
17380         * lib/mbscasestr.c: Include str-kmp.h.
17381         (knuth_morris_pratt_unibyte): Remove function.
17382         * lib/mbsstr.c: Include str-kmp.h.
17383         (knuth_morris_pratt_unibyte): Remove function.
17384         * lib/strcasestr.c: Include str-kmp.h.
17385         (knuth_morris_pratt): Remove function.
17386         (strcasestr): Update.
17387         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
17388         * modules/c-strstr (Files): Likewise.
17389         * modules/mbscasestr (Files): Likewise.
17390         * modules/mbsstr (Files): Likewise.
17391         * modules/strcasestr (Files): Likewise.
17392         Suggested by Paul Eggert.
17393
17394 2007-12-30  Bruno Haible  <bruno@clisp.org>
17395
17396         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
17397         defined.
17398
17399 2007-12-30  Bruno Haible  <bruno@clisp.org>
17400
17401         * lib/xmalloca.h: Include xalloc.h.
17402         (xnmalloca): New macro.
17403
17404 2007-12-30  Bruno Haible  <bruno@clisp.org>
17405
17406         * lib/malloca.h (nmalloca): New macro.
17407         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
17408         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
17409         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
17410         knuth_morris_pratt_multibyte): Likewise.
17411         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
17412         knuth_morris_pratt_multibyte): Likewise.
17413         * lib/memmem.c (knuth_morris_pratt): Likewise.
17414         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
17415
17416 2007-12-25  Bruno Haible  <bruno@clisp.org>
17417
17418         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
17419         * lib/glob.c: Don't include openat.h.
17420         (link_exists2_p): Add back the code that deals with the
17421         !GLOB_ALTDIRFUNC case.
17422         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
17423         let it do the filename concatenation.
17424         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
17425         * modules/glob (Depends-on): Remove openat.
17426
17427 2007-12-31  Bruno Haible  <bruno@clisp.org>
17428
17429         * modules/dirfd (License): Change to LGPLv2+.
17430         Approved by Jim Meyering.
17431
17432 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
17433
17434         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
17435         when multiplying M by sizeof (size_t).
17436
17437 2007-12-10  Martin Lambers  <marlam@marlam.de>
17438
17439         Override getpagesize on mingw.
17440         * lib/getpagesize.c: New file.
17441         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
17442         * modules/getpagesize (Files): Add lib/getpagesize.c.
17443         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
17444         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
17445         REPLACE_GETPAGESIZE.
17446         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
17447
17448 2007-12-25  Bruno Haible  <bruno@clisp.org>
17449
17450         * modules/localcharset (Notice): New field.
17451         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
17452         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
17453
17454 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
17455             Bruno Haible  <bruno@clisp.org>
17456
17457         Avoid using the syntax symbol() in formatted documentation.
17458         * MODULES.html.sh (func_module): When replacing symbol() with a
17459         hyperlink, remove the parentheses. Show an error if some remain.
17460         Recognize and render the '...' syntax.
17461         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
17462         Rework. Add paragraph about GCC's inlining.
17463         * doc/alloca.texi: Likewise.
17464         * doc/error.texi: Remove parentheses from symbol reference.
17465         * doc/gnulib-intro.texi: Likewise.
17466         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
17467         * modules/fnmatch (Description): Reword to say "the ... function".
17468         * modules/full-read (Description): Likewise.
17469         * modules/full-write (Description): Likewise.
17470         * modules/safe-read (Description): Likewise.
17471         * modules/safe-write (Description): Likewise.
17472         * modules/strchrnul (Description): Likewise.
17473         * modules/trim (Description): Likewise.
17474         * modules/error (Description): Remove parentheses from symbol
17475         references.
17476         * modules/verror (Description): Likewise.
17477         Reported by Karl Berry.
17478
17479 2007-12-25  Bruno Haible  <bruno@clisp.org>
17480
17481         Fixup after 2007-10-16 commit.
17482         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
17483
17484 2007-12-24  Bruno Haible  <bruno@clisp.org>
17485
17486         Make --enable-relocatable work with DESTDIR.
17487         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
17488         to compute installdir from destprog.
17489         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
17490         also set the RELOC_DESTDIR variable.
17491         Reported by Левашев Иван <octagram@bluebottle.com>.
17492
17493 2007-12-24  Bruno Haible  <bruno@clisp.org>
17494
17495         Fix link error due to xalloc_die().
17496         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
17497         of xreadlink.
17498         * lib/relocwrapper.c: Update comments.
17499         * build-aux/install-reloc: Remove xreadlink.c from file list.
17500         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
17501         xreadlink.c.
17502         Reported by Левашев Иван <octagram@bluebottle.com>.
17503
17504 2007-12-24  Bruno Haible  <bruno@clisp.org>
17505
17506         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
17507         * lib/setenv.h: Remove file.
17508         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
17509         lib/setenv.h.
17510         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
17511         (Depends-on): Add stdlib.
17512         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
17513         gl_FUNC_UNSETENV.
17514         (Include): Replace setenv.h with <stdlib.h>.
17515         * modules/unsetenv: New file.
17516         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
17517         * lib/unsetenv.c: Include <stdlib.h> first.
17518         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
17519         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
17520         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
17521         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
17522         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
17523         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
17524         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
17525         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
17526         * doc/functions/unsetenv.texi: Update.
17527         * modules/xsetenv (Depends-on): Add unsetenv.
17528         * modules/getdate (Depends-on): Likewise.
17529         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
17530         * lib/xsetenv.c: Don't include setenv.h.
17531         * lib/getdate.y: Likewise.
17532         * lib/relocwrapper.c: Likewise.
17533         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
17534         (Depends-on): Add stdlib.
17535         * NEWS: Mention the changes.
17536         Reported by Левашев Иван <octagram@bluebottle.com>.
17537
17538 2007-12-23  Bruno Haible  <bruno@clisp.org>
17539
17540         * lib/memmem.c (memmem): Use lowercase variable names. Tab
17541         indentation.
17542
17543 2007-12-23  Bruno Haible  <bruno@clisp.org>
17544
17545         * lib/c-strcasestr.c: Add more comments.
17546         * lib/c-strstr.c: Likewise.
17547         * lib/mbscasestr.c: Likewise.
17548         * lib/mbsstr.c: Likewise.
17549         * lib/strcasestr.c: Likewise.
17550         * lib/memmem.c: Likewise.
17551
17552 2007-12-23  Bruno Haible  <bruno@clisp.org>
17553
17554         * tests/test-memmem.c: Include <string.h> first.
17555
17556 2007-12-22  Bruno Haible  <bruno@clisp.org>
17557
17558         * gnulib-tool (func_create_testdir): Change $auxdir while generating
17559         the contents of $testsbase.
17560         Reported by Ralf Wildenhues.
17561
17562 2007-12-22  Bruno Haible  <bruno@clisp.org>
17563
17564         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
17565         two variables local_ldadd_before, local_ldadd_last.
17566
17567 2007-12-20  Eric Blake  <ebb9@byu.net>
17568
17569         Work around circular library issue when cross-compiling.
17570         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
17571         that progname.o does not need to pull in rpl_memcmp.
17572
17573 2007-12-19  Eric Blake  <ebb9@byu.net>
17574
17575         Fix memmem to avoid O(n^2) worst-case complexity.
17576         * lib/memmem.c (knuth_morris_pratt): New function.
17577         (memmem): Use it if first few naive iterations fail.
17578         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
17579         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
17580         * modules/memchr (License): Likewise.
17581         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
17582         malloca.
17583         * tests/test-memmem.c: Rewrite, borrowing ideas from
17584         test-mbsstr1.c; the old version wouldn't even compile!
17585         * modules/memmem-tests: New file.
17586         * lib/string.in.h (rpl_memmem): Add declaration.
17587         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
17588         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
17589         REPLACE_MEMMEM.
17590
17591 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
17592
17593         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
17594         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
17595         before any system include files, and undef after them all.  This
17596         should fix a problem on VMS reported by John E. Malmberg in
17597         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
17598
17599 2007-12-17  Eric Blake  <ebb9@byu.net>
17600
17601         Revert addition of verify, for BSD/OS.
17602         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
17603         can't handle large files, for the sake of obsolete platforms.
17604         * modules/fseeko (Depends-on): Remove verify.
17605         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
17606         * doc/functions/ftello.texi (ftello): Likewise.
17607         * doc/functions/fgetpos.texi (fgetpos): Likewise.
17608         Reported by Larry Jones.
17609
17610 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
17611
17612         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
17613         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
17614
17615 2007-12-17  Jim Meyering  <meyering@redhat.com>
17616
17617         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
17618         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
17619         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
17620         * modules/getcwd (Depends-on): Add openat.
17621         Reported by Petr Salinger.
17622
17623 2007-12-17  Bruno Haible  <bruno@clisp.org>
17624
17625         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
17626         avoid a segmentation fault of the configure test on x86_64 systems.
17627
17628 2007-12-15  Jim Meyering  <meyering@redhat.com>
17629
17630         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
17631
17632 2007-12-13  Eric Blake  <ebb9@byu.net>
17633
17634         Another fseek test.
17635         * tests/test-fseek.c (main): Also test ungetc handling.
17636         * tests/test-fseeko.c (main): Likewise.
17637         * modules/fseeko (Depends-on): Add verify.
17638         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
17639         large.
17640         Reported by Larry Jones.
17641
17642         Fix fseeko on mingw.
17643         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
17644         seek.
17645
17646         Beef up fseek tests.
17647         * tests/test-fseek.c (main): Also test eof handling.
17648         * tests/test-fseeko.c (main): Likewise.
17649         Reported by Larry Jones.
17650
17651 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
17652
17653         Fix fseeko on BSD-based platforms.
17654         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
17655         successful seek.
17656
17657 2007-12-12  Eric Blake  <ebb9@byu.net>
17658
17659         Allow circular dependency of separate libtests.a
17660         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
17661         when use_libtests.
17662
17663 2007-12-11  Eric Blake  <ebb9@byu.net>
17664
17665         Fix bug with -0.0L in previous patch.
17666         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
17667         * tests/test-isnan.c (main): Also test on zeroes.
17668         * tests/test-isnanf.c (main): Likewise.
17669         * tests/test-isnanl.h (main): Likewise.
17670
17671         Detect pseudo-denormals on x86 even when cross-compiling.
17672         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
17673         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
17674         invalid bit patterns that happen to satisfy ==.
17675
17676         Avoid link failures with separate libtests.a.
17677         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
17678         last, to satisfy circular dependencies.
17679
17680 2007-12-11  Eric Blake  <ebb9@byu.net>
17681         and Bruno Haible  <bruno@clisp.org>
17682
17683         Fix OpenBSD 4.0 <float.h> handling of long double.
17684         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
17685         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
17686         * doc/headers/float.texi (float.h): Document OpenBSD bug.
17687
17688 2007-12-11  Jim Meyering  <meyering@redhat.com>
17689
17690         * users.txt: Add libvirt.
17691
17692         Support versions of autoconf prior to 2.59c.
17693         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
17694         if it is not already defined.
17695
17696 2007-12-09  Bruno Haible  <bruno@clisp.org>
17697
17698         Let 'gnulib-tool --import' collect sources needed for the tests in
17699         tests/ rather than in lib/.
17700         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
17701         argument. If true, add rules to generate libtests.a, and put libtests.a
17702         into $(LDADD). Consider source files in subdirectories and set
17703         uses_subdirs.
17704         (func_emit_initmacro_start, func_emit_initmacro_end,
17705         func_emit_initmacro_done): Pass all arguments explicitly.
17706         (func_import): Determine two module lists main_modules,
17707         testsrelated_modules. Determine use_libtests. Determine two variables
17708         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
17709         instead of just sed_transform_lib_file. Determine two variables
17710         main_files and testsrelated_files. Compute 'files' as the union of
17711         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
17712         func_add_or_update. In the generated gnulib-comp.m4, collect the
17713         object files for tests/ in different variables than those for lib/.
17714         Substitute LIBTESTS_LIBDEPS.
17715         (func_create_testdir): Combine the uses_subdirs results from
17716         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
17717
17718 2007-12-09  Bruno Haible  <bruno@clisp.org>
17719
17720         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
17721         the build-aux directory.
17722
17723 2007-12-09  Bruno Haible  <bruno@clisp.org>
17724
17725         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
17726         introduced on 2006-09-09.
17727
17728 2007-12-07  Jim Meyering  <meyering@redhat.com>
17729
17730         Let these macros work also with autoconf-2.59.
17731         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
17732         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
17733         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
17734
17735 2007-12-06  Jim Meyering  <meyering@redhat.com>
17736
17737         Avoid a configure-time syntax error in gl_FUNC_ACL.
17738         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
17739         function in each branch, before testing the cache variable.
17740
17741 2007-12-04  Eric Blake  <ebb9@byu.net>
17742
17743         Make scripts executable.
17744         * build-aux/config.guess: Add execute permissions.
17745         * build-aux/config.sub: Likewise.
17746         * build-aux/gendocs.sh: Likewise.
17747
17748         Fix frexp on mingw.
17749         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
17750         cross-compiling.
17751         * doc/functions/frexp.texi (frexp): Document the bug.
17752
17753         Make cygwin fseeko check more reliable.
17754         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
17755         version numbers, rather than unrelated feature check.
17756         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
17757         * doc/functions/ftello.texi (ftello): Likewise.
17758         Reported by Bruno Haible.
17759
17760         * m4/strerror.m4: Bump version number.
17761
17762 2007-12-03  Bruno Haible  <bruno@clisp.org>
17763
17764         * doc/functions/mprotect.texi: Mention the mingw problem.
17765
17766 2007-12-03  Eric Blake  <ebb9@byu.net>
17767
17768         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
17769         REPLACE_STRERROR is initialized before this macro.
17770
17771 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
17772
17773         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
17774         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
17775         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
17776         put -lsec in even for programs other than 'ls'.  This fixes a problem
17777         for gettext reported by Bruno Haible in
17778         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
17779         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
17780         Add support for Solaris 10.  This isn't efficient, but should get the
17781         job done for now.
17782
17783 2007-12-03  James Youngman  <jay@gnu.org>
17784
17785         * doc/regexprops-generic.texi: change "an close-group" to "a
17786         close-group" and "illegal" to "not allowed".
17787
17788 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17789
17790         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
17791         pr_byname.h. Needed for the rare case when the maintainer has done
17792         "make maintainer-clean" in the source directory and then attempts a
17793         build outside the source directory.
17794         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
17795         scripts_byname.h.
17796
17797 2007-12-02  Martin Lambers <marlam@marlam.de>
17798             Bruno Haible  <bruno@clisp.org>
17799
17800         * lib/getpagesize.h: Remove file.
17801         * lib/unistd.in.h: Include declaration of getpagesize here.
17802         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
17803         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
17804         HAVE_SYS_PARAM_H.
17805         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
17806         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
17807         * modules/getpagesize (Files): Remove lib/getpagesize.h.
17808         (Depends-on): Add unistd.
17809         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
17810         (Include): Use <unistd.h> instead of getpagesize.h.
17811         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
17812         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
17813         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
17814         gl_GETPAGESIZE invocation, already handled by module dependency.
17815         * lib/pagealign_alloc.c: Don't include getpagesize.h.
17816
17817 2007-12-02  Bruno Haible  <bruno@clisp.org>
17818
17819         * modules/strings-tests: New file.
17820         * tests/test-strings.c: New file.
17821
17822         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
17823         * lib/strings.in.h: New file.
17824         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
17825         * m4/strings_h.m4: New file.
17826         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
17827         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
17828         * modules/strings: New file.
17829         * modules/string (Makefile.am): Update.
17830         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
17831         Reported by Karl Berry.
17832
17833 2007-12-01  Eric Blake  <ebb9@byu.net>
17834
17835         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
17836         accomodate fix in cygwin 1.5.25.
17837
17838 2007-12-01  Jim Meyering  <meyering@redhat.com>
17839
17840         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
17841         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
17842         that would inhibit utf8-optimization of a regexp containing line-
17843         or buffer-anchors, e.g., `^', `$'.
17844
17845 2007-11-30  Bruno Haible  <bruno@clisp.org>
17846
17847         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
17848         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
17849         glthread_recursive_lock_init.
17850         * lib/lock.c (glthread_recursive_lock_init)
17851         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
17852         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
17853
17854 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
17855
17856         New function qset_acl, like set_acl but with syscall semantics.
17857         * lib/acl.h (qset_acl): New decl.
17858         * lib/acl.c (qset_acl): New function.
17859         (set_acl): Use new function.  Use more-consistent diagnostics.
17860
17861 2007-11-28  Jim Meyering  <meyering@redhat.com>
17862
17863         * modules/physmem (License): Change from GPL to LGPLv2+.
17864
17865 2007-11-26  Bruno Haible  <bruno@clisp.org>
17866
17867         * lib/vasnprintf.c (decode_long_double): Don't abort if the
17868         'long double' type has excess precision.
17869         Reported by Jim Meyering in
17870         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
17871
17872 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17873
17874         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
17875         Sync from <http://gnu.org/licenses>.
17876         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
17877         with license text from same location.
17878         * doc/maintain.texi, doc/standards.texi:  Sync from
17879         <http://savannah.gnu.org/projects/gnustandards>.
17880
17881 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
17882         and Jim Meyering  <meyering@redhat.com>
17883
17884         Adjust getdate' grammar to accept a slightly more regular language.
17885         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
17886         Before, the former was rejected.
17887         * lib/getdate.y (digits_to_date_time): New function, factored
17888         out of ...
17889         (number): ...here.  Just call digits_to_date_time.
17890         (hybrid): New non-terminal to handle an <unsigned number,
17891         signed relative offset> sequence consistently.
17892
17893 2007-11-18  Jim Meyering  <meyering@redhat.com>
17894
17895         Pull my changes from coreutils:
17896         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
17897         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
17898         use of $gnulib_tool_option_extras, so that it's separated from the
17899         preceding argument.
17900
17901         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
17902         * build-aux/bootstrap (cp_mark_as_generated): Create any required
17903         parent destination directories before copying a file into place.
17904
17905 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
17906
17907         bootstrap: work also with 4-argument variant of AC_INIT
17908         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
17909
17910 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
17911
17912         Port test-getaddrinfo to Solaris.
17913         Problem reported by Bruno Haible in
17914         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
17915         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
17916         explanation of setting 'hints'.
17917         Don't reject an implementation merely because it returns EAI_SERVICE.
17918         (EAI_SERVICE): Define to 0 if not defined.
17919
17920 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
17921
17922         The license of gnu-make and posix-shell is now "GPLed build tool".
17923         * modules/gnu-make (License): Likewise.
17924         * modules/posix-shell (License): Likewise.
17925
17926         New module posix-shell, for determining a POSIX shell
17927         or perhaps something that is close enough to a POSIX shell.
17928         * m4/posix-shell.m4: New file.
17929         * modules/posix-shell: New file.
17930
17931         * MODULES.html.sh: Mention new module.
17932
17933         New module gnu-make, for determining whether we're using GNU Make.
17934         * m4/gnu-make.m4: New file.
17935         * modules/gnu-make: New file.
17936         * MODULES.html.sh: Mention new module.
17937
17938 2007-11-14  Jim Meyering  <meyering@redhat.com>
17939
17940         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
17941         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
17942         use this macro to create a function _definition_.
17943         Remove useless "#undef ARGMATCH_DIE".
17944
17945 2007-11-14  Bruno Haible  <bruno@clisp.org>
17946
17947         * lib/config.charset: Update for OpenBSD 4.1.
17948         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
17949
17950 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
17951
17952         Document 64-bit #if problems in stdint.texi.
17953         * doc/headers/stdint.texi (stdint.h): Mention problems with
17954         64-bit-#if, and how to work around them.
17955
17956         Don't insist on 'long long int' support in the preprocessor.  It
17957         breaks too many things.  For example, PRIdMAX still uses a 'long
17958         long int' format with the latest Sun compiler, even though
17959         HAVE_LONG_LONG_INT isn't defined due to that compiler's
17960         preprocessor problem.  This causes the latest coreutils to dump
17961         core on Solaris 10 sparc with the Sun C compiler.
17962         Instead, fix the 2007-10-16 problem in a different way, by evaluating
17963         the troublesome expressions at configure-time, not at #if-time.
17964         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
17965         preprocessor.
17966         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
17967         compile-time C checks, done at 'configure'-time.
17968         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
17969         * modules/inttypes (Makefile): Substitute the new symbols that
17970         gl_INTTYPES_H now generates.
17971         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
17972
17973 2007-11-12  Bruno Haible  <bruno@clisp.org>
17974
17975         Tests for Unicode character classification functions.
17976
17977         * modules/unictype/bidicategory-byname-tests: New file.
17978         * modules/unictype/bidicategory-name-tests: New file.
17979         * modules/unictype/bidicategory-of-tests: New file.
17980         * modules/unictype/bidicategory-test-tests: New file.
17981         * modules/unictype/block-list-tests: New file.
17982         * modules/unictype/block-of-tests: New file.
17983         * modules/unictype/block-test-tests: New file.
17984         * modules/unictype/category-C-tests: New file.
17985         * modules/unictype/category-Cc-tests: New file.
17986         * modules/unictype/category-Cf-tests: New file.
17987         * modules/unictype/category-Cn-tests: New file.
17988         * modules/unictype/category-Co-tests: New file.
17989         * modules/unictype/category-Cs-tests: New file.
17990         * modules/unictype/category-L-tests: New file.
17991         * modules/unictype/category-Ll-tests: New file.
17992         * modules/unictype/category-Lm-tests: New file.
17993         * modules/unictype/category-Lo-tests: New file.
17994         * modules/unictype/category-Lt-tests: New file.
17995         * modules/unictype/category-Lu-tests: New file.
17996         * modules/unictype/category-M-tests: New file.
17997         * modules/unictype/category-Mc-tests: New file.
17998         * modules/unictype/category-Me-tests: New file.
17999         * modules/unictype/category-Mn-tests: New file.
18000         * modules/unictype/category-N-tests: New file.
18001         * modules/unictype/category-Nd-tests: New file.
18002         * modules/unictype/category-Nl-tests: New file.
18003         * modules/unictype/category-No-tests: New file.
18004         * modules/unictype/category-P-tests: New file.
18005         * modules/unictype/category-Pc-tests: New file.
18006         * modules/unictype/category-Pd-tests: New file.
18007         * modules/unictype/category-Pe-tests: New file.
18008         * modules/unictype/category-Pf-tests: New file.
18009         * modules/unictype/category-Pi-tests: New file.
18010         * modules/unictype/category-Po-tests: New file.
18011         * modules/unictype/category-Ps-tests: New file.
18012         * modules/unictype/category-S-tests: New file.
18013         * modules/unictype/category-Sc-tests: New file.
18014         * modules/unictype/category-Sk-tests: New file.
18015         * modules/unictype/category-Sm-tests: New file.
18016         * modules/unictype/category-So-tests: New file.
18017         * modules/unictype/category-Z-tests: New file.
18018         * modules/unictype/category-Zl-tests: New file.
18019         * modules/unictype/category-Zp-tests: New file.
18020         * modules/unictype/category-Zs-tests: New file.
18021         * modules/unictype/category-and-not-tests: New file.
18022         * modules/unictype/category-and-tests: New file.
18023         * modules/unictype/category-byname-tests: New file.
18024         * modules/unictype/category-name-tests: New file.
18025         * modules/unictype/category-none-tests: New file.
18026         * modules/unictype/category-of-tests: New file.
18027         * modules/unictype/category-or-tests: New file.
18028         * modules/unictype/category-test-withtable-tests: New file.
18029         * modules/unictype/combining-class-tests: New file.
18030         * modules/unictype/ctype-alnum-tests: New file.
18031         * modules/unictype/ctype-alpha-tests: New file.
18032         * modules/unictype/ctype-blank-tests: New file.
18033         * modules/unictype/ctype-cntrl-tests: New file.
18034         * modules/unictype/ctype-digit-tests: New file.
18035         * modules/unictype/ctype-graph-tests: New file.
18036         * modules/unictype/ctype-lower-tests: New file.
18037         * modules/unictype/ctype-print-tests: New file.
18038         * modules/unictype/ctype-punct-tests: New file.
18039         * modules/unictype/ctype-space-tests: New file.
18040         * modules/unictype/ctype-upper-tests: New file.
18041         * modules/unictype/ctype-xdigit-tests: New file.
18042         * modules/unictype/decimal-digit-tests: New file.
18043         * modules/unictype/digit-tests: New file.
18044         * modules/unictype/mirror-tests: New file.
18045         * modules/unictype/numeric-tests: New file.
18046         * modules/unictype/property-alphabetic-tests: New file.
18047         * modules/unictype/property-ascii-hex-digit-tests: New file.
18048         * modules/unictype/property-bidi-arabic-digit-tests: New file.
18049         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
18050         * modules/unictype/property-bidi-block-separator-tests: New file.
18051         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
18052         * modules/unictype/property-bidi-common-separator-tests: New file.
18053         * modules/unictype/property-bidi-control-tests: New file.
18054         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
18055         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
18056         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
18057         * modules/unictype/property-bidi-european-digit-tests: New file.
18058         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
18059         * modules/unictype/property-bidi-left-to-right-tests: New file.
18060         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
18061         * modules/unictype/property-bidi-other-neutral-tests: New file.
18062         * modules/unictype/property-bidi-pdf-tests: New file.
18063         * modules/unictype/property-bidi-segment-separator-tests: New file.
18064         * modules/unictype/property-bidi-whitespace-tests: New file.
18065         * modules/unictype/property-byname-tests: New file.
18066         * modules/unictype/property-combining-tests: New file.
18067         * modules/unictype/property-composite-tests: New file.
18068         * modules/unictype/property-currency-symbol-tests: New file.
18069         * modules/unictype/property-dash-tests: New file.
18070         * modules/unictype/property-decimal-digit-tests: New file.
18071         * modules/unictype/property-default-ignorable-code-point-tests: New file.
18072         * modules/unictype/property-deprecated-tests: New file.
18073         * modules/unictype/property-diacritic-tests: New file.
18074         * modules/unictype/property-extender-tests: New file.
18075         * modules/unictype/property-format-control-tests: New file.
18076         * modules/unictype/property-grapheme-base-tests: New file.
18077         * modules/unictype/property-grapheme-extend-tests: New file.
18078         * modules/unictype/property-grapheme-link-tests: New file.
18079         * modules/unictype/property-hex-digit-tests: New file.
18080         * modules/unictype/property-hyphen-tests: New file.
18081         * modules/unictype/property-id-continue-tests: New file.
18082         * modules/unictype/property-id-start-tests: New file.
18083         * modules/unictype/property-ideographic-tests: New file.
18084         * modules/unictype/property-ids-binary-operator-tests: New file.
18085         * modules/unictype/property-ids-trinary-operator-tests: New file.
18086         * modules/unictype/property-ignorable-control-tests: New file.
18087         * modules/unictype/property-iso-control-tests: New file.
18088         * modules/unictype/property-join-control-tests: New file.
18089         * modules/unictype/property-left-of-pair-tests: New file.
18090         * modules/unictype/property-line-separator-tests: New file.
18091         * modules/unictype/property-logical-order-exception-tests: New file.
18092         * modules/unictype/property-lowercase-tests: New file.
18093         * modules/unictype/property-math-tests: New file.
18094         * modules/unictype/property-non-break-tests: New file.
18095         * modules/unictype/property-not-a-character-tests: New file.
18096         * modules/unictype/property-numeric-tests: New file.
18097         * modules/unictype/property-other-alphabetic-tests: New file.
18098         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
18099         * modules/unictype/property-other-grapheme-extend-tests: New file.
18100         * modules/unictype/property-other-id-continue-tests: New file.
18101         * modules/unictype/property-other-id-start-tests: New file.
18102         * modules/unictype/property-other-lowercase-tests: New file.
18103         * modules/unictype/property-other-math-tests: New file.
18104         * modules/unictype/property-other-uppercase-tests: New file.
18105         * modules/unictype/property-paired-punctuation-tests: New file.
18106         * modules/unictype/property-paragraph-separator-tests: New file.
18107         * modules/unictype/property-pattern-syntax-tests: New file.
18108         * modules/unictype/property-pattern-white-space-tests: New file.
18109         * modules/unictype/property-private-use-tests: New file.
18110         * modules/unictype/property-punctuation-tests: New file.
18111         * modules/unictype/property-quotation-mark-tests: New file.
18112         * modules/unictype/property-radical-tests: New file.
18113         * modules/unictype/property-sentence-terminal-tests: New file.
18114         * modules/unictype/property-soft-dotted-tests: New file.
18115         * modules/unictype/property-space-tests: New file.
18116         * modules/unictype/property-terminal-punctuation-tests: New file.
18117         * modules/unictype/property-test-tests: New file.
18118         * modules/unictype/property-titlecase-tests: New file.
18119         * modules/unictype/property-unassigned-code-value-tests: New file.
18120         * modules/unictype/property-unified-ideograph-tests: New file.
18121         * modules/unictype/property-uppercase-tests: New file.
18122         * modules/unictype/property-variation-selector-tests: New file.
18123         * modules/unictype/property-white-space-tests: New file.
18124         * modules/unictype/property-xid-continue-tests: New file.
18125         * modules/unictype/property-xid-start-tests: New file.
18126         * modules/unictype/property-zero-width-tests: New file.
18127         * modules/unictype/scripts-tests: New file.
18128         * modules/unictype/syntax-c-ident-tests: New file.
18129         * modules/unictype/syntax-c-whitespace-tests: New file.
18130         * modules/unictype/syntax-java-ident-tests: New file.
18131         * modules/unictype/syntax-java-whitespace-tests: New file.
18132         * tests/unictype/test-bidi_byname.c: New file.
18133         * tests/unictype/test-bidi_name.c: New file.
18134         * tests/unictype/test-bidi_of.c: New file.
18135         * tests/unictype/test-bidi_test.c: New file.
18136         * tests/unictype/test-block_list.c: New file.
18137         * tests/unictype/test-block_of.c: New file.
18138         * tests/unictype/test-block_test.c: New file.
18139         * tests/unictype/test-categ_and.c: New file.
18140         * tests/unictype/test-categ_and_not.c: New file.
18141         * tests/unictype/test-categ_byname.c: New file.
18142         * tests/unictype/test-categ_name.c: New file.
18143         * tests/unictype/test-categ_none.c: New file.
18144         * tests/unictype/test-categ_of.c: New file.
18145         * tests/unictype/test-categ_or.c: New file.
18146         * tests/unictype/test-categ_test_withtable.c: New file.
18147         * tests/unictype/test-combining.c: New file.
18148         * tests/unictype/test-decdigit.c: New file.
18149         * tests/unictype/test-digit.c: New file.
18150         * tests/unictype/test-mirror.c: New file.
18151         * tests/unictype/test-numeric.c: New file.
18152         * tests/unictype/test-pr_byname.c: New file.
18153         * tests/unictype/test-pr_test.c: New file.
18154         * tests/unictype/test-predicate-part1.h: New file.
18155         * tests/unictype/test-predicate-part2.h: New file.
18156         * tests/unictype/test-scripts.c: New file.
18157         * tests/unictype/test-sy_c_ident.c: New file.
18158         * tests/unictype/test-sy_java_ident.c: New file.
18159
18160         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
18161         for Unicode 5.0.0.
18162         * tests/unictype/test-categ_Cc.c: Likewise.
18163         * tests/unictype/test-categ_Cf.c: Likewise.
18164         * tests/unictype/test-categ_Cn.c: Likewise.
18165         * tests/unictype/test-categ_Co.c: Likewise.
18166         * tests/unictype/test-categ_Cs.c: Likewise.
18167         * tests/unictype/test-categ_L.c: Likewise.
18168         * tests/unictype/test-categ_Ll.c: Likewise.
18169         * tests/unictype/test-categ_Lm.c: Likewise.
18170         * tests/unictype/test-categ_Lo.c: Likewise.
18171         * tests/unictype/test-categ_Lt.c: Likewise.
18172         * tests/unictype/test-categ_Lu.c: Likewise.
18173         * tests/unictype/test-categ_M.c: Likewise.
18174         * tests/unictype/test-categ_Mc.c: Likewise.
18175         * tests/unictype/test-categ_Me.c: Likewise.
18176         * tests/unictype/test-categ_Mn.c: Likewise.
18177         * tests/unictype/test-categ_N.c: Likewise.
18178         * tests/unictype/test-categ_Nd.c: Likewise.
18179         * tests/unictype/test-categ_Nl.c: Likewise.
18180         * tests/unictype/test-categ_No.c: Likewise.
18181         * tests/unictype/test-categ_P.c: Likewise.
18182         * tests/unictype/test-categ_Pc.c: Likewise.
18183         * tests/unictype/test-categ_Pd.c: Likewise.
18184         * tests/unictype/test-categ_Pe.c: Likewise.
18185         * tests/unictype/test-categ_Pf.c: Likewise.
18186         * tests/unictype/test-categ_Pi.c: Likewise.
18187         * tests/unictype/test-categ_Po.c: Likewise.
18188         * tests/unictype/test-categ_Ps.c: Likewise.
18189         * tests/unictype/test-categ_S.c: Likewise.
18190         * tests/unictype/test-categ_Sc.c: Likewise.
18191         * tests/unictype/test-categ_Sk.c: Likewise.
18192         * tests/unictype/test-categ_Sm.c: Likewise.
18193         * tests/unictype/test-categ_So.c: Likewise.
18194         * tests/unictype/test-categ_Z.c: Likewise.
18195         * tests/unictype/test-categ_Zl.c: Likewise.
18196         * tests/unictype/test-categ_Zp.c: Likewise.
18197         * tests/unictype/test-categ_Zs.c: Likewise.
18198         * tests/unictype/test-ctype_alnum.c: Likewise.
18199         * tests/unictype/test-ctype_alpha.c: Likewise.
18200         * tests/unictype/test-ctype_blank.c: Likewise.
18201         * tests/unictype/test-ctype_cntrl.c: Likewise.
18202         * tests/unictype/test-ctype_digit.c: Likewise.
18203         * tests/unictype/test-ctype_graph.c: Likewise.
18204         * tests/unictype/test-ctype_lower.c: Likewise.
18205         * tests/unictype/test-ctype_print.c: Likewise.
18206         * tests/unictype/test-ctype_punct.c: Likewise.
18207         * tests/unictype/test-ctype_space.c: Likewise.
18208         * tests/unictype/test-ctype_upper.c: Likewise.
18209         * tests/unictype/test-ctype_xdigit.c: Likewise.
18210         * tests/unictype/test-decdigit.h: Likewise.
18211         * tests/unictype/test-digit.h: Likewise.
18212         * tests/unictype/test-numeric.h: Likewise.
18213         * tests/unictype/test-pr_alphabetic.c: Likewise.
18214         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
18215         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
18216         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
18217         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
18218         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
18219         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
18220         * tests/unictype/test-pr_bidi_control.c: Likewise.
18221         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
18222         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
18223         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
18224         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
18225         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
18226         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
18227         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
18228         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
18229         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
18230         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
18231         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
18232         * tests/unictype/test-pr_combining.c: Likewise.
18233         * tests/unictype/test-pr_composite.c: Likewise.
18234         * tests/unictype/test-pr_currency_symbol.c: Likewise.
18235         * tests/unictype/test-pr_dash.c: Likewise.
18236         * tests/unictype/test-pr_decimal_digit.c: Likewise.
18237         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
18238         * tests/unictype/test-pr_deprecated.c: Likewise.
18239         * tests/unictype/test-pr_diacritic.c: Likewise.
18240         * tests/unictype/test-pr_extender.c: Likewise.
18241         * tests/unictype/test-pr_format_control.c: Likewise.
18242         * tests/unictype/test-pr_grapheme_base.c: Likewise.
18243         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
18244         * tests/unictype/test-pr_grapheme_link.c: Likewise.
18245         * tests/unictype/test-pr_hex_digit.c: Likewise.
18246         * tests/unictype/test-pr_hyphen.c: Likewise.
18247         * tests/unictype/test-pr_id_continue.c: Likewise.
18248         * tests/unictype/test-pr_id_start.c: Likewise.
18249         * tests/unictype/test-pr_ideographic.c: Likewise.
18250         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
18251         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
18252         * tests/unictype/test-pr_ignorable_control.c: Likewise.
18253         * tests/unictype/test-pr_iso_control.c: Likewise.
18254         * tests/unictype/test-pr_join_control.c: Likewise.
18255         * tests/unictype/test-pr_left_of_pair.c: Likewise.
18256         * tests/unictype/test-pr_line_separator.c: Likewise.
18257         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
18258         * tests/unictype/test-pr_lowercase.c: Likewise.
18259         * tests/unictype/test-pr_math.c: Likewise.
18260         * tests/unictype/test-pr_non_break.c: Likewise.
18261         * tests/unictype/test-pr_not_a_character.c: Likewise.
18262         * tests/unictype/test-pr_numeric.c: Likewise.
18263         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
18264         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
18265         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
18266         * tests/unictype/test-pr_other_id_continue.c: Likewise.
18267         * tests/unictype/test-pr_other_id_start.c: Likewise.
18268         * tests/unictype/test-pr_other_lowercase.c: Likewise.
18269         * tests/unictype/test-pr_other_math.c: Likewise.
18270         * tests/unictype/test-pr_other_uppercase.c: Likewise.
18271         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
18272         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
18273         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
18274         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
18275         * tests/unictype/test-pr_private_use.c: Likewise.
18276         * tests/unictype/test-pr_punctuation.c: Likewise.
18277         * tests/unictype/test-pr_quotation_mark.c: Likewise.
18278         * tests/unictype/test-pr_radical.c: Likewise.
18279         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
18280         * tests/unictype/test-pr_soft_dotted.c: Likewise.
18281         * tests/unictype/test-pr_space.c: Likewise.
18282         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
18283         * tests/unictype/test-pr_titlecase.c: Likewise.
18284         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
18285         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
18286         * tests/unictype/test-pr_uppercase.c: Likewise.
18287         * tests/unictype/test-pr_variation_selector.c: Likewise.
18288         * tests/unictype/test-pr_white_space.c: Likewise.
18289         * tests/unictype/test-pr_xid_continue.c: Likewise.
18290         * tests/unictype/test-pr_xid_start.c: Likewise.
18291         * tests/unictype/test-pr_zero_width.c: Likewise.
18292         * tests/unictype/test-sy_c_whitespace.c: Likewise.
18293         * tests/unictype/test-sy_java_whitespace.c: Likewise.
18294
18295 2007-11-12  Bruno Haible  <bruno@clisp.org>
18296
18297         Unicode character classification functions.
18298         * lib/unictype.h: New file.
18299         * modules/unictype/base: New file.
18300         * modules/unictype/category-L: New file.
18301         * modules/unictype/category-Lu: New file.
18302         * modules/unictype/category-Ll: New file.
18303         * modules/unictype/category-Lt: New file.
18304         * modules/unictype/category-Lm: New file.
18305         * modules/unictype/category-Lo: New file.
18306         * modules/unictype/category-M: New file.
18307         * modules/unictype/category-Mn: New file.
18308         * modules/unictype/category-Mc: New file.
18309         * modules/unictype/category-Me: New file.
18310         * modules/unictype/category-N: New file.
18311         * modules/unictype/category-Nd: New file.
18312         * modules/unictype/category-Nl: New file.
18313         * modules/unictype/category-No: New file.
18314         * modules/unictype/category-P: New file.
18315         * modules/unictype/category-Pc: New file.
18316         * modules/unictype/category-Pd: New file.
18317         * modules/unictype/category-Ps: New file.
18318         * modules/unictype/category-Pe: New file.
18319         * modules/unictype/category-Pi: New file.
18320         * modules/unictype/category-Pf: New file.
18321         * modules/unictype/category-Po: New file.
18322         * modules/unictype/category-S: New file.
18323         * modules/unictype/category-Sm: New file.
18324         * modules/unictype/category-Sc: New file.
18325         * modules/unictype/category-Sk: New file.
18326         * modules/unictype/category-So: New file.
18327         * modules/unictype/category-Z: New file.
18328         * modules/unictype/category-Zs: New file.
18329         * modules/unictype/category-Zl: New file.
18330         * modules/unictype/category-Zp: New file.
18331         * modules/unictype/category-C: New file.
18332         * modules/unictype/category-Cc: New file.
18333         * modules/unictype/category-Cf: New file.
18334         * modules/unictype/category-Cs: New file.
18335         * modules/unictype/category-Co: New file.
18336         * modules/unictype/category-Cn: New file.
18337         * modules/unictype/category-or: New file.
18338         * modules/unictype/category-of: New file.
18339         * modules/unictype/category-test: New file.
18340         * modules/unictype/category-test-withtable: New file.
18341         * modules/unictype/category-byname: New file.
18342         * modules/unictype/category-none: New file.
18343         * modules/unictype/category-and: New file.
18344         * modules/unictype/category-and-not: New file.
18345         * modules/unictype/category-name: New file.
18346         * modules/unictype/combining-class: New file.
18347         * modules/unictype/category-all: New file.
18348         * modules/unictype/bidicategory-all: New file.
18349         * modules/unictype/bidicategory-byname: New file.
18350         * modules/unictype/bidicategory-name: New file.
18351         * modules/unictype/bidicategory-of: New file.
18352         * modules/unictype/bidicategory-test: New file.
18353         * modules/unictype/decimal-digit: New file.
18354         * modules/unictype/digit: New file.
18355         * modules/unictype/numeric: New file.
18356         * modules/unictype/mirror: New file.
18357         * modules/unictype/property-white-space: New file.
18358         * modules/unictype/property-alphabetic: New file.
18359         * modules/unictype/property-other-alphabetic: New file.
18360         * modules/unictype/property-not-a-character: New file.
18361         * modules/unictype/property-default-ignorable-code-point: New file.
18362         * modules/unictype/property-other-default-ignorable-code-point: New
18363         file.
18364         * modules/unictype/property-deprecated: New file.
18365         * modules/unictype/property-logical-order-exception: New file.
18366         * modules/unictype/property-variation-selector: New file.
18367         * modules/unictype/property-private-use: New file.
18368         * modules/unictype/property-unassigned-code-value: New file.
18369         * modules/unictype/property-uppercase: New file.
18370         * modules/unictype/property-other-uppercase: New file.
18371         * modules/unictype/property-lowercase: New file.
18372         * modules/unictype/property-other-lowercase: New file.
18373         * modules/unictype/property-titlecase: New file.
18374         * modules/unictype/property-soft-dotted: New file.
18375         * modules/unictype/property-id-start: New file.
18376         * modules/unictype/property-other-id-start: New file.
18377         * modules/unictype/property-id-continue: New file.
18378         * modules/unictype/property-other-id-continue: New file.
18379         * modules/unictype/property-xid-start: New file.
18380         * modules/unictype/property-xid-continue: New file.
18381         * modules/unictype/property-pattern-white-space: New file.
18382         * modules/unictype/property-pattern-syntax: New file.
18383         * modules/unictype/property-join-control: New file.
18384         * modules/unictype/property-grapheme-base: New file.
18385         * modules/unictype/property-grapheme-extend: New file.
18386         * modules/unictype/property-other-grapheme-extend: New file.
18387         * modules/unictype/property-grapheme-link: New file.
18388         * modules/unictype/property-bidi-control: New file.
18389         * modules/unictype/property-bidi-left-to-right: New file.
18390         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
18391         * modules/unictype/property-bidi-arabic-right-to-left: New file.
18392         * modules/unictype/property-bidi-european-digit: New file.
18393         * modules/unictype/property-bidi-eur-num-separator: New file.
18394         * modules/unictype/property-bidi-eur-num-terminator: New file.
18395         * modules/unictype/property-bidi-arabic-digit: New file.
18396         * modules/unictype/property-bidi-common-separator: New file.
18397         * modules/unictype/property-bidi-block-separator: New file.
18398         * modules/unictype/property-bidi-segment-separator: New file.
18399         * modules/unictype/property-bidi-whitespace: New file.
18400         * modules/unictype/property-bidi-non-spacing-mark: New file.
18401         * modules/unictype/property-bidi-boundary-neutral: New file.
18402         * modules/unictype/property-bidi-pdf: New file.
18403         * modules/unictype/property-bidi-embedding-or-override: New file.
18404         * modules/unictype/property-bidi-other-neutral: New file.
18405         * modules/unictype/property-hex-digit: New file.
18406         * modules/unictype/property-ascii-hex-digit: New file.
18407         * modules/unictype/property-ideographic: New file.
18408         * modules/unictype/property-unified-ideograph: New file.
18409         * modules/unictype/property-radical: New file.
18410         * modules/unictype/property-ids-binary-operator: New file.
18411         * modules/unictype/property-ids-trinary-operator: New file.
18412         * modules/unictype/property-zero-width: New file.
18413         * modules/unictype/property-space: New file.
18414         * modules/unictype/property-non-break: New file.
18415         * modules/unictype/property-iso-control: New file.
18416         * modules/unictype/property-format-control: New file.
18417         * modules/unictype/property-dash: New file.
18418         * modules/unictype/property-hyphen: New file.
18419         * modules/unictype/property-punctuation: New file.
18420         * modules/unictype/property-line-separator: New file.
18421         * modules/unictype/property-paragraph-separator: New file.
18422         * modules/unictype/property-quotation-mark: New file.
18423         * modules/unictype/property-sentence-terminal: New file.
18424         * modules/unictype/property-terminal-punctuation: New file.
18425         * modules/unictype/property-currency-symbol: New file.
18426         * modules/unictype/property-math: New file.
18427         * modules/unictype/property-other-math: New file.
18428         * modules/unictype/property-paired-punctuation: New file.
18429         * modules/unictype/property-left-of-pair: New file.
18430         * modules/unictype/property-combining: New file.
18431         * modules/unictype/property-composite: New file.
18432         * modules/unictype/property-decimal-digit: New file.
18433         * modules/unictype/property-numeric: New file.
18434         * modules/unictype/property-diacritic: New file.
18435         * modules/unictype/property-extender: New file.
18436         * modules/unictype/property-ignorable-control: New file.
18437         * modules/unictype/property-test: New file.
18438         * modules/unictype/property-byname: New file.
18439         * modules/unictype/property-all: New file.
18440         * modules/unictype/scripts: New file.
18441         * modules/unictype/scripts-all: New file.
18442         * modules/unictype/block-of: New file.
18443         * modules/unictype/block-test: New file.
18444         * modules/unictype/block-list: New file.
18445         * modules/unictype/block-all: New file.
18446         * modules/unictype/syntax-c-whitespace: New file.
18447         * modules/unictype/syntax-java-whitespace: New file.
18448         * modules/unictype/syntax-c-ident: New file.
18449         * modules/unictype/syntax-java-ident: New file.
18450         * modules/unictype/ctype-alnum: New file.
18451         * modules/unictype/ctype-alpha: New file.
18452         * modules/unictype/ctype-cntrl: New file.
18453         * modules/unictype/ctype-digit: New file.
18454         * modules/unictype/ctype-graph: New file.
18455         * modules/unictype/ctype-lower: New file.
18456         * modules/unictype/ctype-print: New file.
18457         * modules/unictype/ctype-punct: New file.
18458         * modules/unictype/ctype-space: New file.
18459         * modules/unictype/ctype-upper: New file.
18460         * modules/unictype/ctype-xdigit: New file.
18461         * modules/unictype/ctype-blank: New file.
18462         * lib/unictype/bidi_byname.c: New file.
18463         * lib/unictype/bidi_name.c: New file.
18464         * lib/unictype/bidi_of.c: New file.
18465         * lib/unictype/bidi_test.c: New file.
18466         * lib/unictype/bitmap.h: New file.
18467         * lib/unictype/block_test.c: New file.
18468         * lib/unictype/blocks.c: New file.
18469         * lib/unictype/categ_C.c: New file.
18470         * lib/unictype/categ_Cc.c: New file.
18471         * lib/unictype/categ_Cf.c: New file.
18472         * lib/unictype/categ_Cn.c: New file.
18473         * lib/unictype/categ_Co.c: New file.
18474         * lib/unictype/categ_Cs.c: New file.
18475         * lib/unictype/categ_L.c: New file.
18476         * lib/unictype/categ_Ll.c: New file.
18477         * lib/unictype/categ_Lm.c: New file.
18478         * lib/unictype/categ_Lo.c: New file.
18479         * lib/unictype/categ_Lt.c: New file.
18480         * lib/unictype/categ_Lu.c: New file.
18481         * lib/unictype/categ_M.c: New file.
18482         * lib/unictype/categ_Mc.c: New file.
18483         * lib/unictype/categ_Me.c: New file.
18484         * lib/unictype/categ_Mn.c: New file.
18485         * lib/unictype/categ_N.c: New file.
18486         * lib/unictype/categ_Nd.c: New file.
18487         * lib/unictype/categ_Nl.c: New file.
18488         * lib/unictype/categ_No.c: New file.
18489         * lib/unictype/categ_P.c: New file.
18490         * lib/unictype/categ_Pc.c: New file.
18491         * lib/unictype/categ_Pd.c: New file.
18492         * lib/unictype/categ_Pe.c: New file.
18493         * lib/unictype/categ_Pf.c: New file.
18494         * lib/unictype/categ_Pi.c: New file.
18495         * lib/unictype/categ_Po.c: New file.
18496         * lib/unictype/categ_Ps.c: New file.
18497         * lib/unictype/categ_S.c: New file.
18498         * lib/unictype/categ_Sc.c: New file.
18499         * lib/unictype/categ_Sk.c: New file.
18500         * lib/unictype/categ_Sm.c: New file.
18501         * lib/unictype/categ_So.c: New file.
18502         * lib/unictype/categ_Z.c: New file.
18503         * lib/unictype/categ_Zl.c: New file.
18504         * lib/unictype/categ_Zp.c: New file.
18505         * lib/unictype/categ_Zs.c: New file.
18506         * lib/unictype/categ_and.c: New file.
18507         * lib/unictype/categ_and_not.c: New file.
18508         * lib/unictype/categ_byname.c: New file.
18509         * lib/unictype/categ_name.c: New file.
18510         * lib/unictype/categ_none.c: New file.
18511         * lib/unictype/categ_of.c: New file.
18512         * lib/unictype/categ_or.c: New file.
18513         * lib/unictype/categ_test.c: New file.
18514         * lib/unictype/combining.c: New file.
18515         * lib/unictype/ctype_alnum.c: New file.
18516         * lib/unictype/ctype_alpha.c: New file.
18517         * lib/unictype/ctype_blank.c: New file.
18518         * lib/unictype/ctype_cntrl.c: New file.
18519         * lib/unictype/ctype_digit.c: New file.
18520         * lib/unictype/ctype_graph.c: New file.
18521         * lib/unictype/ctype_lower.c: New file.
18522         * lib/unictype/ctype_print.c: New file.
18523         * lib/unictype/ctype_punct.c: New file.
18524         * lib/unictype/ctype_space.c: New file.
18525         * lib/unictype/ctype_upper.c: New file.
18526         * lib/unictype/ctype_xdigit.c: New file.
18527         * lib/unictype/decdigit.c: New file.
18528         * lib/unictype/digit.c: New file.
18529         * lib/unictype/identsyntaxmap.h: New file.
18530         * lib/unictype/mirror.c: New file.
18531         * lib/unictype/numeric.c: New file.
18532         * lib/unictype/pr_alphabetic.c: New file.
18533         * lib/unictype/pr_ascii_hex_digit.c: New file.
18534         * lib/unictype/pr_bidi_arabic_digit.c: New file.
18535         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
18536         * lib/unictype/pr_bidi_block_separator.c: New file.
18537         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
18538         * lib/unictype/pr_bidi_common_separator.c: New file.
18539         * lib/unictype/pr_bidi_control.c: New file.
18540         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
18541         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
18542         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
18543         * lib/unictype/pr_bidi_european_digit.c: New file.
18544         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
18545         * lib/unictype/pr_bidi_left_to_right.c: New file.
18546         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
18547         * lib/unictype/pr_bidi_other_neutral.c: New file.
18548         * lib/unictype/pr_bidi_pdf.c: New file.
18549         * lib/unictype/pr_bidi_segment_separator.c: New file.
18550         * lib/unictype/pr_bidi_whitespace.c: New file.
18551         * lib/unictype/pr_byname.c: New file.
18552         * lib/unictype/pr_byname.gperf: New file.
18553         * lib/unictype/pr_combining.c: New file.
18554         * lib/unictype/pr_composite.c: New file.
18555         * lib/unictype/pr_currency_symbol.c: New file.
18556         * lib/unictype/pr_dash.c: New file.
18557         * lib/unictype/pr_decimal_digit.c: New file.
18558         * lib/unictype/pr_default_ignorable_code_point.c: New file.
18559         * lib/unictype/pr_deprecated.c: New file.
18560         * lib/unictype/pr_diacritic.c: New file.
18561         * lib/unictype/pr_extender.c: New file.
18562         * lib/unictype/pr_format_control.c: New file.
18563         * lib/unictype/pr_grapheme_base.c: New file.
18564         * lib/unictype/pr_grapheme_extend.c: New file.
18565         * lib/unictype/pr_grapheme_link.c: New file.
18566         * lib/unictype/pr_hex_digit.c: New file.
18567         * lib/unictype/pr_hyphen.c: New file.
18568         * lib/unictype/pr_id_continue.c: New file.
18569         * lib/unictype/pr_id_start.c: New file.
18570         * lib/unictype/pr_ideographic.c: New file.
18571         * lib/unictype/pr_ids_binary_operator.c: New file.
18572         * lib/unictype/pr_ids_trinary_operator.c: New file.
18573         * lib/unictype/pr_ignorable_control.c: New file.
18574         * lib/unictype/pr_iso_control.c: New file.
18575         * lib/unictype/pr_join_control.c: New file.
18576         * lib/unictype/pr_left_of_pair.c: New file.
18577         * lib/unictype/pr_line_separator.c: New file.
18578         * lib/unictype/pr_logical_order_exception.c: New file.
18579         * lib/unictype/pr_lowercase.c: New file.
18580         * lib/unictype/pr_math.c: New file.
18581         * lib/unictype/pr_non_break.c: New file.
18582         * lib/unictype/pr_not_a_character.c: New file.
18583         * lib/unictype/pr_numeric.c: New file.
18584         * lib/unictype/pr_other_alphabetic.c: New file.
18585         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
18586         * lib/unictype/pr_other_grapheme_extend.c: New file.
18587         * lib/unictype/pr_other_id_continue.c: New file.
18588         * lib/unictype/pr_other_id_start.c: New file.
18589         * lib/unictype/pr_other_lowercase.c: New file.
18590         * lib/unictype/pr_other_math.c: New file.
18591         * lib/unictype/pr_other_uppercase.c: New file.
18592         * lib/unictype/pr_paired_punctuation.c: New file.
18593         * lib/unictype/pr_paragraph_separator.c: New file.
18594         * lib/unictype/pr_pattern_syntax.c: New file.
18595         * lib/unictype/pr_pattern_white_space.c: New file.
18596         * lib/unictype/pr_private_use.c: New file.
18597         * lib/unictype/pr_punctuation.c: New file.
18598         * lib/unictype/pr_quotation_mark.c: New file.
18599         * lib/unictype/pr_radical.c: New file.
18600         * lib/unictype/pr_sentence_terminal.c: New file.
18601         * lib/unictype/pr_soft_dotted.c: New file.
18602         * lib/unictype/pr_space.c: New file.
18603         * lib/unictype/pr_terminal_punctuation.c: New file.
18604         * lib/unictype/pr_test.c: New file.
18605         * lib/unictype/pr_titlecase.c: New file.
18606         * lib/unictype/pr_unassigned_code_value.c: New file.
18607         * lib/unictype/pr_unified_ideograph.c: New file.
18608         * lib/unictype/pr_uppercase.c: New file.
18609         * lib/unictype/pr_variation_selector.c: New file.
18610         * lib/unictype/pr_white_space.c: New file.
18611         * lib/unictype/pr_xid_continue.c: New file.
18612         * lib/unictype/pr_xid_start.c: New file.
18613         * lib/unictype/pr_zero_width.c: New file.
18614         * lib/unictype/scripts.c: New file.
18615         * lib/unictype/sy_c_ident.c: New file.
18616         * lib/unictype/sy_c_whitespace.c: New file.
18617         * lib/unictype/sy_java_ident.c: New file.
18618         * lib/unictype/sy_java_whitespace.c: New file.
18619
18620         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
18621         Unicode 5.0.0.
18622         * lib/unictype/blocks.h: Likewise.
18623         * lib/unictype/categ_C.h: Likewise.
18624         * lib/unictype/categ_Cc.h: Likewise.
18625         * lib/unictype/categ_Cf.h: Likewise.
18626         * lib/unictype/categ_Cn.h: Likewise.
18627         * lib/unictype/categ_Co.h: Likewise.
18628         * lib/unictype/categ_Cs.h: Likewise.
18629         * lib/unictype/categ_L.h: Likewise.
18630         * lib/unictype/categ_Ll.h: Likewise.
18631         * lib/unictype/categ_Lm.h: Likewise.
18632         * lib/unictype/categ_Lo.h: Likewise.
18633         * lib/unictype/categ_Lt.h: Likewise.
18634         * lib/unictype/categ_Lu.h: Likewise.
18635         * lib/unictype/categ_M.h: Likewise.
18636         * lib/unictype/categ_Mc.h: Likewise.
18637         * lib/unictype/categ_Me.h: Likewise.
18638         * lib/unictype/categ_Mn.h: Likewise.
18639         * lib/unictype/categ_N.h: Likewise.
18640         * lib/unictype/categ_Nd.h: Likewise.
18641         * lib/unictype/categ_Nl.h: Likewise.
18642         * lib/unictype/categ_No.h: Likewise.
18643         * lib/unictype/categ_P.h: Likewise.
18644         * lib/unictype/categ_Pc.h: Likewise.
18645         * lib/unictype/categ_Pd.h: Likewise.
18646         * lib/unictype/categ_Pe.h: Likewise.
18647         * lib/unictype/categ_Pf.h: Likewise.
18648         * lib/unictype/categ_Pi.h: Likewise.
18649         * lib/unictype/categ_Po.h: Likewise.
18650         * lib/unictype/categ_Ps.h: Likewise.
18651         * lib/unictype/categ_S.h: Likewise.
18652         * lib/unictype/categ_Sc.h: Likewise.
18653         * lib/unictype/categ_Sk.h: Likewise.
18654         * lib/unictype/categ_Sm.h: Likewise.
18655         * lib/unictype/categ_So.h: Likewise.
18656         * lib/unictype/categ_Z.h: Likewise.
18657         * lib/unictype/categ_Zl.h: Likewise.
18658         * lib/unictype/categ_Zp.h: Likewise.
18659         * lib/unictype/categ_Zs.h: Likewise.
18660         * lib/unictype/categ_of.h: Likewise.
18661         * lib/unictype/combining.h: Likewise.
18662         * lib/unictype/ctype_alnum.h: Likewise.
18663         * lib/unictype/ctype_alpha.h: Likewise.
18664         * lib/unictype/ctype_blank.h: Likewise.
18665         * lib/unictype/ctype_cntrl.h: Likewise.
18666         * lib/unictype/ctype_digit.h: Likewise.
18667         * lib/unictype/ctype_graph.h: Likewise.
18668         * lib/unictype/ctype_lower.h: Likewise.
18669         * lib/unictype/ctype_print.h: Likewise.
18670         * lib/unictype/ctype_punct.h: Likewise.
18671         * lib/unictype/ctype_space.h: Likewise.
18672         * lib/unictype/ctype_upper.h: Likewise.
18673         * lib/unictype/ctype_xdigit.h: Likewise.
18674         * lib/unictype/decdigit.h: Likewise.
18675         * lib/unictype/digit.h: Likewise.
18676         * lib/unictype/mirror.h: Likewise.
18677         * lib/unictype/numeric.h: Likewise.
18678         * lib/unictype/pr_alphabetic.h: Likewise.
18679         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
18680         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
18681         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
18682         * lib/unictype/pr_bidi_block_separator.h: Likewise.
18683         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
18684         * lib/unictype/pr_bidi_common_separator.h: Likewise.
18685         * lib/unictype/pr_bidi_control.h: Likewise.
18686         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
18687         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
18688         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
18689         * lib/unictype/pr_bidi_european_digit.h: Likewise.
18690         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
18691         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
18692         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
18693         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
18694         * lib/unictype/pr_bidi_pdf.h: Likewise.
18695         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
18696         * lib/unictype/pr_bidi_whitespace.h: Likewise.
18697         * lib/unictype/pr_combining.h: Likewise.
18698         * lib/unictype/pr_composite.h: Likewise.
18699         * lib/unictype/pr_currency_symbol.h: Likewise.
18700         * lib/unictype/pr_dash.h: Likewise.
18701         * lib/unictype/pr_decimal_digit.h: Likewise.
18702         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
18703         * lib/unictype/pr_deprecated.h: Likewise.
18704         * lib/unictype/pr_diacritic.h: Likewise.
18705         * lib/unictype/pr_extender.h: Likewise.
18706         * lib/unictype/pr_format_control.h: Likewise.
18707         * lib/unictype/pr_grapheme_base.h: Likewise.
18708         * lib/unictype/pr_grapheme_extend.h: Likewise.
18709         * lib/unictype/pr_grapheme_link.h: Likewise.
18710         * lib/unictype/pr_hex_digit.h: Likewise.
18711         * lib/unictype/pr_hyphen.h: Likewise.
18712         * lib/unictype/pr_id_continue.h: Likewise.
18713         * lib/unictype/pr_id_start.h: Likewise.
18714         * lib/unictype/pr_ideographic.h: Likewise.
18715         * lib/unictype/pr_ids_binary_operator.h: Likewise.
18716         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
18717         * lib/unictype/pr_ignorable_control.h: Likewise.
18718         * lib/unictype/pr_iso_control.h: Likewise.
18719         * lib/unictype/pr_join_control.h: Likewise.
18720         * lib/unictype/pr_left_of_pair.h: Likewise.
18721         * lib/unictype/pr_line_separator.h: Likewise.
18722         * lib/unictype/pr_logical_order_exception.h: Likewise.
18723         * lib/unictype/pr_lowercase.h: Likewise.
18724         * lib/unictype/pr_math.h: Likewise.
18725         * lib/unictype/pr_non_break.h: Likewise.
18726         * lib/unictype/pr_not_a_character.h: Likewise.
18727         * lib/unictype/pr_numeric.h: Likewise.
18728         * lib/unictype/pr_other_alphabetic.h: Likewise.
18729         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
18730         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
18731         * lib/unictype/pr_other_id_continue.h: Likewise.
18732         * lib/unictype/pr_other_id_start.h: Likewise.
18733         * lib/unictype/pr_other_lowercase.h: Likewise.
18734         * lib/unictype/pr_other_math.h: Likewise.
18735         * lib/unictype/pr_other_uppercase.h: Likewise.
18736         * lib/unictype/pr_paired_punctuation.h: Likewise.
18737         * lib/unictype/pr_paragraph_separator.h: Likewise.
18738         * lib/unictype/pr_pattern_syntax.h: Likewise.
18739         * lib/unictype/pr_pattern_white_space.h: Likewise.
18740         * lib/unictype/pr_private_use.h: Likewise.
18741         * lib/unictype/pr_punctuation.h: Likewise.
18742         * lib/unictype/pr_quotation_mark.h: Likewise.
18743         * lib/unictype/pr_radical.h: Likewise.
18744         * lib/unictype/pr_sentence_terminal.h: Likewise.
18745         * lib/unictype/pr_soft_dotted.h: Likewise.
18746         * lib/unictype/pr_space.h: Likewise.
18747         * lib/unictype/pr_terminal_punctuation.h: Likewise.
18748         * lib/unictype/pr_titlecase.h: Likewise.
18749         * lib/unictype/pr_unassigned_code_value.h: Likewise.
18750         * lib/unictype/pr_unified_ideograph.h: Likewise.
18751         * lib/unictype/pr_uppercase.h: Likewise.
18752         * lib/unictype/pr_variation_selector.h: Likewise.
18753         * lib/unictype/pr_white_space.h: Likewise.
18754         * lib/unictype/pr_xid_continue.h: Likewise.
18755         * lib/unictype/pr_xid_start.h: Likewise.
18756         * lib/unictype/pr_zero_width.h: Likewise.
18757         * lib/unictype/scripts.h: Likewise.
18758         * lib/unictype/scripts_byname.gperf: Likewise.
18759         * lib/unictype/sy_c_ident.h: Likewise.
18760         * lib/unictype/sy_c_whitespace.h: Likewise.
18761         * lib/unictype/sy_java_ident.h: Likewise.
18762         * lib/unictype/sy_java_whitespace.h: Likewise.
18763
18764         * lib/unictype/Makefile: New file.
18765         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
18766         glibc.
18767         * lib/unictype/3level.h: New file, copied from glibc.
18768         * lib/unictype/3levelbit.h: New file.
18769
18770 2007-11-11  Bruno Haible  <bruno@clisp.org>
18771
18772         * modules/gperf: New file.
18773         * modules/iconv_open (Depends-on): Add it.
18774         (Makefile.am): Remove the GPERF definition.
18775
18776 2007-11-11  Bruno Haible  <bruno@clisp.org>
18777
18778         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
18779         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
18780
18781 2007-11-11  Bruno Haible  <bruno@clisp.org>
18782
18783         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
18784         (usage): Remove function.
18785
18786 2007-11-11  Bruno Haible  <bruno@clisp.org>
18787
18788         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
18789         gl_FUNC_CEILF_LIBS.
18790         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
18791         gl_FUNC_CEIL_LIBS.
18792         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
18793         gl_FUNC_CEILL_LIBS.
18794         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
18795         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
18796         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
18797
18798 2007-11-11  Bruno Haible  <bruno@clisp.org>
18799
18800         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
18801         roundf were declared but do not exist on functions.
18802         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
18803         roundl were declared but do not exist on functions.
18804         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
18805         HAVE_FLOORL_AND_CEILL, respectively.
18806         Needed for Sun C on Solaris 10.
18807
18808 2007-11-11  Bruno Haible  <bruno@clisp.org>
18809
18810         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
18811         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
18812         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
18813         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
18814         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
18815         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
18816         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
18817         HAVE_DECL_ROUNDF.
18818         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
18819         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
18820         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
18821         of HAVE_DECL_ROUND*.
18822         * modules/math (Makefile.am): Update.
18823
18824 2007-11-10  Bruno Haible  <bruno@clisp.org>
18825
18826         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
18827         ptrdiff_t as m4/intl.m4.
18828
18829 2007-11-10  Jim Meyering  <meyering@redhat.com>
18830
18831         Avoid link failure for the argmatch test.
18832         * tests/test-argmatch.c (usage): Define function to avoid a link
18833         failure: argmatch_die requires a usage function.
18834
18835 2007-11-09  Bruno Haible  <bruno@clisp.org>
18836
18837         * doc/functions/snprintf.texi: Mention BeOS deficiency.
18838         * doc/functions/vsnprintf.texi: Likewise.
18839         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
18840         with a size argument < 2.
18841
18842 2007-11-09  Bruno Haible  <bruno@clisp.org>
18843
18844         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
18845         buffer. Fixes an inefficiency introduced on 2007-11-03.
18846
18847 2007-11-09  Bruno Haible  <bruno@clisp.org>
18848
18849         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
18850         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
18851
18852 2007-11-08  Jim Meyering  <meyering@redhat.com>
18853
18854         Change cache variable name prefix "jm_" to "gl_" everywhere.
18855         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
18856         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
18857         * m4/uptime.m4: s/gl_/jm_/
18858
18859 2007-11-07  Bruno Haible  <bruno@clisp.org>
18860
18861         Update to GNU gettext 0.17.
18862         * m4/intl.m4: Update to GNU gettext 0.17.
18863         * m4/po.m4: Likewise.
18864         * modules/gettext (Files): Remove m4/ulonglong.m4.
18865         (configure.ac): Require gettext infrastructure from version 0.17.
18866
18867 2007-11-06  Bruno Haible  <bruno@clisp.org>
18868
18869         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
18870         symbolic values are not defined in a public header.
18871         * lib/freadable.c (freadable) [QNX]: Likewise.
18872         * lib/freadahead.c (freadahead) [QNX]: Likewise.
18873         * lib/freading.c (freading) [QNX]: Likewise.
18874         * lib/fseterr.c (fseterr) [QNX]: Likewise.
18875         * lib/fwritable.c (fwritable) [QNX]: Likewise.
18876         * lib/fwriting.c (fwriting) [QNX]: Likewise.
18877         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
18878         Reported by Alain Magloire.
18879
18880         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
18881
18882 2007-11-05  Bruno Haible  <bruno@clisp.org>
18883
18884         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
18885         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
18886         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
18887         Reported by Eric Blake.
18888
18889 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18890             Bruno Haible  <bruno@clisp.org>
18891
18892         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
18893         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
18894         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
18895         (malloc): Undefine also before including <stdlib.h>.
18896         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
18897         Needed on OSF/1 4.0.
18898
18899 2007-11-05  Jim Meyering  <meyering@redhat.com>
18900
18901         git-version-gen: sync from coreutils.
18902         * build-aux/git-version-gen: Add comments.
18903         Change the first '-' to '.' in the snapshot version string,
18904         e.g., 6.9-377-08144 -> 6.9.377-08144
18905         Remove first parameter.
18906         Don't declare a version "-dirty" merely because a time
18907         stamp has changed.
18908
18909 2007-11-04  Bruno Haible  <bruno@clisp.org>
18910
18911         * lib/lock.h: Protect all macro definitions containing an 'if'
18912         statement through a "do { ... } while (0)".
18913         * lib/tls.h: Likewise.
18914
18915 2007-11-04  Bruno Haible  <bruno@clisp.org>
18916
18917         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
18918
18919 2007-11-04  Bruno Haible  <bruno@clisp.org>
18920
18921         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
18922         * modules/fprintf-posix (Depends-on): Add nocrash.
18923         * modules/snprintf-posix (Depends-on): Likewise.
18924         * modules/sprintf-posix (Depends-on): Likewise.
18925         * modules/vasnprintf-posix (Depends-on): Likewise.
18926         * modules/vasprintf-posix (Depends-on): Likewise.
18927         * modules/vfprintf-posix (Depends-on): Likewise.
18928         * modules/vsnprintf-posix (Depends-on): Likewise.
18929         * modules/vsprintf-posix (Depends-on): Likewise.
18930         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
18931         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
18932         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
18933         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
18934         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
18935         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
18936         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
18937
18938 2007-11-04  Bruno Haible  <bruno@clisp.org>
18939
18940         * modules/nocrash: New file.
18941         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
18942         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
18943
18944 2007-11-04  Bruno Haible  <bruno@clisp.org>
18945
18946         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
18947         precision handling.
18948         * tests/test-vasprintf-posix.c (test_function): Likewise.
18949         * tests/test-snprintf-posix.h (test_function): Likewise.
18950         * tests/test-sprintf-posix.h (test_function): Likewise.
18951
18952         Fix *printf behaviour for large precisions on mingw and BeOS.
18953         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
18954         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
18955         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
18956         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
18957         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
18958         gl_PRINTF_PRECISION and test its result. Invoke
18959         gl_PREREQ_VASNPRINTF_PRECISION.
18960         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
18961         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
18962         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
18963         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
18964         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
18965         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18966         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
18967         * doc/functions/fprintf.texi: Update.
18968         * doc/functions/printf.texi: Update.
18969         * doc/functions/snprintf.texi: Update.
18970         * doc/functions/sprintf.texi: Update.
18971         * doc/functions/vfprintf.texi: Update.
18972         * doc/functions/vprintf.texi: Update.
18973         * doc/functions/vsnprintf.texi: Update.
18974         * doc/functions/vsprintf.texi: Update.
18975
18976 2007-11-04  Bruno Haible  <bruno@clisp.org>
18977
18978         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
18979
18980 2007-11-04  Bruno Haible  <bruno@clisp.org>
18981
18982         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
18983         Reported by Sylvain Beucler <beuc@gnu.org>.
18984
18985 2007-11-03  Bruno Haible  <bruno@clisp.org>
18986
18987         * tests/test-fprintf-posix2.sh: New file.
18988         * tests/test-fprintf-posix2.c: New file.
18989         * modules/fprintf-posix-tests (Files): Add them.
18990         (TESTS): Add test-fprintf-posix2.sh.
18991         (configure.ac): Check for getrlimit and setrlimit.
18992         (check_PROGRAMS): Add test-fprintf-posix2.
18993
18994         * tests/test-printf-posix2.sh: New file.
18995         * tests/test-printf-posix2.c: New file.
18996         * modules/printf-posix-tests (Files): Add them.
18997         (TESTS): Add test-printf-posix2.sh.
18998         (configure.ac): Check for getrlimit and setrlimit.
18999         (check_PROGRAMS): Add test-printf-posix2.
19000
19001         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
19002         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
19003         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
19004         (decode_double): New function, copied from decode_long_double.
19005         (scale10_round_decimal_decoded): New function, extracted from
19006         scale10_round_decimal_long_double.
19007         (scale10_round_decimal_long_double): Use it.
19008         (scale10_round_decimal_double): New function.
19009         (floorlog10): New function.
19010         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
19011         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
19012         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
19013         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
19014         gl_PRINTF_ENOMEM and test its result. Invoke
19015         gl_PREREQ_VASNPRINTF_ENOMEM.
19016         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
19017         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
19018         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
19019         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
19020         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
19021         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
19022         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
19023         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
19024         * modules/snprintf-posix (Depends-on): Likewise.
19025         * modules/sprintf-posix (Depends-on): Likewise.
19026         * modules/vasnprintf-posix (Depends-on): Likewise.
19027         * modules/vasprintf-posix (Depends-on): Likewise.
19028         * modules/vfprintf-posix (Depends-on): Likewise.
19029         * modules/vsnprintf-posix (Depends-on): Likewise.
19030         * modules/vsprintf-posix (Depends-on): Likewise.
19031         * doc/functions/fprintf.texi: Update.
19032         * doc/functions/printf.texi: Update.
19033         * doc/functions/snprintf.texi: Update.
19034         * doc/functions/sprintf.texi: Update.
19035         * doc/functions/vfprintf.texi: Update.
19036         * doc/functions/vprintf.texi: Update.
19037         * doc/functions/vsnprintf.texi: Update.
19038         * doc/functions/vsprintf.texi: Update.
19039
19040 2007-11-03  Bruno Haible  <bruno@clisp.org>
19041
19042         * modules/frexp-nolibm-tests: New file.
19043
19044         * modules/frexp-nolibm: New file.
19045         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
19046
19047 2007-11-03  Bruno Haible  <bruno@clisp.org>
19048
19049         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
19050         value is C99 compliant.
19051         Needed for OSF/1 5.1.
19052
19053 2007-11-03  Bruno Haible  <bruno@clisp.org>
19054
19055         Fix out-of-memory handling of vasnprintf.
19056         * lib/printf-parse.c: Include <errno.h>.
19057         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
19058         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
19059         is already set.
19060
19061 2007-11-02  Eric Blake  <ebb9@byu.net>
19062
19063         Fix tests on cygwin.
19064         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
19065
19066 2007-11-01  Bruno Haible  <bruno@clisp.org>
19067
19068         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
19069         warning.
19070         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
19071         needed for POSIX compatibility.
19072
19073 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
19074
19075         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
19076         for compatibility with GNU.
19077
19078 2007-11-01  Bruno Haible  <bruno@clisp.org>
19079
19080         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
19081         (putenv): Renamed from rpl_putenv. Change argument type from
19082         'const char *' to 'char *'.
19083         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
19084         of defining putenv in config.h, just set REPLACE_PUTENV.
19085         * modules/putenv (Depends-on): Add stdlib.
19086         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
19087         (Include): Use <stdlib.h>.
19088         * lib/stdlib.in.h (putenv): New declaration.
19089         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
19090         REPLACE_PUTENV.
19091         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
19092         REPLACE_PUTENV.
19093         Needed for MacOS X 10.5.0.
19094         Reported by Peter O'Gorman <peter@pogma.com>.
19095
19096 2007-11-01  Jim Meyering  <meyering@redhat.com>
19097
19098         Treat an empty date string exactly like "0".
19099         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
19100         if the remaining date string (to be parsed) is empty, use "0".
19101         Reported by Mischa Molhoek and discussed in this thread:
19102         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
19103
19104 2007-10-31  Bruno Haible  <bruno@clisp.org>
19105
19106         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
19107         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
19108         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
19109         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
19110         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
19111         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
19112
19113 2007-10-31  Bruno Haible  <bruno@clisp.org>
19114
19115         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
19116         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
19117         (AC_TYPE_LONG_LONG_INT): Use it.
19118         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
19119         it as well.
19120         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
19121         to m4/longlong.m4.
19122         * modules/stdint (Files): Remove m4/ulonglong.m4.
19123         * modules/strtoull (Files): Use m4/longlong.m4 instead of
19124         m4/ulonglong.m4.
19125         * modules/strtoumax (Files): Likewise.
19126
19127 2007-10-30  Bruno Haible  <bruno@clisp.org>
19128
19129         * modules/xvasprintf-posix: New file.
19130         Suggested by Eric Blake.
19131
19132 2007-10-30  Bruno Haible  <bruno@clisp.org>
19133
19134         * modules/xprintf-posix-tests: New file.
19135         * tests/test-xprintf-posix.sh: New file.
19136         * tests/test-xprintf-posix.c: New file.
19137         * tests/test-xfprintf-posix.c: New file.
19138
19139         * modules/xprintf-posix: New file.
19140
19141 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19142
19143         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
19144         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
19145         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
19146
19147 2007-10-29  Bruno Haible  <bruno@clisp.org>
19148
19149         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
19150         contain the special marker '_cv_'.
19151         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
19152         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
19153         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
19154         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
19155         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
19156         Reported by Ralf Wildenhues.
19157
19158 2007-10-29  Bruno Haible  <bruno@clisp.org>
19159
19160         * gnulib-tool (func_import): When --lgpl is not specified, set
19161         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
19162         GPLv3.
19163         Reported by Simon Josefsson.
19164
19165 2007-10-28  Bruno Haible  <bruno@clisp.org>
19166
19167         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
19168         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
19169         HAVE_DECL_ISFINITE.
19170         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
19171         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
19172         HAVE_DECL_ISFINITE.
19173
19174 2007-10-28  Bruno Haible  <bruno@clisp.org>
19175
19176         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
19177         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
19178
19179 2007-10-28  Bruno Haible  <bruno@clisp.org>
19180
19181         Fix link errors with Sun C 5.0 on Solaris 10.
19182         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
19183         function is declared but not present in the compiler's libm.
19184         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
19185         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
19186         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
19187         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
19188         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
19189         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
19190         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
19191         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
19192         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
19193         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
19194         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
19195         HAVE_DECL_FLOORL.
19196
19197 2007-10-28  Bruno Haible  <bruno@clisp.org>
19198
19199         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
19200         gl_FUNC_FLOORL. Cache the result.
19201         (gl_FUNC_FLOORL): Use it.
19202         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
19203         gl_FUNC_CEILL. Cache the result.
19204         (gl_FUNC_CEILL): Use it.
19205
19206         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
19207         gl_FUNC_FLOOR. Cache the result.
19208         (gl_FUNC_FLOOR): Use it.
19209         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
19210         gl_FUNC_CEIL. Cache the result.
19211         (gl_FUNC_CEIL): Use it.
19212
19213         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
19214         gl_FUNC_FLOORF. Cache the result.
19215         (gl_FUNC_FLOORF): Use it.
19216         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
19217         gl_FUNC_CEILF. Cache the result.
19218         (gl_FUNC_CEILF): Use it.
19219
19220 2007-10-28  Bruno Haible  <bruno@clisp.org>
19221
19222         * gnulib-tool: Allow specifying the LGPL version number through
19223         --lgpl=2 or --lgpl=3.
19224         (func_usage): Document --lgpl with argument.
19225         Handle --lgpl=... arguments.
19226         (func_import): Recognize also gl_LGPL calls with an argument. When
19227         --lgpl=2 is used and the module's license is just LGPL, report an
19228         error. Set sed_transform_lib_file according to the lgpl variable. In
19229         the generated files, use --lgpl or gl_LGPL invocations with argument,
19230         if necessary.
19231         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
19232         an LGPv2+ license.
19233         * doc/gnulib-tool.texi (Modified imports): Update explanation of
19234         gl_LGPL macro.
19235
19236 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19237             Bruno Haible  <bruno@clisp.org>
19238
19239         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
19240         (u16_uctomb_aux): Likewise.
19241         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
19242         !HAVE_INLINE.
19243         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
19244
19245 2007-10-28  Bruno Haible  <bruno@clisp.org>
19246
19247         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
19248         Invoke AM_GETTEXT_OPTION if it exists.
19249         * modules/vasprintf: Likewise.
19250         * modules/verror: Likewise.
19251         * modules/xprintf: Likewise.
19252         * modules/xvasprintf: Likewise.
19253
19254 2007-10-27  Ben Pfaff  <blp@gnu.org>
19255
19256         * lib/math.in.h: Define isfinite macro and prototypes for
19257         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
19258         implementations.
19259         * m4/math_h.m4: New substitutions for isfinite module.
19260         * lib/isfinite.c: New file.
19261         * m4/isfinite.m4: New file.
19262         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
19263         * modules/isfinite: New file.
19264         * modules/isfinite-tests: New file.
19265         * tests/tests-isfinite.c: New file.
19266         * doc/functions/isfinite.texi: Mention isfinite module.
19267         * MODULES.html.sh: Mention new module.
19268
19269 2007-10-27  Ben Pfaff  <blp@gnu.org>
19270
19271         Ralf Wildenhues reported that Tru64 4.0D declares the round
19272         functions but does not have definitions.
19273         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
19274         cannot be found in any library, set the output variable to
19275         "missing" instead of "".
19276         * m4/round.m4: Also use our substitute if we cannot find round in
19277         any library, even if it is declared.
19278         * m4/roundf.m4: Likewise for roundf.
19279         * m4/roundl.m4: Likewise for roundl.
19280         * lib/math.in.h: Undefine roundf, round, roundl before defining
19281         their replacements, to allow for hypothetical systems where these
19282         may be defined as macros but not available in libraries.
19283
19284 2007-10-27  Bruno Haible  <bruno@clisp.org>
19285
19286         * doc/gnulib.texi: Invoke @firstparagraphindent.
19287         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
19288         changes in gnulib.
19289         (Source changes): New section.
19290
19291 2007-10-26  Bruno Haible  <bruno@clisp.org>
19292
19293         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
19294         borrowed from autoconf.
19295
19296 2007-10-26  Bruno Haible  <bruno@clisp.org>
19297
19298         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
19299         strerror returned the empty string. Needed on HP-UX 11.00.
19300
19301 2007-10-24  Micah Cowan  <micah@cowan.name>
19302
19303         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
19304         * build-aux/bootstrap: Remove support for now-unnecessary option,
19305         --cvs-user, and envvars CVS_USER, CVS_RSH.
19306
19307 2007-10-24  Jim Meyering  <meyering@redhat.com>
19308
19309         Avoid diagnostics from sha1sum when there is no cached checksum.
19310         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
19311         if the po.s1 file hasn't been created yet.
19312
19313         * build-aux/bootstrap: Sync from coreutils:
19314         2007-10-24  Jim Meyering  <meyering@redhat.com>
19315         Get gnulib from the git repository, not from an obsolete cvs one.
19316         * build-aux/bootstrap: Suggestion from Micah Cowan.
19317         2007-10-04  Jim Meyering  <jim@meyering.net>
19318         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
19319         (update_po_files): Work also when there are no .po files in po/.
19320
19321 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
19322
19323         * README: Append ".git" to git and cg examples.
19324         Problem reported by Benoit Sigoure.
19325
19326 2007-10-23  Micah Cowan  <micah@cowan.name>
19327
19328         * users.txt: Add wget.
19329
19330 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19331
19332         Fix linking of some unistdio tests on FreeBSD.
19333         * modules/unistdio/u16-vsnprintf-tests
19334         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
19335         * modules/unistdio/u16-vsprintf-tests
19336         (test_u16_vsnprintf1_LDADD): Likewise.
19337         * modules/unistdio/u32-vsnprintf-tests
19338         (test_u32_vsnprintf1_LDADD): Likewise.
19339         * modules/unistdio/u32-vsprintf-tests
19340         (test_u32_vsprintf1_LDADD): Likewise.
19341         * modules/unistdio/u8-vsnprintf-tests
19342         (test_u8_vsnprintf1_LDADD): Likewise.
19343         * modules/unistdio/u8-vsprintf-tests
19344         (test_u8_vsprintf1_LDADD): Likewise.
19345         * modules/unistdio/ulc-vsnprintf-tests
19346         (test_ulc_vsnprintf1_LDADD): Likewise.
19347         * modules/unistdio/ulc-vsprintf-tests
19348         (test_ulc_vsprintf1_LDADD): Likewise.
19349
19350         Fix linking of some uniconv tests on FreeBSD.
19351         * modules/uniconv/u16-conv-from-enc-tests
19352         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
19353         * modules/uniconv/u16-conv-to-enc-tests
19354         (test_u16_conv_to_enc_LDADD): Likewise.
19355         * modules/uniconv/u16-strconv-from-enc-tests
19356         (test_u16_strconv_from_enc_LDADD): Likewise.
19357         * modules/uniconv/u16-strconv-to-enc-tests
19358         (test_u16_strconv_to_enc_LDADD): Likewise.
19359         * modules/uniconv/u32-conv-from-enc-tests
19360         (test_u32_conv_from_enc_LDADD): Likewise.
19361         * modules/uniconv/u32-conv-to-enc-tests
19362         (test_u32_conv_to_enc_LDADD): Likewise.
19363         * modules/uniconv/u32-strconv-from-enc-tests
19364         (test_u32_strconv_from_enc_LDADD): Likewise.
19365         * modules/uniconv/u32-strconv-to-enc-tests
19366         (test_u32_strconv_to_enc_LDADD): Likewise.
19367         * modules/uniconv/u8-conv-from-enc-tests
19368         (test_u8_conv_from_enc_LDADD): Likewise.
19369         * modules/uniconv/u8-conv-to-enc-tests
19370         (test_u8_conv_to_enc_LDADD): Likewise.
19371         * modules/uniconv/u8-strconv-from-enc-tests
19372         (test_u8_strconv_from_enc_LDADD): Likewise.
19373         * modules/uniconv/u8-strconv-to-enc-tests
19374         (test_u8_strconv_to_enc_LDADD): Likewise.
19375
19376 2007-10-22  Bruno Haible  <bruno@clisp.org>
19377
19378         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
19379         size.
19380
19381 2007-10-22  Eric Blake  <ebb9@byu.net>
19382
19383         Tweak x*printf documentation.
19384         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
19385         variable name and comments.
19386         Suggested by Bruno Haible.
19387
19388 2007-10-22  Bruno Haible  <bruno@clisp.org>
19389
19390         * lib/acl.c (copy_acl): Fix file name in comment.
19391
19392 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
19393
19394         Fix Tru64 problem with stdbool.h.
19395         * lib/stdbool.in.h (false, true):
19396         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
19397         Don't declare as an enum in this situation; it runs afoul of Tru64.
19398         Problem reported by Steven M. Schweda in
19399         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
19400
19401 2007-10-22  Eric Blake  <ebb9@byu.net>
19402
19403         Also wrap vf?printf.
19404         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
19405         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
19406         (xvprintf, xvfprintf): New functions.
19407
19408 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19409
19410         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
19411         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
19412
19413         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
19414         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
19415
19416 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
19417
19418         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
19419         by Bruno Haible.
19420
19421 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19422
19423         * lib/getloadavg.c
19424         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
19425         Undef `sys' after including sys/table.h, for Tru64 4.0D.
19426
19427         * tests/test-i-ring.c: Work for C89.
19428
19429 2007-10-22  Bruno Haible  <bruno@clisp.org>
19430
19431         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
19432         -1u, in preprocessor expression, so that we don't test for the bug
19433         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
19434         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
19435
19436 2007-10-22  Eric Blake  <ebb9@byu.net>
19437
19438         * tests/test-yesno.sh: Silence stderr during test.
19439
19440 2007-10-22  Simon Josefsson  <simon@josefsson.org>
19441
19442         * modules/crypto/gc-camellia: New file.
19443
19444         * m4/gc-camellia.m4: New file.
19445
19446         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
19447
19448         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
19449
19450 2007-10-22  Simon Josefsson  <simon@josefsson.org>
19451
19452         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
19453         --help to stdout.  Reported by sms@antinode.org (Steven
19454         M. Schweda).
19455
19456 2007-10-22  Simon Josefsson  <simon@josefsson.org>
19457
19458         * users.txt: Fix link to libksba.
19459
19460 2007-10-21  Ben Pfaff  <blp@gnu.org>
19461
19462         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
19463         round.c roundf implementation that depends on floorf and ceilf to
19464         be tested unconditionally.
19465
19466 2007-10-21  Ben Pfaff  <blp@gnu.org>
19467
19468         * m4/check-libm-func.m4: Removed.
19469         * m4/check-math-lib.m4: New file.
19470         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
19471         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
19472         definition and lack of AC_LIBOBJ([roundf]).
19473         * m4/roundl.m4: Ditto, and similarly for roundl.
19474         * modules/round: Reference new m4 file.
19475         * modules/roundf: Ditto.
19476         * modules/roundl: Ditto.
19477         * tests/test-round2.c (main): Use ROUND instead of round.
19478         Bug report from Bruno Haible.
19479
19480 2007-10-21  Bruno Haible  <bruno@clisp.org>
19481
19482         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
19483         context.
19484
19485 2007-10-21  Bruno Haible  <bruno@clisp.org>
19486
19487         * tests/test-wcwidth.c (main): Allow negative result for some control
19488         characters.
19489
19490         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
19491         Needed on OSF/1 5.1.
19492
19493 2007-10-21  Bruno Haible  <bruno@clisp.org>
19494
19495         * tests/test-floorf1.c: Include isnanf.h.
19496         (main): Use isnanf() instead of isnan().
19497         * tests/test-ceilf1.c: Include isnanf.h.
19498         (main): Use isnanf() instead of isnan().
19499         * tests/test-truncf1.c: Include isnanf.h.
19500         (main): Use isnanf() instead of isnan().
19501         * tests/test-roundf1.c: Include isnanf.h.
19502         (main): Use isnanf() instead of isnan().
19503
19504 2007-10-21  Eric Blake  <ebb9@byu.net>
19505
19506         * users.txt: Update URL for m4.
19507
19508 2007-10-21  Bruno Haible  <bruno@clisp.org>
19509
19510         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
19511
19512 2007-10-21  Bruno Haible  <bruno@clisp.org>
19513
19514         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
19515         Git's management files if the CVS files are not present.
19516
19517 2007-10-20  Bruno Haible  <bruno@clisp.org>
19518
19519         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
19520         gcc-3.4.x.
19521
19522 2007-10-20  Ben Pfaff  <blp@gnu.org>
19523
19524         * lib/math.in.h: Declare round, roundf, roundl if we are providing
19525         implementations.
19526         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
19527         * lib/round.c: New file.
19528         * lib/roundf.c: New file.
19529         * lib/roundl.c: New file.
19530         * m4/round.m4: New file.
19531         * m4/roundf.m4: New file.
19532         * m4/roundl.m4: New file.
19533         * m4/check-libm-func-m4: New file.
19534         * modules/math: Replace round, roundf, roundl related @VARS@ in
19535         math.in.h.
19536         * modules/round: New file.
19537         * modules/round-tests: New file.
19538         * modules/roundf: New file.
19539         * modules/roundf-tests: New file.
19540         * modules/roundl: New file.
19541         * modules/roundl-tests: New file.
19542         * tests/test-round1.c: New file.
19543         * tests/test-round2.c: New file.
19544         * tests/test-roundf1.c: New file.
19545         * tests/test-roundf2.c: New file.
19546         * tests/test-roundl.c: New file.
19547         * doc/functions/round.texi: Mention round module.
19548         * doc/functions/roundf.texi: Mention roundf module.
19549         * doc/functions/roundl.texi: Mention roundl module.
19550         * MODULES.html.sh: Mention new modules.
19551         Thanks to Bruno Haible for suggestions.
19552
19553 2007-10-20  Jim Meyering  <meyering@redhat.com>
19554
19555         * lib/xprintf.c: Include <config.h> unconditionally.
19556
19557         Change xprintf's license to GPL.
19558         * modules/xprintf (License): s/LGPL/GPL/, since this module
19559         depends on modules (exit and exitfail) which are GPL.
19560         Suggestion from Bruno Haible.
19561
19562         xprintf fixes.
19563         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
19564         Use a clearer diagnostic.
19565         Patch from Bruno Haible.
19566
19567 2007-10-20  Bruno Haible  <bruno@clisp.org>
19568
19569         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
19570         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
19571         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19572
19573 2007-10-20  Bruno Haible  <bruno@clisp.org>
19574
19575         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
19576         precision in the comparison result > x - 1 or similar.
19577         * tests/test-ceilf2.c (correct_result_p): Likewise.
19578         * tests/test-truncf2.c (correct_result_p): Likewise.
19579         * tests/test-trunc2.c (correct_result_p): Likewise.
19580         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19581
19582 2007-10-20  Bruno Haible  <bruno@clisp.org>
19583
19584         * modules/ceil: New file.
19585         * m4/ceil.m4: New file.
19586         * doc/functions/ceil.texi: Mention the 'ceil' module.
19587
19588 2007-10-20  Bruno Haible  <bruno@clisp.org>
19589
19590         * modules/floor: New file.
19591         * m4/floor.m4: New file.
19592         * doc/functions/floor.texi: Mention the 'floor' module.
19593
19594 2007-10-20  Bruno Haible  <bruno@clisp.org>
19595
19596         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
19597         of %a.
19598         * modules/floorf-tests (Depends-on): Likewise.
19599         * modules/truncf-tests (Depends-on): Likewise.
19600         * modules/trunc-tests (Depends-on): Likewise.
19601         Reported by Ben Pfaff.
19602
19603 2007-10-19  Jim Meyering  <meyering@redhat.com>
19604
19605         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
19606         Don't bother testing specific errno values.  Just test ferror.
19607
19608         New module: xprintf
19609         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
19610
19611 2007-10-19  Bruno Haible  <bruno@clisp.org>
19612
19613         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
19614         syntax.
19615         * modules/javaexec (Makefile.am): Likewise.
19616         * modules/relocatable-prog (Makefile.am): Likewise.
19617         Suggested by Jim Meyering.
19618
19619 2007-10-18  Bruno Haible  <bruno@clisp.org>
19620
19621         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
19622         Reported by Jim Meyering.
19623
19624 2007-10-18  Eric Blake  <ebb9@byu.net>
19625
19626         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
19627
19628 2007-10-18  Bruno Haible  <bruno@clisp.org>
19629
19630         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
19631         the format string into writable memory. Needed in Fortify conditions.
19632
19633 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
19634             Bruno Haible  <bruno@clisp.org>
19635
19636         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
19637         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
19638         * modules/trim (Depends-on): Add mbchar.
19639         (configure.ac): Add gl_FUNC_MBRTOWC.
19640         (Makefile.am): Augment lib_SOURCES.
19641
19642 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
19643
19644         Modify glob.c to use fstatat and dirfd, to simplify it.
19645         Suggested by Eric Blake.
19646         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
19647         Don't include <stdbool.h>; not used.
19648         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
19649         (link_exists_p): Simplify implementation, since we can now assume
19650         dirfd and fstatat.
19651         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
19652
19653 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19654
19655         * gnulib-tool (func_get_dependencies): Fix sed script to
19656         match only tests.
19657
19658 2007-10-17  Bruno Haible  <bruno@clisp.org>
19659
19660         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
19661         allow locale names without encoding suffix.
19662         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
19663         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
19664
19665 2007-10-16  Bruno Haible  <bruno@clisp.org>
19666
19667         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
19668         * lib/getgroups.c (getgroups): Likewise.
19669         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
19670
19671 2007-10-16  Bruno Haible  <bruno@clisp.org>
19672
19673         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
19674         * modules/malloc-posix (License): Likewise.
19675         * modules/realloc-posix (License): Likewise.
19676         * modules/calloc-posix (License): Likewise.
19677         * modules/intprops (License): Change from GPL to LGPL, with
19678         Paul Eggert's approval.
19679
19680 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
19681
19682         Merge glibc changes into lib/glob.c.
19683
19684         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
19685         2007-10-15 04:59:03 UTC.  Here are the changes:
19686
19687         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
19688
19689         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
19690
19691         * lib/glob.c: Add some branch prediction throughout.
19692
19693         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
19694
19695         [BZ #5103]
19696         * lib/glob.c (glob): Recognize patterns starting \/.
19697
19698         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
19699
19700         [BZ #3996]
19701         * lib/glob.c (attribute_hidden): Define if not defined.
19702         (glob): Unescape dirname, filename or username when needed and not
19703         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
19704         is NULL.  Handle unescaped [ in pattern without closing ].
19705         Don't pass GLOB_CHECK down to recursive glob for directories.
19706         (__glob_pattern_type): New function.
19707         (__glob_pattern_p): Implement using __glob_pattern_type.
19708         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
19709         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
19710         Remove unreachable code.
19711
19712         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
19713
19714         * lib/glob.c (glob_in_dir): Add some comments and asserts to
19715         explain why there are no leaks.
19716
19717         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
19718
19719         [BZ #3253]
19720         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
19721         time, rather allocate increasingly bigger arrays of pointers, if
19722         possible with alloca, if too large with malloc.
19723
19724 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
19725
19726         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
19727         Problem reported by H.Merijn Brand in
19728         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
19729         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
19730         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
19731
19732 2007-10-15  Bruno Haible  <bruno@clisp.org>
19733
19734         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
19735         with explicit rpl_ prefix.
19736         * lib/fopen.c (fopen): Likewise.
19737         * lib/freopen.c (freopen): Likewise.
19738         * lib/iconv.c (iconv): Likewise.
19739         * lib/iconv_close.c (iconv_close): Likewise.
19740
19741 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19742
19743         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
19744
19745 2007-10-15  Bruno Haible  <bruno@clisp.org>
19746
19747         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
19748         <stddef.h> instead of <stdlib.h> since we only need NULL.
19749         Reported by Ben Pfaff <blp@cs.stanford.edu>.
19750
19751 2007-10-15  Bruno Haible  <bruno@clisp.org>
19752
19753         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
19754         Replace paragraph talking about LIBOBJS.
19755         Reported by Colin Watson <cjwatson@debian.org>.
19756
19757 2007-10-15  Bruno Haible  <bruno@clisp.org>
19758
19759         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
19760         <stdlib.h> before using NULL.
19761
19762 2007-10-15  Simon Josefsson  <simon@josefsson.org>
19763
19764         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
19765         Reported by Albert Chin <china@thewrittenword.com>.
19766
19767 2007-10-14  Bruno Haible  <bruno@clisp.org>
19768
19769         * modules/iconv_open-utf-tests: New file.
19770         * tests/test-iconv-utf.c: New file.
19771
19772         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
19773         * modules/iconv_open-utf: New file.
19774         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
19775         (iconv, iconv_close): New declarations.
19776         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
19777         be defined.
19778         (iconv_open): Add special handling of conversion between UTF-8 and
19779         UTF-{16,32}{BE,LE}.
19780         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
19781         * lib/iconv_close.c: New file.
19782         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
19783         gl_FUNC_ICONV_OPEN.
19784         (gl_FUNC_ICONV_OPEN): Use it.
19785         (gl_FUNC_ICONV_OPEN_UTF): New macro.
19786         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
19787         and REPLACE_ICONV_UTF.
19788         * modules/iconv_open (Depends-on): Add c-strcase.
19789         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
19790         ICONV_CONST.
19791         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
19792
19793 2007-10-13  Albert Chin  <china@thewrittenword.com>
19794             Bruno Haible  <bruno@clisp.org>
19795
19796         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
19797         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
19798
19799 2007-10-13  Bruno Haible  <bruno@clisp.org>
19800
19801         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
19802         defined, use the ISO C99 inline semantics.
19803         * lib/argp.h (ARGP_EI): Likewise.
19804
19805 2007-10-13  Bruno Haible  <bruno@clisp.org>
19806
19807         Handle 'inline' change in gcc 4.3.0.
19808         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
19809         argp_fmtstream_write, argp_fmtstream_set_lmargin,
19810         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
19811         argp_fmtstream_point): Disable 'extern' declaration if the function
19812         definition is going to be provided inline.
19813         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
19814         semantics, not the ISO C99 inline semantics.
19815         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
19816         'extern' declaration if the function definition is going to be provided
19817         inline.
19818         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
19819         the GNU C inline semantics, not the ISO C99 inline semantics. With
19820         GCC 4.2, avoid a warning.
19821
19822 2007-10-13  Bruno Haible  <bruno@clisp.org>
19823
19824         * lib/freading.h (freading): Enable the use of __freading for
19825         glibc >= 2.7.
19826         * lib/freading.c (freading): Likewise.
19827
19828 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
19829
19830         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
19831         "warning: C99 inline functions are not supported; using GNU89".
19832
19833 2007-10-12  Bruno Haible  <bruno@clisp.org>
19834
19835         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
19836         of 2.
19837         * tests/test-ceilf2.c: New file.
19838         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
19839
19840         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
19841         * modules/ceilf-tests: Update.
19842
19843 2007-10-12  Bruno Haible  <bruno@clisp.org>
19844
19845         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
19846         of 2.
19847         * tests/test-floorf2.c: New file.
19848         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
19849
19850         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
19851         * modules/floorf-tests: Update.
19852
19853 2007-10-12  Bruno Haible  <bruno@clisp.org>
19854
19855         * tests/test-trunc2.c: New file.
19856         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
19857
19858         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
19859         * modules/trunc-tests: Update.
19860
19861 2007-10-12  Bruno Haible  <bruno@clisp.org>
19862
19863         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
19864         of 2.
19865         * tests/test-truncf2.c: New file.
19866         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
19867
19868         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
19869         * modules/truncf-tests: Update.
19870
19871 2007-10-11  Eric Blake  <ebb9@byu.net>
19872
19873         Don't claim strerror is broken on Interix.
19874         * doc/functions/strerror.texi (strerror): Known broken systems are
19875         now Solaris 8, and not Interix.
19876         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
19877         Interix on cross-compile.
19878         Reported by Martin Koeppe in
19879         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
19880
19881 2007-10-11  Bruno Haible  <bruno@clisp.org>
19882
19883         * modules/i-ring-tests: New file.
19884         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
19885         instead of assert.
19886
19887 2007-10-11  Bruno Haible  <bruno@clisp.org>
19888
19889         * modules/filenamecat-tests: New file.
19890         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
19891         * lib/filenamecat.c: Remove test code.
19892
19893 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
19894
19895         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
19896
19897         * lib/strerror.c: Include <string.h> always, to test interface,
19898         and to remove the need for the dummy.
19899         Include intprops.h to compute width instead of doing it ourselves
19900         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
19901         (strerror): Define it to return NULL if there's no system strerror.
19902         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
19903         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
19904         ancient pre-strerror Unix systems well any more.  Saying "unknown
19905         system error" is enough.
19906         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
19907         simpler strerror.c implementation.
19908         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
19909         Simplify the tests to reflect the simpler strerror implementation.
19910         * modules/strerror (Depends-on): Add intprops.
19911
19912 2007-10-09  Eric Blake  <ebb9@byu.net>
19913
19914         Silence test-fpending.
19915         * modules/fpending-tests (Files): Add wrapper script.
19916         * tests/test-fpending.sh: New file.
19917
19918 2007-10-09  Bruno Haible  <bruno@clisp.org>
19919
19920         * MODULES.html.sh (func_module): Don't create a hyperlink for
19921         function names like 'printf_frexp'.
19922         (Misc): Add crc, memxor.
19923         (Characteristics of floating types): New section.
19924         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
19925         isnanf-nolibm, signbit, trunc, truncf, truncl.
19926         (Enhancements for ISO C 99 functions): New subsection Input/output.
19927         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
19928         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
19929         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
19930         (Compatibility checks for POSIX:2001 functions): Add clock-time.
19931         (Enhancements for POSIX:2001 functions): Add chdir-long.
19932         (File system functions): Add areadlink, chdir-safer, read-file.
19933         Remove cycle-check.
19934         (File system as inode set): New section.
19935         (Date and time): Add gethrxtime.
19936         (Multithreading): Add openmp.
19937         (Internationalization functions): Add localename.
19938         (Unicode string functions): Add unistr/u*-mbsnlen.
19939         (Support for maintaining and releasing projects): Add git-version-gen.
19940         (Lone files): Remove directories.
19941
19942 2007-10-08  Ben Pfaff  <blp@gnu.org>
19943
19944         * lib/xmalloca.h: Fix typo in comment.
19945
19946 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
19947
19948         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
19949         when avoiding problems with integer overflow.  Use a portable test
19950         instead.
19951
19952 2007-10-08  Simon Josefsson  <simon@josefsson.org>
19953
19954         * modules/dummy (License): Change to LGPLv2+.
19955         * modules/float (License): Likewise
19956         * modules/realloc (License): Likewise
19957         * modules/stdlib (License): Likewise
19958
19959 2007-10-07  Bruno Haible  <bruno@clisp.org>
19960
19961         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
19962         * floor.c (TWO_MANT_DIG): Likewise.
19963         * ceil.c (TWO_MANT_DIG): Likewise.
19964         Reported by Ben Pfaff.
19965
19966 2007-10-07  Bruno Haible  <bruno@clisp.org>
19967
19968         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
19969         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
19970         * lib/frexp.c (FUNC): Likewise.
19971         * lib/printf-frexp.h (printf_frexp): Likewise.
19972         * lib/printf-frexpl.h (printf_frexpl): Likewise.
19973         * lib/printf-frexp.c (FUNC): Likewise.
19974         Suggested by Jim Meyering.
19975
19976 2007-10-07  Jim Meyering  <meyering@redhat.com>
19977
19978         Make xnanosleep's integer overflow test more robust.
19979         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
19980         so that gcc-4.3.0 doesn't optimize away this test for overflow.
19981
19982 2007-10-07  Bruno Haible  <bruno@clisp.org>
19983
19984         * NEWS: Mention the license change.
19985
19986         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
19987         abbreviations in the modules files.
19988
19989         Change copyright notice from GPLv2+ to GPLv3+.
19990         * README: Change copyright notice.
19991         * MODULES.html.sh: Likewise.
19992         * build-aux/bootstrap.conf: Likewise.
19993         * build-aux/config.libpath: Likewise.
19994         * build-aux/csharpcomp.sh.in: Likewise.
19995         * build-aux/csharpexec.sh.in: Likewise.
19996         * build-aux/install-reloc: Likewise.
19997         * build-aux/javacomp.sh.in: Likewise.
19998         * build-aux/javaexec.sh.in: Likewise.
19999         * build-aux/ldd.sh.in: Likewise.
20000         * build-aux/reloc-ldflags: Likewise.
20001         * build-aux/relocatable.sh.in: Likewise.
20002         * build-aux/x-to-1.in: Likewise.
20003         * check-module: Likewise.
20004         * config/srclistvars.sh: Likewise.
20005         * gnulib-tool: Likewise.
20006         * lib/acl-internal.h: Likewise.
20007         * lib/acl.c: Likewise.
20008         * lib/acl.h: Likewise.
20009         * lib/acl_entries.c: Likewise.
20010         * lib/areadlink-with-size.c: Likewise.
20011         * lib/areadlink.c: Likewise.
20012         * lib/areadlink.h: Likewise.
20013         * lib/argmatch.c: Likewise.
20014         * lib/argmatch.h: Likewise.
20015         * lib/argp-ba.c: Likewise.
20016         * lib/argp-eexst.c: Likewise.
20017         * lib/argp-fmtstream.c: Likewise.
20018         * lib/argp-fmtstream.h: Likewise.
20019         * lib/argp-fs-xinl.c: Likewise.
20020         * lib/argp-help.c: Likewise.
20021         * lib/argp-namefrob.h: Likewise.
20022         * lib/argp-parse.c: Likewise.
20023         * lib/argp-pin.c: Likewise.
20024         * lib/argp-pv.c: Likewise.
20025         * lib/argp-pvh.c: Likewise.
20026         * lib/argp-xinl.c: Likewise.
20027         * lib/argp.h: Likewise.
20028         * lib/at-func.c: Likewise.
20029         * lib/atanl.c: Likewise.
20030         * lib/backupfile.c: Likewise.
20031         * lib/backupfile.h: Likewise.
20032         * lib/basename.c: Likewise.
20033         * lib/binary-io.h: Likewise.
20034         * lib/byteswap.in.h: Likewise.
20035         * lib/c-stack.c: Likewise.
20036         * lib/c-stack.h: Likewise.
20037         * lib/c-strcasestr.c: Likewise.
20038         * lib/c-strcasestr.h: Likewise.
20039         * lib/c-strstr.c: Likewise.
20040         * lib/c-strstr.h: Likewise.
20041         * lib/c-strtod.c: Likewise.
20042         * lib/calloc.c: Likewise.
20043         * lib/canon-host.c: Likewise.
20044         * lib/canon-host.h: Likewise.
20045         * lib/canonicalize-lgpl.c: Likewise.
20046         * lib/canonicalize.c: Likewise.
20047         * lib/canonicalize.h: Likewise.
20048         * lib/ceil.c: Likewise.
20049         * lib/ceilf.c: Likewise.
20050         * lib/ceill.c: Likewise.
20051         * lib/chdir-long.c: Likewise.
20052         * lib/chdir-long.h: Likewise.
20053         * lib/chdir-safer.c: Likewise.
20054         * lib/chdir-safer.h: Likewise.
20055         * lib/chown.c: Likewise.
20056         * lib/classpath.c: Likewise.
20057         * lib/classpath.h: Likewise.
20058         * lib/clean-temp.c: Likewise.
20059         * lib/clean-temp.h: Likewise.
20060         * lib/cloexec.c: Likewise.
20061         * lib/close-stream.c: Likewise.
20062         * lib/closein.c: Likewise.
20063         * lib/closein.h: Likewise.
20064         * lib/closeout.c: Likewise.
20065         * lib/closeout.h: Likewise.
20066         * lib/concat-filename.c: Likewise.
20067         * lib/copy-file.c: Likewise.
20068         * lib/copy-file.h: Likewise.
20069         * lib/count-one-bits.h: Likewise.
20070         * lib/crc.c: Likewise.
20071         * lib/crc.h: Likewise.
20072         * lib/creat-safer.c: Likewise.
20073         * lib/csharpcomp.c: Likewise.
20074         * lib/csharpcomp.h: Likewise.
20075         * lib/csharpexec.c: Likewise.
20076         * lib/csharpexec.h: Likewise.
20077         * lib/cycle-check.c: Likewise.
20078         * lib/cycle-check.h: Likewise.
20079         * lib/diacrit.c: Likewise.
20080         * lib/diacrit.h: Likewise.
20081         * lib/diffseq.h: Likewise.
20082         * lib/dirchownmod.c: Likewise.
20083         * lib/dirent.in.h: Likewise.
20084         * lib/dirfd.c: Likewise.
20085         * lib/dirfd.h: Likewise.
20086         * lib/dirname.c: Likewise.
20087         * lib/dirname.h: Likewise.
20088         * lib/dummy.c: Likewise.
20089         * lib/dup-safer.c: Likewise.
20090         * lib/dup2.c: Likewise.
20091         * lib/eealloc.h: Likewise.
20092         * lib/error.c: Likewise.
20093         * lib/error.h: Likewise.
20094         * lib/euidaccess.c: Likewise.
20095         * lib/exclude.c: Likewise.
20096         * lib/exclude.h: Likewise.
20097         * lib/execute.c: Likewise.
20098         * lib/execute.h: Likewise.
20099         * lib/exitfail.c: Likewise.
20100         * lib/exitfail.h: Likewise.
20101         * lib/expl.c: Likewise.
20102         * lib/fatal-signal.c: Likewise.
20103         * lib/fatal-signal.h: Likewise.
20104         * lib/fbufmode.c: Likewise.
20105         * lib/fbufmode.h: Likewise.
20106         * lib/fchdir.c: Likewise.
20107         * lib/fchmodat.c: Likewise.
20108         * lib/fchownat.c: Likewise.
20109         * lib/fcntl--.h: Likewise.
20110         * lib/fcntl-safer.h: Likewise.
20111         * lib/fcntl.in.h: Likewise.
20112         * lib/fd-safer.c: Likewise.
20113         * lib/fflush.c: Likewise.
20114         * lib/file-has-acl.c: Likewise.
20115         * lib/file-set.c: Likewise.
20116         * lib/file-type.c: Likewise.
20117         * lib/file-type.h: Likewise.
20118         * lib/fileblocks.c: Likewise.
20119         * lib/filemode.c: Likewise.
20120         * lib/filemode.h: Likewise.
20121         * lib/filename.h: Likewise.
20122         * lib/filenamecat.c: Likewise.
20123         * lib/filenamecat.h: Likewise.
20124         * lib/findprog.c: Likewise.
20125         * lib/findprog.h: Likewise.
20126         * lib/float.in.h: Likewise.
20127         * lib/floor.c: Likewise.
20128         * lib/floorf.c: Likewise.
20129         * lib/floorl.c: Likewise.
20130         * lib/fopen-safer.c: Likewise.
20131         * lib/fopen.c: Likewise.
20132         * lib/fpending.c: Likewise.
20133         * lib/fpending.h: Likewise.
20134         * lib/fprintf.c: Likewise.
20135         * lib/fprintftime.h: Likewise.
20136         * lib/fpucw.h: Likewise.
20137         * lib/fpurge.c: Likewise.
20138         * lib/fpurge.h: Likewise.
20139         * lib/freadable.c: Likewise.
20140         * lib/freadable.h: Likewise.
20141         * lib/freadahead.c: Likewise.
20142         * lib/freadahead.h: Likewise.
20143         * lib/freading.c: Likewise.
20144         * lib/freading.h: Likewise.
20145         * lib/free.c: Likewise.
20146         * lib/freopen.c: Likewise.
20147         * lib/frexp.c: Likewise.
20148         * lib/frexpl.c: Likewise.
20149         * lib/fseek.c: Likewise.
20150         * lib/fseterr.c: Likewise.
20151         * lib/fseterr.h: Likewise.
20152         * lib/fstatat.c: Likewise.
20153         * lib/fstrcmp.c: Likewise.
20154         * lib/fstrcmp.h: Likewise.
20155         * lib/fsusage.c: Likewise.
20156         * lib/fsusage.h: Likewise.
20157         * lib/ftell.c: Likewise.
20158         * lib/ftello.c: Likewise.
20159         * lib/fts-cycle.c: Likewise.
20160         * lib/fts.c: Likewise.
20161         * lib/fts_.h: Likewise.
20162         * lib/full-read.c: Likewise.
20163         * lib/full-read.h: Likewise.
20164         * lib/full-write.c: Likewise.
20165         * lib/full-write.h: Likewise.
20166         * lib/fwritable.c: Likewise.
20167         * lib/fwritable.h: Likewise.
20168         * lib/fwriteerror.c: Likewise.
20169         * lib/fwriteerror.h: Likewise.
20170         * lib/fwriting.c: Likewise.
20171         * lib/fwriting.h: Likewise.
20172         * lib/gcd.c: Likewise.
20173         * lib/gcd.h: Likewise.
20174         * lib/getcwd.c: Likewise.
20175         * lib/getdate.h: Likewise.
20176         * lib/getdate.y: Likewise.
20177         * lib/getdomainname.c: Likewise.
20178         * lib/getdomainname.h: Likewise.
20179         * lib/getgroups.c: Likewise.
20180         * lib/gethostname.c: Likewise.
20181         * lib/gethrxtime.c: Likewise.
20182         * lib/gethrxtime.h: Likewise.
20183         * lib/getloadavg.c: Likewise.
20184         * lib/getndelim2.c: Likewise.
20185         * lib/getndelim2.h: Likewise.
20186         * lib/getnline.c: Likewise.
20187         * lib/getnline.h: Likewise.
20188         * lib/getopt.c: Likewise.
20189         * lib/getopt.in.h: Likewise.
20190         * lib/getopt1.c: Likewise.
20191         * lib/getopt_int.h: Likewise.
20192         * lib/getpagesize.h: Likewise.
20193         * lib/getsubopt.c: Likewise.
20194         * lib/gettime.c: Likewise.
20195         * lib/getugroups.c: Likewise.
20196         * lib/getugroups.h: Likewise.
20197         * lib/getusershell.c: Likewise.
20198         * lib/gl_anyavltree_list1.h: Likewise.
20199         * lib/gl_anyavltree_list2.h: Likewise.
20200         * lib/gl_anyhash_list1.h: Likewise.
20201         * lib/gl_anyhash_list2.h: Likewise.
20202         * lib/gl_anylinked_list1.h: Likewise.
20203         * lib/gl_anylinked_list2.h: Likewise.
20204         * lib/gl_anyrbtree_list1.h: Likewise.
20205         * lib/gl_anyrbtree_list2.h: Likewise.
20206         * lib/gl_anytree_list1.h: Likewise.
20207         * lib/gl_anytree_list2.h: Likewise.
20208         * lib/gl_anytree_oset.h: Likewise.
20209         * lib/gl_anytreehash_list1.h: Likewise.
20210         * lib/gl_anytreehash_list2.h: Likewise.
20211         * lib/gl_array_list.c: Likewise.
20212         * lib/gl_array_list.h: Likewise.
20213         * lib/gl_array_oset.c: Likewise.
20214         * lib/gl_array_oset.h: Likewise.
20215         * lib/gl_avltree_list.c: Likewise.
20216         * lib/gl_avltree_list.h: Likewise.
20217         * lib/gl_avltree_oset.c: Likewise.
20218         * lib/gl_avltree_oset.h: Likewise.
20219         * lib/gl_avltreehash_list.c: Likewise.
20220         * lib/gl_avltreehash_list.h: Likewise.
20221         * lib/gl_carray_list.c: Likewise.
20222         * lib/gl_carray_list.h: Likewise.
20223         * lib/gl_linked_list.c: Likewise.
20224         * lib/gl_linked_list.h: Likewise.
20225         * lib/gl_linkedhash_list.c: Likewise.
20226         * lib/gl_linkedhash_list.h: Likewise.
20227         * lib/gl_list.c: Likewise.
20228         * lib/gl_list.h: Likewise.
20229         * lib/gl_oset.c: Likewise.
20230         * lib/gl_oset.h: Likewise.
20231         * lib/gl_rbtree_list.c: Likewise.
20232         * lib/gl_rbtree_list.h: Likewise.
20233         * lib/gl_rbtree_oset.c: Likewise.
20234         * lib/gl_rbtree_oset.h: Likewise.
20235         * lib/gl_rbtreehash_list.c: Likewise.
20236         * lib/gl_rbtreehash_list.h: Likewise.
20237         * lib/gl_sublist.c: Likewise.
20238         * lib/gl_sublist.h: Likewise.
20239         * lib/group-member.c: Likewise.
20240         * lib/group-member.h: Likewise.
20241         * lib/hard-locale.c: Likewise.
20242         * lib/hard-locale.h: Likewise.
20243         * lib/hash-pjw.c: Likewise.
20244         * lib/hash-pjw.h: Likewise.
20245         * lib/hash-triple.c: Likewise.
20246         * lib/hash.c: Likewise.
20247         * lib/hash.h: Likewise.
20248         * lib/human.c: Likewise.
20249         * lib/human.h: Likewise.
20250         * lib/i-ring.c: Likewise.
20251         * lib/i-ring.h: Likewise.
20252         * lib/idcache.c: Likewise.
20253         * lib/imaxabs.c: Likewise.
20254         * lib/imaxdiv.c: Likewise.
20255         * lib/inet_pton.c: Likewise.
20256         * lib/inet_pton.h: Likewise.
20257         * lib/intprops.h: Likewise.
20258         * lib/inttostr.c: Likewise.
20259         * lib/inttostr.h: Likewise.
20260         * lib/inttypes.in.h: Likewise.
20261         * lib/isapipe.c: Likewise.
20262         * lib/isdir.c: Likewise.
20263         * lib/isnan.c: Likewise.
20264         * lib/isnan.h: Likewise.
20265         * lib/isnanf.c: Likewise.
20266         * lib/isnanf.h: Likewise.
20267         * lib/isnanl-nolibm.h: Likewise.
20268         * lib/isnanl.c: Likewise.
20269         * lib/isnanl.h: Likewise.
20270         * lib/javacomp.c: Likewise.
20271         * lib/javacomp.h: Likewise.
20272         * lib/javaexec.c: Likewise.
20273         * lib/javaexec.h: Likewise.
20274         * lib/javaversion.c: Likewise.
20275         * lib/javaversion.h: Likewise.
20276         * lib/javaversion.java: Likewise.
20277         * lib/lbrkprop.h: Likewise.
20278         * lib/lchmod.h: Likewise.
20279         * lib/lchown.c: Likewise.
20280         * lib/ldexpl.c: Likewise.
20281         * lib/linebreak.c: Likewise.
20282         * lib/linebreak.h: Likewise.
20283         * lib/linebuffer.c: Likewise.
20284         * lib/linebuffer.h: Likewise.
20285         * lib/locale.in.h: Likewise.
20286         * lib/logl.c: Likewise.
20287         * lib/long-options.c: Likewise.
20288         * lib/long-options.h: Likewise.
20289         * lib/lstat.c: Likewise.
20290         * lib/lstat.h: Likewise.
20291         * lib/math.in.h: Likewise.
20292         * lib/mbchar.c: Likewise.
20293         * lib/mbchar.h: Likewise.
20294         * lib/mbfile.h: Likewise.
20295         * lib/mbiter.h: Likewise.
20296         * lib/mbscasecmp.c: Likewise.
20297         * lib/mbscasestr.c: Likewise.
20298         * lib/mbschr.c: Likewise.
20299         * lib/mbscspn.c: Likewise.
20300         * lib/mbslen.c: Likewise.
20301         * lib/mbsncasecmp.c: Likewise.
20302         * lib/mbsnlen.c: Likewise.
20303         * lib/mbspbrk.c: Likewise.
20304         * lib/mbspcasecmp.c: Likewise.
20305         * lib/mbsrchr.c: Likewise.
20306         * lib/mbssep.c: Likewise.
20307         * lib/mbsspn.c: Likewise.
20308         * lib/mbsstr.c: Likewise.
20309         * lib/mbstok_r.c: Likewise.
20310         * lib/mbswidth.c: Likewise.
20311         * lib/mbswidth.h: Likewise.
20312         * lib/mbuiter.h: Likewise.
20313         * lib/memcasecmp.c: Likewise.
20314         * lib/memcasecmp.h: Likewise.
20315         * lib/memchr.c: Likewise.
20316         * lib/memcmp.c: Likewise.
20317         * lib/memcoll.c: Likewise.
20318         * lib/memcoll.h: Likewise.
20319         * lib/memcpy.c: Likewise.
20320         * lib/memrchr.c: Likewise.
20321         * lib/mkancesdirs.c: Likewise.
20322         * lib/mkdir-p.c: Likewise.
20323         * lib/mkdir-p.h: Likewise.
20324         * lib/mkdir.c: Likewise.
20325         * lib/mkdirat.c: Likewise.
20326         * lib/mkdtemp.c: Likewise.
20327         * lib/mkstemp-safer.c: Likewise.
20328         * lib/mkstemp.c: Likewise.
20329         * lib/modechange.c: Likewise.
20330         * lib/modechange.h: Likewise.
20331         * lib/mountlist.c: Likewise.
20332         * lib/mountlist.h: Likewise.
20333         * lib/mpsort.c: Likewise.
20334         * lib/nanosleep.c: Likewise.
20335         * lib/obstack.c: Likewise.
20336         * lib/obstack.h: Likewise.
20337         * lib/open-safer.c: Likewise.
20338         * lib/open.c: Likewise.
20339         * lib/openat-die.c: Likewise.
20340         * lib/openat-priv.h: Likewise.
20341         * lib/openat-proc.c: Likewise.
20342         * lib/openat.c: Likewise.
20343         * lib/openat.h: Likewise.
20344         * lib/pagealign_alloc.c: Likewise.
20345         * lib/pagealign_alloc.h: Likewise.
20346         * lib/physmem.c: Likewise.
20347         * lib/physmem.h: Likewise.
20348         * lib/pipe-safer.c: Likewise.
20349         * lib/pipe.c: Likewise.
20350         * lib/pipe.h: Likewise.
20351         * lib/posixtm.c: Likewise.
20352         * lib/posixtm.h: Likewise.
20353         * lib/posixver.c: Likewise.
20354         * lib/printf-frexp.c: Likewise.
20355         * lib/printf-frexp.h: Likewise.
20356         * lib/printf-frexpl.c: Likewise.
20357         * lib/printf-frexpl.h: Likewise.
20358         * lib/printf.c: Likewise.
20359         * lib/progname.c: Likewise.
20360         * lib/progname.h: Likewise.
20361         * lib/progreloc.c: Likewise.
20362         * lib/putenv.c: Likewise.
20363         * lib/quote.c: Likewise.
20364         * lib/quote.h: Likewise.
20365         * lib/quotearg.c: Likewise.
20366         * lib/quotearg.h: Likewise.
20367         * lib/raise.c: Likewise.
20368         * lib/readline.c: Likewise.
20369         * lib/readline.h: Likewise.
20370         * lib/readlink.c: Likewise.
20371         * lib/readtokens.c: Likewise.
20372         * lib/readtokens.h: Likewise.
20373         * lib/readtokens0.c: Likewise.
20374         * lib/readtokens0.h: Likewise.
20375         * lib/readutmp.c: Likewise.
20376         * lib/readutmp.h: Likewise.
20377         * lib/realloc.c: Likewise.
20378         * lib/relocwrapper.c: Likewise.
20379         * lib/rename-dest-slash.c: Likewise.
20380         * lib/rename.c: Likewise.
20381         * lib/rmdir.c: Likewise.
20382         * lib/rpmatch.c: Likewise.
20383         * lib/safe-read.c: Likewise.
20384         * lib/safe-read.h: Likewise.
20385         * lib/safe-write.c: Likewise.
20386         * lib/safe-write.h: Likewise.
20387         * lib/same-inode.h: Likewise.
20388         * lib/same.c: Likewise.
20389         * lib/same.h: Likewise.
20390         * lib/save-cwd.c: Likewise.
20391         * lib/save-cwd.h: Likewise.
20392         * lib/savedir.c: Likewise.
20393         * lib/savedir.h: Likewise.
20394         * lib/savewd.c: Likewise.
20395         * lib/savewd.h: Likewise.
20396         * lib/search.in.h: Likewise.
20397         * lib/setenv.c: Likewise.
20398         * lib/setenv.h: Likewise.
20399         * lib/settime.c: Likewise.
20400         * lib/sh-quote.c: Likewise.
20401         * lib/sh-quote.h: Likewise.
20402         * lib/sig2str.c: Likewise.
20403         * lib/sig2str.h: Likewise.
20404         * lib/signal.in.h: Likewise.
20405         * lib/signbitd.c: Likewise.
20406         * lib/signbitf.c: Likewise.
20407         * lib/signbitl.c: Likewise.
20408         * lib/sigprocmask.c: Likewise.
20409         * lib/sincosl.c: Likewise.
20410         * lib/sleep.c: Likewise.
20411         * lib/sprintf.c: Likewise.
20412         * lib/sqrtl.c: Likewise.
20413         * lib/stat-time.h: Likewise.
20414         * lib/stdio--.h: Likewise.
20415         * lib/stdio-safer.h: Likewise.
20416         * lib/stdlib--.h: Likewise.
20417         * lib/stdlib-safer.h: Likewise.
20418         * lib/stdlib.in.h: Likewise.
20419         * lib/stpcpy.c: Likewise.
20420         * lib/stpncpy.c: Likewise.
20421         * lib/strchrnul.c: Likewise.
20422         * lib/strcspn.c: Likewise.
20423         * lib/strerror.c: Likewise.
20424         * lib/strftime.c: Likewise.
20425         * lib/strftime.h: Likewise.
20426         * lib/striconveh.c: Likewise.
20427         * lib/striconveh.h: Likewise.
20428         * lib/striconveha.c: Likewise.
20429         * lib/striconveha.h: Likewise.
20430         * lib/stripslash.c: Likewise.
20431         * lib/strnlen1.c: Likewise.
20432         * lib/strnlen1.h: Likewise.
20433         * lib/strtod.c: Likewise.
20434         * lib/strtoimax.c: Likewise.
20435         * lib/strtok_r.c: Likewise.
20436         * lib/strtol.c: Likewise.
20437         * lib/strtoll.c: Likewise.
20438         * lib/strtoul.c: Likewise.
20439         * lib/strtoull.c: Likewise.
20440         * lib/sysexits.in.h: Likewise.
20441         * lib/tempname.c: Likewise.
20442         * lib/tempname.h: Likewise.
20443         * lib/timespec.h: Likewise.
20444         * lib/tls.c: Likewise.
20445         * lib/tls.h: Likewise.
20446         * lib/tmpdir.c: Likewise.
20447         * lib/tmpdir.h: Likewise.
20448         * lib/tmpfile-safer.c: Likewise.
20449         * lib/tmpfile.c: Likewise.
20450         * lib/trigl.c: Likewise.
20451         * lib/trigl.h: Likewise.
20452         * lib/trim.c: Likewise.
20453         * lib/trim.h: Likewise.
20454         * lib/trunc.c: Likewise.
20455         * lib/truncf.c: Likewise.
20456         * lib/truncl.c: Likewise.
20457         * lib/tsearch.c: Likewise.
20458         * lib/unicodeio.c: Likewise.
20459         * lib/unicodeio.h: Likewise.
20460         * lib/unistd--.h: Likewise.
20461         * lib/unistd-safer.h: Likewise.
20462         * lib/unistdio/ulc-fprintf.c: Likewise.
20463         * lib/unistdio/ulc-vfprintf.c: Likewise.
20464         * lib/unlinkdir.c: Likewise.
20465         * lib/unlinkdir.h: Likewise.
20466         * lib/unlocked-io.h: Likewise.
20467         * lib/unsetenv.c: Likewise.
20468         * lib/userspec.c: Likewise.
20469         * lib/utime.c: Likewise.
20470         * lib/utimecmp.c: Likewise.
20471         * lib/utimecmp.h: Likewise.
20472         * lib/utimens.c: Likewise.
20473         * lib/verify.h: Likewise.
20474         * lib/verror.c: Likewise.
20475         * lib/verror.h: Likewise.
20476         * lib/version-etc-fsf.c: Likewise.
20477         * lib/version-etc.c: Likewise.
20478         * lib/version-etc.h: Likewise.
20479         * lib/vfprintf.c: Likewise.
20480         * lib/vprintf.c: Likewise.
20481         * lib/vsprintf.c: Likewise.
20482         * lib/w32spawn.h: Likewise.
20483         * lib/wait-process.c: Likewise.
20484         * lib/wait-process.h: Likewise.
20485         * lib/wcwidth.c: Likewise.
20486         * lib/write-any-file.c: Likewise.
20487         * lib/xalloc-die.c: Likewise.
20488         * lib/xalloc.h: Likewise.
20489         * lib/xasprintf.c: Likewise.
20490         * lib/xgetcwd.c: Likewise.
20491         * lib/xgetcwd.h: Likewise.
20492         * lib/xgetdomainname.c: Likewise.
20493         * lib/xgetdomainname.h: Likewise.
20494         * lib/xgethostname.c: Likewise.
20495         * lib/xmalloc.c: Likewise.
20496         * lib/xmalloca.c: Likewise.
20497         * lib/xmalloca.h: Likewise.
20498         * lib/xmemcoll.c: Likewise.
20499         * lib/xnanosleep.c: Likewise.
20500         * lib/xreadlink.c: Likewise.
20501         * lib/xreadlink.h: Likewise.
20502         * lib/xsetenv.c: Likewise.
20503         * lib/xsetenv.h: Likewise.
20504         * lib/xstriconv.c: Likewise.
20505         * lib/xstriconv.h: Likewise.
20506         * lib/xstrndup.c: Likewise.
20507         * lib/xstrndup.h: Likewise.
20508         * lib/xstrtod.c: Likewise.
20509         * lib/xstrtod.h: Likewise.
20510         * lib/xstrtol-error.c: Likewise.
20511         * lib/xstrtol.c: Likewise.
20512         * lib/xstrtol.h: Likewise.
20513         * lib/xtime.h: Likewise.
20514         * lib/xvasprintf.c: Likewise.
20515         * lib/xvasprintf.h: Likewise.
20516         * lib/yesno.c: Likewise.
20517         * lib/yesno.h: Likewise.
20518         * posix-modules: Likewise.
20519         * tests/test-alloca-opt.c: Likewise.
20520         * tests/test-arcfour.c: Likewise.
20521         * tests/test-arctwo.c: Likewise.
20522         * tests/test-argmatch.c: Likewise.
20523         * tests/test-argp-2.sh: Likewise.
20524         * tests/test-argp.c: Likewise.
20525         * tests/test-arpa_inet.c: Likewise.
20526         * tests/test-array_list.c: Likewise.
20527         * tests/test-array_oset.c: Likewise.
20528         * tests/test-atexit.c: Likewise.
20529         * tests/test-avltree_list.c: Likewise.
20530         * tests/test-avltree_oset.c: Likewise.
20531         * tests/test-avltreehash_list.c: Likewise.
20532         * tests/test-base64.c: Likewise.
20533         * tests/test-binary-io.c: Likewise.
20534         * tests/test-byteswap.c: Likewise.
20535         * tests/test-c-ctype.c: Likewise.
20536         * tests/test-c-strcasecmp.c: Likewise.
20537         * tests/test-c-strcasestr.c: Likewise.
20538         * tests/test-c-strncasecmp.c: Likewise.
20539         * tests/test-c-strstr.c: Likewise.
20540         * tests/test-canonicalize-lgpl.c: Likewise.
20541         * tests/test-canonicalize.c: Likewise.
20542         * tests/test-carray_list.c: Likewise.
20543         * tests/test-ceilf.c: Likewise.
20544         * tests/test-ceill.c: Likewise.
20545         * tests/test-count-one-bits.c: Likewise.
20546         * tests/test-crc.c: Likewise.
20547         * tests/test-dirname.c: Likewise.
20548         * tests/test-fbufmode.c: Likewise.
20549         * tests/test-fcntl.c: Likewise.
20550         * tests/test-fflush.c: Likewise.
20551         * tests/test-floorf.c: Likewise.
20552         * tests/test-floorl.c: Likewise.
20553         * tests/test-fopen.c: Likewise.
20554         * tests/test-fprintf-posix.c: Likewise.
20555         * tests/test-fprintf-posix.h: Likewise.
20556         * tests/test-fpurge.c: Likewise.
20557         * tests/test-freadable.c: Likewise.
20558         * tests/test-freadahead.c: Likewise.
20559         * tests/test-freading.c: Likewise.
20560         * tests/test-freopen.c: Likewise.
20561         * tests/test-frexp.c: Likewise.
20562         * tests/test-frexpl.c: Likewise.
20563         * tests/test-fseek.c: Likewise.
20564         * tests/test-fseeko.c: Likewise.
20565         * tests/test-fseterr.c: Likewise.
20566         * tests/test-fstrcmp.c: Likewise.
20567         * tests/test-ftell.c: Likewise.
20568         * tests/test-ftello.c: Likewise.
20569         * tests/test-fwritable.c: Likewise.
20570         * tests/test-fwriting.c: Likewise.
20571         * tests/test-getaddrinfo.c: Likewise.
20572         * tests/test-getpass.c: Likewise.
20573         * tests/test-gettimeofday.c: Likewise.
20574         * tests/test-hmac-md5.c: Likewise.
20575         * tests/test-hmac-sha1.c: Likewise.
20576         * tests/test-iconv.c: Likewise.
20577         * tests/test-iconvme.c: Likewise.
20578         * tests/test-inttypes.c: Likewise.
20579         * tests/test-isnan.c: Likewise.
20580         * tests/test-isnanf.c: Likewise.
20581         * tests/test-isnanl-nolibm.c: Likewise.
20582         * tests/test-isnanl.c: Likewise.
20583         * tests/test-isnanl.h: Likewise.
20584         * tests/test-ldexpl.c: Likewise.
20585         * tests/test-linked_list.c: Likewise.
20586         * tests/test-linkedhash_list.c: Likewise.
20587         * tests/test-locale.c: Likewise.
20588         * tests/test-localename.c: Likewise.
20589         * tests/test-lock.c: Likewise.
20590         * tests/test-lseek.c: Likewise.
20591         * tests/test-malloca.c: Likewise.
20592         * tests/test-math.c: Likewise.
20593         * tests/test-mbscasecmp.c: Likewise.
20594         * tests/test-mbscasestr1.c: Likewise.
20595         * tests/test-mbscasestr2.c: Likewise.
20596         * tests/test-mbscasestr3.c: Likewise.
20597         * tests/test-mbscasestr4.c: Likewise.
20598         * tests/test-mbschr.c: Likewise.
20599         * tests/test-mbscspn.c: Likewise.
20600         * tests/test-mbsncasecmp.c: Likewise.
20601         * tests/test-mbspbrk.c: Likewise.
20602         * tests/test-mbspcasecmp.c: Likewise.
20603         * tests/test-mbsrchr.c: Likewise.
20604         * tests/test-mbsspn.c: Likewise.
20605         * tests/test-mbsstr1.c: Likewise.
20606         * tests/test-mbsstr2.c: Likewise.
20607         * tests/test-mbsstr3.c: Likewise.
20608         * tests/test-md5.c: Likewise.
20609         * tests/test-memmem.c: Likewise.
20610         * tests/test-netinet_in.c: Likewise.
20611         * tests/test-open.c: Likewise.
20612         * tests/test-printf-frexp.c: Likewise.
20613         * tests/test-printf-frexpl.c: Likewise.
20614         * tests/test-printf-posix.c: Likewise.
20615         * tests/test-printf-posix.h: Likewise.
20616         * tests/test-rbtree_list.c: Likewise.
20617         * tests/test-rbtree_oset.c: Likewise.
20618         * tests/test-rbtreehash_list.c: Likewise.
20619         * tests/test-read-file.c: Likewise.
20620         * tests/test-rijndael.c: Likewise.
20621         * tests/test-search.c: Likewise.
20622         * tests/test-signbit.c: Likewise.
20623         * tests/test-sleep.c: Likewise.
20624         * tests/test-snprintf-posix.c: Likewise.
20625         * tests/test-snprintf-posix.h: Likewise.
20626         * tests/test-snprintf.c: Likewise.
20627         * tests/test-sprintf-posix.c: Likewise.
20628         * tests/test-sprintf-posix.h: Likewise.
20629         * tests/test-stat-time.c: Likewise.
20630         * tests/test-stdbool.c: Likewise.
20631         * tests/test-stdint.c: Likewise.
20632         * tests/test-stdio.c: Likewise.
20633         * tests/test-stdlib.c: Likewise.
20634         * tests/test-stpncpy.c: Likewise.
20635         * tests/test-strcasestr.c: Likewise.
20636         * tests/test-striconv.c: Likewise.
20637         * tests/test-striconveh.c: Likewise.
20638         * tests/test-striconveha.c: Likewise.
20639         * tests/test-string.c: Likewise.
20640         * tests/test-sys_select.c: Likewise.
20641         * tests/test-sys_socket.c: Likewise.
20642         * tests/test-sys_stat.c: Likewise.
20643         * tests/test-sys_time.c: Likewise.
20644         * tests/test-sysexits.c: Likewise.
20645         * tests/test-time.c: Likewise.
20646         * tests/test-tls.c: Likewise.
20647         * tests/test-trunc.c: Likewise.
20648         * tests/test-truncf.c: Likewise.
20649         * tests/test-truncl.c: Likewise.
20650         * tests/test-unistd.c: Likewise.
20651         * tests/test-vasnprintf-posix.c: Likewise.
20652         * tests/test-vasnprintf-posix2.c: Likewise.
20653         * tests/test-vasnprintf.c: Likewise.
20654         * tests/test-vasprintf-posix.c: Likewise.
20655         * tests/test-vasprintf.c: Likewise.
20656         * tests/test-verify.c: Likewise.
20657         * tests/test-vfprintf-posix.c: Likewise.
20658         * tests/test-vprintf-posix.c: Likewise.
20659         * tests/test-vsnprintf-posix.c: Likewise.
20660         * tests/test-vsnprintf.c: Likewise.
20661         * tests/test-vsprintf-posix.c: Likewise.
20662         * tests/test-wchar.c: Likewise.
20663         * tests/test-wctype.c: Likewise.
20664         * tests/test-wcwidth.c: Likewise.
20665         * tests/test-xstrtol.c: Likewise.
20666         * tests/test-xvasprintf.c: Likewise.
20667         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
20668         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
20669         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
20670         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
20671         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
20672         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
20673         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
20674         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
20675         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
20676         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
20677         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
20678         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
20679         * tests/uniname/test-uninames.c: Likewise.
20680         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
20681         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
20682         * tests/unistdio/test-u16-printf1.h: Likewise.
20683         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
20684         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
20685         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
20686         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
20687         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
20688         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
20689         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
20690         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
20691         * tests/unistdio/test-u32-printf1.h: Likewise.
20692         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
20693         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
20694         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
20695         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
20696         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
20697         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
20698         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
20699         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
20700         * tests/unistdio/test-u8-printf1.h: Likewise.
20701         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
20702         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
20703         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
20704         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
20705         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
20706         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
20707         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
20708         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
20709         * tests/unistdio/test-ulc-printf1.h: Likewise.
20710         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
20711         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
20712         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
20713         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
20714         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
20715         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
20716         * tests/uniwidth/test-u16-strwidth.c: Likewise.
20717         * tests/uniwidth/test-u16-width.c: Likewise.
20718         * tests/uniwidth/test-u32-strwidth.c: Likewise.
20719         * tests/uniwidth/test-u32-width.c: Likewise.
20720         * tests/uniwidth/test-u8-strwidth.c: Likewise.
20721         * tests/uniwidth/test-u8-width.c: Likewise.
20722         * tests/uniwidth/test-uc_width.c: Likewise.
20723         * config/srclist-update: Likewise.
20724         (fixlicense): Update to GPLv3+.
20725
20726         Change copyright notice from LGPLv2.1+ to LGPLv3+.
20727         * tests/test-tsearch.c: Change copyright notice.
20728
20729         Change copyright notice from LGPLv2.0+ to LGPLv3+.
20730         * lib/c-strcaseeq.h: Change copyright notice.
20731         * lib/streq.h: Likewise.
20732         * lib/uniconv.h: Likewise.
20733         * lib/uniconv/u-conv-from-enc.h: Likewise.
20734         * lib/uniconv/u-conv-to-enc.h: Likewise.
20735         * lib/uniconv/u-strconv-from-enc.h: Likewise.
20736         * lib/uniconv/u-strconv-to-enc.h: Likewise.
20737         * lib/uniconv/u16-conv-from-enc.c: Likewise.
20738         * lib/uniconv/u16-conv-to-enc.c: Likewise.
20739         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
20740         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
20741         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
20742         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
20743         * lib/uniconv/u32-conv-from-enc.c: Likewise.
20744         * lib/uniconv/u32-conv-to-enc.c: Likewise.
20745         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
20746         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
20747         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
20748         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
20749         * lib/uniconv/u8-conv-from-enc.c: Likewise.
20750         * lib/uniconv/u8-conv-to-enc.c: Likewise.
20751         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
20752         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
20753         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
20754         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
20755         * lib/uniname.h: Likewise.
20756         * lib/uniname/uniname.c: Likewise.
20757         * lib/unistdio.h: Likewise.
20758         * lib/unistdio/u-asnprintf.h: Likewise.
20759         * lib/unistdio/u-asprintf.h: Likewise.
20760         * lib/unistdio/u-printf-args.c: Likewise.
20761         * lib/unistdio/u-printf-args.h: Likewise.
20762         * lib/unistdio/u-printf-parse.h: Likewise.
20763         * lib/unistdio/u-snprintf.h: Likewise.
20764         * lib/unistdio/u-sprintf.h: Likewise.
20765         * lib/unistdio/u-vasprintf.h: Likewise.
20766         * lib/unistdio/u-vsnprintf.h: Likewise.
20767         * lib/unistdio/u-vsprintf.h: Likewise.
20768         * lib/unistdio/u16-asnprintf.c: Likewise.
20769         * lib/unistdio/u16-asprintf.c: Likewise.
20770         * lib/unistdio/u16-printf-parse.c: Likewise.
20771         * lib/unistdio/u16-snprintf.c: Likewise.
20772         * lib/unistdio/u16-sprintf.c: Likewise.
20773         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
20774         * lib/unistdio/u16-u16-asprintf.c: Likewise.
20775         * lib/unistdio/u16-u16-snprintf.c: Likewise.
20776         * lib/unistdio/u16-u16-sprintf.c: Likewise.
20777         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
20778         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
20779         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
20780         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
20781         * lib/unistdio/u16-vasnprintf.c: Likewise.
20782         * lib/unistdio/u16-vasprintf.c: Likewise.
20783         * lib/unistdio/u16-vsnprintf.c: Likewise.
20784         * lib/unistdio/u16-vsprintf.c: Likewise.
20785         * lib/unistdio/u32-asnprintf.c: Likewise.
20786         * lib/unistdio/u32-asprintf.c: Likewise.
20787         * lib/unistdio/u32-printf-parse.c: Likewise.
20788         * lib/unistdio/u32-snprintf.c: Likewise.
20789         * lib/unistdio/u32-sprintf.c: Likewise.
20790         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
20791         * lib/unistdio/u32-u32-asprintf.c: Likewise.
20792         * lib/unistdio/u32-u32-snprintf.c: Likewise.
20793         * lib/unistdio/u32-u32-sprintf.c: Likewise.
20794         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
20795         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
20796         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
20797         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
20798         * lib/unistdio/u32-vasnprintf.c: Likewise.
20799         * lib/unistdio/u32-vasprintf.c: Likewise.
20800         * lib/unistdio/u32-vsnprintf.c: Likewise.
20801         * lib/unistdio/u32-vsprintf.c: Likewise.
20802         * lib/unistdio/u8-asnprintf.c: Likewise.
20803         * lib/unistdio/u8-asprintf.c: Likewise.
20804         * lib/unistdio/u8-printf-parse.c: Likewise.
20805         * lib/unistdio/u8-snprintf.c: Likewise.
20806         * lib/unistdio/u8-sprintf.c: Likewise.
20807         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
20808         * lib/unistdio/u8-u8-asprintf.c: Likewise.
20809         * lib/unistdio/u8-u8-snprintf.c: Likewise.
20810         * lib/unistdio/u8-u8-sprintf.c: Likewise.
20811         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
20812         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
20813         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
20814         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
20815         * lib/unistdio/u8-vasnprintf.c: Likewise.
20816         * lib/unistdio/u8-vasprintf.c: Likewise.
20817         * lib/unistdio/u8-vsnprintf.c: Likewise.
20818         * lib/unistdio/u8-vsprintf.c: Likewise.
20819         * lib/unistdio/ulc-asnprintf.c: Likewise.
20820         * lib/unistdio/ulc-asprintf.c: Likewise.
20821         * lib/unistdio/ulc-printf-parse.c: Likewise.
20822         * lib/unistdio/ulc-snprintf.c: Likewise.
20823         * lib/unistdio/ulc-sprintf.c: Likewise.
20824         * lib/unistdio/ulc-vasnprintf.c: Likewise.
20825         * lib/unistdio/ulc-vasprintf.c: Likewise.
20826         * lib/unistdio/ulc-vsnprintf.c: Likewise.
20827         * lib/unistdio/ulc-vsprintf.c: Likewise.
20828         * lib/unistr.h: Likewise.
20829         * lib/unistr/u-cpy-alloc.h: Likewise.
20830         * lib/unistr/u-cpy.h: Likewise.
20831         * lib/unistr/u-endswith.h: Likewise.
20832         * lib/unistr/u-move.h: Likewise.
20833         * lib/unistr/u-set.h: Likewise.
20834         * lib/unistr/u-startswith.h: Likewise.
20835         * lib/unistr/u-stpcpy.h: Likewise.
20836         * lib/unistr/u-stpncpy.h: Likewise.
20837         * lib/unistr/u-strcat.h: Likewise.
20838         * lib/unistr/u-strcpy.h: Likewise.
20839         * lib/unistr/u-strcspn.h: Likewise.
20840         * lib/unistr/u-strdup.h: Likewise.
20841         * lib/unistr/u-strlen.h: Likewise.
20842         * lib/unistr/u-strncat.h: Likewise.
20843         * lib/unistr/u-strncpy.h: Likewise.
20844         * lib/unistr/u-strnlen.h: Likewise.
20845         * lib/unistr/u-strpbrk.h: Likewise.
20846         * lib/unistr/u-strspn.h: Likewise.
20847         * lib/unistr/u-strstr.h: Likewise.
20848         * lib/unistr/u-strtok.h: Likewise.
20849         * lib/unistr/u16-check.c: Likewise.
20850         * lib/unistr/u16-chr.c: Likewise.
20851         * lib/unistr/u16-cmp.c: Likewise.
20852         * lib/unistr/u16-cpy-alloc.c: Likewise.
20853         * lib/unistr/u16-cpy.c: Likewise.
20854         * lib/unistr/u16-endswith.c: Likewise.
20855         * lib/unistr/u16-mblen.c: Likewise.
20856         * lib/unistr/u16-mbsnlen.c: Likewise.
20857         * lib/unistr/u16-mbtouc-aux.c: Likewise.
20858         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
20859         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
20860         * lib/unistr/u16-mbtouc.c: Likewise.
20861         * lib/unistr/u16-mbtoucr.c: Likewise.
20862         * lib/unistr/u16-move.c: Likewise.
20863         * lib/unistr/u16-next.c: Likewise.
20864         * lib/unistr/u16-prev.c: Likewise.
20865         * lib/unistr/u16-set.c: Likewise.
20866         * lib/unistr/u16-startswith.c: Likewise.
20867         * lib/unistr/u16-stpcpy.c: Likewise.
20868         * lib/unistr/u16-stpncpy.c: Likewise.
20869         * lib/unistr/u16-strcat.c: Likewise.
20870         * lib/unistr/u16-strchr.c: Likewise.
20871         * lib/unistr/u16-strcmp.c: Likewise.
20872         * lib/unistr/u16-strcpy.c: Likewise.
20873         * lib/unistr/u16-strcspn.c: Likewise.
20874         * lib/unistr/u16-strdup.c: Likewise.
20875         * lib/unistr/u16-strlen.c: Likewise.
20876         * lib/unistr/u16-strmblen.c: Likewise.
20877         * lib/unistr/u16-strmbtouc.c: Likewise.
20878         * lib/unistr/u16-strncat.c: Likewise.
20879         * lib/unistr/u16-strncmp.c: Likewise.
20880         * lib/unistr/u16-strncpy.c: Likewise.
20881         * lib/unistr/u16-strnlen.c: Likewise.
20882         * lib/unistr/u16-strpbrk.c: Likewise.
20883         * lib/unistr/u16-strrchr.c: Likewise.
20884         * lib/unistr/u16-strspn.c: Likewise.
20885         * lib/unistr/u16-strstr.c: Likewise.
20886         * lib/unistr/u16-strtok.c: Likewise.
20887         * lib/unistr/u16-to-u32.c: Likewise.
20888         * lib/unistr/u16-to-u8.c: Likewise.
20889         * lib/unistr/u16-uctomb-aux.c: Likewise.
20890         * lib/unistr/u16-uctomb.c: Likewise.
20891         * lib/unistr/u32-check.c: Likewise.
20892         * lib/unistr/u32-chr.c: Likewise.
20893         * lib/unistr/u32-cmp.c: Likewise.
20894         * lib/unistr/u32-cpy-alloc.c: Likewise.
20895         * lib/unistr/u32-cpy.c: Likewise.
20896         * lib/unistr/u32-endswith.c: Likewise.
20897         * lib/unistr/u32-mblen.c: Likewise.
20898         * lib/unistr/u32-mbsnlen.c: Likewise.
20899         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
20900         * lib/unistr/u32-mbtouc.c: Likewise.
20901         * lib/unistr/u32-mbtoucr.c: Likewise.
20902         * lib/unistr/u32-move.c: Likewise.
20903         * lib/unistr/u32-next.c: Likewise.
20904         * lib/unistr/u32-prev.c: Likewise.
20905         * lib/unistr/u32-set.c: Likewise.
20906         * lib/unistr/u32-startswith.c: Likewise.
20907         * lib/unistr/u32-stpcpy.c: Likewise.
20908         * lib/unistr/u32-stpncpy.c: Likewise.
20909         * lib/unistr/u32-strcat.c: Likewise.
20910         * lib/unistr/u32-strchr.c: Likewise.
20911         * lib/unistr/u32-strcmp.c: Likewise.
20912         * lib/unistr/u32-strcpy.c: Likewise.
20913         * lib/unistr/u32-strcspn.c: Likewise.
20914         * lib/unistr/u32-strdup.c: Likewise.
20915         * lib/unistr/u32-strlen.c: Likewise.
20916         * lib/unistr/u32-strmblen.c: Likewise.
20917         * lib/unistr/u32-strmbtouc.c: Likewise.
20918         * lib/unistr/u32-strncat.c: Likewise.
20919         * lib/unistr/u32-strncmp.c: Likewise.
20920         * lib/unistr/u32-strncpy.c: Likewise.
20921         * lib/unistr/u32-strnlen.c: Likewise.
20922         * lib/unistr/u32-strpbrk.c: Likewise.
20923         * lib/unistr/u32-strrchr.c: Likewise.
20924         * lib/unistr/u32-strspn.c: Likewise.
20925         * lib/unistr/u32-strstr.c: Likewise.
20926         * lib/unistr/u32-strtok.c: Likewise.
20927         * lib/unistr/u32-to-u16.c: Likewise.
20928         * lib/unistr/u32-to-u8.c: Likewise.
20929         * lib/unistr/u32-uctomb.c: Likewise.
20930         * lib/unistr/u8-check.c: Likewise.
20931         * lib/unistr/u8-chr.c: Likewise.
20932         * lib/unistr/u8-cmp.c: Likewise.
20933         * lib/unistr/u8-cpy-alloc.c: Likewise.
20934         * lib/unistr/u8-cpy.c: Likewise.
20935         * lib/unistr/u8-endswith.c: Likewise.
20936         * lib/unistr/u8-mblen.c: Likewise.
20937         * lib/unistr/u8-mbsnlen.c: Likewise.
20938         * lib/unistr/u8-mbtouc-aux.c: Likewise.
20939         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
20940         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
20941         * lib/unistr/u8-mbtouc.c: Likewise.
20942         * lib/unistr/u8-mbtoucr.c: Likewise.
20943         * lib/unistr/u8-move.c: Likewise.
20944         * lib/unistr/u8-next.c: Likewise.
20945         * lib/unistr/u8-prev.c: Likewise.
20946         * lib/unistr/u8-set.c: Likewise.
20947         * lib/unistr/u8-startswith.c: Likewise.
20948         * lib/unistr/u8-stpcpy.c: Likewise.
20949         * lib/unistr/u8-stpncpy.c: Likewise.
20950         * lib/unistr/u8-strcat.c: Likewise.
20951         * lib/unistr/u8-strchr.c: Likewise.
20952         * lib/unistr/u8-strcmp.c: Likewise.
20953         * lib/unistr/u8-strcpy.c: Likewise.
20954         * lib/unistr/u8-strcspn.c: Likewise.
20955         * lib/unistr/u8-strdup.c: Likewise.
20956         * lib/unistr/u8-strlen.c: Likewise.
20957         * lib/unistr/u8-strmblen.c: Likewise.
20958         * lib/unistr/u8-strmbtouc.c: Likewise.
20959         * lib/unistr/u8-strncat.c: Likewise.
20960         * lib/unistr/u8-strncmp.c: Likewise.
20961         * lib/unistr/u8-strncpy.c: Likewise.
20962         * lib/unistr/u8-strnlen.c: Likewise.
20963         * lib/unistr/u8-strpbrk.c: Likewise.
20964         * lib/unistr/u8-strrchr.c: Likewise.
20965         * lib/unistr/u8-strspn.c: Likewise.
20966         * lib/unistr/u8-strstr.c: Likewise.
20967         * lib/unistr/u8-strtok.c: Likewise.
20968         * lib/unistr/u8-to-u16.c: Likewise.
20969         * lib/unistr/u8-to-u32.c: Likewise.
20970         * lib/unistr/u8-uctomb-aux.c: Likewise.
20971         * lib/unistr/u8-uctomb.c: Likewise.
20972         * lib/unitypes.h: Likewise.
20973         * lib/uniwidth.h: Likewise.
20974         * lib/uniwidth/cjk.h: Likewise.
20975         * lib/uniwidth/u16-strwidth.c: Likewise.
20976         * lib/uniwidth/u16-width.c: Likewise.
20977         * lib/uniwidth/u32-strwidth.c: Likewise.
20978         * lib/uniwidth/u32-width.c: Likewise.
20979         * lib/uniwidth/u8-strwidth.c: Likewise.
20980         * lib/uniwidth/u8-width.c: Likewise.
20981         * lib/uniwidth/width.c: Likewise.
20982
20983 2007-10-07  Bruno Haible  <bruno@clisp.org>
20984
20985         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
20986         The file is still under LGPL (see modules/inttypes).
20987
20988 2007-10-06  Bruno Haible  <bruno@clisp.org>
20989
20990         * modules/trunc (Dependencies): Add 'extensions'.
20991         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
20992         Reported by Ben Pfaff <blp@gnu.org>.
20993
20994 2007-10-06  Bruno Haible  <bruno@clisp.org>
20995
20996         * modules/freopen-tests: New file.
20997         * tests/test-freopen.c: New file.
20998
20999         * modules/fopen-tests: New file.
21000         * tests/test-fopen.c: New file.
21001
21002         * modules/fopen: New file.
21003         * lib/fopen.c: New file.
21004         * m4/fopen.m4: New file.
21005         * modules/freopen: New file.
21006         * lib/freopen.c: New file.
21007         * m4/freopen.m4: New file.
21008         * lib/stdio.in.h (fopen, freopen): New declarations.
21009         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
21010         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
21011         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
21012         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
21013         * doc/functions/fopen.texi: Mention the 'fopen' module.
21014         * doc/functions/freopen.texi: Mention the 'freopen' module.
21015
21016 2007-10-06  Bruno Haible  <bruno@clisp.org>
21017
21018         * modules/open-tests: New file.
21019         * tests/test-open.c: New file.
21020
21021         * modules/open: New file.
21022         * lib/open.c: New file.
21023         * m4/open.m4: New file.
21024         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
21025         lib/open.c does.
21026         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
21027         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
21028         macros.
21029         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
21030         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
21031         REPLACE_OPEN.
21032         * doc/functions/open.texi: Mention the 'open' module.
21033
21034 2007-10-04  Bruno Haible  <bruno@clisp.org>
21035
21036         * modules/ceill-tests: New file.
21037         * tests/test-ceill.c: New file.
21038
21039         * modules/ceill: New file.
21040         * lib/ceill.c: Replace entire file.
21041         * m4/ceill.m4: New file.
21042         * lib/math.in.h (ceill): Replace declaration.
21043         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
21044         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
21045         * doc/functions/ceill.texi: Mention the 'ceill' module.
21046         * modules/mathl (Files): Remove lib/ceill.c.
21047         (Depends-on): Add ceill.
21048
21049 2007-10-04  Bruno Haible  <bruno@clisp.org>
21050
21051         * modules/ceilf-tests: New file.
21052         * tests/test-ceilf.c: New file.
21053
21054         * modules/ceilf: New file.
21055         * lib/ceil.c: New file.
21056         * lib/ceilf.c: New file.
21057         * m4/ceilf.m4: New file.
21058         * lib/math.in.h (ceilf): New declaration.
21059         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
21060         HAVE_DECL_CEILF.
21061         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
21062         HAVE_DECL_CEILF.
21063         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
21064
21065 2007-10-04  Bruno Haible  <bruno@clisp.org>
21066
21067         * modules/floorl-tests: New file.
21068         * tests/test-floorl.c: New file.
21069
21070         * modules/floorl: New file.
21071         * lib/floorl.c: Replace entire file.
21072         * m4/floorl.m4: New file.
21073         * lib/math.in.h (floorl): Replace declaration.
21074         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
21075         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
21076         * doc/functions/floorl.texi: Mention the 'floorl' module.
21077         * modules/mathl (Files): Remove lib/floorl.c.
21078         (Depends-on): Add floorl.
21079
21080 2007-10-04  Bruno Haible  <bruno@clisp.org>
21081
21082         * modules/floorf-tests: New file.
21083         * tests/test-floorf.c: New file.
21084
21085         * modules/floorf: New file.
21086         * lib/floor.c: New file.
21087         * lib/floorf.c: New file.
21088         * m4/floorf.m4: New file.
21089         * lib/math.in.h (floorf): New declaration.
21090         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
21091         HAVE_DECL_FLOORF.
21092         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
21093         HAVE_DECL_FLOORF.
21094         * doc/functions/floorf.texi: Mention the 'floorf' module.
21095
21096 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
21097             Bruno Haible  <bruno@clisp.org>
21098
21099         Advertise for the Git server instead of the CVS server.
21100         * doc/gnulib-intro.texi (Steady Development): Mention the Git
21101         repository instead of the CVS one.
21102         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
21103         about all VCS systems generically.
21104         * doc/gnulib.texi (Introduction): Capitalize `Git'.
21105
21106 2007-10-04  Bruno Haible  <bruno@clisp.org>
21107
21108         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
21109         means.
21110         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
21111
21112 2007-10-04  Bruno Haible  <bruno@clisp.org>
21113
21114         * modules/truncl-tests: New file.
21115         * tests/test-truncl.c: New file.
21116
21117         * modules/truncl: New file.
21118         * lib/truncl.c: New file.
21119         * m4/truncl.m4: New file.
21120         * lib/math.in.h (truncl): New declaration.
21121         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
21122         HAVE_DECL_TRUNCL.
21123         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
21124         HAVE_DECL_TRUNCL.
21125         * doc/functions/truncl.texi: Mention the 'truncl' module.
21126
21127 2007-10-04  Bruno Haible  <bruno@clisp.org>
21128
21129         * modules/truncf-tests: New file.
21130         * tests/test-truncf.c: New file.
21131
21132         * modules/truncf: New file.
21133         * lib/trunc.c: Make paramerizable through USE_* macros.
21134         * lib/truncf.c: New file.
21135         * m4/truncf.m4: New file.
21136         * lib/math.in.h (truncf): New declaration.
21137         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
21138         HAVE_DECL_TRUNCF.
21139         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
21140         HAVE_DECL_TRUNCF.
21141         * doc/functions/truncf.texi: Mention the 'truncf' module.
21142
21143 2007-10-03  Bruno Haible  <bruno@clisp.org>
21144
21145         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
21146         augmentation also for tests modules.
21147         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
21148         * modules/atexit-tests (Makefile.am): Likewise.
21149         * modules/binary-io-tests (Makefile.am): Likewise.
21150         * modules/c-strcase-tests (Makefile.am): Likewise.
21151         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
21152         * modules/canonicalize-tests (Makefile.am): Likewise.
21153         * modules/closein-tests (Makefile.am): Likewise.
21154         * modules/fprintf-posix-tests (Makefile.am): Likewise.
21155         * modules/freadahead-tests (Makefile.am): Likewise.
21156         * modules/fseek-tests (Makefile.am): Likewise.
21157         * modules/fseeko-tests (Makefile.am): Likewise.
21158         * modules/ftell-tests (Makefile.am): Likewise.
21159         * modules/ftello-tests (Makefile.am): Likewise.
21160         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
21161         * modules/isnanl-tests (Makefile.am): Likewise.
21162         * modules/lseek-tests (Makefile.am): Likewise.
21163         * modules/mbscasecmp-tests (Makefile.am): Likewise.
21164         * modules/mbscasestr-tests (Makefile.am): Likewise.
21165         * modules/mbschr-tests (Makefile.am): Likewise.
21166         * modules/mbscspn-tests (Makefile.am): Likewise.
21167         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
21168         * modules/mbspbrk-tests (Makefile.am): Likewise.
21169         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
21170         * modules/mbsrchr-tests (Makefile.am): Likewise.
21171         * modules/mbsspn-tests (Makefile.am): Likewise.
21172         * modules/mbsstr-tests (Makefile.am): Likewise.
21173         * modules/printf-posix-tests (Makefile.am): Likewise.
21174         * modules/snprintf-posix-tests (Makefile.am): Likewise.
21175         * modules/sprintf-posix-tests (Makefile.am): Likewise.
21176         * modules/tsearch-tests (Makefile.am): Likewise.
21177         * modules/uniname/uniname-tests (Makefile.am): Likewise.
21178         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
21179         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
21180         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
21181         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
21182         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
21183         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
21184         * modules/vprintf-posix-tests (Makefile.am): Likewise.
21185         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
21186         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
21187         * modules/xstrtoimax-tests (Makefile.am): Likewise.
21188         * modules/xstrtol-tests (Makefile.am): Likewise.
21189         * modules/xstrtoumax-tests (Makefile.am): Likewise.
21190         * modules/yesno-tests (Makefile.am): Likewise.
21191
21192 2007-10-03  Bruno Haible  <bruno@clisp.org>
21193
21194         * modules/trunc-tests: New file.
21195         * tests/test-trunc.c: New file.
21196
21197         * modules/trunc: New file.
21198         * lib/trunc.c: New file.
21199         * m4/trunc.m4: New file.
21200         * lib/math.in.h (trunc): New declaration.
21201         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
21202         HAVE_DECL_TRUNC.
21203         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
21204         HAVE_DECL_TRUNC.
21205         * doc/functions/trunc.texi: Mention the 'trunc' module.
21206
21207 2007-10-03  Bruno Haible  <bruno@clisp.org>
21208
21209         * tests/test-fpending.c: New file, mostly copied
21210         from coreutils/lib/t-fpending.c.
21211         * modules/fpending-tests: New file.
21212
21213 2007-10-03  Bruno Haible  <bruno@clisp.org>
21214
21215         Port the stdio extensions to QNX (untested).
21216         * lib/fseterr.c (fseterr): Add support for QNX.
21217         * lib/fbufmode.c (fbufmode): Likewise.
21218         * lib/freadable.c (freadable): Likewise.
21219         * lib/fwritable.c (fwritable): Likewise.
21220         * lib/freading.c (freading): Likewise.
21221         * lib/fwriting.c (fwriting): Likewise.
21222         * lib/freadahead.c (freadahed): Likewise.
21223         * lib/fpurge.c (fpurge): Likewise.
21224         * lib/fseeko.c (rpl_fseeko): Likewise.
21225
21226 2007-10-03  Bruno Haible  <bruno@clisp.org>
21227             Jim Meyering  <jim@meyering.net>
21228             Eric Blake  <ebb9@byu.net>
21229
21230         * doc/relocatable.texi: Use @command instead of @program.
21231
21232 2007-10-02  Jim Meyering  <jim@meyering.net>
21233
21234         Perform one more "_.h" -> ".in.h" substitution.
21235         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
21236         instead of unistd_.h here, too.
21237
21238 2007-10-01  Bruno Haible  <bruno@clisp.org>
21239
21240         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
21241         Needed for the alloca-opt module.
21242
21243 2007-09-30  Bruno Haible  <bruno@clisp.org>
21244
21245         * lib/alloca.in.h: Renamed from lib/alloca_.h.
21246         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
21247         alloca_.h.
21248         * lib/argz.in.h: Renamed from lib/argz_.h.
21249         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
21250         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
21251         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
21252         byteswap_.h.
21253         * lib/dirent.in.h: Renamed from lib/dirent_.h.
21254         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
21255         dirent_.h.
21256         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
21257         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
21258         fcntl_.h.
21259         * lib/float.in.h: Renamed from lib/float_.h.
21260         * modules/float (Files, Makefile.am): Use float.in.h instead of
21261         float_.h.
21262         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
21263         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
21264         fnmatch_.h.
21265         * lib/getopt.in.h: Renamed from lib/getopt_.h.
21266         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
21267         getopt_.h.
21268         * lib/glob.in.h: Renamed from lib/glob_.h.
21269         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
21270         * lib/iconv.in.h: Renamed from lib/iconv_.h.
21271         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
21272         iconv_.h.
21273         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
21274         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
21275         inttypes_.h.
21276         * lib/locale.in.h: Renamed from lib/locale_.h.
21277         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
21278         locale_.h.
21279         * lib/math.in.h: Renamed from lib/math_.h.
21280         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
21281         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
21282         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
21283         of netinet_in_.h. Add dependency.
21284         * lib/poll.in.h: Renamed from lib/poll_.h.
21285         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
21286         * lib/search.in.h: Renamed from lib/search_.h.
21287         * modules/search (Files, Makefile.am): Use search.in.h instead of
21288         search_.h.
21289         * lib/signal.in.h: Renamed from lib/signal_.h.
21290         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
21291         _signal.h.
21292         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
21293         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
21294         stdbool_.h.
21295         * lib/stdint.in.h: Renamed from lib/stdint_.h.
21296         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
21297         stdint_.h.
21298         * lib/stdio.in.h: Renamed from lib/stdio_.h.
21299         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
21300         stdio_.h.
21301         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
21302         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
21303         stdlib_.h.
21304         * lib/string.in.h: Renamed from lib/string_.h.
21305         * modules/string (Files, Makefile.am): Use string.in.h instead of
21306         string_.h.
21307         * doc/gnulib-tool.texi (Initial import): Update.
21308         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
21309         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
21310         of sys_select_.h. Add dependency.
21311         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
21312         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
21313         of sys_socket_.h.
21314         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
21315         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
21316         sys_stat_.h.
21317         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
21318         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
21319         sys_time_.h.
21320         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
21321         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
21322         sysexits_.h.
21323         * lib/time.in.h: Renamed from lib/time_.h.
21324         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
21325         * lib/unistd.in.h: Renamed from lib/unistd_.h.
21326         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
21327         unistd_.h.
21328         * lib/wchar.in.h: Renamed from lib/wchar_.h.
21329         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
21330         wchar_.h.
21331         * lib/wctype.in.h: Renamed from lib/wctype_.h.
21332         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
21333         wctype_.h.
21334         * build-aux/bootstrap (slurp): Update.
21335         * lib/.cppi-disable: Update.
21336
21337 2007-09-30  Bruno Haible  <bruno@clisp.org>
21338
21339         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
21340         Needed on BeOS.
21341
21342 2007-09-30  Bruno Haible  <bruno@clisp.org>
21343
21344         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
21345
21346 2007-09-29  Bruno Haible  <bruno@clisp.org>
21347
21348         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
21349
21350 2007-09-29  Bruno Haible  <bruno@clisp.org>
21351
21352         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
21353         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
21354         * build-aux/install-reloc: Compile also areadlink.c.
21355         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
21356
21357 2007-09-29  Bruno Haible  <bruno@clisp.org>
21358
21359         * gnulib-tool (func_emit_initmacro_done): Indentation.
21360
21361 2007-09-29  Bruno Haible  <bruno@clisp.org>
21362
21363         * README: Add CVS checkout update instructions.
21364         Info from Bob Proulx <bob@proulx.com>.
21365
21366 2007-09-28  Eric Blake  <ebb9@byu.net>
21367
21368         Provide move-if-change.
21369         * build-aux/move-if-change: New file, based on best practice
21370         rather than any canonical upstream location.
21371
21372 2007-09-28  Jim Meyering  <jim@meyering.net>
21373
21374         Fix canonicalize loop-detection corner case.
21375         Do not attempt to stat the symlink values stored via seen_triple.
21376         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
21377         on linux-2.6.18, (but not 2.6.22).
21378         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
21379         triple_compare.  The former compares dev,ino,filename, while the latter
21380         would actually stat dirname(filename) when dev and ino were equal.
21381         * lib/hash-triple.c: Install <string.h>.
21382         (STREQ): Define.
21383         (triple_compare_ino_str): New function.
21384         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
21385
21386 2007-09-28  Eric Blake  <ebb9@byu.net>
21387
21388         Enforce that AC_REPLACE_FUNCS files exist.
21389         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
21390         override check for typos.
21391
21392         Fix test-closein on Solaris 10.
21393         * tests/test-closein.c (main): Don't assume stdin can be inherited
21394         closed on all systems.
21395         * tests/test-closein.sh: Likewise.
21396         Reported by Piotr Tarnowski.
21397
21398 2007-09-28  Jim Meyering  <jim@meyering.net>
21399
21400         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
21401
21402 2007-09-27  Jim Meyering  <jim@meyering.net>
21403
21404         canonicalize: Avoid a false-positive cycle failure.
21405         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
21406         Sort.  Remove cycle-check.
21407         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
21408         not cycle-check.h.
21409         (seen_triple): New function.
21410         (canonicalize_filename_mode): Use it instead of cycle-check.
21411         * tests/test-canonicalize.c: Add a test for this bug.
21412         * tests/test-canonicalize.sh: Set up and run the test.
21413
21414         New module, file-set, from coreutils.
21415         * modules/file-set: Define it.
21416         * lib/file-set.c, lib/file-set.h: Implement.
21417
21418         New module, hash-triple, from coreutils.
21419         * modules/hash-triple: Define it.
21420         * lib/hash-triple.c, lib/hash-triple.h: Implement.
21421
21422 2007-09-25  Eric Blake  <ebb9@byu.net>
21423
21424         Fix strerror on Interix.
21425         * lib/string_.h (strerror): Declare replacement.
21426         * doc/functions/strerror.texi (strerror): Document the Interix
21427         shortcoming.
21428         * modules/string (Makefile.am): Support new hooks.
21429         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
21430         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
21431         gl_FUNC_STRERROR_SEPARATE.
21432         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
21433         * lib/strerror.c (rpl_strerror): Provide replacement.
21434         * modules/strerror (Depends-on): Add string.
21435         (configure.ac): Detect use of module.
21436         * tests/test-strerror.c: New file.
21437         * modules/strerror-tests: New test module.
21438         * modules/argp (Depends-on): Add strerror.
21439         * modules/error (Depends-on): Likewise.
21440         Reported by Martin Koeppe.
21441
21442 2007-09-24  Bruno Haible  <bruno@clisp.org>
21443
21444         * README: Update git instructions.
21445
21446 2007-09-24  Eric Blake  <ebb9@byu.net>
21447
21448         Revert fpending breakage from 2007-09-08.
21449         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
21450         __fpending.c.
21451
21452 2007-09-24  Jim Meyering  <jim@meyering.net>
21453
21454         filenamecat.c: Add a test.
21455         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
21456         showing how the function works when DIR is the empty string.
21457
21458 2007-09-21  Simon Josefsson  <simon@josefsson.org>
21459
21460         * tests/test-canonicalize.sh: Turn on executable bit.
21461
21462 2007-09-19  Eric Blake  <ebb9@byu.net>
21463
21464         * README: Update CVS instructions.
21465
21466 2007-09-18  Bruno Haible  <bruno@clisp.org>
21467
21468         * modules/areadlink: New file.
21469         * lib/areadlink.h (areadlink): New declaration.
21470         * lib/areadlink.c: New file, based on lib/xreadlink.c.
21471
21472 2007-09-17  Jim Meyering  <jim@meyering.net>
21473
21474         * lib/savewd.c (ESTALE) [!defined]: Define.
21475         Reported to be required on Interix by Martin Koeppe.
21476
21477 2007-09-17  Bruno Haible  <bruno@clisp.org>
21478
21479         * gnulib-tool (func_version): Use $version.
21480
21481 2007-09-16  Bruno Haible  <bruno@clisp.org>
21482
21483         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
21484         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
21485         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
21486         Reported by Greg Schafer <gschafer@zip.com.au>.
21487
21488 2007-09-15  Bruno Haible  <bruno@clisp.org>
21489
21490         * gnulib-tool (sed): Try a little harder to make bash understand the
21491         alias.
21492         Reported by Bruce Korb <bruce.korb@gmail.com>.
21493
21494 2007-09-13  Eric Blake  <ebb9@byu.net>
21495
21496         * ChangeLog: Remove conflict markers.
21497
21498 2007-09-13  Simon Josefsson  <simon@josefsson.org>
21499
21500         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
21501         Reported by Bruno Haible <bruno@clisp.org>.
21502
21503 2007-09-12  Bruno Haible  <bruno@clisp.org>
21504
21505         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
21506         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
21507         is not defined.
21508
21509 2007-09-12  Eric Blake  <ebb9@byu.net>
21510
21511         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
21512         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
21513         Autoconf definition.
21514         * modules/euidaccess (Depends-on): Add extensions, for
21515         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
21516         * modules/fnmatch (Depends-on): Likewise.
21517         * modules/getaddrinfo (Depends-on): Likewise.
21518         * modules/getdelim (Depends-on): Likewise.
21519         * modules/getline (Depends-on): Likewise.
21520         * modules/getsubopt (Depends-on): Likewise.
21521         * modules/gettext (Depends-on): Likewise.
21522         * modules/group-member (Depends-on): Likewise.
21523         * modules/mbchar (Depends-on): Likewise.
21524         * modules/memmem (Depends-on): Likewise.
21525         * modules/mempcpy (Depends-on): Likewise.
21526         * modules/memrchr (Depends-on): Likewise.
21527         * modules/pagealign_alloc (Depends-on): Likewise.
21528         * modules/readutmp (Depends-on): Likewise.
21529         * modules/stpcpy (Depends-on): Likewise.
21530         * modules/stpncpy (Depends-on): Likewise.
21531         * modules/strchrnul (Depends-on): Likewise.
21532         * modules/strndup (Depends-on): Likewise.
21533         * modules/strsep (Depends-on): Likewise.
21534         * modules/strverscmp (Depends-on): Likewise.
21535         * modules/vasprintf (Depends-on): Likewise.
21536         * modules/wcwidth (Depends-on): Likewise.
21537         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
21538         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
21539         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
21540         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
21541         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
21542         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
21543         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
21544         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
21545         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
21546         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
21547         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
21548         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
21549         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
21550         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
21551         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
21552         * m4/readutmp.m4 (gl_READUTMP): Likewise.
21553         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
21554         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
21555         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
21556         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
21557         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
21558         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
21559         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
21560         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
21561         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
21562         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
21563         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
21564         so that lock.m4 can be used in gettext without extensions module.
21565
21566 2007-09-11  Bruno Haible  <bruno@clisp.org>
21567
21568         * m4/isc-posix.m4: Remove file.
21569         Suggested by Eric Blake.
21570
21571 2007-09-11  Eric Blake  <ebb9@byu.net>
21572
21573         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
21574
21575 2007-09-10  Bruno Haible  <bruno@clisp.org>
21576
21577         * posix-modules: Fix typo in error message.
21578         Reported by Matt <mkraai@beckman.com>.
21579
21580 2007-09-09  Bruno Haible  <bruno@clisp.org>
21581
21582         * doc/functions/getdelim.texi: Update list of platforms lacking the
21583         function.
21584         * doc/functions/getline.texi: Likewise.
21585
21586 2007-09-09  Jim Meyering  <jim@meyering.net>
21587
21588         * lib/hash.c (hash_initialize): Detect calloc failure.
21589         Reported by Bruno Haible.
21590
21591 2007-09-09  Bruno Haible  <bruno@clisp.org>
21592
21593         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
21594         malloc or realloc fails.
21595
21596 2007-09-09  Bruno Haible  <bruno@clisp.org>
21597
21598         * modules/getcwd (Depends-on): Add malloc-posix.
21599         * modules/glob (Depends-on): Likewise.
21600         * modules/putenv (Depends-on): Likewise.
21601         * modules/strdup (Depends-on): Likewise.
21602         * modules/getdelim (Depends-on): Add realloc-posix.
21603         * modules/read-file (Depends-on): Likewise.
21604
21605 2007-09-09  Bruno Haible  <bruno@clisp.org>
21606
21607         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
21608         (gl_FUNC_MALLOC_POSIX): Require it.
21609         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
21610         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
21611         * modules/realloc (Files): Add m4/malloc.m4.
21612         * modules/calloc (Files): Likewise.
21613
21614 2007-09-09  Bruno Haible  <bruno@clisp.org>
21615
21616         * modules/malloc-posix: New file.
21617         * modules/malloc (Depends-on): Add malloc-posix.
21618         * lib/malloc.c: Include errno.h.
21619         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
21620         and a POSIX-compatible malloc into a single function. Set ENOMEM
21621         when returning NULL.
21622         * m4/malloc.m4: New file.
21623         * doc/functions/malloc.texi: Mention the malloc-posix module.
21624         * lib/stdlib_.h (malloc): New declaration.
21625         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
21626         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
21627         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
21628         and HAVE_MALLOC_POSIX.
21629
21630 2007-09-09  Bruno Haible  <bruno@clisp.org>
21631
21632         * modules/realloc-posix: New file.
21633         * modules/realloc (Depends-on): Add realloc-posix.
21634         * lib/realloc.c: Include errno.h.
21635         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
21636         and a POSIX-compatible realloc into a single function. Set ENOMEM
21637         when returning NULL.
21638         * m4/realloc.m4: New file.
21639         * doc/functions/realloc.texi: Mention the realloc-posix module.
21640         * lib/stdlib_.h (realloc): New declaration.
21641         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
21642         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
21643         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
21644         and HAVE_REALLOC_POSIX.
21645
21646 2007-09-09  Bruno Haible  <bruno@clisp.org>
21647
21648         * modules/calloc-posix: New file.
21649         * modules/calloc (Depends-on): Add calloc-posix.
21650         * lib/calloc.c: Include errno.h.
21651         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
21652         and a POSIX-compatible calloc into a single function. Set ENOMEM
21653         when returning NULL.
21654         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
21655         * doc/functions/calloc.texi: Mention the calloc-posix module.
21656         * lib/stdlib_.h (calloc): New declaration.
21657         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
21658         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
21659         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
21660         and HAVE_CALLOC_POSIX.
21661
21662 2007-09-09  Bruno Haible  <bruno@clisp.org>
21663
21664         Allow for modules to show an arbitrary notice.
21665         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
21666         * gnulib-tool: New option --extract-notice.
21667         (func_usage): Document it.
21668         (sed_extract_prog): Update.
21669         (func_get_notice): New function.
21670         (func_modules_notice): New function.
21671         (func_import, func_create_testdir): Invoke it.
21672         Suggested by Jim Meyering.
21673
21674 2007-09-09  Bruno Haible  <bruno@clisp.org>
21675
21676         * gnulib-tool: New options --verbose, --quiet.
21677         (func_usage): Document them.
21678         (verbose): New variable.
21679         (func_execute_command): New function.
21680         (func_import): Don't show the module list and the file list if
21681         $verbose < 0.
21682         (func_create_testdir): Likewise. Use func_execute_command.
21683         (func_create_megatestdir): Use func_execute_command.
21684
21685 2007-09-08  Bruno Haible  <bruno@clisp.org>
21686
21687         * gnulib-tool (func_import): Prefer rsync over wget when available,
21688         for fetching the PO files.
21689
21690 2007-09-08  Bruno Haible  <bruno@clisp.org>
21691
21692         * posix-modules: New file. Portions copied from gnulib-tool.
21693         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
21694
21695 2007-09-08  Jim Meyering  <jim@meyering.net>
21696
21697         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
21698         * lib/fpending.h: Rename from __fpending.h.
21699         * lib/fpending.c: Rename from __fpending.c.
21700         Include "fpending.h", not "__fpending.h".
21701         * lib/__fpending.h, lib/__fpending.c: Remove files.
21702         * modules/fpending (Files): Reflect new file names.
21703         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
21704
21705 2007-09-08  Bruno Haible  <bruno@clisp.org>
21706
21707         * m4/inttypes-h.m4: Remove stub file.
21708
21709 2007-09-07  Simon Josefsson  <simon@josefsson.org>
21710
21711         * doc/headers/stdint.texi: Discuss #include_next issue.
21712
21713 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
21714
21715         * build-aux/bootstrap: Remove obsolete comment about wget --help.
21716
21717 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21718
21719         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
21720         in variable name.
21721
21722 2007-09-03  Jim Meyering  <jim@meyering.net>
21723
21724         New module: git-version-gen.
21725         * modules/git-version-gen: New file.
21726
21727         Import changes from coreutils for bootstrap script.
21728
21729         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
21730
21731         bootstrap: uses rsync to download the .po files
21732         * build-aux/bootstrap (po_download_command_format): New global.
21733         (download_po_files): Use rsync.
21734         (update_po_files): Don't remove .po files after download,
21735         so future rsync runs can take advantage of the copies.
21736
21737         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
21738
21739         Solve the unnecessary-.po-file-regeneration problem once and for all.
21740         * build-aux/bootstrap (download_po_files): New function, renamed from
21741         get_translations.  Now, downloads, but doesn't update LINGUAS.
21742         (update_po_files): New function.
21743
21744         bootstrap: Ignore more.
21745         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
21746         uniwidth to e.g., lib/.gitignore.
21747         (slurp): Handle the sys_stat_.h -> sys mapping, too.
21748
21749         * build-aux/bootstrap: New setting: vc_ignore.
21750         (insert_sorted_if_absent): Create $file if absent.
21751         Adapt to new, possibly empty, list: $vc_ignore.
21752
21753         bootstrap: generate more ignorable names
21754         * build-aux/bootstrap (slurp): When generating ignorable names,
21755         also map .sin to .sed, .gperf to .c, and .y to .c.
21756
21757 2007-09-03  Jim Meyering  <jim@meyering.net>
21758
21759         * build-aux/git-version-gen: New file, from coreutils.  For details, see
21760         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
21761
21762 2007-09-02  Bruno Haible  <bruno@clisp.org>
21763
21764         Fix mis-recognition of 'mcs' on QNX 6.
21765         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
21766         output contains the string "Mono".
21767         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
21768         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
21769
21770 2007-09-01  Bruno Haible  <bruno@clisp.org>
21771
21772         Fix collision between uniwidth/* and linebreak modules.
21773         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
21774         u32_width): Remove declarations.
21775         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
21776         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
21777         streq3, streq2, streq1, streq0): Remove functions.
21778         (STREQ): Remove macro.
21779         (is_cjk_encoding): Remove function.
21780         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
21781         (uc_width, u8_width, u16_width, u32_width): Remove functions.
21782         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
21783         * NEWS: Document the change.
21784
21785 2007-09-01  Bruno Haible  <bruno@clisp.org>
21786
21787         * lib/streq.h: Add double-inclusion guard.
21788
21789 2007-09-01  Karl Berry  <karl@gnu.org>
21790
21791         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
21792
21793 2007-08-28  Jim Meyering  <jim@meyering.net>
21794
21795         Rename mreadlink_with_size to areadlink_with_size.
21796         * NEWS: Document the change.
21797         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
21798         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
21799         * lib/mreadlink.h: Rename this to...
21800         * lib/areadlink.h: ...this.
21801         * modules/mreadlink-with-size: Rename this to...
21802         * modules/areadlink-with-size: ...this.
21803         * lib/canonicalize.c: Reflect the renaming.
21804         * modules/canonicalize: Likewise.
21805
21806 2007-08-26  Bruno Haible  <bruno@clisp.org>
21807
21808         * gnulib-tool (func_import): When deciding which files to remove,
21809         consider also dangling symbolic links.
21810         Reported by Eric Blake.
21811
21812 2007-08-26  Bruno Haible  <bruno@clisp.org>
21813
21814         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
21815
21816 2007-08-23  Simon Josefsson  <simon@josefsson.org>
21817
21818         * lib/readline.c: Don't include getline.h, the prototype is now
21819         found in stdio.h.
21820
21821 2007-08-23  Jim Meyering  <jim@meyering.net>
21822
21823         Getdelim touchup.
21824         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
21825         around the funlockfile call, since funlockfile never sets errno.
21826         Don't set errno upon failed realloc.
21827
21828 2007-08-22  Eric Blake  <ebb9@byu.net>
21829
21830         Getline touchups.
21831         * lib/getdelim.c (getdelim): Revert regression that required *n to
21832         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
21833         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
21834         getdelim, rather than whether implementation is missing.
21835         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
21836         * lib/stdio_.h (getline): Also declare if replacement is
21837         required.
21838         * doc/functions/getdelim.texi: New file.
21839         * doc/functions/getline.texi: Likewise.
21840         * doc/gnulib.texi (Function Substitutes): Add new files.
21841         Reported by Bruno Haible.
21842
21843 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
21844
21845         * users.txt: Add Guile.
21846
21847 2007-08-22  Eric Blake  <ebb9@byu.net>
21848
21849         * tests/test-getdelim.c (main): Use remove, not unlink.
21850         * tests/test-getline.c (main): Likewise.
21851
21852         Move getline and getdelim into stdio.h, per POSIX 200x.
21853         * modules/getline (Files): Remove getline.h.
21854         (Depends-on): Add stdio.
21855         (configure.ac): Add module indicator.
21856         * modules/getdelim (Files): Remove getdelim.h.
21857         (Depends-on): Add stdio.
21858         (configure.ac): Add module indicator.
21859         * modules/stdio (Makefile.am): Work with new indicators.
21860         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
21861         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
21862         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
21863         * lib/getdelim.h: Delete.
21864         * lib/getline.h: Delete.
21865         * lib/stdio_.h (getdelim, getline): Declare.
21866         * modules/getdelim-tests: New module.
21867         * modules/getline-tests: Likewise.
21868         * tests/test-getdelim.c: New file.
21869         * tests/test-getline.c: Likewise.
21870         * NEWS: Document the change.
21871         * lib/getline.c: Update choice of header.
21872         * lib/csharpcomp.c: Likewise.
21873         * lib/getpass.c: Likewise.
21874         * lib/javacomp.c: Likewise.
21875         * lib/javaversion.c: Likewise.
21876         * lib/yesno.c: Likewise.
21877         * lib/getdelim.c: Likewise.
21878         (getdelim): Set errno on failure, and avoid memory leak.
21879
21880 2007-08-19  Bruno Haible  <bruno@clisp.org>
21881
21882         * modules/closein (Depends-on): Add freadahead.
21883         * lib/closein.c: Include freadahead.h.
21884         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
21885         is zero.
21886
21887 2007-08-19  Bruno Haible  <bruno@clisp.org>
21888
21889         * modules/freadahead-tests: New file.
21890         * tests/test-freadahead.sh: New file.
21891         * tests/test-freadahead.c: New file.
21892
21893         * modules/freadahead: New file.
21894         * lib/freadahead.h: New file.
21895         * lib/freadahead.c: New file.
21896         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
21897         fbufmode, fpurge, freadable, fwritable.
21898
21899 2007-08-19  Eric Blake  <ebb9@byu.net>
21900
21901         Test yesno in combination with closein.
21902         * lib/yesno.c (yesno): Document use of stdin.
21903         * modules/yesno-tests (Files): New module.
21904         * tests/test-yesno.c (main): New file.
21905         * tests/test-yesno.sh: Likewise.
21906
21907 2007-08-19  Bruno Haible  <bruno@clisp.org>
21908
21909         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
21910         * lib/fseeko.c (rpl_fseeko): Likewise.
21911         * lib/fseterr.c (fseterr): Likewise.
21912
21913 2007-08-19  Bruno Haible  <bruno@clisp.org>
21914
21915         * tests/test-lseek.c (main): Disable a test for BeOS.
21916         * doc/functions/lseek.texi: Document the BeOS bug.
21917
21918 2007-08-19  Bruno Haible  <bruno@clisp.org>
21919             Eric Blake  <ebb9@byu.net>
21920
21921         * lib/lseek.c: Include <sys/stat.h>.
21922         (rpl_lseek): Add workaround code also for Unix platforms.
21923         Needed for BeOS.
21924         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
21925         * doc/functions/lseek.texi: Document BeOS definiency.
21926
21927 2007-08-18  Bruno Haible  <bruno@clisp.org>
21928
21929         * modules/fstrcmp-tests: New file.
21930         * tests/test-fstrcmp.c: New file.
21931
21932 2007-08-18  Bruno Haible  <bruno@clisp.org>
21933
21934         * modules/fstrcmp: New file, from GNU gettext with modifications.
21935         * lib/fstrcmp.h: New file, from GNU gettext.
21936         * lib/fstrcmp.c: New file, from GNU gettext.
21937         * MODULES.html.sh (String handling): Add fstrcmp.
21938
21939 2007-08-18  Bruno Haible  <bruno@clisp.org>
21940
21941         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
21942         'bool'.
21943         (diag, compareseq): Remove const from the ctxt argument.
21944         (USE_HEURISTIC): Undefine at the end.
21945
21946 2007-08-18  Jim Meyering  <jim@meyering.net>
21947
21948         New file: lib/idcache.h
21949         * NEWS: Mention the addition.
21950         * modules/idcache (Files): Add lib/idcache.h
21951         * lib/idcache.c: Include "idcache.h".
21952         Don't include <sys/types.h>.
21953         Add a FIXME comment.
21954         Move file-scoped "static" declarations to the top.
21955         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
21956
21957 2007-08-17  Bruno Haible  <bruno@clisp.org>
21958         and Paul Eggert  <eggert@cs.ucla.edu>
21959
21960         * MODULES.html.sh: Add diffseq.
21961         * modules/diffseq: New file.
21962         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
21963         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
21964
21965 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
21966
21967         Import changes from coreutils for bootstrap script.
21968
21969         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
21970
21971         * build-aux/bootstrap (slurp): Work even in environments where
21972         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
21973         current code does not slurp files whose names start with ".", and
21974         this looks like it might be a troublesome area.
21975
21976         2007-07-11  Jim Meyering  <jim@meyering.net>
21977
21978         If there's a GPL vN copyright comment, require that N == 3.
21979
21980         2007-07-08  Jim Meyering  <jim@meyering.net>
21981
21982         Run the coreutils-specific code only if tests/Makefile.am.in exists.
21983         * build-aux/bootstrap (mam_template): Move definition out of loop.
21984
21985         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
21986
21987         * build-aux/bootstrap (symlink_to_dir): Rename function from
21988         symlink_to_gnulib.  Add a directory parameter.  Update all
21989         callers.
21990         (cp_mark_as_generated): Also check for -- and link to -- files in
21991         gl/.
21992
21993         2007-07-08  Jim Meyering  <jim@meyering.net>
21994
21995         Adapt to deeper hierarchy in gnulib.
21996         * build-aux/bootstrap (symlink_to_dir): If the destination
21997         directory doesn't exist, create it. This is required at least for
21998         "lib/uniwidth/cjk.h".
21999
22000         2007-05-15  Jim Meyering  <jim@meyering.net>
22001
22002         * build-aux/bootstrap: Now that generated Makefile.am files
22003         are no longer under version control, they must be created at
22004         bootstrap time.
22005
22006 2007-08-14  Ben Pfaff  <blp@gnu.org>
22007
22008         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
22009
22010 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
22011
22012         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
22013         given the changes below.
22014         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
22015         even on hosts that have padding bits beyond the supported 64.
22016
22017 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
22018
22019         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
22020         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
22021         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
22022         depends on it.
22023         (xstrtol_error): Remove.
22024         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
22025         but with a different signature.
22026         (ATTRIBUTE_NORETURN, __attribute__): New macros.
22027         * lib/xstrtol-error.c: Include exitfail.h.
22028         (xstrtol_fatal): New function, with a different signature from the
22029         old xstrtol_error, so that the caller need not worry about passing
22030         in an exit status, or about storage management of the option argument.
22031         (xstrtol_error): Now a static function.  Redo signature to
22032         implement xstrtol_fatal.  Output the correct number of hyphens in
22033         front of the option so that the caller need not worry about
22034         storage management.
22035         (N_): New macro.
22036         (_): Remove; not used now.
22037         * modules/xstrtol: Depend on getopt.
22038         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
22039         of old STRTOL_FATAL_ERROR macro.
22040         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
22041         of test program.
22042         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
22043         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
22044
22045 2007-08-08  Eric Blake  <ebb9@byu.net>
22046
22047         * lib/xstrtol-error.c: Add missing include.
22048
22049         Move xstrtol messages into gnulib domain, when --pobase is used.
22050         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
22051         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
22052         * modules/xstrtol (Files): Distribute new file.
22053         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
22054         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
22055         * tests/test-xstrtol.c: ...into new file.
22056         * tests/test-xstrtoul.c: Also test xstrtoul.
22057         * tests/test-xstrtoimax.c: Also test xstrtoimax.
22058         * tests/test-xstrtoumax.c: Also test xstrtoumax.
22059         * tests/test-xstrtol.sh: Drive the tests.
22060         * tests/test-xstrtoimax.sh: Likewise.
22061         * tests/test-xstrtoumax.sh: Likewise.
22062         * modules/xstrtol-tests: New module.
22063         * modules/xstrtoimax-tests: Likewise.
22064         * modules/xstrtoumax-tests: Likewise.
22065
22066 2007-08-08  Jim Meyering  <jim@meyering.net>
22067
22068         New function: mfile_name_concat.
22069         * lib/filenamecat.c (mfile_name_concat): New function, just like
22070         file_name_concat, but return NULL upon failure rather than exiting
22071         with a diagnostic.
22072         * lib/filenamecat.h: Declare it.
22073
22074 2007-08-07  Bruno Haible  <bruno@clisp.org>
22075
22076         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
22077         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
22078         warning from gcc.
22079         Reported by Eric Blake.
22080
22081 2007-08-07  Simon Josefsson  <simon@josefsson.org>
22082
22083         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
22084         * modules/crypto/arcfour (License): Likewise.
22085         * modules/crypto/des-tests (License): Likewise.
22086         * modules/crypto/gc-arctwo-tests (License): Likewise.
22087         * modules/crypto/gc-des-tests (License): Likewise.
22088         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
22089         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
22090         * modules/crypto/gc-md2-tests (License): Likewise.
22091         * modules/crypto/gc-md4-tests (License): Likewise.
22092         * modules/crypto/gc-md5-tests (License): Likewise.
22093         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
22094         * modules/crypto/gc-rijndael-tests (License): Likewise.
22095         * modules/crypto/gc-sha1-tests (License): Likewise.
22096         * modules/crypto/gc-tests (License): Likewise.
22097         * modules/crypto/hmac-md5 (License): Likewise.
22098         * modules/crypto/hmac-sha1 (License): Likewise.
22099         * modules/crypto/md2-tests (License): Likewise.
22100         * modules/crypto/md4-tests (License): Likewise.
22101         * modules/crypto/md5 (License): Likewise.
22102         * modules/crypto/rijndael (License): Likewise.
22103         * modules/crypto/sha1 (License): Likewise.
22104         * modules/memxor (License): Likewise.
22105
22106 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22107         and Bruno Haible  <bruno@clisp.org>
22108
22109         * NEWS: Describe interface changes to human, xstrtol.
22110         * lib/human.h: Include <xstrtol.h>.
22111         (human_options): Return enum strtol_error, not int.  Remove
22112         bool arg; take int * instead.
22113         * lib/human.c: Don't include "gettext.h".
22114         (_): Remove; no longer used.
22115         Don't include <xstrtol.h>, since human.h does it.
22116         (human_options): Adjust to abovementioned interface changes.
22117         Do not report error to stderr; that's now the caller's
22118         responsibility.
22119         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
22120         interface change.
22121         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
22122         Str, Argument_type_string.  All uses changed.  Put " argument"
22123         in diagnostics to make them clearer.  Change wording of suffix
22124         message for clarity.
22125         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
22126         Argument_type_string.
22127         (STRTOL_FATAL_WARN): Remove; no longer used.
22128         * modules/human (Depends-on): Remove gettext-h.
22129
22130 2007-08-06  Simon Josefsson  <simon@josefsson.org>
22131
22132         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
22133
22134 2007-07-31  Bruno Haible  <bruno@clisp.org>
22135
22136         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
22137         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
22138         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
22139
22140 2007-07-31  Bruno Haible  <bruno@clisp.org>
22141
22142         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
22143         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
22144
22145 2007-07-30  Bruno Haible  <bruno@clisp.org>
22146
22147         * modules/base64 (License): Use the synonymous term "LGPLv2+".
22148         * modules/c-ctype (License): Likewise.
22149         * modules/c-strcase (License): Likewise.
22150         * modules/check-version (License): Likewise.
22151         * modules/iconv (License): Likewise.
22152         * modules/iconv_open (License): Likewise.
22153         * modules/read-file (License): Likewise.
22154         * modules/striconv (License): Likewise.
22155         * modules/strverscmp (License): Likewise.
22156         * modules/vasprintf (License): Likewise.
22157         * modules/crypto/des (License): Likewise.
22158         * modules/crypto/gc (License): Likewise.
22159         * modules/crypto/gc-arcfour (License): Likewise.
22160         * modules/crypto/gc-arctwo (License): Likewise.
22161         * modules/crypto/gc-des (License): Likewise.
22162         * modules/crypto/gc-hmac-md5 (License): Likewise.
22163         * modules/crypto/gc-hmac-sha1 (License): Likewise.
22164         * modules/crypto/gc-md2 (License): Likewise.
22165         * modules/crypto/gc-md4 (License): Likewise.
22166         * modules/crypto/gc-md5 (License): Likewise.
22167         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
22168         * modules/crypto/gc-random (License): Likewise.
22169         * modules/crypto/gc-rijndael (License): Likewise.
22170         * modules/crypto/gc-sha1 (License): Likewise.
22171         * modules/crypto/md2 (License): Likewise.
22172         * modules/crypto/md4 (License): Likewise.
22173
22174 2007-07-30  Jim Meyering  <jim@meyering.net>
22175
22176         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
22177         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
22178         it has valid stat data.  This bug would cause du not to count the
22179         sizes of inaccessible directories.
22180         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
22181         in <http://bugzilla.redhat.com/250077>.
22182
22183 2007-07-25  Peter O'Gorman  <peter@pogma.com>
22184             Bruno Haible  <bruno@clisp.org>
22185
22186         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
22187         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
22188         #include_next, gives a diagnostic about it, but reports no error in
22189         the exit code.
22190         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
22191
22192 2007-07-24  Ben Pfaff  <blp@gnu.org>
22193
22194         Improve name: "count-one-bits" is better than "popcount".
22195         * MODULES.html.sh: Update name.
22196         * lib/popcount.h: Renamed lib/count-one-bits.h.
22197         (popcount): Renamed count_one_bits.
22198         (popcountl): Renamed count_one_bits_l.
22199         (popcountll): Renamed count_one_bits_ll.
22200         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
22201         * modules/popcount: Renamed module/count-one-bits.
22202         * modules/popcount-tests: Renamed module/count-one-bits-tests.
22203         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
22204
22205 2007-07-23  Ben Pfaff  <blp@gnu.org>
22206
22207         * lib/popcount.h (popcount32): Reduce size of constants, to allow
22208         better code generation, and add U to large constants to avoid
22209         warnings, in non-GCC case.
22210         Suggested by Bruno Haible.
22211
22212 2007-07-23  Ben Pfaff  <blp@gnu.org>
22213
22214         * lib/popcount.h: Use verify_true instead of if...abort.
22215         * modules/popcount: Depend on verify module.
22216         Suggested by Jim Meyering.
22217
22218 2007-07-23  Bruno Haible  <bruno@clisp.org>
22219
22220         * gnulib-tool (func_import): Create a .cvsignore file also when the
22221         directory is not yet in CVS but the toplevel directory is. When
22222         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
22223         Reported by Karl Berry.
22224
22225 2007-07-22  Ben Pfaff  <blp@gnu.org>
22226
22227         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
22228         case.
22229         Suggested by Eric Blake.
22230
22231 2007-07-22  Ben Pfaff  <blp@gnu.org>
22232
22233         New module: popcount.
22234         * MODULES.html.sh: Add popcount.
22235         * modules/popcount: New file.
22236         * modules/popcount-tests: New file.
22237         * tests/test-popcount.c: New file.
22238         * lib/popcount.h: New file.
22239         * m4/popcount.m4: New file.
22240
22241 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
22242
22243         * build-aux/announce-gen: Update to GPLv3.
22244
22245         * build-aux/config.guess: Update from config.
22246
22247 2007-07-21  Bruno Haible  <bruno@clisp.org>
22248
22249         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
22250         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
22251
22252 2007-07-20  Jim Meyering  <jim@meyering.net>
22253
22254         * check-module: Diagnose a self-dependency.
22255
22256 2007-07-19  Bruno Haible  <bruno@clisp.org>
22257
22258         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
22259         empty.
22260         Reported by Eric Blake.
22261
22262 2007-07-18  Bruno Haible  <bruno@clisp.org>
22263
22264         * gnulib-tool: New options --po-base, --po-domain.
22265         (func_usage): Document them.
22266         (pobase, po_domain): New variables.
22267         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
22268         DEFAULT_TEXT_DOMAIN.
22269         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
22270         (func_import): Consider pobase and po_domain. Create a po/ directory.
22271         (func_create_testdir): Set pobase and po_domain to empty.
22272         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
22273         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
22274
22275 2007-07-18  Bruno Haible  <bruno@clisp.org>
22276
22277         * gnulib-tool (func_get_automake_snippet): Synthesize also an
22278         EXTRA_DIST augmentation for files in build-aux/.
22279
22280 2007-07-16  Bruno Haible  <bruno@clisp.org>
22281
22282         * modules/lseek (License): Use the synonymous term "LGPLv2+".
22283         * modules/getdelim (License): Likewise.
22284
22285 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22286
22287         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
22288         * modules/d-type (License): Likewise.
22289         * modules/extensions (License): Likewise.
22290         * modules/fnmatch (License): Likewise.
22291         * modules/fseeko (License): Likewise.
22292         * modules/getaddrinfo (License): Likewise.
22293         * modules/getline (License): Likewise.
22294         * modules/getlogin_r (License): Likewise.
22295         * modules/getpass (License): Likewise.
22296         * modules/gettimeofday (License): Likewise.
22297         * modules/glob (License): Likewise.
22298         * modules/inet_ntop (License): Likewise.
22299         * modules/malloc (License): Likewise.
22300         * modules/malloca (License): Likewise.
22301         * modules/memmem (License): Likewise.
22302         * modules/mempcpy (License): Likewise.
22303         * modules/memset (License): Likewise.
22304         * modules/minmax (License): Likewise.
22305         * modules/mktime (License): Likewise.
22306         * modules/netinet_in (License): Likewise.
22307         * modules/pathmax (License): Likewise.
22308         * modules/poll (License): Likewise.
22309         * modules/regex (License): Likewise.
22310         * modules/snprintf (License): Likewise.
22311         * modules/stdbool (License): Likewise.
22312         * modules/stdint (License): Likewise.
22313         * modules/stdio (License): Likewise.
22314         * modules/strcase (License): Likewise.
22315         * modules/strcasestr (License): Likewise.
22316         * modules/strdup (License): Likewise.
22317         * modules/string (License): Likewise.
22318         * modules/strndup (License): Likewise.
22319         * modules/strnlen (License): Likewise.
22320         * modules/strpbrk (License): Likewise.
22321         * modules/strptime (License): Likewise.
22322         * modules/strsep (License): Likewise.
22323         * modules/sys_select (License): Likewise.
22324         * modules/sys_socket (License): Likewise.
22325         * modules/sys_stat (License): Likewise.
22326         * modules/sys_time (License): Likewise.
22327         * modules/time (License): Likewise.
22328         * modules/time_r (License): Likewise.
22329         * modules/timegm (License): Likewise.
22330         * modules/unistd (License): Likewise.
22331         * modules/vsnprintf (License): Likewise.
22332         * modules/wctype (License): Likewise.
22333
22334 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22335
22336         * modules/argz (License): LGPLv2+.
22337
22338 2007-07-15  Karl Berry  <karl@gnu.org>
22339
22340         * doc/gnulib.texi: revise node structure per new fdl.texi.
22341
22342 2007-07-14  Bruno Haible  <bruno@clisp.org>
22343
22344         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
22345         the output file.
22346         * lib/uniname/uninames.h: Regenerated.
22347
22348 2007-07-14  Karl Berry  <karl@gnu.org>
22349
22350         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
22351         omitting sectioning and index commands.
22352
22353 2007-07-13  Bruno Haible  <bruno@clisp.org>
22354
22355         New gnulib-tool option --more-symlinks.
22356         * gnulib-tool (func_usage): Document --more-symlinks.
22357         (do_copyrights): New variable.
22358         Recognize option --more-symlinks.
22359         (func_import): Don't add a copyright notice transform to
22360         sed_transform_lib_file if do_copyrights is empty.
22361
22362 2007-07-13  Bruno Haible  <bruno@clisp.org>
22363
22364         * lib/vasnprintf.c (decimal_point_char): Define also if
22365         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
22366         && !NEED_PRINTF_DIRECTIVE_A.
22367         Reported by Clemens Koller <clemens.koller@anagramm.de> via
22368         Gary V. Vaughan <gary@gnu.org>.
22369
22370 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
22371
22372         * lib/inttypes_.h: Undo previous change, since it was fixed
22373         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
22374
22375 2007-07-13  Bruno Haible  <bruno@clisp.org>
22376
22377         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
22378         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
22379
22380 2007-07-13  Jim Meyering  <jim@meyering.net>
22381
22382         df: Don't fail for Tru64's "file-on-file mount".
22383         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
22384         so we fall through and use statfs instead.  Details here:
22385         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
22386         Reported by Albert Chin.
22387
22388 2007-07-13  Bruno Haible  <bruno@clisp.org>
22389
22390         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
22391         * modules/configmake (License): Likewise.
22392         * modules/gettext (License): Likewise.
22393         * modules/gettext-h (License): Likewise.
22394         * modules/include_next (License): Likewise.
22395         * modules/link-warning (License): Likewise.
22396         * modules/localcharset (License): Likewise.
22397         * modules/localename (License): Likewise.
22398         * modules/lock (License): Likewise.
22399         * modules/relocatable-lib-lgpl (License): Likewise.
22400         * modules/size_max (License): Likewise.
22401         * modules/vasnprintf (License): Likewise.
22402         * modules/wchar (License): Likewise.
22403         * modules/xsize (License): Likewise.
22404
22405 2007-07-13  Bruno Haible  <bruno@clisp.org>
22406
22407         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
22408         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
22409
22410 2007-07-12  Bruno Haible  <bruno@clisp.org>
22411
22412         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
22413         in the modules files.
22414
22415 2007-07-11  Karl Berry  <karl@gnu.org>
22416
22417         * MODULES.html.sh (func_module): use
22418          sed -e '\|^'"${includefile}"'$|d'
22419          instead of /.../d, to avoid errors on $includefile's containing /.
22420
22421 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
22422
22423         * gnulib-tool (func_import): Avoid duplication of --avoid
22424         statements
22425         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
22426         names to `_' in variable names.
22427
22428 2007-07-10  Eric Blake  <ebb9@byu.net>
22429
22430         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
22431         * NEWS: Document this change.
22432
22433 2007-07-08  Bruno Haible  <bruno@clisp.org>
22434
22435         Update to Unicode 5.0.
22436         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
22437         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
22438         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
22439         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
22440         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
22441         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
22442         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
22443         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
22444         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
22445         U+10A3F, U+1D242..U+1D244.
22446         (nonspacing_table_ind): Update.
22447         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
22448         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
22449
22450 2007-07-08  Bruno Haible  <bruno@clisp.org>
22451
22452         Update to Unicode 5.0.
22453         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
22454         code transform. Extend the name index field of unicode_name_to_code and
22455         unicode_code_to_name from 16 to 24 bits.
22456         * lib/uniname/uniname.c (unicode_character_name,
22457         unicode_name_character): Add the range 0x12xxx to the code transform.
22458         * lib/uniname/uninames.h: Regenerated.
22459         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
22460
22461 2007-07-07  Bruno Haible  <bruno@clisp.org>
22462
22463         * modules/wcwidth-tests: New file.
22464         * tests/test-wcwidth.c: New file.
22465
22466         Work around MacOS X wcwidth() bug.
22467         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
22468         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
22469         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
22470         original wcwidth in non-UTF-8 locales.
22471         * modules/wcwidth (Depends-on): Add localcharset, streq,
22472         uniwidth/width.
22473         * doc/functions/wcwidth.texi: Update.
22474
22475 2007-07-07  Bruno Haible  <bruno@clisp.org>
22476
22477         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
22478         (wcwidth): New declaration.
22479         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
22480         macros.
22481         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
22482         here. Prepare for creating <wchar.h> unconditionally.
22483         * modules/wchar (Depends-on): Add link-warning.
22484         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
22485         REPLACE_WCWIDTH, and GL_LINK_WARNING.
22486         * lib/wcwidth.h: Remove file.
22487         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
22488         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
22489         * modules/wcwidth (Files): Remove lib/wcwidth.h.
22490         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
22491         (Include): Replace wcwidth.h with <wchar.h>.
22492         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
22493         * lib/mbchar.h: Don't include wcwidth.h.
22494         * lib/mbswidth.c: Likewise.
22495         * NEWS: Mention the change.
22496
22497 2007-07-07  Bruno Haible  <bruno@clisp.org>
22498
22499         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
22500         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
22501         definition with an external declaration.
22502         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
22503         defined as a function. Remove AC_C_INLINE requirement.
22504         * modules/wcwidth (Files): Add lib/wcwidth.c.
22505         (Makefile.am): Remove redundant statement.
22506
22507 2007-07-07  Bruno Haible  <bruno@clisp.org>
22508
22509         * MODULES.html.sh (Unicode string functions): Add the new modules.
22510
22511         * tests/uniwidth/test-u32-strwidth.c: New file.
22512         * modules/uniwidth/u32-strwidth-tests: New file.
22513
22514         * lib/uniwidth/u32-strwidth.c: New file.
22515         * modules/uniwidth/u32-strwidth: New file.
22516
22517         * tests/uniwidth/test-u16-strwidth.c: New file.
22518         * modules/uniwidth/u16-strwidth-tests: New file.
22519
22520         * lib/uniwidth/u16-strwidth.c: New file.
22521         * modules/uniwidth/u16-strwidth: New file.
22522
22523         * tests/uniwidth/test-u8-strwidth.c: New file.
22524         * modules/uniwidth/u8-strwidth-tests: New file.
22525
22526         * lib/uniwidth/u8-strwidth.c: New file.
22527         * modules/uniwidth/u8-strwidth: New file.
22528
22529         * tests/uniwidth/test-u32-width.c: New file.
22530         * modules/uniwidth/u32-width-tests: New file.
22531
22532         * lib/uniwidth/u32-width.c: New file.
22533         * modules/uniwidth/u32-width: New file.
22534
22535         * tests/uniwidth/test-u16-width.c: New file.
22536         * modules/uniwidth/u16-width-tests: New file.
22537
22538         * lib/uniwidth/u16-width.c: New file.
22539         * modules/uniwidth/u16-width: New file.
22540
22541         * tests/uniwidth/test-u8-width.c: New file.
22542         * modules/uniwidth/u8-width-tests: New file.
22543
22544         * lib/uniwidth/u8-width.c: New file.
22545         * modules/uniwidth/u8-width: New file.
22546
22547         * tests/uniwidth/test-uc_width.c: New file.
22548         * modules/uniwidth/width-tests: New file.
22549
22550         * lib/uniwidth/width.c: New file, from GNU libiconv.
22551         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
22552         * modules/uniwidth/width: New file.
22553
22554         * lib/uniwidth.h: New file, from GNU libiconv.
22555         * modules/uniwidth/base: New file.
22556
22557 2007-07-07  Bruno Haible  <bruno@clisp.org>
22558
22559         * lib/uniname.h: New file, from GNU gettext.
22560         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
22561         * lib/uniname/uninames.h: New file, from GNU gettext.
22562         * lib/uniname/uniname.c: New file, from GNU gettext.
22563         * tests/uniname/test-uninames.sh: New file.
22564         * tests/uniname/test-uninames.c: New file, from GNU gettext.
22565         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
22566         * modules/uniname/base: New file.
22567         * modules/uniname/uniname: New file.
22568         * modules/uniname/uniname-tests: New file.
22569         * MODULES.html.sh (Unicode string functions): Add the new modules.
22570
22571 2007-07-06  Bruno Haible  <bruno@clisp.org>
22572
22573         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
22574
22575 2007-07-06  Bruno Haible  <bruno@clisp.org>
22576
22577         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
22578         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
22579         includes <cygwin/sys_time.h> which includes <sys/select.h> which
22580         include <sys/time.h>.
22581         Reported by Eric Blake.
22582
22583 2007-07-06  Eric Blake  <ebb9@byu.net>
22584
22585         Fix testing canonicalize on cygwin.
22586         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
22587         Revert patch from 2007-06-19.
22588         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
22589         canonicalize module is also in use.
22590         * tests/test-canonicalize.c: New file.
22591         * tests/test-canonicalize.sh: Likewise.
22592         * modules/canonicalize-tests: Likewise.
22593
22594 2007-07-06  Jim Meyering  <jim@meyering.net>
22595
22596         * lib/getugroups.c (getugroups): Detect getgrent failure.
22597         Adjust comment to reflect reality: this function may return -1.
22598
22599 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
22600
22601         * build-aux/bootstrap (TP_URL,get_translations): Update to use
22602         the new TP address.
22603         (usage): Fix typo
22604         (gnulib_mk): New variable.
22605
22606 2007-07-05  Jim Meyering  <jim@meyering.net>
22607
22608         Don't let endgrent clobber errno, no matter how improbable.
22609         * lib/getugroups.c (getugroups): Save and restore errno around
22610         endgrent call.
22611
22612         Close the group DB even when failing with 2^31 or more members.
22613         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
22614
22615 2007-07-04  Jim Meyering  <jim@meyering.net>
22616
22617         * lib/getugroups.h: New file.
22618         * lib/getugroups.c: Include "getugroups.h".
22619         Remove uses of "register" keyword.
22620         Move local variable, "cp", down into scope where used.
22621         Give "username" parameter the "const" attribute.
22622         * modules/getugroups (Files): Add lib/getugroups.h
22623
22624 2007-07-04  Karl Berry  <karl@gnu.org>
22625
22626         * MODULES.html.sh (func_all_modules): Complete rename of
22627         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
22628
22629 2007-07-02  Bruno Haible  <bruno@clisp.org>
22630
22631         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
22632         mode, when inttypes.h comes from gnulib.
22633         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
22634
22635 2007-07-02  Simon Josefsson  <simon@josefsson.org>
22636
22637         * NEWS: Mention lgpl module name change.
22638
22639         * modules/lgpl-2.1: Renamed from lgpl.
22640
22641         * NEWS: Mention gpl module name change.
22642
22643         * modules/gpl-3.0: New file, based on gpl-2.0.
22644
22645         * modules/gpl-2.0: Renamed from gpl.
22646
22647         * modules/gpl: Fix filename, doc/gpl.texi is now found at
22648         doc/gpl-2.0.texi.
22649
22650 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
22651
22652         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
22653         #define __STDC_LIMIT_MACROS temporarily while including
22654         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
22655         Problem reported by Joel E. Denny in
22656         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
22657
22658 2007-07-01  Bruno Haible  <bruno@clisp.org>
22659
22660         * lib/unistdio.h: New file.
22661         * lib/unistdio/u-asnprintf.h: New file.
22662         * lib/unistdio/u-asprintf.h: New file.
22663         * lib/unistdio/u-printf-args.c: New file.
22664         * lib/unistdio/u-printf-args.h: New file.
22665         * lib/unistdio/u-printf-parse.h: New file.
22666         * lib/unistdio/u-snprintf.h: New file.
22667         * lib/unistdio/u-sprintf.h: New file.
22668         * lib/unistdio/u-vasprintf.h: New file.
22669         * lib/unistdio/u-vsnprintf.h: New file.
22670         * lib/unistdio/u-vsprintf.h: New file.
22671         * lib/unistdio/ulc-asnprintf.c: New file.
22672         * lib/unistdio/ulc-asprintf.c: New file.
22673         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
22674         * lib/unistdio/ulc-printf-parse.c: New file.
22675         * lib/unistdio/ulc-snprintf.c: New file.
22676         * lib/unistdio/ulc-sprintf.c: New file.
22677         * lib/unistdio/ulc-vasnprintf.c: New file.
22678         * lib/unistdio/ulc-vasprintf.c: New file.
22679         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
22680         * lib/unistdio/ulc-vsnprintf.c: New file.
22681         * lib/unistdio/ulc-vsprintf.c: New file.
22682         * lib/unistdio/u8-asnprintf.c: New file.
22683         * lib/unistdio/u8-asprintf.c: New file.
22684         * lib/unistdio/u8-printf-parse.c: New file.
22685         * lib/unistdio/u8-snprintf.c: New file.
22686         * lib/unistdio/u8-sprintf.c: New file.
22687         * lib/unistdio/u8-vasnprintf.c: New file.
22688         * lib/unistdio/u8-vasprintf.c: New file.
22689         * lib/unistdio/u8-vsnprintf.c: New file.
22690         * lib/unistdio/u8-vsprintf.c: New file.
22691         * lib/unistdio/u8-u8-asnprintf.c: New file.
22692         * lib/unistdio/u8-u8-asprintf.c: New file.
22693         * lib/unistdio/u8-u8-snprintf.c: New file.
22694         * lib/unistdio/u8-u8-sprintf.c: New file.
22695         * lib/unistdio/u8-u8-vasnprintf.c: New file.
22696         * lib/unistdio/u8-u8-vasprintf.c: New file.
22697         * lib/unistdio/u8-u8-vsnprintf.c: New file.
22698         * lib/unistdio/u8-u8-vsprintf.c: New file.
22699         * lib/unistdio/u16-asnprintf.c: New file.
22700         * lib/unistdio/u16-asprintf.c: New file.
22701         * lib/unistdio/u16-printf-parse.c: New file.
22702         * lib/unistdio/u16-snprintf.c: New file.
22703         * lib/unistdio/u16-sprintf.c: New file.
22704         * lib/unistdio/u16-vasnprintf.c: New file.
22705         * lib/unistdio/u16-vasprintf.c: New file.
22706         * lib/unistdio/u16-vsnprintf.c: New file.
22707         * lib/unistdio/u16-vsprintf.c: New file.
22708         * lib/unistdio/u16-u16-asnprintf.c: New file.
22709         * lib/unistdio/u16-u16-asprintf.c: New file.
22710         * lib/unistdio/u16-u16-snprintf.c: New file.
22711         * lib/unistdio/u16-u16-sprintf.c: New file.
22712         * lib/unistdio/u16-u16-vasnprintf.c: New file.
22713         * lib/unistdio/u16-u16-vasprintf.c: New file.
22714         * lib/unistdio/u16-u16-vsnprintf.c: New file.
22715         * lib/unistdio/u16-u16-vsprintf.c: New file.
22716         * lib/unistdio/u32-asnprintf.c: New file.
22717         * lib/unistdio/u32-asprintf.c: New file.
22718         * lib/unistdio/u32-printf-parse.c: New file.
22719         * lib/unistdio/u32-snprintf.c: New file.
22720         * lib/unistdio/u32-sprintf.c: New file.
22721         * lib/unistdio/u32-vasnprintf.c: New file.
22722         * lib/unistdio/u32-vasprintf.c: New file.
22723         * lib/unistdio/u32-vsnprintf.c: New file.
22724         * lib/unistdio/u32-vsprintf.c: New file.
22725         * lib/unistdio/u32-u32-asnprintf.c: New file.
22726         * lib/unistdio/u32-u32-asprintf.c: New file.
22727         * lib/unistdio/u32-u32-snprintf.c: New file.
22728         * lib/unistdio/u32-u32-sprintf.c: New file.
22729         * lib/unistdio/u32-u32-vasnprintf.c: New file.
22730         * lib/unistdio/u32-u32-vasprintf.c: New file.
22731         * lib/unistdio/u32-u32-vsnprintf.c: New file.
22732         * lib/unistdio/u32-u32-vsprintf.c: New file.
22733         * tests/unistdio/test-ulc-asnprintf1.c: New file.
22734         * tests/unistdio/test-ulc-asnprintf1.h: New file.
22735         * tests/unistdio/test-ulc-printf1.h: New file.
22736         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
22737         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
22738         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
22739         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
22740         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
22741         * tests/unistdio/test-ulc-vasprintf1.c: New file.
22742         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
22743         * tests/unistdio/test-ulc-vsprintf1.c: New file.
22744         * tests/unistdio/test-u8-asnprintf1.c: New file.
22745         * tests/unistdio/test-u8-asnprintf1.h: New file.
22746         * tests/unistdio/test-u8-printf1.h: New file.
22747         * tests/unistdio/test-u8-vasnprintf1.c: New file.
22748         * tests/unistdio/test-u8-vasnprintf2.c: New file.
22749         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
22750         * tests/unistdio/test-u8-vasnprintf3.c: New file.
22751         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
22752         * tests/unistdio/test-u8-vasprintf1.c: New file.
22753         * tests/unistdio/test-u8-vsnprintf1.c: New file.
22754         * tests/unistdio/test-u8-vsprintf1.c: New file.
22755         * tests/unistdio/test-u16-asnprintf1.c: New file.
22756         * tests/unistdio/test-u16-asnprintf1.h: New file.
22757         * tests/unistdio/test-u16-printf1.h: New file.
22758         * tests/unistdio/test-u16-vasnprintf1.c: New file.
22759         * tests/unistdio/test-u16-vasnprintf2.c: New file.
22760         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
22761         * tests/unistdio/test-u16-vasnprintf3.c: New file.
22762         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
22763         * tests/unistdio/test-u16-vasprintf1.c: New file.
22764         * tests/unistdio/test-u16-vsnprintf1.c: New file.
22765         * tests/unistdio/test-u16-vsprintf1.c: New file.
22766         * tests/unistdio/test-u32-asnprintf1.c: New file.
22767         * tests/unistdio/test-u32-asnprintf1.h: New file.
22768         * tests/unistdio/test-u32-printf1.h: New file.
22769         * tests/unistdio/test-u32-vasnprintf1.c: New file.
22770         * tests/unistdio/test-u32-vasnprintf2.c: New file.
22771         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
22772         * tests/unistdio/test-u32-vasnprintf3.c: New file.
22773         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
22774         * tests/unistdio/test-u32-vasprintf1.c: New file.
22775         * tests/unistdio/test-u32-vsnprintf1.c: New file.
22776         * tests/unistdio/test-u32-vsprintf1.c: New file.
22777         * modules/unistdio/base: New file.
22778         * modules/unistdio/u-printf-args: New file.
22779         * modules/unistdio/ulc-asnprintf: New file.
22780         * modules/unistdio/ulc-asprintf: New file.
22781         * modules/unistdio/ulc-fprintf: New file.
22782         * modules/unistdio/ulc-printf-parse: New file.
22783         * modules/unistdio/ulc-snprintf: New file.
22784         * modules/unistdio/ulc-sprintf: New file.
22785         * modules/unistdio/ulc-vasnprintf: New file.
22786         * modules/unistdio/ulc-vasprintf: New file.
22787         * modules/unistdio/ulc-vfprintf: New file.
22788         * modules/unistdio/ulc-vsnprintf: New file.
22789         * modules/unistdio/ulc-vsprintf: New file.
22790         * modules/unistdio/u8-asnprintf: New file.
22791         * modules/unistdio/u8-asprintf: New file.
22792         * modules/unistdio/u8-printf-parse: New file.
22793         * modules/unistdio/u8-snprintf: New file.
22794         * modules/unistdio/u8-sprintf: New file.
22795         * modules/unistdio/u8-vasnprintf: New file.
22796         * modules/unistdio/u8-vasprintf: New file.
22797         * modules/unistdio/u8-vsnprintf: New file.
22798         * modules/unistdio/u8-vsprintf: New file.
22799         * modules/unistdio/u8-u8-asnprintf: New file.
22800         * modules/unistdio/u8-u8-asprintf: New file.
22801         * modules/unistdio/u8-u8-snprintf: New file.
22802         * modules/unistdio/u8-u8-sprintf: New file.
22803         * modules/unistdio/u8-u8-vasnprintf: New file.
22804         * modules/unistdio/u8-u8-vasprintf: New file.
22805         * modules/unistdio/u8-u8-vsnprintf: New file.
22806         * modules/unistdio/u8-u8-vsprintf: New file.
22807         * modules/unistdio/u16-asnprintf: New file.
22808         * modules/unistdio/u16-asprintf: New file.
22809         * modules/unistdio/u16-printf-parse: New file.
22810         * modules/unistdio/u16-snprintf: New file.
22811         * modules/unistdio/u16-sprintf: New file.
22812         * modules/unistdio/u16-vasnprintf: New file.
22813         * modules/unistdio/u16-vasprintf: New file.
22814         * modules/unistdio/u16-vsnprintf: New file.
22815         * modules/unistdio/u16-vsprintf: New file.
22816         * modules/unistdio/u16-u16-asnprintf: New file.
22817         * modules/unistdio/u16-u16-asprintf: New file.
22818         * modules/unistdio/u16-u16-snprintf: New file.
22819         * modules/unistdio/u16-u16-sprintf: New file.
22820         * modules/unistdio/u16-u16-vasnprintf: New file.
22821         * modules/unistdio/u16-u16-vasprintf: New file.
22822         * modules/unistdio/u16-u16-vsnprintf: New file.
22823         * modules/unistdio/u16-u16-vsprintf: New file.
22824         * modules/unistdio/u32-asnprintf: New file.
22825         * modules/unistdio/u32-asprintf: New file.
22826         * modules/unistdio/u32-printf-parse: New file.
22827         * modules/unistdio/u32-snprintf: New file.
22828         * modules/unistdio/u32-sprintf: New file.
22829         * modules/unistdio/u32-vasnprintf: New file.
22830         * modules/unistdio/u32-vasprintf: New file.
22831         * modules/unistdio/u32-vsnprintf: New file.
22832         * modules/unistdio/u32-vsprintf: New file.
22833         * modules/unistdio/u32-u32-asnprintf: New file.
22834         * modules/unistdio/u32-u32-asprintf: New file.
22835         * modules/unistdio/u32-u32-snprintf: New file.
22836         * modules/unistdio/u32-u32-sprintf: New file.
22837         * modules/unistdio/u32-u32-vasnprintf: New file.
22838         * modules/unistdio/u32-u32-vasprintf: New file.
22839         * modules/unistdio/u32-u32-vsnprintf: New file.
22840         * modules/unistdio/u32-u32-vsprintf: New file.
22841         * modules/unistdio/ulc-asnprintf-tests: New file.
22842         * modules/unistdio/ulc-vasnprintf-tests: New file.
22843         * modules/unistdio/ulc-vasprintf-tests: New file.
22844         * modules/unistdio/ulc-vsnprintf-tests: New file.
22845         * modules/unistdio/ulc-vsprintf-tests: New file.
22846         * modules/unistdio/u8-asnprintf-tests: New file.
22847         * modules/unistdio/u8-vasnprintf-tests: New file.
22848         * modules/unistdio/u8-vasprintf-tests: New file.
22849         * modules/unistdio/u8-vsnprintf-tests: New file.
22850         * modules/unistdio/u8-vsprintf-tests: New file.
22851         * modules/unistdio/u16-asnprintf-tests: New file.
22852         * modules/unistdio/u16-vasnprintf-tests: New file.
22853         * modules/unistdio/u16-vasprintf-tests: New file.
22854         * modules/unistdio/u16-vsnprintf-tests: New file.
22855         * modules/unistdio/u16-vsprintf-tests: New file.
22856         * modules/unistdio/u32-asnprintf-tests: New file.
22857         * modules/unistdio/u32-vasnprintf-tests: New file.
22858         * modules/unistdio/u32-vasprintf-tests: New file.
22859         * modules/unistdio/u32-vsnprintf-tests: New file.
22860         * modules/unistdio/u32-vsprintf-tests: New file.
22861         * MODULES.html.sh (Unicode string functions): Add the new modules.
22862
22863 2007-07-01  Bruno Haible  <bruno@clisp.org>
22864
22865         * lib/sprintf.c (sprintf): Limit the available length estimation,
22866         to avoid address wraparound.
22867         * lib/vsprintf.c (vsprintf): Likewise.
22868         * modules/sprintf-posix (Dependencies): Add stdint.
22869         * modules/vsprintf-posix (Dependencies): Likewise.
22870
22871 2007-07-01  Bruno Haible  <bruno@clisp.org>
22872
22873         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
22874         Windows PATH as well. Conservative double-quoting. Comments.
22875
22876 2007-07-01  Bruno Haible  <bruno@clisp.org>
22877             Eric Blake  <ebb9@byu.net>
22878             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22879
22880         * gnulib-tool (self_abspathname): Fix algorithm to cope with
22881         empty components in $PATH, denoting '.'.
22882
22883 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22884
22885         * gnulib-tool: Fix indentation.
22886         (func_create_megatestdir): Likewise.
22887         Report by Bruno Haible.
22888
22889 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22890
22891         Sync from Automake.
22892         * build-aux/gnupload: Fix shell portability issues with for loops.
22893         Report by Karl Berry.
22894
22895 2007-06-29  Simon Josefsson  <simon@josefsson.org>
22896
22897         * build-aux/maint.mk (POURL): Use translationproject.org.
22898
22899 2007-06-27  Simon Josefsson  <simon@josefsson.org>
22900             Bruno Haible  <bruno@clisp.org>
22901
22902         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
22903         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
22904         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
22905         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
22906         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
22907
22908 2007-06-27  Bruno Haible  <bruno@clisp.org>
22909
22910         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
22911         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
22912
22913 2007-06-26  Karl Berry  <karl@gnu.org>
22914
22915         * MODULES.html.sh: remove xreadlink-with-size.
22916
22917 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
22918
22919         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
22920         method that I hope also handles the double-include problem noted
22921         by Bruno Haible in
22922         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
22923
22924 2007-06-23  Bruno Haible  <bruno@clisp.org>
22925
22926         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
22927         Don't let the 'mostlyclean' target fail if the last subdirectory could
22928         not be removed.
22929         Reported by Karl Berry.
22930
22931 2007-06-23  Bruno Haible  <bruno@clisp.org>
22932
22933         * gnulib-tool (echo): Add a speedier workaround for ksh.
22934         * tests/test-echo.sh: Likewise.
22935
22936 2007-06-23  Bruno Haible  <bruno@clisp.org>
22937
22938         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
22939         * tests/test-echo.sh: Likewise.
22940
22941 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22942
22943         * gnulib-tool (IFS): Initialize early, so we don't set it to
22944         empty later.
22945         (self_abspathname): Rewrite algorithm to set it, reindent.
22946         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
22947         (func_create_megatestdir): Merge some sed scripts.
22948
22949 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
22950
22951         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
22952         exposed by Sun Studio 11 cc on Solaris 8.
22953
22954 2007-06-22  Bruno Haible  <bruno@clisp.org>
22955
22956         * gnulib-tool (echo): Ensure the echo primitive does not interpret
22957         backslashes.
22958         * tests/test-echo.sh: New file.
22959
22960 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22961
22962         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
22963         simplify `sed_replace_build_aux' scripts, they are portable but
22964         echoing them with `echo' is not.
22965         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
22966
22967 2007-06-21  Karl Berry  <karl@gnu.org>
22968
22969         * config/srclist.txt: guess we can't handle the licenses via
22970         srclist at the moment.
22971
22972 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
22973
22974         * MODULES.html.sh: Add include_next.
22975         * modules/include_next: New file.
22976
22977 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
22978
22979         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
22980         INCLUDE_NEXT.
22981         (gl_CHECK_NEXT_HEADERS): New macro.
22982         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
22983         the obsolescent gl_ABSOLUTE_HEADER.
22984         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
22985         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
22986         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
22987         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
22988         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
22989         * m4/math_h.m4 (gl_MATH_H): Likewise.
22990         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
22991         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
22992         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
22993         * m4/stdint.m4 (gl_STDINT_H): Likewise.
22994         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
22995         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
22996         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
22997         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
22998         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
22999         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
23000         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
23001         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
23002         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
23003         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
23004         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
23005         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
23006         * m4/inttypes.m4 (gl_INTTYPES_H): Define
23007         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
23008         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
23009         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
23010         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
23011         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
23012         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
23013         * lib/float_.h: Likewise.
23014         * lib/inttypes_.h: Likewise.
23015         * lib/math_.h: Likewise.
23016         * lib/search_.h: Likewise.
23017         * lib/signal_.h: Likewise.
23018         * lib/stdint_.h: Likewise.
23019         * lib/stdio_.h: Likewise.
23020         * lib/stdlib_.h: Likewise.
23021         * lib/string_.h: Likewise.
23022         * lib/sys_stat_.h: Likewise.
23023         * lib/sys_time_.h: Likewise.
23024         * lib/time_.h: Likewise.
23025         * lib/unistd_.h: Likewise.
23026         * lib/wchar_.h: Likewise.
23027         * lib/wctype_.h: Likewise.
23028         * lib/dirent_.h: Likewise.
23029         * lib/iconv_.h: Likewise.
23030         * lib/locale_.h: Likewise.
23031         * lib/netinet_in_.h: Likewise.
23032         * lib/sys_select_.h: Likewise.
23033         * lib/sys_socket_.h: Likewise.
23034         * lib/sysexits_.h: Likewise.
23035         * modules/fcntl (Depends-on): Depend on include_next, not
23036         absolute_header.
23037         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
23038         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
23039         * modules/fchdir: Likewise.
23040         * modules/float: Likewise.
23041         * modules/iconv_open: Likewise.
23042         * modules/inttypes: Likewise.
23043         * modules/locale: Likewise.
23044         * modules/math: Likewise.
23045         * modules/netinet_in: Likewise.
23046         * modules/search: Likewise.
23047         * modules/signal: Likewise.
23048         * modules/stdint: Likewise.
23049         * modules/stdio: Likewise.
23050         * modules/stdlib: Likewise.
23051         * modules/string: Likewise.
23052         * modules/sys_select: Likewise.
23053         * modules/sys_socket: Likewise.
23054         * modules/sys_stat: Likewise.
23055         * modules/sys_time: Likewise.
23056         * modules/sysexits: Likewise.
23057         * modules/time: Likewise.
23058         * modules/unistd: Likewise.
23059         * modules/wchar: Likewise.
23060         * modules/wctype: Likewise.
23061         * modules/sys_stat: Change maintainer to "all".
23062         * modules/unistd: Likewise.
23063
23064 2007-06-20  Karl Berry  <karl@gnu.org>
23065
23066         * config/srclist.txt: track www changes in license files.
23067
23068 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
23069
23070         * build-aux/bootstrap: Remove stray dot.
23071         Make sure build_aux settings are honored when linking
23072         gnulib_extra_files.
23073
23074 2007-06-19  Eric Blake  <ebb9@byu.net>
23075
23076         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
23077         Allow compilation on cygwin.
23078
23079 2007-06-19  Jim Meyering  <jim@meyering.net>
23080
23081         xreadlink-with-size: Remove module.  No longer used.
23082         Ex-callers now use xreadlink or mreadlink-with-size.
23083         * modules/xreadlink-with-size: Remove module.
23084         * lib/xreadlink-with-size.c: Remove file.
23085         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
23086         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
23087         just before the function definition *is* accurate.
23088
23089         Eliminate one way canonicalize_filename_mode could exit.
23090         * lib/canonicalize.c (canonicalize_filename_mode):
23091         Use mreadlink_with_size, not xreadlink_with_size.
23092
23093 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
23094
23095         Detect porting problems to FreeBSD/arm, which has time_t wider than
23096         long int.  Original problem reported for GNU diff by Xin Li in
23097         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
23098         * modules/getdate (Depends-on): Add intprops, verify.
23099         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
23100         is an integer type no wider than long int.
23101
23102 2007-06-18  Jim Meyering  <jim@meyering.net>
23103
23104         New module: mreadlink-with-size.
23105         * MODULES.html.sh: Add mreadlink-with-size.
23106         * modules/mreadlink-with-size: New module
23107         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
23108         not xreadlink-with-size.
23109         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
23110
23111 2007-06-16  Bruno Haible  <bruno@clisp.org>
23112
23113         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
23114         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
23115         Reported by Gary V. Vaughan <gary@gnu.org>.
23116
23117 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
23118
23119         Revamp lchown so that it lives in unistd.h where it belongs.
23120         * lib/lchown.h: Remove.
23121         * lib/dirchownmod.c: Don't include lib/lchown.h.
23122         * lib/fchownat.c: Likewise.
23123         * lib/openat.c: Likewise.
23124         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
23125         does not follow symlinks.
23126         (EOPNOTSUPP): Define if not defined.
23127         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
23128         is defined to 0.
23129         (lchown): New decl.
23130         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
23131         Do not check for lchown decl.
23132         Set REPLACE_LCHOWN.
23133         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
23134         REPLACE_LCHOWN.
23135         * modules/chown: Make it clear it follows symlinks.
23136         * modules/lchown: Make it clear it doesn't follow symlinks.
23137         (Files): Remove lib/lchown.h
23138         (Depends-on): Add unistd.
23139         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
23140         (Include): Include <unistd.h>, not "lchown.h".
23141         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
23142         REPLACE_LCHOWN.
23143
23144 2007-06-15  Jim Meyering  <jim@meyering.net>
23145
23146         Change license (GPL to LGPL) of fsusage and dependents.
23147         * modules/fsusage (License): Change to LGPL.
23148         * modules/full-read (License): Likewise.
23149         * modules/full-write (License): Likewise.
23150         * modules/safe-read (License): Likewise.
23151         * modules/safe-write (License): Likewise.
23152
23153 2007-06-14  Ben Pfaff  <blp@gnu.org>
23154
23155         Missing part of allocsa -> malloca transition.
23156         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
23157         gl_MALLOCA.
23158
23159 2007-06-12  Bruno Haible  <bruno@clisp.org>
23160
23161         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
23162         to ia64, x86_64, i386.
23163         Reported by Eric Blake.
23164
23165 2007-06-12  Bruno Haible  <bruno@clisp.org>
23166
23167         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
23168         cross-compiling to x86_64.
23169
23170 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
23171
23172         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
23173         glitch reported by Ralf Wildenhues in
23174         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
23175
23176         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
23177         Vin Shelton.
23178
23179 2007-06-11  Bruno Haible  <bruno@clisp.org>
23180
23181         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
23182         replacement string.
23183         Reported by Eric Blake.
23184
23185 2007-06-10  Bruno Haible  <bruno@clisp.org>
23186
23187         Prepare vasnprintf code for use with Unicode strings.
23188         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
23189         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
23190         TYPE_U32_STRING.
23191         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
23192         a_u32_string variants.
23193         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
23194         * lib/printf-args.c: Don't include config.h and the specification
23195         header if PRINTF_FETCHARGS is already defined.
23196         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
23197         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
23198         TYPE_U16_STRING, TYPE_U32_STRING.
23199         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
23200         u16_directive, u16_directives, u32_directive, u32_directives): New
23201         types.
23202         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
23203         New declarations.
23204         * lib/printf-parse.c: Don't include config.h and the specification
23205         header if PRINTF_PARSE is already defined. Eliminate the set of
23206         parameters for WIDE_CHAR_VERSION; the user of this file must provide
23207         them now. Include c-ctype.h.
23208         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
23209         directive and CHAR_T_ONLY_ASCII.
23210         * lib/vasnprintf.c: Don't include config.h and the specification header
23211         if VASNPRINTF is already defined.
23212         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
23213         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
23214         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
23215         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
23216         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
23217         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
23218         code accordingly.
23219         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
23220         pad_ourselves also in this case, with the 'c' and 's' directives, and
23221         with a different notion of "width".
23222         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
23223
23224 2007-06-10  Bruno Haible  <bruno@clisp.org>
23225
23226         * modules/unistr/u32-mbsnlen: New file.
23227         * lib/unistr/u32-mbsnlen.c: New file.
23228
23229         * modules/unistr/u16-mbsnlen: New file.
23230         * lib/unistr/u16-mbsnlen.c: New file.
23231
23232         * modules/unistr/u8-mbsnlen: New file.
23233         * lib/unistr/u8-mbsnlen.c: New file.
23234
23235         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
23236         declarations.
23237
23238 2007-06-10  Bruno Haible  <bruno@clisp.org>
23239
23240         * lib/string_.h (mbsnlen): New declaration.
23241         * lib/mbsnlen.c: New file.
23242         * m4/mbsnlen.m4: New file.
23243         * modules/mbsnlen: New file.
23244         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
23245         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
23246         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
23247
23248 2007-06-10  Bruno Haible  <bruno@clisp.org>
23249
23250         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
23251
23252 2007-06-10  Bruno Haible  <bruno@clisp.org>
23253
23254         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
23255         * lib/mbuiter.h: Likewise.
23256
23257 2007-06-10  Bruno Haible  <bruno@clisp.org>
23258
23259         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
23260         declaration.
23261
23262 2007-06-10  Karl Berry  <karl@gnu.org>
23263
23264         * config/srclist.txt: remove gettext entries, Bruno prefers
23265         to update individually.
23266
23267 2007-06-10  Bruno Haible  <bruno@clisp.org>
23268
23269         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
23270         'maxlen'. Ensure only length + width bytes are allocated, not
23271         length + 1 + width.
23272
23273 2007-06-09  Bruno Haible  <bruno@clisp.org>
23274
23275         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
23276         (CHAR_T): Remove macro.
23277         (VASNPRINTF): Update.
23278
23279 2007-06-09  Bruno Haible  <bruno@clisp.org>
23280
23281         * MODULES.html.sh (Unicode string functions): Add the new modules.
23282
23283         * modules/uniconv/u32-conv-to-enc: New file.
23284         * lib/uniconv/u32-conv-to-enc.c: New file.
23285         * modules/uniconv/u32-conv-to-enc-tests: New file.
23286         * tests/uniconv/test-u32-conv-to-enc.c: New file.
23287
23288         * modules/uniconv/u16-conv-to-enc: New file.
23289         * lib/uniconv/u16-conv-to-enc.c: New file.
23290         * lib/uniconv/u-conv-to-enc.h: New file.
23291         * modules/uniconv/u16-conv-to-enc-tests: New file.
23292         * tests/uniconv/test-u16-conv-to-enc.c: New file.
23293
23294         * modules/uniconv/u8-conv-to-enc: New file.
23295         * lib/uniconv/u8-conv-to-enc.c: New file.
23296         * modules/uniconv/u8-conv-to-enc-tests: New file.
23297         * tests/uniconv/test-u8-conv-to-enc.c: New file.
23298
23299         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
23300         u32_conv_to_encoding): New declarations.
23301
23302 2007-06-09  Bruno Haible  <bruno@clisp.org>
23303
23304         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
23305
23306 2007-06-09  Bruno Haible  <bruno@clisp.org>
23307
23308         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
23309         * modules/malloca: Renamed from modules/allocsa, updated.
23310         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
23311         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
23312         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
23313         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
23314         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
23315         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
23316         * modules/xmalloca: Renamed from modules/xallocsa, updated.
23317         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
23318         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
23319         * modules/c-strcasestr (Depends-on): Update.
23320         * lib/c-strcasestr.c: Update.
23321         * modules/c-strstr (Depends-on): Update.
23322         * lib/c-strstr.c: Update.
23323         * modules/canonicalize-lgpl (Depends-on): Update.
23324         * lib/canonicalize-lgpl.c: Update.
23325         * modules/clean-temp (Depends-on): Update.
23326         * lib/clean-temp.c: Update.
23327         * modules/csharpcomp (Depends-on): Update.
23328         * lib/csharpcomp.c: Update.
23329         * modules/csharpexec (Depends-on): Update.
23330         * lib/csharpexec.c: Update.
23331         * modules/javacomp (Depends-on): Update.
23332         * lib/javacomp.c: Update.
23333         * modules/javaexec (Depends-on): Update.
23334         * lib/javaexec.c: Update.
23335         * modules/mbscasestr (Depends-on): Update.
23336         * lib/mbscasestr.c: Update.
23337         * modules/mbsstr (Depends-on): Update.
23338         * lib/mbsstr.c: Update.
23339         * modules/setenv (Depends-on): Update.
23340         * lib/setenv.c: Update.
23341         * modules/strcasestr (Depends-on): Update.
23342         * lib/strcasestr.c: Update.
23343         * modules/striconveha (Depends-on): Update.
23344         * lib/striconveha.c: Update.
23345         * modules/relocatable-prog-wrapper (Files): Update.
23346         * lib/relocwrapper.c: Update.
23347         * build-aux/install-reloc: Update.
23348         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
23349
23350 2007-06-08  Bruno Haible  <bruno@clisp.org>
23351
23352         Port to uClibc.
23353         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
23354         * lib/fpurge.c (fpurge): Likewise.
23355         * lib/freading.c (freading): Likewise.
23356         * lib/fseeko.c (rpl_fseeko): Likewise.
23357         * lib/fseterr.c (fseterr): Likewise.
23358         * lib/fwriting.c (fwriting): Likewise.
23359         * tests/test-fflush.c (main): Avoid a failure on uClibc.
23360
23361 2007-06-08  Bruno Haible  <bruno@clisp.org>
23362
23363         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
23364         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
23365         * modules/gettext (Files): Add m4/intlmacosx.m4.
23366
23367 2007-06-07  Bruno Haible  <bruno@clisp.org>
23368
23369         * modules/localename-tests: New file.
23370         * tests/test-localename.c: New file.
23371
23372         New module 'localename'.
23373         * lib/localename.h: New file.
23374         * lib/localename.c: New file, from GNU gettext.
23375         * m4/localename.m4: New file.
23376         * modules/localename: New file.
23377
23378 2007-06-07  Bruno Haible  <bruno@clisp.org>
23379
23380         Work around the lack of <wchar.h> on some builds of uClibc.
23381         * doc/headers/wchar.texi: Update.
23382         * lib/wchar_.h: Include <wchar.h> only if it exists.
23383         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
23384         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
23385         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
23386         doesn't exist.
23387         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
23388         * modules/mbfile (Depends-on): Add wchar.
23389         * modules/mbiter (Depends-on): Likewise.
23390         * modules/mbuiter (Depends-on): Likewise.
23391         Reported by Simon Josefsson.
23392
23393 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
23394
23395         Work around problem reported by Steven M. Schweda in
23396         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
23397         Tru64 5.1B with the Compaq compiler environment installed declares
23398         an 'isblank' function but does not define it in the C library.
23399         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
23400         * lib/regex_internal.h (isblank): Likewise.
23401         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
23402         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
23403
23404 2007-06-05  Bruno Haible  <bruno@clisp.org>
23405
23406         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
23407         ia64.
23408         * modules/printf-safe: New file.
23409         * modules/fprintf-posix (Depends-on): Add printf-safe.
23410         * modules/printf-posix (Depends-on): Likewise.
23411         * modules/snprintf-posix (Depends-on): Likewise.
23412         * modules/sprintf-posix (Depends-on): Likewise.
23413         * modules/vasnprintf-posix (Depends-on): Likewise.
23414         * modules/vasprintf-posix (Depends-on): Likewise.
23415         * modules/vfprintf-posix (Depends-on): Likewise.
23416         * modules/vprintf-posix (Depends-on): Likewise.
23417         * modules/vsnprintf-posix (Depends-on): Likewise.
23418         * modules/vsprintf-posix (Depends-on): Likewise.
23419         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
23420         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
23421         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
23422         "no" on i386, x86_64, ia64.
23423         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
23424         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
23425         on i386, x86_64, ia64.
23426         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
23427         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
23428         on i386, x86_64, ia64.
23429         * tests/test-vasnprintf-posix.c: Include float.h.
23430         (LDBL80_WORDS): New macro.
23431         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
23432         on i386, x86_64, ia64.
23433         * tests/test-vasprintf-posix.c: Include float.h.
23434         (LDBL80_WORDS): New macro.
23435         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
23436         on i386, x86_64, ia64.
23437         * tests/test-snprintf-posix.c: Include float.h.
23438         * tests/test-sprintf-posix.c: Likewise.
23439         * tests/test-vsnprintf-posix.c: Likewise.
23440         * tests/test-vsprintf-posix.c: Likewise.
23441
23442 2007-06-05  Bruno Haible  <bruno@clisp.org>
23443
23444         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
23445         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
23446         non-IEEE numbers on i386, x86_64, ia64.
23447         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
23448         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
23449         * tests/test-isnanl.h: Include float.h.
23450         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
23451
23452 2007-06-05  Bruno Haible  <bruno@clisp.org>
23453
23454         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
23455         also the %a / %A. Handle the %a / %A code before this extra handling.
23456
23457 2007-06-05  Bruno Haible  <bruno@clisp.org>
23458
23459         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
23460         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
23461
23462 2007-06-05  Bruno Haible  <bruno@clisp.org>
23463
23464         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
23465         typo in variable name.
23466
23467 2007-06-05  Eric Blake  <ebb9@byu.net>
23468
23469         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
23470         Reported by Simon Josefsson.
23471
23472 2007-06-04  Bruno Haible  <bruno@clisp.org>
23473
23474         Avoid test failures on some PowerPC platforms.
23475         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
23476         Define differently for PowerPC.
23477         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
23478         Reported by Gary V. Vaughan <gary@gnu.org>.
23479
23480 2007-06-02  Bruno Haible  <bruno@clisp.org>
23481
23482         Fix test-stdint failure on FreeBSD/ia64.
23483         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
23484         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
23485         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
23486         * doc/headers/stdint.texi: Update.
23487
23488 2007-06-01  Bruno Haible  <bruno@clisp.org>
23489
23490         * tests/test-binary-io.c (main): Pass a third argument to open().
23491         Reported by Gary V. Vaughan <gary@gnu.org>.
23492
23493 2007-06-01  Bruno Haible  <bruno@clisp.org>
23494
23495         * doc/functions/frexpl.texi: Update for mingw.
23496
23497 2007-06-01  Bruno Haible  <bruno@clisp.org>
23498
23499         * tests/test-lseek.c (main): Disable test of errno for invalid third
23500         argument.
23501         * doc/functions/lseek.texi: Update.
23502         Reported by Gary V. Vaughan <gary@gnu.org>.
23503
23504 2007-05-28  Bruno Haible  <bruno@clisp.org>
23505
23506         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
23507
23508 2007-05-31  Eric Blake  <ebb9@byu.net>
23509
23510         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
23511         cross compiling.
23512
23513 2007-05-30  Eric Blake  <ebb9@byu.net>
23514         and Bruno Haible  <bruno@clisp.org>
23515
23516         Work around mingw test failures exposed by m4-1.4.9b.
23517         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
23518         * tests/test-unistd.c: Disable uid_t and git_t tests for the
23519         moment.
23520
23521 2007-05-30  Bruno Haible  <bruno@clisp.org>
23522
23523         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
23524         assuming that they are closed. Needed on HP-UX 11.
23525
23526 2007-05-29  Bruno Haible  <bruno@clisp.org>
23527
23528         Fix a problem with #include_next.
23529         * lib/dirent_.h: Split the double-inclusion guard.
23530         * lib/fcntl_.h: Likewise.
23531         * lib/float_.h: Likewise.
23532         * lib/iconv_.h: Likewise.
23533         * lib/inttypes_.h: Likewise.
23534         * lib/locale_.h: Likewise.
23535         * lib/math_.h: Likewise.
23536         * lib/netinet_in_.h: Likewise.
23537         * lib/search_.h: Likewise.
23538         * lib/signal_.h: Likewise.
23539         * lib/stdint_.h: Likewise.
23540         * lib/stdio_.h: Likewise.
23541         * lib/stdlib_.h: Likewise.
23542         * lib/string_.h: Likewise.
23543         * lib/sys_select_.h: Likewise.
23544         * lib/sys_socket_.h: Likewise.
23545         * lib/sys_stat_.h: Likewise.
23546         * lib/sys_time_.h: Likewise.
23547         * lib/sysexits_.h: Likewise.
23548         * lib/time_.h: Likewise.
23549         * lib/unistd_.h: Likewise.
23550         * lib/wchar_.h: Likewise.
23551         * lib/wctype_.h: Likewise.
23552
23553 2007-05-29  Bruno Haible  <bruno@clisp.org>
23554
23555         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
23556         for the moment.
23557
23558 2007-05-29  Bruno Haible  <bruno@clisp.org>
23559
23560         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
23561         invocation.
23562         Reported by Eric Blake.
23563
23564 2007-05-29  Bruno Haible  <bruno@clisp.org>
23565
23566         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
23567         compiling case.
23568
23569 2007-05-29  Eric Blake  <ebb9@byu.net>
23570             Bruno Haible  <bruno@clisp.org>
23571
23572         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
23573         cross compiles.
23574
23575 2007-05-28  Eric Blake  <ebb9@byu.net>
23576
23577         * modules/closein-tests (test_closein_LDADD): Support test on
23578         cygwin with libtool.
23579
23580 2007-05-28  Bruno Haible  <bruno@clisp.org>
23581
23582         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
23583         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
23584         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
23585         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
23586         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
23587         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
23588         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
23589         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
23590         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
23591
23592 2007-05-28  Eric Blake  <ebb9@byu.net>
23593
23594         Unconditionally include <config.h> in unit tests.
23595         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
23596         * tests/test-allocsa.c, tests/test-arcfour.c,
23597         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
23598         tests/test-array_list.c, tests/test-array_oset.c,
23599         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
23600         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
23601         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
23602         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
23603         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
23604         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
23605         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
23606         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
23607         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
23608         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
23609         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
23610         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
23611         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
23612         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
23613         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
23614         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
23615         test-md5.c, test-memmem.c, test-printf-posix.c,
23616         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
23617         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
23618         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
23619         test-strcasestr.c, test-striconv.c, test-striconveh.c,
23620         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
23621         test-vasnprintf-posix2.c, test-vasnprintf.c,
23622         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
23623         test-vfprintf-posix.c, test-vprintf-posix.c,
23624         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
23625         test-xvasprintf.c: Likewise.
23626
23627 2007-05-28  Bruno Haible  <bruno@clisp.org>
23628
23629         * gnulib-tool (func_import): Remember the --with-tests command-line
23630         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
23631         Reported by Eric Blake.
23632
23633 2007-05-28  Bruno Haible  <bruno@clisp.org>
23634
23635         * modules/ftell-tests: New file.
23636         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
23637         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
23638
23639         * lib/ftell.c: New file.
23640         * modules/ftell: New file.
23641         * m4/ftell.m4: New file.
23642         * doc/functions/ftell.texi: Update.
23643         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
23644         REPLACE_FTELL.
23645         * lib/stdio_.h (rpl_ftell): New declaration.
23646         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
23647         REPLACE_FTELL.
23648
23649 2007-05-28  Eric Blake  <ebb9@byu.net>
23650
23651         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
23652
23653 2007-05-28  Bruno Haible  <bruno@clisp.org>
23654
23655         * modules/fseek-tests: New file.
23656         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
23657         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
23658
23659         * lib/fseek.c: New file.
23660         * modules/fseek: New file.
23661         * m4/fseek.m4: New file.
23662         * doc/functions/fseek.texi: Update.
23663         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
23664         REPLACE_FSEEK.
23665         * lib/stdio_.h (rpl_fseek): New declaration.
23666         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
23667         REPLACE_FSEEK.
23668
23669 2007-05-28  Bruno Haible  <bruno@clisp.org>
23670
23671         * lib/stdio_.h (fflush): More comments.
23672
23673 2007-05-28  Bruno Haible  <bruno@clisp.org>
23674
23675         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
23676         runtime test.
23677
23678 2007-05-28  Eric Blake  <ebb9@byu.net>
23679
23680         Improve lseek module.
23681         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
23682         * lib/unistd_.h (lseek): Scale back link warning message.
23683         * tests/test-lseek.c: Beef up test.
23684         * tests/test-lseek.sh: Exercise more facets of lseek.
23685         Reported by Bruno Haible.
23686
23687 2007-05-28  Bruno Haible  <bruno@clisp.org>
23688
23689         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
23690         to define.
23691
23692 2007-05-27  Bruno Haible  <bruno@clisp.org>
23693
23694         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
23695
23696 2007-05-27  Bruno Haible  <bruno@clisp.org>
23697
23698         * modules/openmp: New file.
23699         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
23700         Noah Misch.
23701
23702 2007-05-26  Bruno Haible  <bruno@clisp.org>
23703
23704         * modules/chdir-long (Depends-on): Add fchdir.
23705         * modules/chdir-safer (Depends-on): Likewise.
23706         * modules/fts (Depends-on): Likewise.
23707         * modules/fts-lgpl (Depends-on): Likewise.
23708         * modules/openat (Depends-on): Likewise.
23709         * modules/savewd (Depends-on): Likewise.
23710
23711 2007-05-24  Eric Blake  <ebb9@byu.net>
23712
23713         Fix lseek on mingw.
23714         * modules/lseek: New module.
23715         * m4/lseek.m4: New file.
23716         * lib/lseek.c: New file.
23717         * modules/lseek-tests: New file.
23718         * tests/test-lseek.c: New file.
23719         * tests/test-lseek.sh: New file.
23720         * MODULES.html.sh: Document lseek module.
23721         * modules/fflush (Depends-on): Add lseek, fseeko.
23722         * modules/fseeko (Depends-on): Likewise.
23723         * modules/ftello (Depends-on): Likewise.
23724         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
23725         broken.
23726         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
23727         broken.
23728         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
23729         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
23730         * lib/ftello.c (rpl_ftello): Likewise.
23731         * tests/test-fseeko.c (main): Test this.
23732         * tests/test-fseeko.sh: Likewise.
23733         * tests/test-ftello.c (main): Likewise.
23734         * tests/test-ftello.sh: Likewise.
23735         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
23736         implies replacing fseek.
23737         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
23738         HAVE_FTELLO.
23739         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
23740         * modules/unistd (Makefile.am): Likewise.
23741         * lib/unistd_.h (lseek): Declare a replacement.
23742         * doc/functions/lseek.texi (lseek): Document this fix.
23743         * doc/functions/fseek.texi (fseek): Likewise.
23744         * doc/functions/ftell.texi (ftell): Likewise.
23745
23746 2007-05-24  Bruno Haible  <bruno@clisp.org>
23747
23748         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
23749         in the printed representation of a NaN.
23750         * tests/test-vasprintf-posix.c (test_function): Likewise.
23751         * tests/test-snprintf-posix.h (test_function): Likewise.
23752         * tests/test-sprintf-posix.h (test_function): Likewise.
23753         Reported by Eric Blake.
23754
23755 2007-05-23  Eric Blake  <ebb9@byu.net>
23756
23757         Fix fseeko/ftello on cygwin 1.5.24.
23758         * doc/functions/fseeko.texi (fseeko): Document the fix.
23759         * doc/functions/ftello.texi (ftello): Document the fix.
23760         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
23761         * doc/functions/stdout.text (stdout): New file.
23762         * doc/functions/stderr.text (stderr): New file.
23763         * doc/gnulib.texi (Function Substitutes): Use new files.
23764         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
23765         prior to 1.7.0.
23766         * tests/test-ftello.c (main): Likewise for ftello.
23767         * tests/test-fseeko.sh: New file.
23768         * tests/test-ftello.sh: New file.
23769         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
23770         with seekable stdin.
23771         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
23772         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
23773         (gl_REPLACE_FSEEKO): New macro.
23774         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
23775         * modules/fseeko (Files): Distribute fseeko.c.
23776         * modules/ftello (Files): Distribute ftello.c.
23777         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
23778         mode.
23779         * lib/ftello.c (rpl_ftello): New file.
23780         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
23781         fseeko, ftello.
23782         (gl_STDIN_LARGE_OFFSET): New macro.
23783         * modules/stdio (Makefile.am): Perform the replacement.
23784         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
23785
23786 2007-05-23  Bruno Haible  <bruno@clisp.org>
23787
23788         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
23789         GNULIB_POSIXCHECK is defined.
23790
23791 2007-05-21  Bruno Haible  <bruno@clisp.org>
23792
23793         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
23794         Check also the output for NaN arguments. When cross-compiling, guess
23795         no on IRIX.
23796         * lib/vasnprintf.c: Update comments.
23797         * tests/test-vasnprintf-posix.c (strisnan): New function.
23798         (test_function): Use it.
23799         * tests/test-vasprintf-posix.c (strisnan): New function.
23800         (test_function): Use it.
23801         * tests/test-snprintf-posix.h (strisnan): New function.
23802         (test_function): Use it.
23803         * tests/test-sprintf-posix.h (strisnan): New function.
23804         (test_function): Use it.
23805         Reported by Eric Blake.
23806
23807 2007-05-20  Bruno Haible  <bruno@clisp.org>
23808
23809         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
23810         numbers that fails on BeOS.
23811         * doc/functions/frexpl.texi: Update.
23812
23813 2007-05-20  Jim Meyering  <jim@meyering.net>
23814
23815         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
23816         forced upon us by glibc-2.6.
23817
23818 2007-05-20  Bruno Haible  <bruno@clisp.org>
23819
23820         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
23821         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
23822         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
23823         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
23824         NEED_PRINTF_INFINITE.
23825         (is_infinitel): New function.
23826         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
23827         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
23828         gl_PREREQ_VASNPRINTF_INFINITE.
23829         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
23830         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23831         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
23832         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
23833         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
23834         gl_PREREQ_VASNPRINTF_INFINITE.
23835         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23836         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23837         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23838         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23839         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23840         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23841         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23842         * doc/functions/fprintf.texi: Update.
23843         * doc/functions/printf.texi: Update.
23844         * doc/functions/snprintf.texi: Update.
23845         * doc/functions/sprintf.texi: Update.
23846         * doc/functions/vfprintf.texi: Update.
23847         * doc/functions/vprintf.texi: Update.
23848         * doc/functions/vsnprintf.texi: Update.
23849         * doc/functions/vsprintf.texi: Update.
23850
23851 2007-05-20  Bruno Haible  <bruno@clisp.org>
23852
23853         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
23854         was not found in libc.
23855         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
23856
23857 2007-05-20  Bruno Haible  <bruno@clisp.org>
23858
23859         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
23860         printed as "-nan" instead of "nan".
23861         * tests/test-vasprintf-posix.c (test_function): Likewise.
23862         * tests/test-snprintf-posix.h (test_function): Likewise.
23863         * tests/test-sprintf-posix.h (test_function): Likewise.
23864         Needed for HP-UX 11.
23865
23866 2007-05-20  Jim Meyering  <jim@meyering.net>
23867
23868         Fix buggy test for the fchownat-deref bug.
23869         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
23870         symlink required for the run-test.  Without it, this test would
23871         always declare that fchownat doesn't work, and client code would
23872         unnecessarily use the replacement function with fixed libc.
23873         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
23874         Reported by Greg Schafer.
23875
23876 2007-05-19  Bruno Haible  <bruno@clisp.org>
23877
23878         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
23879         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
23880         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
23881         Needed for IRIX 6.5 and Solaris 2.5.1.
23882
23883 2007-05-19  Bruno Haible  <bruno@clisp.org>
23884
23885         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
23886         (test_function): Skip tests involving -0.0 on platforms where
23887         -0.0 = 0.0.
23888         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
23889         (test_function): Skip tests involving -0.0 on platforms where
23890         -0.0 = 0.0.
23891         * tests/test-snprintf-posix.h (have_minus_zero): New function.
23892         (test_function): Skip tests involving -0.0 on platforms where
23893         -0.0 = 0.0.
23894         * tests/test-sprintf-posix.h (have_minus_zero): New function.
23895         (test_function): Skip tests involving -0.0 on platforms where
23896         -0.0 = 0.0.
23897         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
23898         tests.
23899         * tests/test-printf-posix.h (test_function): Likewise.
23900         * tests/test-printf-posix.output: Remove all -0.0 related results.
23901         Needed for IRIX 6.5.
23902
23903 2007-05-19  Bruno Haible  <bruno@clisp.org>
23904
23905         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
23906         printed as "nan0x7fffffff" instead of "nan".
23907         * tests/test-vasprintf-posix.c (test_function): Likewise.
23908         * tests/test-snprintf-posix.h (test_function): Likewise.
23909         * tests/test-sprintf-posix.h (test_function): Likewise.
23910         * tests/test-fprintf-posix.h (NaN): Remove macro.
23911         (test_function): Remove all NaN related tests.
23912         * tests/test-printf-posix.h (NaN): Remove macro.
23913         (test_function): Remove all NaN related tests.
23914         * tests/test-printf-posix.output: Remove all NaN related results.
23915         Needed for IRIX 6.5.
23916
23917 2007-05-19  Bruno Haible  <bruno@clisp.org>
23918
23919         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
23920         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
23921
23922 2007-05-19  Bruno Haible  <bruno@clisp.org>
23923
23924         * lib/float_.h: New file.
23925         * m4/float_h.m4: New file.
23926         * modules/float: New file.
23927         * modules/isnanl (Dependencies): Add float.
23928         * modules/isnanl-nolibm (Dependencies): Likewise.
23929         * modules/mathl (Dependencies): Likewise.
23930         * modules/printf-frexpl (Dependencies): Likewise.
23931         * modules/signbit (Dependencies): Likewise.
23932         * modules/vasnprintf (Dependencies): Likewise.
23933         * doc/headers/float.texi: Update.
23934
23935 2007-05-19  Jim Meyering  <jim@meyering.net>
23936
23937         * lib/utimens.c (gl_futimens): Rename from futimens,
23938         now that glibc-2.6 declares futimens.
23939         * lib/utimens.h: Likewise.
23940
23941 2007-05-19  Bruno Haible  <bruno@clisp.org>
23942
23943         Avoid test failures on mingw.
23944         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
23945         * tests/test-printf-posix.sh: Likewise.
23946         * tests/test-vfprintf-posix.sh: Likewise.
23947         * tests/test-vprintf-posix.sh: Likewise.
23948
23949 2007-05-19  Bruno Haible  <bruno@clisp.org>
23950
23951         Fix *printf result for NaN, Inf, -0.0 on mingw.
23952         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
23953         * lib/vasnprintf.c: Include math.h and isnan.h.
23954         (is_infinite_or_zero): New function.
23955         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
23956         values in the %f, %F, %e, %E, %g, %G directives.
23957         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
23958         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23959         gl_PRINTF_INFINITE and test its result. Invoke
23960         gl_PREREQ_VASNPRINTF_INFINITE.
23961         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23962         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23963         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23964         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23965         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23966         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23967         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23968         * doc/functions/fprintf.texi: Update.
23969         * doc/functions/printf.texi: Update.
23970         * doc/functions/snprintf.texi: Update.
23971         * doc/functions/sprintf.texi: Update.
23972         * doc/functions/vfprintf.texi: Update.
23973         * doc/functions/vprintf.texi: Update.
23974         * doc/functions/vsnprintf.texi: Update.
23975         * doc/functions/vsprintf.texi: Update.
23976
23977 2007-05-19  Bruno Haible  <bruno@clisp.org>
23978
23979         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
23980         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
23981         Instead of multiplying with 10^k, set extra_zeroes to k.
23982         (scale10_round_long_double): Remove function.
23983
23984 2007-05-18  Bruno Haible  <bruno@clisp.org>
23985
23986         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
23987         introduced on 2007-05-06.
23988
23989 2007-05-18  Bruno Haible  <bruno@clisp.org>
23990
23991         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
23992         %g directives.
23993         * tests/test-vasprintf-posix.c (test_function): Likewise.
23994         * tests/test-snprintf-posix.h (test_function): Likewise.
23995         * tests/test-sprintf-posix.h (test_function): Likewise.
23996
23997 2007-05-18  Bruno Haible  <bruno@clisp.org>
23998
23999         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
24000         (strmatch): New function.
24001         (test_function): Test the %f directive on numbers of various exponents.
24002         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
24003         (strmatch): New function.
24004         (test_function): Test the %f directive on numbers of various exponents.
24005         * tests/test-snprintf-posix.h (strmatch): New function.
24006         (test_function): Test the %f directive on numbers of various exponents.
24007         * tests/test-sprintf-posix.h (strmatch): New function.
24008         (test_function): Test the %f directive on numbers of various exponents.
24009         * tests/test-snprintf-posix.c (SIZEOF): New macro.
24010         * tests/test-sprintf-posix.c (SIZEOF): New macro.
24011         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
24012         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
24013
24014 2007-05-18  Bruno Haible  <bruno@clisp.org>
24015
24016         Add support for 'long double' number output.
24017         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
24018         * lib/vasnprintf.c: Include math.h and float+.h.
24019         (mp_limb_t): New type.
24020         (GMP_LIMB_BITS): New macro.
24021         (mp_twolimb_t): New type.
24022         (GMP_TWOLIMB_BITS): New macro.
24023         (mpn_t): New type.
24024         (multiply, divide, convert_to_decimal, decode_long_double,
24025         scale10_round_long_double, scale10_round_decimal_long_double,
24026         floorlog10l): New functions.
24027         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
24028         for the %f, %F, %e, %E, %g, %G directives.
24029         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
24030         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
24031         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
24032         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
24033         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
24034         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
24035         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
24036         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
24037         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
24038         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
24039         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
24040         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
24041         * modules/snprintf-posix (Depends-on): Likewise.
24042         * modules/sprintf-posix (Depends-on): Likewise.
24043         * modules/vasnprintf-posix (Depends-on): Likewise.
24044         * modules/vasprintf-posix (Depends-on): Likewise.
24045         * modules/vfprintf-posix (Depends-on): Likewise.
24046         * modules/vsnprintf-posix (Depends-on): Likewise.
24047         * modules/vsprintf-posix (Depends-on): Likewise.
24048         * modules/vasnprintf (Files): Add lib/float+.h.
24049         * doc/functions/fprintf.texi: Update.
24050         * doc/functions/printf.texi: Update.
24051         * doc/functions/snprintf.texi: Update.
24052         * doc/functions/sprintf.texi: Update.
24053         * doc/functions/vfprintf.texi: Update.
24054         * doc/functions/vprintf.texi: Update.
24055         * doc/functions/vsnprintf.texi: Update.
24056         * doc/functions/vsprintf.texi: Update.
24057
24058 2007-05-18  Bruno Haible  <bruno@clisp.org>
24059
24060         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
24061
24062 2007-05-18  Bruno Haible  <bruno@clisp.org>
24063
24064         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
24065         for printing 64-bit integers. Needed for mingw.
24066
24067 2007-05-18  Bruno Haible  <bruno@clisp.org>
24068
24069         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
24070         gl_FUNC_FREXPL_WORKS.
24071         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
24072
24073 2007-05-18  Bruno Haible  <bruno@clisp.org>
24074
24075         * modules/frexpl-nolibm-tests: New file.
24076
24077         * modules/frexpl-nolibm: New file.
24078         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
24079
24080 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
24081
24082         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
24083         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
24084         GCC 4.2, which otherwise issues a lot of warnings.
24085         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
24086         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
24087         Likewise.
24088         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
24089         * modules/iconv_open (iconv.h): Likewise.
24090         * modules/locale (locale.h): Likewise.
24091         * modules/netinet_in (netinet/in.h): Likewise.
24092         * modules/sys_select (sys_select.h): Likewise.
24093         * modules/sys_socket (sys/socket.h): Likewise.
24094         * modules/sys_stat (sys/stat.h): Likewise.
24095         * modules/sysexits (sysexits.h): Likewise.
24096         * modules/unistd (unistd.h): Likewise.
24097
24098 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24099
24100         * modules/closein-tests (Makefile.am): Distribute
24101         `test-closein.sh'.
24102
24103 2007-05-17  Bruno Haible  <bruno@clisp.org>
24104
24105         * tests/test-printf-posix.output: Renamed from
24106         tests/test-fprintf-posix.out.
24107         * modules/fprintf-posix-tests: Update.
24108         * modules/printf-posix-tests: Update.
24109         * modules/vfprintf-posix-tests: Update.
24110         * modules/vprintf-posix-tests: Update.
24111         * tests/test-fprintf-posix.sh: Update.
24112         * tests/test-printf-posix.sh: Update.
24113         * tests/test-vfprintf-posix.sh: Update.
24114         * tests/test-vprintf-posix.sh: Update.
24115         Reported by Ralf Wildenhues.
24116
24117 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
24118
24119         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
24120         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
24121         GCC 4.2, which otherwise issues a lot of warnings.
24122         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
24123         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
24124         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
24125         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
24126         it should no longer be needed.
24127         * lib/string_.h: Likewise.
24128         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
24129         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
24130         * modules/inttypes (inttypes.h): Likewise.
24131         * modules/math (math.h): Likewise.
24132         * modules/search (search.h): Likewise.
24133         * modules/signal (signal.h): Likewise.
24134         * modules/stdint (stdint.h): Likewise.
24135         * modules/stdio (stdio.h): Likewise.
24136         * modules/stdlib (stdlib.h): Likewise.
24137         * modules/string (string.h): Likewise.
24138         * modules/sys_time (sys/time.h): Likewise.
24139         * modules/time (time.h): Likewise.
24140         * modules/wchar (wchar.h): Likewise.
24141         * modules/wctype (wtype.h): Likewise.
24142
24143 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
24144
24145         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
24146
24147 2007-05-13  Bruno Haible  <bruno@clisp.org>
24148
24149         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
24150         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
24151         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
24152         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
24153         (gl_PREREQ_STRTOK_R): Don't require it here.
24154
24155 2007-05-13  Bruno Haible  <bruno@clisp.org>
24156
24157         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
24158         when used in C++ mode.
24159
24160 2007-05-12  Bruno Haible  <bruno@clisp.org>
24161
24162         * lib/linebuffer.h: Tweak doc.
24163         * lib/linebuffer.c: Likewise.
24164
24165 2007-05-12  James Youngman  <jay@gnu.org>
24166
24167         * lib/linebuffer.c (readlinebuffer_delim): New function,
24168         like readlinebuffer, but use a caller-specified delimiter.
24169         (readlinebuffer): Just call readlinebuffer_delim with '\n'
24170         as the delimiter.
24171         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
24172
24173 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
24174
24175         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
24176         * modules/openat (Files): Remove openat-die.c.
24177         (Depends-on): Add openat-die.
24178         * modules/openat-die: New module.
24179
24180 2007-05-06  Bruno Haible  <bruno@clisp.org>
24181
24182         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
24183         Update with info about Cygwin.
24184         * doc/functions/fprintf.texi: Update.
24185         * doc/functions/printf.texi: Update.
24186         * doc/functions/snprintf.texi: Update.
24187         * doc/functions/sprintf.texi: Update.
24188         * doc/functions/vfprintf.texi: Update.
24189         * doc/functions/vprintf.texi: Update.
24190         * doc/functions/vsnprintf.texi: Update.
24191         * doc/functions/vsprintf.texi: Update.
24192         Reported by Eric Blake.
24193
24194 2007-05-06  Bruno Haible  <bruno@clisp.org>
24195
24196         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
24197         padding ourselves for the floating-point directives.
24198         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
24199         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
24200         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
24201         gl_PRINTF_FLAG_ZERO and test its result. Invoke
24202         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
24203         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
24204         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
24205         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
24206         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
24207         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
24208         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
24209         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
24210         * tests/test-snprintf-posix.h (test_function): Also check the width
24211         and some flags in the %f directive.
24212         * tests/test-sprintf-posix.h (test_function): Likewise.
24213         * tests/test-vasnprintf-posix.c (test_function): Likewise.
24214         * tests/test-vasprintf-posix.c (test_function): Likewise.
24215         * doc/functions/fprintf.texi: Update.
24216         * doc/functions/printf.texi: Update.
24217         * doc/functions/snprintf.texi: Update.
24218         * doc/functions/sprintf.texi: Update.
24219         * doc/functions/vfprintf.texi: Update.
24220         * doc/functions/vprintf.texi: Update.
24221         * doc/functions/vsnprintf.texi: Update.
24222         * doc/functions/vsprintf.texi: Update.
24223
24224 2007-05-06  Bruno Haible  <bruno@clisp.org>
24225
24226         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
24227         pass the ' flag character to sprintf or snprintf.
24228         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
24229         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
24230         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
24231         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
24232         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
24233         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
24234         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
24235         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
24236         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
24237         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
24238         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
24239         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
24240         * tests/test-snprintf-posix.h (test_function): Also check the grouping
24241         flag.
24242         * tests/test-sprintf-posix.h (test_function): Likewise.
24243         * tests/test-vasnprintf-posix.c (test_function): Likewise.
24244         * tests/test-vasprintf-posix.c (test_function): Likewise.
24245         * doc/functions/fprintf.texi: Update.
24246         * doc/functions/printf.texi: Update.
24247         * doc/functions/snprintf.texi: Update.
24248         * doc/functions/sprintf.texi: Update.
24249         * doc/functions/vfprintf.texi: Update.
24250         * doc/functions/vprintf.texi: Update.
24251         * doc/functions/vsnprintf.texi: Update.
24252         * doc/functions/vsprintf.texi: Update.
24253
24254 2007-05-01  Bruno Haible  <bruno@clisp.org>
24255
24256         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
24257
24258 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
24259
24260         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
24261         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
24262
24263 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
24264
24265         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
24266         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
24267         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
24268
24269 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
24270
24271         * lib/argp-help.c (struct hol_entry): New member `ord'.
24272         (HOL_ENTRY_PTRCMP): Use ord for comparison
24273         (hol_sort): Initialize ord.
24274
24275 2007-05-01  Bruno Haible  <bruno@clisp.org>
24276
24277         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
24278         Reported by Eric Blake.
24279         * doc/gnulib.texi (Function Substitutes): Update.
24280
24281 2007-05-01  Bruno Haible  <bruno@clisp.org>
24282
24283         * doc/functions.texi: Remove file, now redundant through
24284         doc/functions/*.texi.
24285
24286 2007-05-01  Bruno Haible  <bruno@clisp.org>
24287
24288         * modules/argp (Depends-on): Add sleep.
24289
24290 2007-05-01  Bruno Haible  <bruno@clisp.org>
24291
24292         * modules/sleep-tests: New file.
24293         * tests/test-sleep.c: New file.
24294
24295         * modules/sleep: New file.
24296         * lib/sleep.c: New file.
24297         * m4/sleep.m4: New file.
24298         * lib/unistd_.h (sleep): New declaration.
24299         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
24300         HAVE_SLEEP.
24301         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
24302         * doc/functions/sleep.texi: Document the sleep module.
24303
24304 2007-05-01  Bruno Haible  <bruno@clisp.org>
24305
24306         * lib/sigprocmask.h: Remove file.
24307         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
24308         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
24309         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
24310         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
24311         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
24312         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
24313         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
24314         HAVE_SIGSET_T as a shell variable.
24315         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
24316         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
24317         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
24318         (Depends-on): Add signal. Remove verify.
24319         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
24320         (Include): Mention <signal.h> instead of sigprocmask.h.
24321         * NEWS: Mention the change.
24322         * lib/fatal-signal.c: Don't include sigprocmask.h.
24323
24324 2007-05-01  Bruno Haible  <bruno@clisp.org>
24325
24326         * modules/signal: New file.
24327         * lib/signal_.h: New file.
24328         * m4/signal_h.m4: New file.
24329
24330 2007-05-01  Bruno Haible  <bruno@clisp.org>
24331
24332         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
24333         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
24334         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
24335         HAVE_WCTYPE_CTMP_BUG into wctype.h.
24336
24337 2007-05-01  Bruno Haible  <bruno@clisp.org>
24338
24339         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
24340         configure time.
24341         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
24342         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
24343         * modules/sys_stat (Makefile.am): Substitute their values into
24344         sys/stat.h.
24345
24346 2007-05-01  Bruno Haible  <bruno@clisp.org>
24347
24348         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
24349         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
24350         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
24351
24352 2007-05-01  Bruno Haible  <bruno@clisp.org>
24353
24354         * doc/header/assert.texi: Undo last change: don't mention the gnulib
24355         'assert' module here.
24356
24357 2007-05-01  Bruno Haible  <bruno@clisp.org>
24358
24359         * doc/functions/*.texi: New files.
24360         * doc/functions/google-ranking.txt: New file.
24361         * doc/gnulib.texi (Function Substitutes): New chapter.
24362         (ctime, inet_ntoa): Remove sections.
24363         * doc/ctime.texi: Remove file.
24364         * doc/inet_ntoa.texi: Remove file.
24365         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
24366         dependencies.
24367         (%.info): New rule, specifying a --reference-limit.
24368
24369 2007-05-01  Bruno Haible  <bruno@clisp.org>
24370
24371         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
24372
24373 2007-05-01  Bruno Haible  <bruno@clisp.org>
24374
24375         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
24376         the portability of 'mkdir' to mingw systems.
24377
24378 2007-05-01  Bruno Haible  <bruno@clisp.org>
24379
24380         * doc/headers/google-ranking.txt: New file.
24381
24382 2007-04-30  Eric Blake  <ebb9@byu.net>
24383
24384         Prefer fseeko to fseek.
24385         * modules/getpass (Depends-on): Add fseeko.
24386         * lib/getpass.c (getpass): Use fseeko, not fseek.
24387
24388 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
24389
24390         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
24391         assumes the sorting is stable, while most qsort implementations
24392         are not.  Use argument addresses to ensure they never compare as
24393         equal.
24394
24395         * tests/test-argp-2.sh (usage-indent test): Fix output
24396         (func_compare): Restore diff options
24397         * tests/test-argp.c: Restore #include "progname.h"
24398
24399 2007-04-29  Bruno Haible  <bruno@clisp.org>
24400
24401         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
24402         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
24403         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
24404         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
24405         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
24406         (configure.ac): Define CHECK_SNPRINTF_POSIX.
24407         (TESTS, check_PROGRAMS): Add test-snprintf.
24408         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
24409         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
24410         (TESTS, check_PROGRAMS): Add test-vsnprintf.
24411         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
24412         assertions that fail on HP-UX, OSF/1, or IRIX.
24413         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
24414
24415 2007-04-29  Bruno Haible  <bruno@clisp.org>
24416
24417         * MODULES.html.sh (posix_functions): Remove 'contents'.
24418
24419 2007-04-29  Karl Berry  <karl@gnu.org>
24420
24421         * config/srclist.txt (gendocs_template_min): new entry.
24422
24423 2007-04-29  Bruno Haible  <bruno@clisp.org>
24424
24425         Work around fpurge bug on BSD systems.
24426         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
24427         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
24428         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
24429         fpurge to rpl_fpurge if the system already has this function.
24430         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
24431         the case where the system already has this function. Correct invariants
24432         on BSD systems.
24433         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
24434         BSD systems.
24435
24436 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
24437
24438         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
24439         proposed by Sven Verdoolaege.
24440
24441         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
24442         options.
24443         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
24444         (usage and help tests): Update
24445
24446 2007-04-29  Bruno Haible  <bruno@clisp.org>
24447
24448         * tests/test-fflush.c (main): Use a file of size 17, not 10.
24449         Print more information in case of failure. Disable a test on BeOS.
24450
24451 2007-04-29  Bruno Haible  <bruno@clisp.org>
24452
24453         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
24454         This helps debugging on systems on which no gdb is available.
24455
24456 2007-04-29  Bruno Haible  <bruno@clisp.org>
24457
24458         * lib/freading.h: Improve comments.
24459         * lib/fwriting.h: Likewise.
24460         * tests/test-freading.c (main): Don't check freading immediately after
24461         repositioning. Needed for glibc.
24462
24463 2007-04-29  Bruno Haible  <bruno@clisp.org>
24464
24465         * lib/freading.c (freading): Trivial simplification.
24466
24467 2007-04-28  Bruno Haible  <bruno@clisp.org>
24468
24469         * tests/test-fwriting.c (main): Also test the interaction between
24470         fflush and fwriting.
24471         * modules/fwriting-tests (Depends-on): Add fflush.
24472
24473         * tests/test-freading.c (main): Also test the interaction between
24474         fflush and freading.
24475         * modules/freading-tests (Depends-on): Add fflush.
24476
24477 2007-04-28  Bruno Haible  <bruno@clisp.org>
24478
24479         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
24480         fseeko and ftello.
24481         Suggested by Eric Blake.
24482
24483 2007-04-28  Jim Meyering  <jim@meyering.net>
24484
24485         Avoid false-negative in gl_STDINT_H's C99 conformance test.
24486         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
24487         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
24488
24489 2007-04-27  Eric Blake  <ebb9@byu.net>
24490
24491         * doc/headers/assert.texi (assert.h): Document assert module use.
24492
24493 2007-04-27  Bruno Haible  <bruno@clisp.org>
24494
24495         * doc/headers/*.texi: New files.
24496         * doc/gnulib.texi (Header File Substitutes): New chapter.
24497         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
24498         dependencies.
24499         (standards.info ,standards.html, standards.dvi): Update dependencies.
24500         (mostlyclean, clean): New targets.
24501
24502 2007-04-27  Bruno Haible  <bruno@clisp.org>
24503
24504         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
24505         * modules/sysexits (Files, Makefile.am): Update.
24506
24507         * lib/sys_socket_.h: Renamed from lib/socket_.h.
24508         * modules/sys_socket (Files, Makefile.am): Update.
24509
24510         * lib/sys_stat_.h: Renamed from lib/stat_.h.
24511         * modules/sys_stat (Files, Makefile.am): Update.
24512
24513 2007-04-27  Eric Blake  <ebb9@byu.net>
24514
24515         * lib/freading.h: Improve comments.
24516         * lib/fwriting.h: Likewise.
24517         * lib/fflush.c: Likewise.
24518
24519         Fix closein for mingw.
24520         * modules/closein-tests: Add tests for closein.
24521         * tests/test-closein.c: New file.
24522         * tests/test-closein.sh: Likewise.
24523         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
24524         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
24525
24526 2007-04-27  Bruno Haible  <bruno@clisp.org>
24527
24528         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
24529         version is < 6.
24530         * lib/math_.h [__DECC]: Likewise.
24531         * lib/stdio_.h [__DECC]: Likewise.
24532         * lib/stdlib_.h [__DECC]: Likewise.
24533         * lib/string_.h [__DECC]: Likewise.
24534         * lib/time_.h [__DECC]: Likewise.
24535         * lib/wchar_.h [__DECC]: Likewise.
24536         * lib/wctype_.h [__DECC]: Likewise.
24537
24538 2007-04-27  Bruno Haible  <bruno@clisp.org>
24539
24540         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
24541
24542 2007-04-27  Bruno Haible  <bruno@clisp.org>
24543
24544         * lib/fflush.c: Add comments.
24545         * modules/fpurge-tests (Depends-on): Add fflush.
24546         * modules/freadable-tests (Depends-on): Likewise.
24547         * modules/fwritable-tests (Depends-on): Likewise.
24548
24549 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
24550
24551         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
24552         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
24553         Report by Bruno Haible <bruno@clisp.org>.
24554
24555 2007-04-26  Eric Blake  <ebb9@byu.net>
24556
24557         Fix fflush on mingw.
24558         * modules/fflush (Depends-on): Add freading.
24559         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
24560         but unread data.
24561
24562 2007-04-26  Eric Blake  <ebb9@byu.net>
24563         and Bruno Haible  <bruno@clisp.org>
24564
24565         Implement freading and fwriting.
24566         * lib/freading.c: New file.
24567         * lib/freading.h: Likewise.
24568         * m4/freading.m4: Likewise.
24569         * modules/freading: Likewise.
24570         * modules/freading-tests: Likewise.
24571         * tests/test-freading.c: Likewise.
24572         * lib/fwriting.c: New file.
24573         * lib/fwriting.h: Likewise.
24574         * m4/fwriting.m4: Likewise.
24575         * modules/fwriting: Likewise.
24576         * modules/fwriting-tests: Likewise.
24577         * tests/test-fwriting.c: Likewise.
24578         * MODULES.html.sh (File stream based Input/Output): Mention them.
24579
24580 2007-04-26  Bruno Haible  <bruno@clisp.org>
24581
24582         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
24583         'long' when we assume it.
24584         Suggested by Eric Blake.
24585
24586 2007-04-26  Bruno Haible  <bruno@clisp.org>
24587
24588         Ensure fseeko, ftello are declared on glibc systems.
24589         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
24590         * modules/fseeko (configure.ac-early): Likewise.
24591         * modules/ftello (configure.ac-early): Likewise.
24592         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
24593         AC_FUNC_FSEEKO for this.
24594         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
24595         (gl_CHECK_FSEEKO): Remove macro.
24596
24597 2007-04-26  Bruno Haible  <bruno@clisp.org>
24598
24599         * tests/test-fflush.c (main): Also check the ftell result after
24600         fflush and fseek/fseeko.
24601         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
24602         file descriptor position cache in the stream.
24603         * lib/fseeko.c (rpl_fseeko): Likewise.
24604
24605 2007-04-26  Bruno Haible  <bruno@clisp.org>
24606
24607         * modules/fflush-tests (Depends-on): Add fseeko.
24608
24609 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
24610             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24611
24612         * lib/argz_.h: ensure error_t definition is obtained in same
24613         mechanism system argz.h would have.
24614         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
24615         argz facilities are known bad.  Err on the side of caution if
24616         cross-compiling.
24617
24618 2007-04-25  Eric Blake  <ebb9@byu.net>
24619
24620         * lib/fpurge.c (includes): Use stdlib.h for free.
24621         * tests/test-fflush.c (main): Also test fflush-fseeko.
24622
24623 2007-04-25  Bruno Haible  <bruno@clisp.org>
24624
24625         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
24626         * lib/fseeko.c: New file.
24627         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
24628         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
24629         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
24630         gl_FUNC_FSEEKO.
24631         (gl_FUNC_FSEEKO): Invoke it.
24632         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
24633         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
24634         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
24635
24636 2007-04-25  Bruno Haible  <bruno@clisp.org>
24637
24638         * modules/fflush (Depends-on): Add ftello.
24639
24640 2007-04-25  Bruno Haible  <bruno@clisp.org>
24641
24642         * modules/ftello-tests: New file.
24643         * tests/test-ftello.c: New file.
24644
24645         * modules/ftello: New file.
24646         * m4/ftello.m4: New file.
24647         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
24648         HAVE_FTELLO.
24649         * lib/stdio_.h (ftello): New declaration.
24650         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
24651         HAVE_FTELLO.
24652
24653 2007-04-25  Bruno Haible  <bruno@clisp.org>
24654
24655         * modules/fseeko-tests: New file.
24656         * tests/test-fseeko.c: New file.
24657
24658         * modules/fseeko: New file.
24659         * m4/fseeko.m4: New file.
24660         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
24661         HAVE_FSEEKO.
24662         * lib/stdio_.h (fseeko): New declaration.
24663         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
24664         HAVE_FSEEKO.
24665
24666 2007-04-25  Bruno Haible  <bruno@clisp.org>
24667
24668         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
24669
24670 2007-04-25  Bruno Haible  <bruno@clisp.org>
24671
24672         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
24673         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
24674         * tests/test-unistd.c: Likewise.
24675         * tests/test-fcntl.c: Likewise.
24676
24677 2007-04-23  Eric Blake  <ebb9@byu.net>
24678
24679         * lib/fflush.c: Fix missing include.
24680         Reported by Bruno Haible.
24681
24682 2007-04-23  Bruno Haible  <bruno@clisp.org>
24683
24684         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
24685         Reported by Eric Blake.
24686
24687 2007-04-23  Bruno Haible  <bruno@clisp.org>
24688
24689         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
24690
24691 2007-04-23  Bruno Haible  <bruno@clisp.org>
24692
24693         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
24694
24695 2007-04-23  Bruno Haible  <bruno@clisp.org>
24696
24697         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
24698         Needed on HP-UX 11.
24699
24700 2007-04-16  Eric Blake  <ebb9@byu.net>
24701
24702         Make fflush rely on fpurge.
24703         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
24704         open coding all variants.
24705         * modules/fflush (Depends-on): Add fpurge and unistd.
24706         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
24707         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
24708
24709         Fix --with-tests compilation on cygwin.
24710         * modules/argmatch-tests (Makefile.am): List gnulib library first
24711         in LDADD.
24712         * modules/argp-tests (Makefile.am): Likewise.
24713         * modules/array-list-tests (Makefile.am): Likewise.
24714         * modules/array-oset-tests (Makefile.am): Likewise.
24715         * modules/avltree-list-tests (Makefile.am): Likewise.
24716         * modules/avltree-oset-tests (Makefile.am): Likewise.
24717         * modules/avltreehash-list-tests (Makefile.am): Likewise.
24718         * modules/carray-list-tests (Makefile.am): Likewise.
24719         * modules/dirname-tests (Makefile.am): Likewise.
24720         * modules/frexp-tests (Makefile.am): Likewise.
24721         * modules/isnanl-tests (Makefile.am): Likewise.
24722         * modules/linked-list-tests (Makefile.am): Likewise.
24723         * modules/linkedhash-list-tests (Makefile.am): Likewise.
24724         * modules/lock-tests (Makefile.am): Likewise.
24725         * modules/rbtree-list-tests (Makefile.am): Likewise.
24726         * modules/rbtree-oset-tests (Makefile.am): Likewise.
24727         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
24728         * modules/tls-tests (Makefile.am): Likewise.
24729         * modules/tsearch-tests (Makefile.am): Likewise.
24730         * modules/xvasprintf-tests (Makefile.am): Likewise.
24731
24732         Fix fpurge for cygwin.
24733         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
24734         value.
24735         * modules/fpurge-tests (Depends-on): Clean up trash.
24736
24737 2007-04-16  Simon Josefsson  <simon@josefsson.org>
24738
24739         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
24740
24741         * m4/autobuild.m4: Re-indent.
24742
24743 2007-04-13  Bruno Haible  <bruno@clisp.org>
24744
24745         * modules/fpurge-tests: New file.
24746         * tests/test-fpurge.c: New file.
24747
24748         * modules/fpurge: New file.
24749         * lib/fpurge.h: New file.
24750         * lib/fpurge.c: New file.
24751         * m4/fpurge.m4: New file.
24752
24753 2007-04-13  Bruno Haible  <bruno@clisp.org>
24754
24755         * modules/fbufmode-tests: New file.
24756         * tests/test-fbufmode.c: New file.
24757
24758         * modules/fbufmode: New file.
24759         * lib/fbufmode.h: New file.
24760         * lib/fbufmode.c: New file.
24761         * m4/fbufmode.m4: New file.
24762
24763 2007-04-13  Bruno Haible  <bruno@clisp.org>
24764
24765         * modules/fwritable-tests: New file.
24766         * tests/test-fwritable.c: New file.
24767
24768         * modules/fwritable: New file.
24769         * lib/fwritable.h: New file.
24770         * lib/fwritable.c: New file.
24771         * m4/fwritable.m4: New file.
24772
24773 2007-04-13  Bruno Haible  <bruno@clisp.org>
24774
24775         * modules/freadable-tests: New file.
24776         * tests/test-freadable.c: New file.
24777
24778         * modules/freadable: New file.
24779         * lib/freadable.h: New file.
24780         * lib/freadable.c: New file.
24781         * m4/freadable.m4: New file.
24782
24783 2007-04-13  Bruno Haible  <bruno@clisp.org>
24784
24785         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
24786         MOSTLYCLEANFILES.
24787
24788 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
24789
24790         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
24791         gzip bootstrap.conf to avoid dragging in i18n machinery.
24792         (gnulib_tool_option): Use it.
24793
24794 2007-04-13  Bruno Haible  <bruno@clisp.org>
24795
24796         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
24797         %F directives.
24798         * tests/test-vasprintf-posix.c (test_function): Likewise.
24799         * tests/test-snprintf-posix.h (test_function): Likewise.
24800         * tests/test-sprintf-posix.h (test_function): Likewise.
24801         * tests/test-fprintf-posix.h (test_function): Likewise.
24802         * tests/test-printf-posix.h (test_function): Likewise.
24803         * tests/test-fprintf-posix.out: Likewise.
24804
24805 2007-04-13  Bruno Haible  <bruno@clisp.org>
24806
24807         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
24808         * modules/tls-tests (configure.ac): Likewise.
24809         Reported by Arto C. Nirkko <anirkko@insel.ch>.
24810
24811 2007-04-13  Bruno Haible  <bruno@clisp.org>
24812
24813         * lib/tls.c (glthread_tls_get): Fix return type.
24814         Patch by Arto C. Nirkko <anirkko@insel.ch>.
24815
24816 2007-04-12  Eric Blake  <ebb9@byu.net>
24817
24818         * modules/gettime (Depends-on): Remove gettime.
24819         Reported by Dmitry V. Levin.
24820
24821 2007-04-12  Bruno Haible  <bruno@clisp.org>
24822
24823         * modules/fflush (Include): Mention <stdio.h>.
24824         * modules/strtoimax (Include): Mention <inttypes.h>.
24825         * modules/strtoumax (Include): Likewise.
24826
24827 2007-04-12  Eric Blake  <ebb9@byu.net>
24828
24829         * .cvsignore: New file.
24830         * .gitignore: Likewise.
24831
24832 2007-04-12  Bruno Haible  <bruno@clisp.org>
24833
24834         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
24835         not before, since $(LDADD) often contains libgnu.a.
24836         * modules/striconv-tests (test_striconv_LDADD): Likewise.
24837         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
24838         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
24839         Needed on Cygwin.
24840
24841 2007-04-12  Eric Blake  <ebb9@byu.net>
24842
24843         Work around glibc's failure to flush stdin on fclose.
24844         * lib/closein.c (close_stdin): Flush stdin before closing.
24845
24846         Work around glibc's failure to reset seekable stdin on exit.
24847         * modules/closein: New module.
24848         * lib/closein.c: New file.
24849         * lib/closein.h: Likewise.
24850         * m4/closein.m4: Likewise.
24851         * MODULES.html.sh (File stream based Input/Output): Document it.
24852
24853 2007-04-12  Simon Josefsson  <simon@josefsson.org>
24854
24855         * gnulib-tool: Rename generated 'autobuild' script to
24856         'do-autobuild' in --create-megatestdir output.
24857
24858         * doc/gnulib.texi (Build robot for gnulib): Fix.
24859
24860 2007-04-12  Simon Josefsson  <simon@josefsson.org>
24861
24862         * modules/sysexits (Depends-on): Add absolute-header.
24863
24864 2007-04-12  Eric Blake  <ebb9@byu.net>
24865
24866         No need to preserve errno on success.
24867         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
24868         Reported by Bruno Haible.
24869
24870 2007-04-12  Simon Josefsson  <simon@josefsson.org>
24871
24872         * MODULES.html.sh (Support for maintaining and releasing
24873         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
24874
24875 2007-04-12  Simon Josefsson  <simon@josefsson.org>
24876
24877         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
24878
24879 2007-04-12  Simon Josefsson  <simon@josefsson.org>
24880
24881         * modules/autobuild: New module.
24882
24883         * m4/autobuild.m4: New file.
24884
24885 2007-04-11  Bruno Haible  <bruno@clisp.org>
24886
24887         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
24888         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
24889         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
24890         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
24891         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
24892         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24893         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24894         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
24895         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24896         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24897         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
24898         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24899         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24900         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
24901         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24902         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24903         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
24904         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24905         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24906         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
24907         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24908         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24909         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
24910         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24911         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24912         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
24913         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
24914         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
24915         Reported by Eric Blake.
24916
24917 2007-04-11  Bruno Haible  <bruno@clisp.org>
24918
24919         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
24920
24921 2007-04-10  Bruno Haible  <bruno@clisp.org>
24922
24923         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
24924         for NaN and Infinity. Needed on FreeBSD 6.1.
24925         * tests/test-vasnprintf-posix.c (test_function): Undo last change
24926         regarding results for "%010a" of Infinity and NaN.
24927         * tests/test-vasprintf-posix.c (test_function): Likewise.
24928         * tests/test-snprintf-posix.h (test_function): Likewise.
24929         * tests/test-sprintf-posix.h (test_function): Likewise.
24930         * tests/test-fprintf-posix.h (test_function): Likewise.
24931         * tests/test-printf-posix.h (test_function): Likewise.
24932         * tests/test-fprintf-posix.out: Likewise.
24933
24934 2007-04-10  Bruno Haible  <bruno@clisp.org>
24935
24936         * modules/locale-tests: New file.
24937         * tests/test-locale.c: New file.
24938
24939         * modules/locale: New file.
24940         * lib/locale_.h: New file.
24941         * m4/locale_h.m4: New file.
24942
24943 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
24944             Bruno Haible  <bruno@clisp.org>
24945
24946         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
24947         be determined, test for availability of the copysignf, copysign,
24948         copysignl functions.
24949         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
24950         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
24951         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
24952
24953 2007-04-09  Eric Blake  <ebb9@byu.net>
24954
24955         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
24956         * modules/stdio (Makefile.am): Support fflush.
24957         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
24958         * modules/fflush: New file.
24959         * lib/fflush.c: Likewise.
24960         * m4/fflush.m4: Likewise.
24961         * modules/fflush-tests: New test.
24962         * tests/test-fflush.c: Likewise.
24963         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
24964
24965 2007-04-06  Bruno Haible  <bruno@clisp.org>
24966
24967         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
24968         (VASNPRINTF): Use signbit for faster determination whether to print a
24969         minus sign.
24970         * modules/vasnprintf (Files): Remove lib/float+.h.
24971         * modules/fprintf-posix (Depends-on): Add signbit.
24972         * modules/snprintf-posix (Depends-on): Likewise.
24973         * modules/sprintf-posix (Depends-on): Likewise.
24974         * modules/vasnprintf-posix (Depends-on): Likewise.
24975         * modules/vasprintf-posix (Depends-on): Likewise.
24976         * modules/vfprintf-posix (Depends-on): Likewise.
24977         * modules/vsnprintf-posix (Depends-on): Likewise.
24978         * modules/vsprintf-posix (Depends-on): Likewise.
24979
24980 2007-04-06  Bruno Haible  <bruno@clisp.org>
24981
24982         * tests/test-frexp.c (main): Test also the sign bit of zero results.
24983         * tests/test-frexpl.c (main): Likewise.
24984         * tests/test-ldexpl.c (main): Likewise.
24985         * modules/frexp-tests (Depends-on): Add signbit.
24986         * modules/frexpl-tests (Depdends-on): Likewise.
24987         * modules/ldexpl-tests (Depdends-on): Likewise.
24988
24989 2007-04-06  Bruno Haible  <bruno@clisp.org>
24990
24991         * modules/signbit-tests: New file.
24992         * tests/test-signbit.c: New file.
24993
24994         * modules/signbit: New file.
24995         * lib/signbitf.c: New file.
24996         * lib/signbitd.c: New file.
24997         * lib/signbitl.c: New file.
24998         * m4/signbit.m4: New file.
24999         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
25000         (signbit): New macro.
25001         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
25002         REPLACE_SIGNBIT.
25003         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
25004         REPLACE_FREXPL into math.h.
25005
25006 2007-04-06  Bruno Haible  <bruno@clisp.org>
25007
25008         * modules/isnanf-nolibm-tests: New file.
25009         * tests/test-isnanf.c: New file.
25010
25011         * modules/isnanf-nolibm: New file.
25012         * lib/isnanf.h: New file.
25013         * lib/isnanf.c: New file.
25014         * lib/isnan.c: Consider the USE_FLOAT macro.
25015         * m4/isnanf.m4: New file.
25016
25017 2007-04-06  Bruno Haible  <bruno@clisp.org>
25018
25019         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
25020         (Link): New section.
25021
25022         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
25023
25024 2007-04-06  Bruno Haible  <bruno@clisp.org>
25025
25026         Assume the 'long double' type.
25027         * m4/longdouble.m4: Remove file.
25028         * config/srclist.txt: Don't mention longdouble.m4.
25029         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
25030         * lib/float+.h: Likewise.
25031         * lib/frexp.c: Likewise.
25032         * lib/printf-args.h: Likewise.
25033         * lib/printf-args.c: Likewise.
25034         * lib/printf-frexp.c: Likewise.
25035         * lib/printf-parse.c: Likewise.
25036         * lib/vasnprintf.c: Likewise.
25037         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
25038         * m4/intl.m4: Likewise.
25039         * m4/isnanl.m4: Likewise.
25040         * m4/printf.m4: Likewise.
25041         * m4/printf-frexpl.m4: Likewise.
25042         * m4/vasnprintf.m4: Likewise.
25043         * modules/allocsa (Files): Remove m4/longdouble.m4.
25044         * modules/gettext (Files): Likewise.
25045         * modules/relocatable-prog-wrapper (Files): Likewise.
25046         * modules/vasnprintf (Files): Likewise.
25047         * modules/isnanl (Files): Likewise.
25048         (Include): Simplify.
25049         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
25050         (Include): Simplify.
25051         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
25052         (Include): Simplify.
25053         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
25054         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
25055         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
25056         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
25057         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
25058         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
25059         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
25060         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
25061         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
25062         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
25063         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
25064         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
25065         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
25066         * tests/test-isnanl.c: Likewise.
25067         * tests/test-snprintf-posix.h: Likewise.
25068         * tests/test-sprintf-posix.h: Likewise.
25069         * tests/test-vasnprintf-posix.c: Likewise.
25070         * tests/test-vasnprintf-posix2.c: Likewise.
25071         * tests/test-vasprintf-posix.c: Likewise.
25072
25073 2007-04-06  Bruno Haible  <bruno@clisp.org>
25074
25075         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
25076         * lib/math_.h [__DECC]: Include the overridden include file through
25077         #include_next, outside the double-inclusion guard.
25078         * lib/stdio_.h [__DECC]: Likewise.
25079         * lib/stdlib_.h [__DECC]: Likewise.
25080         * lib/string_.h [__DECC]: Likewise.
25081         * lib/time_.h [__DECC]: Likewise.
25082         * lib/wchar_.h [__DECC]: Likewise.
25083         * lib/wctype_.h [__DECC]: Likewise.
25084         * lib/inttypes_.h [__DECC]: Likewise.
25085         Reported by Albert Chin <china@thewrittenword.com> in
25086         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
25087
25088 2007-04-04  Eric Blake  <ebb9@byu.net>
25089
25090         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
25091         1.5.x.
25092
25093 2007-04-04  Bruno Haible  <bruno@clisp.org>
25094
25095         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
25096         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
25097
25098 2007-04-04  Bruno Haible  <bruno@clisp.org>
25099
25100         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
25101         results for "%010a" of Infinity and NaN.
25102         * tests/test-vasprintf-posix.c (test_function): Likewise.
25103         * tests/test-snprintf-posix.h (test_function): Likewise.
25104         * tests/test-sprintf-posix.h (test_function): Likewise.
25105         * tests/test-fprintf-posix.h (test_function): Remove these tests.
25106         * tests/test-printf-posix.h (test_function): Likewise.
25107         * tests/test-fprintf-posix.out: Update.
25108         Needed for FreeBSD 6.1.
25109
25110 2007-04-04  Bruno Haible  <bruno@clisp.org>
25111
25112         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
25113         directly used by the gnulib modules nor by gnulib-tool.
25114
25115 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
25116
25117         * DEPENDENCIES: Give overall description of version dependency
25118         desirability.  Use more-typical names for apps.
25119         Add shell, coreutils, diffutils, grep, tar, gzip.
25120
25121 2007-04-04  Simon Josefsson  <simon@josefsson.org>
25122
25123         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
25124
25125 2007-04-04  Karl Berry  <karl@gnu.org>
25126
25127         * MODULES.html.sh (func_module): missing '.
25128
25129 2007-04-03  Bruno Haible  <bruno@clisp.org>
25130
25131         * modules/argmatch-tests (Makefile.am): New variable
25132         test_argmatch_LDADD.
25133         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
25134         * modules/array-list-tests (Makefile.am): New variable
25135         test_array_list_LDADD.
25136         * modules/array-oset-tests (Makefile.am): New variable
25137         test_array_oset_LDADD.
25138         * modules/avltree-list-tests (Makefile.am): New variable
25139         test_avltree_list_LDADD.
25140         * modules/avltree-oset-tests (Makefile.am): New variable
25141         test_avltree_oset_LDADD.
25142         * modules/avltreehash-list-tests (Makefile.am): New variable
25143         test_avltreehash_list_LDADD.
25144         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
25145         test_canonicalize_lgpl_LDADD.
25146         * modules/carray-list-tests (Makefile.am): New variable
25147         test_carray_list_LDADD.
25148         * modules/dirname-tests (Makefile.am): New variable
25149         test_dirname_LDADD.
25150         * modules/linked-list-tests (Makefile.am): New variable
25151         test_linked_list_LDADD.
25152         * modules/linkedhash-list-tests (Makefile.am): New variable
25153         test_linkedhash_list_LDADD.
25154         * modules/rbtree-list-tests (Makefile.am): New variable
25155         test_rbtree_list_LDADD.
25156         * modules/rbtree-oset-tests (Makefile.am): New variable
25157         test_rbtree_oset_LDADD.
25158         * modules/rbtreehash-list-tests (Makefile.am): New variable
25159         test_rbtreehash_list_LDADD.
25160         * modules/xvasprintf-tests (Makefile.am): New variable
25161         test_xvasprintf_LDADD.
25162         Reported by Eric Blake.
25163
25164 2007-04-03  Eric Blake  <ebb9@byu.net>
25165
25166         * DEPENDENCIES: Weaken m4 requirements.
25167
25168 2007-04-03  Bruno Haible  <bruno@clisp.org>
25169
25170         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
25171         * modules/isnanl-tests (configure.ac): Likewise.
25172
25173 2007-04-03  Ben Pfaff  <blp@gnu.org>
25174
25175         * modules/iconv_open: Add $(srcdir)/ to source directory
25176         references in Makefile fragments that call gperf, to fix VPATH
25177         builds.
25178
25179 2007-04-03  Bruno Haible  <bruno@clisp.org>
25180
25181         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
25182         * lib/ldexpl.c: Undo last change.
25183
25184 2007-04-03  Bruno Haible  <bruno@clisp.org>
25185
25186         * modules/printf-frexpl (Depends-on): Undo last change.
25187         (Files): Add m4/ldexpl.m4.
25188
25189 2007-04-03  Bruno Haible  <bruno@clisp.org>
25190
25191         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
25192         * modules/isnanl (Link): New section.
25193
25194         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
25195         * modules/frexp (Link): New section.
25196
25197         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
25198         * modules/frexpl (Link): New section.
25199
25200         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
25201         * modules/ldexpl (Link): New section.
25202
25203 2007-04-03  Bruno Haible  <bruno@clisp.org>
25204
25205         * modules/TEMPLATE-EXTENDED: New file.
25206         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
25207
25208 2007-04-03  Bruno Haible  <bruno@clisp.org>
25209
25210         * DEPENDENCIES: New file.
25211         Suggested by Simon Josefsson.
25212
25213 2007-04-03  Bruno Haible  <bruno@clisp.org>
25214
25215         * doc/gnulib.texi: Escape @.
25216
25217 2007-04-03  James Youngman  <jay@gnu.org>
25218         and Paul Eggert  <eggert@cs.ucla.edu>
25219
25220         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
25221         birthtime on all systems that have birthtime, not just those which
25222         use st_birthtimensec rather than st_birthtim.  Putting zero in
25223         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
25224         that the birth time is not available for files on an NFS mount.
25225
25226 2007-04-03  Simon Josefsson  <simon@josefsson.org>
25227
25228         * modules/memxor: Move back from crypto/, suggested by Bruno.
25229         * modules/crypto/hmac-sha1: Fix memxor dependency.
25230
25231         * modules/crypto/gc: Moved from ../.
25232
25233 2007-04-02  Eric Blake  <ebb9@byu.net>
25234
25235         * lib/ldexpl.c (includes): Avoid libm.
25236
25237         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
25238
25239 2007-04-02  Bruno Haible  <bruno@clisp.org>
25240
25241         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
25242         on IRIX.
25243
25244 2007-04-02  Bruno Haible  <bruno@clisp.org>
25245
25246         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
25247         x86 or x86_64 platforms running MacOS X.
25248         Reported by Ryan Schmidt <@ryandesign.com>.
25249
25250 2007-04-02  Bruno Haible  <bruno@clisp.org>
25251
25252         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
25253         i386.
25254
25255 2007-04-01  Simon Josefsson  <simon@josefsson.org>
25256
25257         * modules/crypto/arcfour: Moved from ../.
25258         * modules/crypto/arcfour-tests: Moved from ../.
25259         * modules/crypto/arctwo: Moved from ../.
25260         * modules/crypto/arctwo-tests: Moved from ../.
25261         * modules/crypto/des: Moved from ../.
25262         * modules/crypto/des-tests: Moved from ../.
25263         * modules/crypto/gc-arcfour: Moved from ../.
25264         * modules/crypto/gc-arcfour-tests: Moved from ../.
25265         * modules/crypto/gc-arctwo: Moved from ../.
25266         * modules/crypto/gc-arctwo-tests: Moved from ../.
25267         * modules/crypto/gc-des: Moved from ../.
25268         * modules/crypto/gc-des-tests: Moved from ../.
25269         * modules/crypto/gc-hmac-md5: Moved from ../.
25270         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
25271         * modules/crypto/gc-hmac-sha1: Moved from ../.
25272         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
25273         * modules/crypto/gc-md2: Moved from ../.
25274         * modules/crypto/gc-md2-tests: Moved from ../.
25275         * modules/crypto/gc-md4: Moved from ../.
25276         * modules/crypto/gc-md4-tests: Moved from ../.
25277         * modules/crypto/gc-md5: Moved from ../.
25278         * modules/crypto/gc-md5-tests: Moved from ../.
25279         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
25280         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
25281         * modules/crypto/gc-random: Moved from ../.
25282         * modules/crypto/gc-rijndael: Moved from ../.
25283         * modules/crypto/gc-rijndael-tests: Moved from ../.
25284         * modules/crypto/gc-sha1: Moved from ../.
25285         * modules/crypto/gc-sha1-tests: Moved from ../.
25286         * modules/crypto/gc-tests: Moved from ../.
25287         * modules/crypto/hmac-md5: Moved from ../.
25288         * modules/crypto/hmac-md5-tests: Moved from ../.
25289         * modules/crypto/hmac-sha1: Moved from ../.
25290         * modules/crypto/hmac-sha1-tests: Moved from ../.
25291         * modules/crypto/md2: Moved from ../.
25292         * modules/crypto/md2-tests: Moved from ../.
25293         * modules/crypto/md4: Moved from ../.
25294         * modules/crypto/md4-tests: Moved from ../.
25295         * modules/crypto/md5: Moved from ../.
25296         * modules/crypto/md5-tests: Moved from ../.
25297         * modules/crypto/memxor: Moved from ../.
25298         * modules/crypto/rijndael: Moved from ../.
25299         * modules/crypto/rijndael-tests: Moved from ../.
25300         * modules/crypto/sha1: Moved from ../.
25301
25302 2007-03-30  James Youngman  <jay@gnu.org>
25303
25304         * tests/test-stat-time.c (prepare_test): use chmod() rather than
25305         rename() to change the ctime of a file (because ctime is unaffected
25306         by rename on jfs2 on AIX 5.1).
25307         (main): Start by doing cleanup, in case a previous run failed leaving
25308         test files behind.
25309
25310 2007-03-31  Bruno Haible  <bruno@clisp.org>
25311
25312         Support old proprietary implementations of iconv.
25313         * modules/iconv_open: New file.
25314         * lib/iconv_.h: New file.
25315         * m4/iconv_h.m4: New file.
25316         * lib/iconv_open.c: New file.
25317         * lib/iconv_open-aix.gperf: New file.
25318         * lib/iconv_open-hpux.gperf: New file.
25319         * lib/iconv_open-irix.gperf: New file.
25320         * lib/iconv_open-osf.gperf: New file.
25321         * m4/iconv_open.m4: New file.
25322         * modules/linebreak (Depends-on): Add iconv_open.
25323         * modules/striconv (Depends-on): Likewise.
25324         * modules/striconveh (Depends-on): Likewise.
25325         * modules/unicodeio (Depends-on): Likewise.
25326         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
25327         (iconv_t)(-1).
25328         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
25329         conversion if cd is (iconv_t)(-1).
25330         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
25331         is not possible.
25332
25333 2007-03-31  Bruno Haible  <bruno@clisp.org>
25334
25335         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
25336         work on Solaris either. Protect also second use of "autodetect_jp".
25337
25338 2007-03-31  Bruno Haible  <bruno@clisp.org>
25339
25340         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
25341         the function is not present.
25342
25343 2007-03-31  Bruno Haible  <bruno@clisp.org>
25344
25345         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
25346         the function is not present.
25347
25348 2007-03-31  Bruno Haible  <bruno@clisp.org>
25349
25350         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
25351         a bug in HP-UX iconv_open().
25352
25353 2007-03-31  Bruno Haible  <bruno@clisp.org>
25354
25355         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
25356         (Mathematics <math.h>): New section, add fpieee.
25357         (Input/output <stdio.h>): Add fseterr.
25358         (Mathematics <math.h>): New section, add printf-frexp.
25359         (Container data structures): Add sublist.
25360         (Core language properties): Add fpucw, inline.
25361         (Functions for greatest-width integer types <inttypes.h>): Add
25362         imaxabs, imaxdiv, inttypes.
25363         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
25364         isnanl-nolibm, ldexp.
25365         (Mathematics <math.h>): New section, add printf-frexpl.
25366         (Support for systems lacking POSIX:2001): Add fprintf-posix,
25367         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
25368         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
25369         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
25370         (Unicode string functions): Add unistr/u*-mbtoucr.
25371         (Java): Add javacomp-script, javaexec-script.
25372         (C#): Add csharpcomp-script, csharpexec-script.
25373         (Support for building libraries and executables): Add havelib,
25374         relocatable-*.
25375         (Support for maintaining and releasing projects): Renamed from
25376         'Support for maintaining and release projects'. Add announce-gen.
25377
25378 2007-03-31  Bruno Haible  <bruno@clisp.org>
25379
25380         * README: Talk primarily about git.
25381         (git and CVS): Renamed from CVS.
25382         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
25383         gnulib is available through git.
25384         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
25385
25386 2007-03-30  Bruno Haible  <bruno@clisp.org>
25387
25388         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
25389         * lib/poll_.h: Likewise.
25390         * lib/stat_.h: Likewise.
25391         * lib/sys_time_.h: Likewise.
25392         * lib/sysexit_.h: Likewise.
25393         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
25394         * lib/stdbool_.h: Likewise.
25395         * lib/byteswap_.h: Add double-inclusion guard.
25396
25397 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
25398
25399         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
25400
25401 2007-03-30  Karl Berry  <karl@gnu.org>
25402
25403         * config/srclist-update: double space after USA in the license
25404         substitution, since that's how it's usually (?) written.
25405
25406 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
25407
25408         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
25409         reported by Bruno Haible.
25410
25411 2007-03-29  Bruno Haible  <bruno@clisp.org>
25412
25413         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
25414         a bug in AIX iconv().
25415
25416 2007-03-29  Bruno Haible  <bruno@clisp.org>
25417
25418         * modules/ldexpl-tests: New file.
25419         * tests/test-ldexpl.c: New file.
25420
25421 2007-03-29  Bruno Haible  <bruno@clisp.org>
25422
25423         * lib/ldexpl.c: Include fpucw.h.
25424         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
25425         multiplication.
25426         * modules/ldexpl (Depends-on): Add fpucw.
25427
25428 2007-03-29  Bruno Haible  <bruno@clisp.org>
25429
25430         * modules/ldexpl: New file.
25431         * m4/ldexpl.m4: New file.
25432         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
25433         set.
25434         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
25435         REPLACE_LDEXPL.
25436         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
25437         REPLACE_LDEXPL.
25438         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
25439         gl_FUNC_LDEXPL_WORKS.
25440         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
25441         * modules/mathl (Files): Remove lib/ldexpl.c.
25442         (Depends-on): Add ldexpl.
25443
25444 2007-03-29  Bruno Haible  <bruno@clisp.org>
25445
25446         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
25447
25448 2007-03-29  Bruno Haible  <bruno@clisp.org>
25449
25450         * tests/test-striconveh.c (main): Don't assume that a direct conversion
25451         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
25452         and possibly also HP-UX.
25453         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
25454         work on AIX, IRIX, HP-UX, OSF/1.
25455         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
25456         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
25457         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
25458         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
25459         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
25460         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
25461
25462 2007-03-29  Bruno Haible  <bruno@clisp.org>
25463
25464         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
25465
25466 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
25467
25468         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
25469         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
25470
25471 2007-03-29  Eric Blake  <ebb9@byu.net>
25472
25473         * lib/acl-internal.h: Remove redundant include.
25474         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
25475         Cygwin when a file is locked.
25476
25477 2007-03-29  Bruno Haible  <bruno@clisp.org>
25478
25479         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
25480         file.
25481         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
25482
25483 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
25484
25485         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
25486         try to remove a parent directory if the child couldn't be removed
25487         (except for the first rmdir, which could fail because the child
25488         doesn't exist).  Problem reported by Jeff Blaine in
25489         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
25490
25491 2007-03-28  Bruno Haible  <bruno@clisp.org>
25492
25493         * lib/striconveh.c (utf8conv_carefully): New function.
25494         (mem_cd_iconveh_internal): Invoke it.
25495
25496 2007-03-28  Bruno Haible  <bruno@clisp.org>
25497
25498         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
25499         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
25500         input.
25501         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
25502         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
25503         unistr/u8-uctomb.
25504
25505 2007-03-28  Bruno Haible  <bruno@clisp.org>
25506
25507         * modules/unistr/u8-mbtoucr: New file.
25508         * lib/unistr/u8-mbtoucr.c: New file.
25509         * modules/unistr/u16-mbtoucr: New file.
25510         * lib/unistr/u16-mbtoucr.c: New file.
25511         * modules/unistr/u16-mbtoucr: New file.
25512         * lib/unistr/u16-mbtoucr.c: New file.
25513         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
25514
25515 2007-03-27  Simon Josefsson  <simon@josefsson.org>
25516             Bruno Haible  <bruno@clisp.org>
25517
25518         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
25519         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
25520         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
25521
25522         * m4/stdio_h.m4: Add stubs for vasprintf too.
25523
25524         * modules/stdio: Support vasprintf in sed command.
25525
25526         * modules/vasprintf: Depend on stdio for prototypes.  Remove
25527         vasprintf.h.  Add stdio module indicator.
25528
25529         * lib/stdio_.h: Declare asprintf and vasprintf, based on
25530         vasprintf.h.
25531
25532         * lib/vasprintf.h: File removed.
25533
25534         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
25535         * lib/vasprintf.c: Ditto.
25536         * lib/xvasprintf.c: Ditto.
25537         * tests/test-vasprintf-posix.c: Ditto.
25538         * tests/test-vasprintf.c: Ditto.
25539
25540 2007-03-27  Bruno Haible  <bruno@clisp.org>
25541
25542         Make vasnprintf multithread-safe.
25543         * lib/vasnprintf.c (decimal_point_char): New function.
25544         (VASNPRINTF): Use it.
25545         Suggested by Simon Josefsson.
25546
25547 2007-03-27  Eric Blake  <ebb9@byu.net>
25548
25549         Support sub-second birthtime on cygwin.
25550         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
25551         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
25552         (get_stat_birthtime): Also work with st_birthtim.
25553
25554 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
25555
25556         * lib/stat-time.h (USE_BIRTHTIME): Remove.
25557         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
25558         (get_stat_birthtime_ns): Do not try to use "spare" fields.
25559         (get_stat_birthtime_ns): Simplify compile-time tests.
25560         (get_stat_birthtime): Change the API to look like
25561         get_stat_mtime etc., except return a negative tv_nsec on error.
25562         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
25563         Don't check for "spare" fields.
25564         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
25565         or for struct stat.st_birthtime, as these tests aren't used.
25566         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
25567
25568 2007-03-27  Bruno Haible  <bruno@clisp.org>
25569
25570         * lib/stat-time.h: Include <sys/stat.h>.
25571
25572 2007-03-27  James Youngman  <jay@gnu.org>
25573
25574         * lib/stat-time.h (get_stat_birthtime): New function for
25575           retrieving st_birthtime as provided by UFS2 (hence *BSD).
25576         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
25577           and its variants.
25578         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
25579         * modules/stat-time-test: New file.
25580         * tests/test-stat-time.c: New test, devised by Bruno Haible.
25581
25582 2007-03-26  Bruno Haible  <bruno@clisp.org>
25583
25584         Better support of signalling NaNs.
25585         * lib/atanl.c: Include isnanl.h.
25586         (atanl): Perform test for NaN at the beginning of the function and
25587         through a call to isnanl.
25588         * lib/cosl.c: Include isnanl.h.
25589         (cosl): Perform test for NaN at the beginning of the function and
25590         through a call to isnanl.
25591         * lib/ldexpl.c: Include isnanl.h.
25592         (ldexpl): Perform test for NaN through a call to isnanl.
25593         * lib/logl.c: Include isnanl.h.
25594         (logl): Perform test for NaN at the beginning of the function and
25595         through a call to isnanl.
25596         * lib/sinl.c: Include isnanl.h.
25597         (sinl): Perform test for NaN at the beginning of the function and
25598         through a call to isnanl.
25599         * lib/sqrtl.c: Include isnanl.h.
25600         (sqrtl): Perform test for NaN at the beginning of the function and
25601         through a call to isnanl.
25602         * lib/tanl.c: Include isnanl.h.
25603         (tanl): Perform test for NaN at the beginning of the function and
25604         through a call to isnanl.
25605         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
25606         * modules/mathl (Depends-on): Add isnanl.
25607
25608 2007-03-26  Eric Blake  <ebb9@byu.net>
25609
25610         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
25611         regression in logic sense of previous patch.
25612
25613 2007-03-26  Bruno Haible  <bruno@clisp.org>
25614
25615         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
25616         unportable shell command "if ! ...".
25617         Reported by Ralf Wildenhues.
25618
25619 2007-03-25  Bruno Haible  <bruno@clisp.org>
25620
25621         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
25622         <sysexits.h> file, and only add EX_CONFIG.
25623         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
25624         absolute file name and whether it is sufficient. Substitute also
25625         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
25626         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
25627         ABSOLUTE_SYSEXITS_H into sysexits.h.
25628
25629 2007-03-25  Bruno Haible  <bruno@clisp.org>
25630
25631         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
25632         hints is NULL.
25633
25634 2007-03-25  Bruno Haible  <bruno@clisp.org>
25635
25636         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
25637         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
25638
25639 2007-03-25  Bruno Haible  <bruno@clisp.org>
25640
25641         * lib/vasnprintf.c: Include langinfo.h.
25642         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
25643         multithread-safe.
25644         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
25645         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
25646         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
25647         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25648         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25649         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25650         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25651         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
25652         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25653         Reported by Simon Josefsson.
25654
25655 2007-03-25  Bruno Haible  <bruno@clisp.org>
25656
25657         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
25658         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
25659         * modules/vasnprintf (Depends-on): Add stdint.
25660
25661 2007-03-25  Bruno Haible  <bruno@clisp.org>
25662
25663         * modules/fpieee: New file.
25664         * m4/fpieee.m4: New file.
25665         * modules/isnan-nolibm (Depends-on): Add fpieee.
25666         * modules/isnanl-nolibm (Depends-on): Add fpieee.
25667         * modules/isnanl (Depends-on): Add fpieee.
25668
25669 2007-03-25  Bruno Haible  <bruno@clisp.org>
25670
25671         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
25672
25673 2007-03-25  Bruno Haible  <bruno@clisp.org>
25674
25675         Avoid test failures on IRIX 6.5.
25676         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
25677         (main): Use it.
25678         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
25679         macros.
25680         (main): Use them.
25681
25682 2007-03-25  Bruno Haible  <bruno@clisp.org>
25683
25684         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
25685         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
25686         exists but doesn't work.
25687         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
25688         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
25689         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
25690         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
25691
25692 2007-03-25  Bruno Haible  <bruno@clisp.org>
25693
25694         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
25695         returns inf. Needed on IRIX 6.5.
25696
25697 2007-03-25  Bruno Haible  <bruno@clisp.org>
25698
25699         * tests/test-frexpl.c: Include isnanl-nolibm.h.
25700         (main): Use isnanl instead of x != x idiom.
25701         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
25702
25703         * tests/test-frexp.c: Include isnan.h.
25704         (main): Use isnan instead of x != x idiom.
25705         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
25706
25707 2007-03-25  Bruno Haible  <bruno@clisp.org>
25708
25709         * tests/test-frexp.c (NaN): New function/macro.
25710         (main): Use it instead of 0.0 / 0.0.
25711         * tests/test-isnan.c (NaN): New function/macro.
25712         (main): Use it instead of 0.0 / 0.0.
25713         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
25714         (test_function): Use it instead of 0.0 / 0.0.
25715         * tests/test-vasprintf-posix.c (NaN): New function/macro.
25716         (test_function): Use it instead of 0.0 / 0.0.
25717         * tests/test-snprintf-posix.h (NaN): New function/macro.
25718         (test_function): Use it instead of 0.0 / 0.0.
25719         * tests/test-sprintf-posix.h (NaN): New function/macro.
25720         (test_function): Use it instead of 0.0 / 0.0.
25721         * tests/test-fprintf-posix.h (NaN): New function/macro.
25722         (test_function): Use it instead of 0.0 / 0.0.
25723         * tests/test-printf-posix.h (NaN): New function/macro.
25724         (test_function): Use it instead of 0.0 / 0.0.
25725
25726         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
25727
25728 2007-03-25  Bruno Haible  <bruno@clisp.org>
25729
25730         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
25731
25732 2007-03-25  Bruno Haible  <bruno@clisp.org>
25733
25734         * lib/regexec.c (merge_state_with_log): Make static.
25735
25736 2007-03-25  Bruno Haible  <bruno@clisp.org>
25737
25738         * lib/trigl.c (kernel_rem_pio2): Make static.
25739
25740 2007-03-25  Bruno Haible  <bruno@clisp.org>
25741
25742         * lib/sincosl.c (sincosl_table): Make static.
25743
25744 2007-03-25  Bruno Haible  <bruno@clisp.org>
25745
25746         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
25747         if the compiler does not support C99.
25748
25749 2007-03-25  Bruno Haible  <bruno@clisp.org>
25750
25751         * modules/time (Makefile.am): Ensure all rule action lines start with a
25752         tab.
25753
25754 2007-03-24  Bruno Haible  <bruno@clisp.org>
25755
25756         * modules/tsearch-tests: New file.
25757         * tests/test-tsearch.sh: New file.
25758         * tests/test-tsearch.c: New file, mostly copied from glibc.
25759
25760         * modules/search-tests: New file.
25761         * tests/test-search.c: New file.
25762
25763         * modules/search: New file.
25764         * lib/search_.h: New file, incorporating lib/tsearch.h.
25765         * m4/search_h.m4: New file.
25766         * lib/tsearch.h: Remove file.
25767         * lib/tsearch.c: Include search.h instead of tsearch.h.
25768         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
25769         HAVE_TSEARCH.
25770         * modules/tsearch (Files): Remove lib/tsearch.h.
25771         (Depends-on): Add search.
25772         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
25773         (Include): Change tsearch.h into search.h.
25774
25775 2007-03-24  Bruno Haible  <bruno@clisp.org>
25776
25777         * modules/fpucw: New file.
25778         * lib/fpucw.h: New file.
25779         * lib/frexp.c: Include fpucw.h.
25780         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
25781         (FUNC): Use them.
25782         * lib/printf-frexp.c: Include fpucw.h.
25783         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
25784         (FUNC): Use them.
25785         * lib/vasnprintf.c: Include fpucw.h.
25786         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
25787         'long double' calculations.
25788         * tests/test-frexpl.c: Include fpucw.h.
25789         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
25790         * tests/test-printf-frexpl.c: Include fpucw.h.
25791         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
25792         * modules/frexpl (Depends-on): Add fpucw.
25793         * modules/printf-frexpl (Depends-on): Likewise.
25794         * modules/fprintf-posix (Depends-on): Likewise.
25795         * modules/snprintf-posix (Depends-on): Likewise.
25796         * modules/sprintf-posix (Depends-on): Likewise.
25797         * modules/vasnprintf-posix (Depends-on): Likewise.
25798         * modules/vasprintf-posix (Depends-on): Likewise.
25799         * modules/vfprintf-posix (Depends-on): Likewise.
25800         * modules/vsnprintf-posix (Depends-on): Likewise.
25801         * modules/vsprintf-posix (Depends-on): Likewise.
25802         * modules/frexpl-tests (Depends-on): Likewise.
25803         * modules/printf-frexpl-tests (Depends-on): Likewise.
25804
25805 2007-03-24  Bruno Haible  <bruno@clisp.org>
25806
25807         * lib/float+.h: New file.
25808         * lib/isnan.c: Include float+.h.
25809         (SIZE): New macro.
25810         (FUNC): Compare only SIZE bytes of the value.
25811         * lib/vasnprintf.c: Include float+.h.
25812         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
25813         SIZEOF_LDBL or SIZEOF_DBL bytes.
25814         * modules/isnan-nolibm (Files): Add lib/float+.h.
25815         * modules/isnanl-nolibm (Files): Add lib/float+.h.
25816         * modules/isnanl (Files): Add lib/float+.h.
25817         * modules/vasnprintf (Files): Add lib/float+.h.
25818
25819 2007-03-24  Bruno Haible  <bruno@clisp.org>
25820
25821         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
25822         include isnanl-nolibm.h.
25823
25824 2007-03-24  Bruno Haible  <bruno@clisp.org>
25825
25826         * tests/test-read-file.c (main): Don't produce spurious output for
25827         expected situations. Make the test fail if it encountered unexpected
25828         results.
25829
25830 2007-03-24  Bruno Haible  <bruno@clisp.org>
25831
25832         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
25833         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
25834
25835 2007-03-24  Bruno Haible  <bruno@clisp.org>
25836
25837         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
25838
25839 2007-03-24  Bruno Haible  <bruno@clisp.org>
25840
25841         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
25842         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
25843
25844         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
25845         * modules/utf8-ucs4: Turn into a symbolic link to module
25846         unistr/u8-mbtouc.
25847
25848         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
25849         utf8-ucs4-unsafe.
25850         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
25851         unistr/u8-mbtouc-unsafe.
25852
25853         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
25854         * modules/utf16-ucs4: Turn into a symbolic link to module
25855         unistr/u16-mbtouc.
25856
25857         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
25858         utf16-ucs4-unsafe.
25859         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
25860         unistr/u16-mbtouc-unsafe.
25861
25862         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
25863         * modules/ucs4-utf8: Turn into a symbolic link to module
25864         unistr/u8-ubtomb.
25865
25866         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
25867         * modules/ucs4-utf16: Turn into a symbolic link to module
25868         unistr/u16-ubtomb.
25869
25870 2007-03-24  Bruno Haible  <bruno@clisp.org>
25871
25872         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
25873         Enable the function only if HAVE_INLINE.
25874         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
25875         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
25876         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
25877         Enable the function only if HAVE_INLINE.
25878         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
25879         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
25880         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
25881         Enable the function only if HAVE_INLINE.
25882         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
25883         Enable the function only if HAVE_INLINE.
25884         * modules/utf8-ucs4: Update.
25885         * modules/utf8-ucs4-unsafe: Update.
25886         * modules/utf16-ucs4: Update.
25887         * modules/utf16-ucs4-unsafe: Update.
25888         * modules/ucs4-utf8: Update.
25889         * modules/ucs4-utf16: Update.
25890
25891 2007-03-24  Bruno Haible  <bruno@clisp.org>
25892
25893         * lib/utf8-ucs4.h: Remove file.
25894         * lib/utf8-ucs4-unsafe.h: Remove file.
25895         * lib/utf16-ucs4.h: Remove file.
25896         * lib/utf16-ucs4-unsafe.h: Remove file.
25897         * lib/ucs4-utf8.h: Remove file.
25898         * lib/ucs4-utf16.h: Remove file.
25899         * lib/unistr.h: Include their previous contents.
25900         * m4/utf-ucs4.m4: Remove file.
25901         * m4/ucs4-utf.m4: Remove file.
25902         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
25903         (Depends-on): Add unistr/base.
25904         (configure.ac): Remove gl_UTF_UCS4.
25905         (Makefile.am): Update.
25906         (Include): Change to unistr.h.
25907         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
25908         (Depends-on): Add unistr/base.
25909         (configure.ac): Remove gl_UTF_UCS4.
25910         (Makefile.am): Update.
25911         (Include): Change to unistr.h.
25912         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
25913         (Depends-on): Add unistr/base.
25914         (configure.ac): Remove gl_UTF_UCS4.
25915         (Makefile.am): Update.
25916         (Include): Change to unistr.h.
25917         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
25918         (Depends-on): Add unistr/base.
25919         (configure.ac): Remove gl_UTF_UCS4.
25920         (Makefile.am): Update.
25921         (Include): Change to unistr.h.
25922         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
25923         (Depends-on): Add unistr/base.
25924         (configure.ac): Remove gl_UCS4_UTF.
25925         (Makefile.am): Update.
25926         (Include): Change to unistr.h.
25927         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
25928         (Depends-on): Add unistr/base.
25929         (configure.ac): Remove gl_UCS4_UTF.
25930         (Makefile.am): Update.
25931         (Include): Change to unistr.h.
25932         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
25933         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
25934         utf8-ucs4-unsafe.h.
25935         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
25936         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
25937         utf16-ucs4-unsafe.h.
25938         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
25939         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
25940         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
25941         * lib/unistr/u8-strchr.c: Likewise.
25942         * lib/unistr/u8-strrchr.c: Likewise.
25943         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
25944         * lib/unistr/u16-strchr.c: Likewise.
25945         * lib/unistr/u16-strrchr.c: Likewise.
25946         * lib/striconveh.c: Update.
25947         * lib/linebreak.c: Update.
25948
25949 2007-03-24  Bruno Haible  <bruno@clisp.org>
25950
25951         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
25952         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
25953
25954 2007-03-22  Bruno Haible  <bruno@clisp.org>
25955
25956         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
25957
25958 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
25959
25960         * MODULES.html.sh (File system functions): New module write-any-file.
25961         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
25962         * m4/write-any-file.m4: New files.
25963
25964 2007-03-23  Eric Blake  <ebb9@byu.net>
25965
25966         * gnulib-tool: Rearrange space-tab sequences, since some editors
25967         like to eat them.
25968
25969 2007-03-23  Eric Blake  <ebb9@byu.net>
25970
25971         * lib/version-etc.c (version_etc_va): Update license wording to
25972         be more concise.  Recommended by Richard Stallman.
25973
25974 2007-03-22  Bruno Haible  <bruno@clisp.org>
25975
25976         * lib/poll.c (MSG_PEEK): New fallback definition.
25977
25978 2007-03-22  Bruno Haible  <bruno@clisp.org>
25979
25980         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
25981         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
25982         (main): Update.
25983         Fixes a compilation error on BeOS.
25984
25985 2007-03-22  Bruno Haible  <bruno@clisp.org>
25986
25987         * modules/frexpl-tests: New file.
25988         * tests/test-frexpl.c: New file.
25989
25990         * modules/frexpl: New file.
25991         * m4/frexpl.m4: New file.
25992         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
25993         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
25994         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
25995         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
25996         (Depends-on): Add frexpl. Remove isnanl-nolibm.
25997         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
25998
25999 2007-03-22  Bruno Haible  <bruno@clisp.org>
26000
26001         * lib/frexpl.c: Share code with lib/frexp.c.
26002         * modules/mathl (Files): Add lib/frexp.c.
26003         (Depends-on): Add isnanl-nolibm.
26004
26005 2007-03-22  Bruno Haible  <bruno@clisp.org>
26006
26007         * modules/printf-frexp (Files): Add m4/frexp.m4.
26008         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
26009         only if the found frexp function actually works.
26010
26011 2007-03-22  Bruno Haible  <bruno@clisp.org>
26012
26013         * lib/frexp.c: Remove older implementation that uses divisions.
26014
26015 2007-03-21  Bruno Haible  <bruno@clisp.org>
26016
26017         * modules/frexp-tests: New file.
26018         * tests/test-frexp.c: New file.
26019
26020         * modules/frexp: New file.
26021         * lib/frexp.c: New file.
26022         * m4/frexp.m4: New file.
26023         * lib/math_.h (frexp): New declaration.
26024         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
26025         REPLACE_FREXP.
26026         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
26027
26028 2007-03-21  Bruno Haible  <bruno@clisp.org>
26029
26030         * modules/isnanl-tests: New file.
26031         * tests/test-isnanl.c: New file.
26032
26033         * modules/isnanl: New file.
26034         * lib/isnanl.h: New file.
26035         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
26036         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
26037         gl_FUNC_ISNANL_WORKS.
26038         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
26039         New macros.
26040
26041 2007-03-21  Bruno Haible  <bruno@clisp.org>
26042
26043         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
26044         lib/isnanl.h.
26045         (Include): Update.
26046         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
26047         * lib/vasnprintf.c: Update.
26048         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
26049         tests/test-isnanl.h, remove tests/test-isnanl.c.
26050         (Makefile.am): Update.
26051         * tests/test-isnanl-nolibm.c: New file.
26052         * tests/test-isnanl.h: New file.
26053         * tests/test-isnanl.c: Remove file.
26054
26055 2007-03-21  Jim Meyering  <jim@meyering.net>
26056
26057         When trying to open ".", treat ESTALE like EACCES.
26058         * lib/savewd.c (savewd_save): Resort to forking not just upon
26059         failure with EACCES, but also when errno is ESTALE.
26060
26061 2007-03-20  Bruno Haible  <bruno@clisp.org>
26062
26063         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
26064         Needed on AIX 5.1. Reported by Matthew Woehlke.
26065
26066 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
26067
26068         Suggestions by Bruno Haible:
26069         * lib/acl-internal.h: Include "gettext.h" rather than rolling
26070         our own.
26071         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
26072         * modules/acl (Depends-on): Add gettext.
26073
26074 2007-03-19  Bruno Haible  <bruno@clisp.org>
26075
26076         * modules/iconvme: Remove file.
26077         * lib/iconvme.h: Remove file.
26078         * lib/iconvme.c: Remove file.
26079         * m4/iconvme.m4: Remove file.
26080
26081 2007-03-19  Bruno Haible  <bruno@clisp.org>
26082
26083         * doc/relocatable-maint.texi: Break long shell script line.
26084         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
26085
26086 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
26087
26088         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
26089         handle file_has_acl.
26090         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
26091         * lib/acl.c: Move header inclusions and related macro defns into
26092         lib/acl-internal.h.
26093         (S_ISLNK): Remove defn, since that's now done for us.
26094         (file_has_acl): Move to lib/file-has-acl.c.
26095         Call acl_trivial if available.  This is the crucial part of the fix.
26096         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
26097         shared within the library.  Rewrite a bit, partly to make it compatible
26098         with the GNU coding style.
26099         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
26100         Remove unnecessary double-quotes.
26101         Don't test for acl_to_text; the build will catch that.
26102         Replace acl_entries if it doesn't exist and it is needed.
26103         Check for -lsec and acl_trivial (as used on Solaris 10).
26104         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
26105         lib/file-has-acl.c.
26106         (Depends-on): Add sys_stat, for S_ISLNK.
26107
26108 2007-03-19  Ben Pfaff  <blp@gnu.org>
26109
26110         * doc/gnulib.texi: Fix typos.
26111         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
26112
26113 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
26114
26115         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
26116         If size is zero here, buf must be zero.
26117
26118 2007-03-19  Simon Josefsson  <simon@josefsson.org>
26119
26120         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
26121         <bruno@clisp.org>.
26122
26123 2007-03-18  Bruno Haible  <bruno@clisp.org>
26124
26125         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
26126         Suggested by Eric Blake.
26127
26128 2007-03-18  Ben Pfaff  <blp@gnu.org>
26129
26130         * doc/relocatable.texi: Recommend using as prefix a directory
26131         that does not exist and will never be created.  Based on
26132         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
26133         and others.
26134
26135 2007-03-17  Bruno Haible  <bruno@clisp.org>
26136
26137         * lib/fchownat.c: Include lchown.h.
26138
26139 2007-03-17  Bruno Haible  <bruno@clisp.org>
26140
26141         Fix endless loop when the given allocated size was > INT_MAX.
26142         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
26143         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
26144         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
26145         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
26146         * lib/sprintf.c (sprintf): Likewise.
26147
26148 2007-03-17  Bruno Haible  <bruno@clisp.org>
26149
26150         * tests/test-argp-2.sh (func_compare): Output a context diff.
26151
26152 2007-03-17  Bruno Haible  <bruno@clisp.org>
26153
26154         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
26155         locale's decimal-point character.
26156
26157 2007-03-17  Bruno Haible  <bruno@clisp.org>
26158
26159         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
26160         before comparing it. Needed because on some platforms (e.g. x86) a
26161         'long double' occupies less bytes than sizeof (long double).
26162
26163 2007-03-17  Bruno Haible  <bruno@clisp.org>
26164
26165         * tests/test-crc.c (main): Make printf statements 64-bit clean.
26166         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
26167         * tests/test-getaddrinfo.c (simple): Likewise.
26168         * tests/test-read-file.c (main): Likewise.
26169
26170 2007-03-17  Bruno Haible  <bruno@clisp.org>
26171
26172         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
26173
26174 2007-03-17  Bruno Haible  <bruno@clisp.org>
26175
26176         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
26177         unused variable.
26178
26179 2007-03-17  Bruno Haible  <bruno@clisp.org>
26180
26181         * tests/test-c-strcasecmp.c: Include c-strcase.h.
26182         * tests/test-c-strncasecmp.c: Likewise.
26183
26184 2007-03-17  Bruno Haible  <bruno@clisp.org>
26185
26186         * modules/stdlib (Depends-on): Add unistd.
26187         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
26188         Needed for MacOS X 10.3.
26189
26190 2007-03-17  Bruno Haible  <bruno@clisp.org>
26191
26192         * lib/unistr/u-strdup.h: Include <stdlib.h>.
26193
26194 2007-03-17  Bruno Haible  <bruno@clisp.org>
26195
26196         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
26197
26198 2007-03-17  Bruno Haible  <bruno@clisp.org>
26199
26200         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
26201         to reflect files copied from gnulib (with or without modifications).
26202         Suggested by Jim Meyering.
26203
26204 2007-03-17  Eric Blake  <ebb9@byu.net>
26205
26206         * NEWS: Document stdlib change from 2007-02-18.
26207
26208 2007-03-17  Jim Meyering  <jim@meyering.net>
26209
26210         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
26211         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
26212         someone uses a name containing shell meta-characters.
26213         Reported by Alfred M. Szmidt.
26214
26215         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
26216
26217 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
26218
26219         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
26220         and copy gettext configuration files only if configure.ac contains
26221         a use of AM_GNU_GETTEXT_VERSION.
26222
26223 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
26224
26225         * build-aux/bootstrap (gnulib_name): New variable.
26226         (gnulib_tool_options): Use it.
26227
26228 2007-03-13  Simon Josefsson  <simon@josefsson.org>
26229
26230         * tests/test-des.c: Use new namespace.
26231
26232 2007-03-15  Bruno Haible  <bruno@clisp.org>
26233
26234         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
26235         Reported by James Youngman <jay@gnu.org>.
26236
26237 2007-03-15  Bruno Haible  <bruno@clisp.org>
26238
26239         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
26240         declared prototype. Needed with cc on OSF/1 5.1.
26241
26242 2007-03-15  Bruno Haible  <bruno@clisp.org>
26243
26244         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
26245         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
26246         (struct gl_list_implementation): Add dispose_fn argument to the
26247         'create_empty', 'create' methods.
26248         (struct gl_list_impl_base): Add field 'dispose_fn'.
26249         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
26250         argument.
26251         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
26252         dispose_fn argument.
26253         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
26254         dispose_fn on the dropped values.
26255         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
26256         dispose_fn argument.
26257         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
26258         dropped values.
26259         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
26260         (gl_tree_remove_node): Call dispose_fn on the dropped value.
26261         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
26262         (gl_tree_remove_node): Call dispose_fn on the dropped value.
26263         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
26264         argument.
26265         (gl_tree_list_free): Call dispose_fn on the dropped values.
26266         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
26267         the dropped values.
26268         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
26269         Add dispose_fn argument.
26270         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
26271         Call dispose_fn on the dropped values.
26272         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
26273         Add dispose_fn argument.
26274         (gl_sublist_create): Initialize the 'dispose_fn' field.
26275         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
26276         * tests/test-array_list.c (main): Update.
26277         * tests/test-carray_list.c (main): Update.
26278         * tests/test-avltree_list.c (main): Update.
26279         * tests/test-rbtree_list.c (main): Update.
26280         * tests/test-avltreehash_list.c (main): Update.
26281         * tests/test-rbtreehash_list.c (main): Update.
26282         * tests/test-linked_list.c (main): Update.
26283         * tests/test-linkedhash_list.c (main): Update.
26284         * tests/test-array_oset.c (main): Update.
26285
26286 2007-03-15  Bruno Haible  <bruno@clisp.org>
26287
26288         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
26289         (gl_oset_create_empty): Add dispose_fn argument.
26290         (struct gl_oset_implementation): Add dispose_fn argument to
26291         'create_empty' method.
26292         (struct gl_oset_impl_base): Add dispose_fn field.
26293         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
26294         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
26295         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
26296         values.
26297         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
26298         (gl_tree_oset_free): Call dispose_fn on the dropped values.
26299         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
26300         dropped value.
26301         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
26302         dropped value.
26303         * tests/test-array_oset.c (main): Update.
26304         * tests/test-avltree_oset.c (main): Update.
26305         * tests/test-rbtree_oset.c (main): Update.
26306         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
26307
26308 2007-03-13  Bruno Haible  <bruno@clisp.org>
26309
26310         * tests/test-stdbool.c (i): Update after last patch.
26311
26312 2007-03-12  Bruno Haible  <bruno@clisp.org>
26313
26314         * lib/quotearg.c: Include <wctype.h> early, before the definition of
26315         the iswprint macro. Needed on Solaris 2.5.1.
26316
26317 2007-03-12  Bruno Haible  <bruno@clisp.org>
26318
26319         * tests/test-printf-frexp.c (main): Declare x as volatile.
26320
26321 2007-03-12  Simon Josefsson  <simon@josefsson.org>
26322
26323         * doc/gnulib.texi (Build robot for gnulib): New section.
26324
26325 2007-03-12  Jim Meyering  <jim@meyering.net>
26326
26327         * build-aux/bootstrap: New file.
26328         * build-aux/bootstrap.conf: New file, from coreutils.
26329
26330 2007-03-11  Bruno Haible  <bruno@clisp.org>
26331
26332         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
26333
26334 2007-03-12  Simon Josefsson  <simon@josefsson.org>
26335
26336         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
26337         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
26338         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
26339
26340 2007-03-11  Bruno Haible  <bruno@clisp.org>
26341
26342         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
26343         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
26344
26345 2007-03-11  Bruno Haible  <bruno@clisp.org>
26346
26347         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
26348         formula. Needed for SunPRO C 5.0.
26349
26350 2007-03-11  Bruno Haible  <bruno@clisp.org>
26351
26352         * modules/long-options (Depends-on): Add getopt.
26353
26354 2007-03-11  Bruno Haible  <bruno@clisp.org>
26355
26356         * modules/modechange (Depends-on): Add stdbool.
26357
26358 2007-03-11  Bruno Haible  <bruno@clisp.org>
26359
26360         * modules/i-ring (Depends-on): Add stdbool.
26361
26362 2007-03-11  Bruno Haible  <bruno@clisp.org>
26363
26364         * modules/gc-des (Depends-on): Add stdbool.
26365
26366 2007-03-11  Bruno Haible  <bruno@clisp.org>
26367
26368         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
26369
26370 2007-03-11  Bruno Haible  <bruno@clisp.org>
26371
26372         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
26373
26374 2007-03-11  Bruno Haible  <bruno@clisp.org>
26375
26376         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
26377
26378 2007-03-11  Bruno Haible  <bruno@clisp.org>
26379
26380         * lib/vasnprintf.c (sprintf): Undefine.
26381
26382 2007-03-11  Bruno Haible  <bruno@clisp.org>
26383
26384         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
26385         initializers in SunPRO C and Compaq C compilers.
26386
26387 2007-03-11  Bruno Haible  <bruno@clisp.org>
26388
26389         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
26390         decrementing code ANSI C compliant.
26391
26392 2007-03-11  Bruno Haible  <bruno@clisp.org>
26393
26394         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
26395         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
26396
26397 2007-03-11  Bruno Haible  <bruno@clisp.org>
26398
26399         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
26400         <stdbool.h> substitute doesn't pass.
26401
26402 2007-03-11  Bruno Haible  <bruno@clisp.org>
26403
26404         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
26405
26406 2007-03-11  Bruno Haible  <bruno@clisp.org>
26407
26408         * gnulib-tool (func_create_megatestdir): Create also an autobuild
26409         script, for submission to autobuild.josefsson.org.
26410
26411 2007-03-10  Bruno Haible  <bruno@clisp.org>
26412
26413         * modules/canonicalize-lgpl-tests: New file.
26414         * tests/test-canonicalize-lgpl.sh: New file.
26415         * tests/test-canonicalize-lgpl.c: New file.
26416
26417         * modules/c-strcase-tests: New file.
26418         * tests/test-c-strcase.sh: New file.
26419         * tests/test-c-strcasecmp.c: New file.
26420         * tests/test-c-strncasecmp.c: New file.
26421
26422         * modules/atexit-tests: New file.
26423         * tests/test-atexit.sh: New file.
26424         * tests/test-atexit.c: New file.
26425
26426 2007-03-10  Bruno Haible  <bruno@clisp.org>
26427
26428         * tests/test-binary-io.sh: Use temporary filenames that are not so
26429         likely to clash with those of other tests (in a parallel make).
26430         * tests/test-binary-io.c: Likewise.
26431
26432 2007-03-10  Bruno Haible  <bruno@clisp.org>
26433
26434         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
26435         fallback; use #error instead.
26436         Suggested by Simon Josefsson.
26437
26438 2007-03-10  Bruno Haible  <bruno@clisp.org>
26439
26440         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
26441         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
26442         first and the last.
26443
26444 2007-03-10  Bruno Haible  <bruno@clisp.org>
26445
26446         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
26447
26448 2007-03-10  Bruno Haible  <bruno@clisp.org>
26449
26450         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
26451         "make distcheck".
26452         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
26453         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
26454         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
26455
26456 2007-03-10  Bruno Haible  <bruno@clisp.org>
26457
26458         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
26459         variable.
26460         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
26461         variable.
26462
26463 2007-03-09  Eric Blake  <ebb9@byu.net>
26464         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
26465
26466         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
26467         types are not being provided by gnulib.
26468         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
26469         types are supported.
26470
26471 2007-03-10  Bruno Haible  <bruno@clisp.org>
26472
26473         * lib/stdio_.h (__attribute__): New macro.
26474         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
26475         vsprintf): Specify __attribute__ __format__ for GCC.
26476         Suggested by Eric Blake.
26477
26478 2007-03-09  Bruno Haible  <bruno@clisp.org>
26479
26480         * modules/printf-posix-tests: New file.
26481         * tests/test-printf-posix.sh: New file.
26482         * tests/test-printf-posix.c: New file.
26483
26484         * modules/printf-posix: New file.
26485         * lib/printf.c: New file.
26486         * m4/printf-posix-rpl.m4: New file.
26487         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
26488         REPLACE_PRINTF.
26489         * lib/stdio_.h (printf): New declaration.
26490         (format, __format__, ____printf____, ____scanf____, ____strftime____,
26491         ____strfmon____): New macros.
26492         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
26493         REPLACE_PRINTF.
26494
26495 2007-03-09  Bruno Haible  <bruno@clisp.org>
26496
26497         * tests/test-vasnprintf-posix2.sh: New file.
26498         * tests/test-vasnprintf-posix2.c: New file.
26499         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
26500         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
26501         (Makefile.am): Activate test-vasnprintf-posix2.sh.
26502
26503         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
26504         a locale dependent decimal point, rather than always '.'.
26505
26506 2007-03-09  Eric Blake  <ebb9@byu.net>
26507
26508         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
26509         spite of platforms like Tandem/NSK that define it to -1.
26510
26511 2007-03-08  Bruno Haible  <bruno@clisp.org>
26512
26513         * modules/vprintf-posix-tests: New file.
26514         * tests/test-vprintf-posix.sh: New file.
26515         * tests/test-vprintf-posix.c: New file.
26516         * tests/test-printf-posix.h: New file.
26517
26518         * modules/vprintf-posix: New file.
26519         * lib/vprintf.c: New file.
26520         * m4/vprintf-posix.m4: New file.
26521         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
26522         REPLACE_VPRINTF.
26523         * lib/stdio_.h (vprintf): New declaration.
26524         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
26525         REPLACE_VPRINTF.
26526
26527 2007-03-08  Bruno Haible  <bruno@clisp.org>
26528
26529         * modules/fprintf-posix-tests: New file.
26530         * tests/test-fprintf-posix.sh: New file.
26531         * tests/test-fprintf-posix.c: New file.
26532
26533         * modules/fprintf-posix: New file.
26534         * lib/fprintf.c: New file.
26535         * m4/fprintf-posix.m4: New file.
26536         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
26537         REPLACE_FPRINTF.
26538         * lib/stdio_.h (fprintf): New declaration.
26539         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
26540         REPLACE_FPRINTF.
26541
26542 2007-03-08  Bruno Haible  <bruno@clisp.org>
26543
26544         * modules/vfprintf-posix-tests: New file.
26545         * tests/test-vfprintf-posix.sh: New file.
26546         * tests/test-vfprintf-posix.c: New file.
26547         * tests/test-fprintf-posix.h: New file.
26548         * tests/test-fprintf-posix.out: New file.
26549
26550         * modules/vfprintf-posix: New file.
26551         * lib/vfprintf.c: New file.
26552         * m4/vfprintf-posix.m4: New file.
26553         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
26554         REPLACE_VFPRINTF.
26555         * lib/stdio_.h (vfprintf): New declaration.
26556         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
26557         REPLACE_VFPRINTF.
26558
26559 2007-03-08  Bruno Haible  <bruno@clisp.org>
26560
26561         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
26562
26563 2007-03-08  Bruno Haible  <bruno@clisp.org>
26564
26565         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
26566         instead of 'expr' invocations.
26567         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
26568         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
26569         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
26570         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
26571         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
26572         Suggested by Paul Eggert.
26573
26574 2007-03-08  Bruno Haible  <bruno@clisp.org>
26575
26576         * modules/fseterr-tests: New file.
26577         * tests/test-fseterr.c: New file.
26578
26579         * modules/fseterr: New file.
26580         * lib/fseterr.h: New file.
26581         * lib/fseterr.c: New file.
26582
26583 2007-03-08  Bruno Haible  <bruno@clisp.org>
26584
26585         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
26586         * lib/getopt_.h: Likewise.
26587         * lib/mbswidth.h: Likewise.
26588         * lib/setenv.h: Likewise.
26589         * lib/vasnprintf.h: Likewise.
26590         * lib/vasprintf.h: Likewise.
26591         * lib/verror.h: Likewise.
26592         * lib/xsetenv.h: Likewise.
26593         * lib/xvasprintf.h: Likewise.
26594
26595 2007-03-08  Jim Meyering  <jim@meyering.net>
26596
26597         * users.txt: Add parted.
26598
26599         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
26600
26601 2007-03-07  Bruno Haible  <bruno@clisp.org>
26602
26603         * m4/printf.m4: Make the shell script snippets copy&pastable.
26604
26605 2007-03-02  Bruno Haible  <bruno@clisp.org>
26606
26607         * lib/netinet_in_.h: New file.
26608         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
26609         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
26610         * modules/netinet_in (Files): Add lib/netinet_in_.h.
26611         (Depends-on): Add absolute-header.
26612         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
26613         into netinet/in.h.
26614
26615 2007-03-03  Bruno Haible  <bruno@clisp.org>
26616
26617         * lib/sys_select_.h: New file.
26618         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
26619         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
26620         * modules/sys_select (Files): Add lib/sys_select_.h.
26621         (Depends-on): Add absolute-header.
26622         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
26623         into sys/select.h.
26624
26625 2007-03-02  Bruno Haible  <bruno@clisp.org>
26626
26627         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
26628         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
26629         values.
26630         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
26631         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
26632         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
26633         * modules/sys_socket (Depends-on): Add absolute-header.
26634         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
26635         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
26636         (Include): Remove requirement of inclusion of <sys/types.h>.
26637
26638 2007-03-02  Bruno Haible  <bruno@clisp.org>
26639
26640         * lib/byteswap_.h (bswap_32): Fix formula.
26641
26642 2007-03-06  Bruno Haible  <bruno@clisp.org>
26643
26644         * modules/sprintf-posix-tests: New file.
26645         * tests/test-sprintf-posix.c: New file.
26646
26647         * modules/sprintf-posix: New file.
26648         * lib/sprintf.c: New file.
26649         * m4/sprintf-posix.m4: New file.
26650         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
26651         REPLACE_SPRINTF.
26652         * lib/stdio_.h (sprintf): New declaration.
26653         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
26654         REPLACE_SPRINTF.
26655
26656 2007-03-06  Bruno Haible  <bruno@clisp.org>
26657
26658         * modules/vsprintf-posix-tests: New file.
26659         * tests/test-vsprintf-posix.c: New file.
26660         * tests/test-sprintf-posix.h: New file.
26661
26662         * modules/vsprintf-posix: New file.
26663         * lib/vsprintf.c: New file.
26664         * m4/vsprintf-posix.m4: New file.
26665         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
26666         REPLACE_VSPRINTF.
26667         * lib/stdio_.h (vsprintf): New declaration.
26668         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
26669         REPLACE_VSPRINTF.
26670
26671 2007-03-06  Bruno Haible  <bruno@clisp.org>
26672
26673         * modules/vsnprintf (Depend-on): Remove minmax.
26674
26675 2007-03-06  Bruno Haible  <bruno@clisp.org>
26676
26677         * modules/snprintf-posix-tests: New file.
26678         * tests/test-snprintf-posix.c: New file.
26679
26680         * modules/snprintf-posix: New file.
26681         * m4/snprintf-posix.m4: New file.
26682         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
26683         gl_FUNC_SNPRINTF.
26684         (gl_FUNC_SNPRINTF): Invoke it.
26685         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
26686         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
26687         is set.
26688         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
26689
26690 2007-03-06  Bruno Haible  <bruno@clisp.org>
26691
26692         * modules/vsnprintf-posix-tests: New file.
26693         * tests/test-vsnprintf-posix.c: New file.
26694         * tests/test-snprintf-posix.h: New file.
26695
26696         * modules/vsnprintf-posix: New file.
26697         * m4/vsnprintf-posix.m4: New file.
26698         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
26699         gl_FUNC_VSNPRINTF.
26700         (gl_FUNC_VSNPRINTF): Invoke it.
26701         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
26702         * lib/stdio_.h (vsnprintf): Define as a replacement if
26703         REPLACE_VSNPRINTF is set.
26704         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
26705
26706 2007-03-06  Bruno Haible  <bruno@clisp.org>
26707
26708         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
26709         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
26710
26711 2007-03-06  Bruno Haible  <bruno@clisp.org>
26712
26713         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
26714         (asinl): Declare also if HAVE_DECL_ASINL is set.
26715         (atanl): Declare also if HAVE_DECL_ATANL is set.
26716         (ceill): Declare also if HAVE_DECL_CEILL is set.
26717         (cosl): Declare also if HAVE_DECL_COSL is set.
26718         (expl): Declare also if HAVE_DECL_EXPL is set.
26719         (floorl): Declare also if HAVE_DECL_FLOORL is set.
26720         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
26721         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
26722         (logl): Declare also if HAVE_DECL_LOGL is set.
26723         (sinl): Declare also if HAVE_DECL_SINL is set.
26724         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
26725         (tanl): Declare also if HAVE_DECL_TANL is set.
26726         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
26727         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
26728         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
26729         declaration of frexpl, ldexpl.
26730         * modules/printf-frexpl (Depends-on): Add math.
26731         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
26732
26733 2007-03-05  Bruno Haible  <bruno@clisp.org>
26734
26735         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
26736         frexpl and ldexpl are declared.
26737         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
26738
26739 2007-03-05  Bruno Haible  <bruno@clisp.org>
26740
26741         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
26742         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
26743
26744 2007-03-05  Bruno Haible  <bruno@clisp.org>
26745
26746         * lib/stdio_.h: Include <stddef.h>.
26747
26748 2007-03-05  Bruno Haible  <bruno@clisp.org>
26749
26750         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
26751
26752 2007-03-05  Bruno Haible  <bruno@clisp.org>
26753
26754         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
26755         NetBSD 4, from Ralf Wildenhues.
26756
26757 2007-03-04  Bruno Haible  <bruno@clisp.org>
26758
26759         * lib/vasprintf.h: Update #if logic for the case when the functions
26760         exist but are overridden.
26761
26762 2007-03-04  Bruno Haible  <bruno@clisp.org>
26763
26764         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
26765         implementations: glibc-2.4 and MacOS X 10.3.
26766         * tests/test-vasnprintf-posix.c (test_function): Test also the case
26767         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
26768         * tests/test-vasprintf-posix.c (test_function): Likewise.
26769
26770 2007-03-04  Bruno Haible  <bruno@clisp.org>
26771
26772         * modules/vasprintf-posix-tests: New file.
26773         * tests/test-vasprintf-posix.c: New file.
26774
26775         * modules/vasprintf-posix: New file.
26776         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
26777         defined.
26778         * m4/vasprintf-posix.m4: New file.
26779         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
26780         gl_FUNC_VASPRINTF.
26781         (gl_FUNC_VASPRINTF): Invoke it.
26782         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
26783         here.
26784         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
26785
26786 2007-03-04  Bruno Haible  <bruno@clisp.org>
26787
26788         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
26789         REPLACE_GETTIMEOFDAY.
26790         * modules/sys_time (Makefile.am): Likewise.
26791         * m4/sys_time_h.m4: Likewise.
26792         * m4/gettimeofday.m4: Likewise.
26793
26794 2007-03-04  Bruno Haible  <bruno@clisp.org>
26795
26796         * modules/vasnprintf-posix-tests: New file.
26797         * tests/test-vasnprintf-posix.c: New file.
26798
26799         * modules/vasnprintf-posix: New file.
26800         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
26801         printf-frexpl.h.
26802         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
26803         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
26804         REPLACE_VASNPRINTF is defined.
26805         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
26806         gl_FUNC_VASNPRINTF.
26807         (gl_FUNC_VASNPRINTF): Invoke it.
26808         * m4/vasnprintf-posix.m4: New file.
26809         * m4/printf.m4: New file.
26810
26811 2007-03-04  Bruno Haible  <bruno@clisp.org>
26812
26813         Compile progreloc.c only if --enable-relocatable is specified.
26814         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
26815         if --enable-relocatable was specified.
26816         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
26817         lib_SOURCES.
26818
26819 2007-03-04  Jim Meyering  <jim@meyering.net>
26820
26821         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
26822         Use it consistently, rather than enumerating errno constants.
26823
26824 2007-03-04  Bruno Haible  <bruno@clisp.org>
26825
26826         * modules/xvasprintf-tests: New file.
26827         * tests/test-xvasprintf.c: New file.
26828
26829         * modules/vasprintf-tests: New file.
26830         * tests/test-vasprintf.c: New file.
26831
26832         * modules/vasnprintf-tests: New file.
26833         * tests/test-vasnprintf.c: New file.
26834
26835         * modules/vsnprintf-tests: New file.
26836         * tests/test-vsnprintf.c: New file.
26837
26838         * modules/snprintf-tests: New file.
26839         * tests/test-snprintf.c: New file.
26840
26841 2007-03-04  Bruno Haible  <bruno@clisp.org>
26842
26843         Compile relocatable.c only if --enable-relocatable is specified.
26844         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
26845         gl_RELOCATABLE_LIBRARY.
26846         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
26847         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
26848         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
26849         gl_RELOCATABLE_LIBRARY.
26850         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
26851         (Makefile.am): Remove lib_SOURCES.
26852         * modules/relocatable-lib-lgpl (configure.ac): Invoke
26853         gl_RELOCATABLE_LIBRARY.
26854         (Makefile.am): Remove lib_SOURCES.
26855         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
26856         always.
26857         * modules/relocatable-prog-wrapper (configure.ac): Invoke
26858         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
26859
26860 2007-03-04  Bruno Haible  <bruno@clisp.org>
26861
26862         * modules/argmatch-tests: New file.
26863         * tests/test-argmatch.c: New file.
26864
26865         * tests/test-allocsa.c (main): Halve the number of loop runs.
26866
26867         * modules/alloca-opt-tests: New file.
26868         * tests/test-alloca-opt.c: New file.
26869
26870 2007-03-04  Jim Meyering  <jim@meyering.net>
26871
26872         Work around difference between Linux ACLs and Solaris 10 ZFS.
26873         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
26874         for EINVAL.
26875
26876 2007-03-03  Bruno Haible  <bruno@clisp.org>
26877
26878         * modules/relocatable-prog (Depends-on): Add back progreloc's
26879         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
26880
26881 2007-03-03  Bruno Haible  <bruno@clisp.org>
26882
26883         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
26884         * modules/relocatable-lib: New file.
26885
26886 2007-03-03  Bruno Haible  <bruno@clisp.org>
26887
26888         * modules/relocatable-prog: Renamed from modules/relocatable.
26889         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
26890
26891 2007-03-03  Bruno Haible  <bruno@clisp.org>
26892
26893         * modules/relocatable-script (Files): Add doc/relocatable.texi,
26894         m4/relocatable-lib.m4.
26895         (Depends-on): Remove 'relocatable'.
26896         (configure.ac): Add gl_RELOCATABLE_NOP.
26897
26898 2007-03-03  Bruno Haible  <bruno@clisp.org>
26899
26900         * modules/relocatable-prog-wrapper: New file.
26901         * modules/relocatable (Depends-on): Add it. Remove all other
26902         dependencies except progname.
26903         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
26904
26905         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
26906         (gl_FUNC_STRERROR): Nop.
26907         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
26908
26909         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
26910         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
26911
26912         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
26913         (gl_FUNC_READLINK): Update.
26914
26915         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
26916
26917 2007-03-03  Bruno Haible  <bruno@clisp.org>
26918
26919         * lib/xreadlink.c: Include <unistd.h> unconditionally.
26920         * modules/xreadlink (Depends-on): Add unistd.
26921         * modules/xreadlink-with-size (Depends-on): Likewise.
26922
26923 2007-03-03  Bruno Haible  <bruno@clisp.org>
26924
26925         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
26926         extracted from gt_FUNC_SETENV.
26927         (gt_FUNC_SETENV): Remove macro.
26928         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
26929         remove gt_FUNC_SETENV.
26930
26931 2007-03-03  Bruno Haible  <bruno@clisp.org>
26932
26933         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
26934         ENABLE_RELOCATABLE here.
26935         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
26936
26937 2007-03-03  Bruno Haible  <bruno@clisp.org>
26938
26939         * modules/rbtreehash-list-tests (Depends-on): Add progname.
26940         * tests/test-rbtreehash_list.c: Include progname.h.
26941         (main): Call set_program_name.
26942
26943         * modules/rbtree-oset-tests (Depends-on): Add progname.
26944         * tests/test-rbtree_oset.c: Include progname.h.
26945         (main): Call set_program_name.
26946
26947         * modules/rbtree-list-tests (Depends-on): Add progname.
26948         * tests/test-rbtree_list.c: Include progname.h.
26949         (main): Call set_program_name.
26950
26951         * modules/linked-list-tests (Depends-on): Add progname.
26952         * tests/test-linked_list.c: Include progname.h.
26953         (main): Call set_program_name.
26954
26955 2007-03-03  Bruno Haible  <bruno@clisp.org>
26956
26957         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
26958         All uses of __restrict changed to _Restrict_.
26959         * lib/glob_.h (__restrict): Remove macro.
26960
26961 2007-03-02  Bruno Haible  <bruno@clisp.org>
26962
26963         * modules/gettext (configure.ac): Require gettext infrastructure
26964         from version 0.16.1.
26965
26966 2007-03-02  Bruno Haible  <bruno@clisp.org>
26967
26968         * modules/linkedhash-list-tests (Depends-on): Add progname.
26969         * tests/test-linkedhash_list.c: Include progname.h.
26970         (main): Call set_program_name.
26971
26972         * modules/carray-list-tests (Depends-on): Add progname.
26973         * tests/test-carray_list.c: Include progname.h.
26974         (main): Call set_program_name.
26975
26976         * modules/avltreehash-list-tests (Depends-on): Add progname.
26977         * tests/test-avltreehash_list.c: Include progname.h.
26978         (main): Call set_program_name.
26979
26980         * modules/avltree-oset-tests (Depends-on): Add progname.
26981         * tests/test-avltree_oset.c: Include progname.h.
26982         (main): Call set_program_name.
26983
26984         * modules/avltree-list-tests (Depends-on): Add progname.
26985         * tests/test-avltree_list.c: Include progname.h.
26986         (main): Call set_program_name.
26987
26988         * modules/array-oset-tests (Depends-on): Add progname.
26989         * tests/test-array_oset.c: Include progname.h.
26990         (main): Call set_program_name.
26991
26992         * modules/array-list-tests (Depends-on): Add progname.
26993         * tests/test-array_list.c: Include progname.h.
26994         (main): Call set_program_name.
26995
26996         * modules/argp-tests (Depends-on): Add progname.
26997         * tests/test-argp.c: Include argp.h first. Include progname.h.
26998         (main): Call set_program_name.
26999
27000 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
27001
27002         * doc/gnulib-tool.texi (Initial import): Reword description of
27003         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
27004         limited effect even if defined after the first system include.
27005
27006 2007-03-01  Bruno Haible  <bruno@clisp.org>
27007
27008         * build-aux/config.libpath: Update to libtool-1.5.22.
27009         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
27010
27011 2007-03-01  Bruno Haible  <bruno@clisp.org>
27012
27013         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
27014         foo_CFLAGS.
27015         Reported by Ralf Wildenhues.
27016
27017 2007-03-01  Bruno Haible  <bruno@clisp.org>
27018
27019         * build-aux/install-reloc: Remove object files left over by some
27020         compilers.
27021         Reported by Ralf Wildenhues.
27022
27023 2007-03-01  Bruno Haible  <bruno@clisp.org>
27024
27025         * build-aux/install-reloc: Break long lines.
27026
27027 2007-03-01  Bruno Haible  <bruno@clisp.org>
27028
27029         * doc/relocatable.texi: Document that it may not work on OpenBSD.
27030         Reported by Ralf Wildenhues.
27031
27032 2007-03-01  Bruno Haible  <bruno@clisp.org>
27033
27034         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
27035         include ordering constraints.
27036
27037 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27038
27039         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
27040         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
27041         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
27042         as another example.
27043         * lib/time_.h: Fix misspelling.
27044         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
27045         Require gl_HEADER_TIME_H_DEFAULTS.
27046         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
27047         * m4/time_r.m4 (gl_TIME_R): Likewise.
27048         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
27049
27050 2007-03-01  Bruno Haible  <bruno@clisp.org>
27051
27052         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
27053         * m4/utimens.m4 (gl_UTIMENS): Likewise.
27054
27055 2007-03-01  Jim Meyering  <jim@meyering.net>
27056
27057         * modules/xreadlink (Maintainer): Add my name.
27058         * modules/xreadlink-with-size (Depends-on): Alphabetize.
27059
27060 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
27061             Bruno Haible  <bruno@clisp.org>
27062
27063         * build-aux/install-reloc: Compile also c-ctype.c.
27064         * build-aux/relocatable.sh.in: New file.
27065         * doc/relocatable.texi: New file.
27066         * doc/relocatable-maint.texi: New file.
27067         * doc/gnulib.texi: Include relocatable-maint.texi.
27068         * lib/progreloc.c: Include unistd.h unconditionally.
27069         * lib/relocwrapper.c: Include unistd.h unconditionally.
27070         Include c-ctype.h.
27071         (add_dotbin): Use c_tolower.
27072         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
27073         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
27074         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
27075         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
27076         to m4/relocatable-lib.m4.
27077         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
27078         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
27079         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
27080         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
27081         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
27082         * modules/relocatable: New file.
27083         * modules/relocatable-lib: New file.
27084         * modules/relocatable-script: New file.
27085
27086 2007-02-28  Bruno Haible  <bruno@clisp.org>
27087
27088         Import --enable-relocatable infrastructure.
27089         * build-aux/config.libpath: New file, from GNU gettext.
27090         * build-aux/install-reloc: New file, from GNU gettext.
27091         * build-aux/reloc-ldflags: New file, from GNU gettext.
27092         * lib/relocatable.h: New file, from GNU gettext.
27093         * lib/relocatable.c: New file, from GNU gettext.
27094         * lib/relocwrapper.c: New file, from GNU gettext.
27095         * m4/relocatable.m4: New file, from GNU gettext.
27096
27097 2007-02-28  Bruno Haible  <bruno@clisp.org>
27098
27099         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
27100
27101         * modules/xreadlink: New file, from GNU gettext with modifications.
27102         * lib/xreadlink.c: New file, from GNU gettext.
27103         * lib/xreadlink.h: Add comments.
27104         (xreadlink): New declaration.
27105
27106         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
27107         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
27108         lib/xreadlink-with-size.c.
27109         (configure.ac): Remove gl_XREADLINK invocation.
27110         (Makefile.am): Augment lib_SOURCES.
27111         * m4/xreadlink.m4: Remove file.
27112         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
27113         (xreadlink_with_size): Renamed from xreadink.
27114         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
27115         * modules/canonicalize (Depends-on): Replace xreadlink with
27116         xreadlink-with-size.
27117         * lib/canonicalize.c (canonicalize_filename_mode): Update.
27118
27119 2007-02-25  Jim Meyering  <jim@meyering.net>
27120
27121         * build-aux/announce-gen: When complaining about excess arguments,
27122         list them.
27123
27124 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
27125
27126         * README: Document signed integer overflow situation more
27127         accurately.
27128
27129 2007-02-25  Bruno Haible  <bruno@clisp.org>
27130
27131         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
27132         'a' or 'A' conversion.
27133
27134 2007-02-25  Bruno Haible  <bruno@clisp.org>
27135
27136         * modules/filename: Renamed from modules/pathname.
27137         (Files): Replace lib/pathname.h with lib/filename.h. Replace
27138         lib/concatpath.c with lib/concat-filename.c.
27139         (Makefile.am): Update.
27140         (Include): Replace pathname.h with filename.h.
27141         * lib/filename.h: Renamed from lib/pathname.h.
27142         (concatenated_filename): Renamed from concatenated_pathname.
27143         * lib/concat-filename.c: Renamed from lib/concatpath.c.
27144         (concatenated_filename): Renamed from concatenated_pathname.
27145         * lib/findprog.c: Include filename.h instead of pathname.h.
27146         (find_in_path): Update.
27147         * lib/javacomp.c: Include filename.h instead of pathname.h.
27148         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
27149         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
27150         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
27151         is_oldgcj_14_13_usable, is_javac_usable): Update.
27152         * lib/javaexec.c: Include filename.h instead of pathname.h.
27153         (execute_java_class): Update.
27154         * modules/findprog: Update.
27155         * modules/javacomp: Update.
27156         * modules/javaexec: Update.
27157         * MODULES.html.sh (File system functions): Add 'filename', remove
27158         'pathname'.
27159
27160 2007-02-25  Bruno Haible  <bruno@clisp.org>
27161
27162         * modules/printf-frexpl-tests: New file.
27163         * tests/test-printf-frexpl.c: New file.
27164
27165         * modules/printf-frexpl: New file.
27166         * lib/printf-frexpl.h: New file.
27167         * lib/printf-frexpl.c: New file.
27168         * m4/printf-frexpl.m4: New file.
27169
27170 2007-02-25  Bruno Haible  <bruno@clisp.org>
27171
27172         * modules/printf-frexp-tests: New file.
27173         * tests/test-printf-frexp.c: New file.
27174
27175         * modules/printf-frexp: New file.
27176         * lib/printf-frexp.h: New file.
27177         * lib/printf-frexp.c: New file.
27178         * m4/printf-frexp.m4: New file.
27179
27180 2007-02-25  Bruno Haible  <bruno@clisp.org>
27181
27182         Assume automake >= 1.10 for the tests.
27183         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
27184         * modules/arctwo-tests: Likewise.
27185         * modules/argp-tests: Likewise.
27186         * modules/avltree-list-tests: Likewise.
27187         * modules/avltree-oset-tests: Likewise.
27188         * modules/avltreehash-list-tests: Likewise.
27189         * modules/carray-list-tests: Likewise.
27190         * modules/crc-tests: Likewise.
27191         * modules/des-tests: Likewise.
27192         * modules/gc-arcfour-tests: Likewise.
27193         * modules/gc-arctwo-tests: Likewise.
27194         * modules/gc-des-tests: Likewise.
27195         * modules/gc-hmac-md5-tests: Likewise.
27196         * modules/gc-hmac-sha1-tests: Likewise.
27197         * modules/gc-md2-tests: Likewise.
27198         * modules/gc-md4-tests: Likewise.
27199         * modules/gc-md5-tests: Likewise.
27200         * modules/gc-pbkdf2-sha1-tests: Likewise.
27201         * modules/gc-rijndael-tests: Likewise.
27202         * modules/gc-sha1-tests: Likewise.
27203         * modules/gc-tests: Likewise.
27204         * modules/getaddrinfo-tests: Likewise.
27205         * modules/hmac-md5-tests: Likewise.
27206         * modules/hmac-sha1-tests: Likewise.
27207         * modules/linked-list-tests: Likewise.
27208         * modules/linkedhash-list-tests: Likewise.
27209         * modules/lock-tests: Likewise.
27210         * modules/md2-tests: Likewise.
27211         * modules/md4-tests: Likewise.
27212         * modules/md5-tests: Likewise.
27213         * modules/rbtree-list-tests: Likewise.
27214         * modules/rbtree-oset-tests: Likewise.
27215         * modules/rbtreehash-list-tests: Likewise.
27216         * modules/read-file-tests: Likewise.
27217         * modules/rijndael-tests: Likewise.
27218         * modules/stdint-tests: Likewise.
27219         * modules/tls-tests: Likewise.
27220
27221 2007-02-24  Bruno Haible  <bruno@clisp.org>
27222
27223         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
27224         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
27225         function; instead check whether isnan with a double argument links.
27226         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
27227         function; instead check whether isnan with a 'long double' argument
27228         links.
27229         Reported by Eric Blake <ebb9@byu.net>.
27230
27231 2007-02-24  Bruno Haible  <bruno@clisp.org>
27232
27233         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
27234         defined.
27235         * lib/isnanl.c: Remove all code. Just include isnan.c.
27236         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
27237
27238 2007-02-25  Jim Meyering  <jim@meyering.net>
27239
27240         Avoid conflicting types for 'unsetenv' on FreeBSD.
27241         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
27242         conflicting with FreeBSD's (5.0 and 6.1) function declaration
27243         in stdlib.h.
27244
27245 2007-02-24  Bruno Haible  <bruno@clisp.org>
27246
27247         * modules/isnanl-nolibm-tests: New file.
27248         * tests/test-isnanl.c: New file.
27249
27250         * modules/isnanl-nolibm: New file.
27251         * lib/isnanl.h: New file.
27252         * lib/isnanl.c: New file.
27253         * m4/isnanl.m4: New file.
27254
27255 2007-02-24  Bruno Haible  <bruno@clisp.org>
27256
27257         * modules/isnan-nolibm-tests: New file.
27258         * tests/test-isnan.c: New file.
27259
27260         * modules/isnan-nolibm: New file.
27261         * lib/isnan.h: New file.
27262         * lib/isnan.c: New file.
27263         * m4/isnan.m4: New file.
27264
27265 2007-02-24  Bruno Haible  <bruno@clisp.org>
27266
27267         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
27268         assume that an exponent fits in 20 bits.
27269
27270 2007-02-24  Jim Meyering  <jim@meyering.net>
27271
27272         * m4/regex.m4: Update the description of the configure-time option,
27273         --without-included-regex, to state accurately what the defaults are,
27274         and perhaps to give people an idea why using this option is risky.
27275
27276 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
27277
27278         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
27279         loops on small arguments.  This attempts to avoid the problem
27280         Bruno Haible reported for AIX 4.3.2 in
27281         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
27282
27283 2007-02-23  Bruno Haible  <bruno@clisp.org>
27284
27285         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
27286         Needed for help2man.
27287
27288 2007-02-23  Karl Berry  <karl@gnu.org>
27289
27290         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
27291         exists, foo.h should be cvs-ignored, not committed.
27292
27293 2007-02-23  Eric Blake  <ebb9@byu.net>
27294
27295         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
27296         * lib/stat-time.h (includes): Likewise.
27297         * lib/utimecmp.c (includes): Likewise.
27298         * lib/utimens.h (includes): Likewise.
27299         * lib/getdate.y (includes): Also include "timespec.h" for use
27300         internal to the module.
27301         * modules/utimens (Depends-on): Revert yesterday's patch.
27302         * modules/nanosleep (Depends-on): Add missing dependency.
27303
27304 2007-02-22  Bruno Haible  <bruno@clisp.org>
27305
27306         * lib/glob.c: Don't include getlogin_r.h.
27307
27308 2007-02-22  Jim Meyering  <jim@meyering.net>
27309
27310         * modules/utimens (Depends-on): Add timespec, required for
27311         utimens.h's inclusion of timespec.h.
27312
27313 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
27314
27315         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
27316         long unreadable paths in GNU/Linux.  Problem reported by Andreas
27317         Schwab in
27318         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
27319         I'll try to think of a better way to fix the Solaris problem.
27320
27321         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
27322         like glibc; on Solaris 10, it fails with errno == EINVAL.
27323         POSIX says the behavior is unspecified if the first argument is NULL,
27324         so play it safe and never pass NULL to the system getcwd.
27325
27326 2007-02-21  Jim Meyering  <jim@meyering.net>
27327
27328         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
27329         of gettimeofday.  It would conflict with the one now always
27330         provided via sys_time_.h.  Reported by Matthew Woehlke, as
27331         an IRIX 6.5 build failure.
27332
27333 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
27334
27335         Minor fixups to port to Solaris 10 with Sun C 5.8.
27336         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
27337         * modules/getcwd (Depends-on): Add dirfd.
27338         * lib/putenv.c (putenv): #undef it.
27339         (rpl_putenv): New decl.
27340         (malloc, free): Include <stdlib.h> rather than prototyping separately.
27341
27342 2007-02-20  Bruno Haible  <bruno@clisp.org>
27343
27344         * modules/stdio-tests: New file.
27345         * tests/test-stdio.c: New file.
27346
27347         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
27348         (Depends-on): Add stdio.
27349         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
27350         (Include): Use <stdio.h> instead of vsnprintf.h.
27351         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
27352         HAVE_DECL_VSNPRINTF.
27353         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
27354
27355         * modules/snprintf (Files): Remove lib/snprintf.h.
27356         (Depends-on): Add stdio.
27357         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
27358         (Include): Use <stdio.h> instead of snprintf.h.
27359         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
27360         HAVE_DECL_SNPRINTF.
27361         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
27362         * lib/getaddrinfo.c: Likewise.
27363
27364         * modules/stdio: New file.
27365         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
27366         * lib/snprintf.h: Remove file.
27367         * lib/vsnprintf.h: Remove file.
27368         * lib/.cppi-disable: Remove snprintf.h.
27369         * m4/stdio_h.m4: New file.
27370         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
27371
27372 2007-02-20  Jim Meyering  <jim@meyering.net>
27373
27374         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
27375         used by e.g., mingw.  From Bruno Haible.
27376
27377 2007-02-19  Bruno Haible  <bruno@clisp.org>
27378
27379         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
27380         warnings.
27381         Reported by Ben Pfaff <blp@cs.stanford.edu>.
27382
27383 2007-02-19  Bruno Haible  <bruno@clisp.org>
27384
27385         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
27386         from mingw users.
27387
27388 2007-02-19  Bruno Haible  <bruno@clisp.org>
27389
27390         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
27391         warnings.
27392         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
27393
27394 2007-02-19  Jim Meyering  <jim@meyering.net>
27395
27396         Don't use FD after a successful "fdopendir (fd)".
27397         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
27398         Reset it by calling dirfd on the just-obtained DIR*.
27399
27400         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
27401         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
27402
27403 2007-02-18  Bruno Haible  <bruno@clisp.org>
27404
27405         * lib/readlink.c: Include <unistd.h>.
27406         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
27407         HAVE_READLINK.
27408         * modules/readlink (Depends-on): Add unistd.
27409         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27410         (Include): Add <unistd.h>.
27411
27412         * lib/getlogin_r.h: Remove file.
27413         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
27414         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
27415         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
27416         HAVE_DECL_GETLOGIN_R.
27417         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
27418         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27419         (Include): Use <unistd.h> instead of getlogin_r.h.
27420
27421         * lib/getcwd.h: Remove file.
27422         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
27423         * lib/xgetcwd.c: Likewise.
27424         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
27425         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
27426         * modules/getcwd (Files): Remove lib/getcwd.h.
27427         (Depends-on): Add unistd.
27428         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27429         (Include): Use <unistd.h> instad of getcwd.h.
27430
27431         * lib/ftruncate.c: Include <unistd.h> first.
27432         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
27433         Set HAVE_FTRUNCATE.
27434         * modules/ftruncate (Depends-on): Add unistd.
27435         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27436
27437         * lib/fchdir.c: Include <unistd.h> first.
27438         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
27439         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
27440         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
27441         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27442         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
27443
27444         * lib/dup2.c: Include <unistd.h> first.
27445         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
27446         HAVE_DUP2.
27447         * modules/dup2 (Depends-on): Add unistd.
27448         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27449
27450         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
27451         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
27452         REPLACE_CHOWN. Don't define chown as a macro here.
27453         * modules/chown (Depends-on): Add unistd.
27454         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
27455
27456         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
27457         Add definition for GL_LINK_WARNING.
27458         (chown, dup2): New declarations.
27459         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
27460         link warning.
27461         (ftruncate): New declaration.
27462         (getcwd): New declaration, taken from old getcwd.h.
27463         (getlogin_r): New declaration, taken from old getlogin_r.h.
27464         (readlink): New declaration.
27465         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
27466         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
27467         (gl_PREREQ_UNISTD): Remove macro.
27468         (gl_UNISTD_MODULE_INDICATOR): New macro.
27469         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
27470         many new variables. Don't set UNISTD_H.
27471         * modules/unistd (Description): Change.
27472         (Depends-on): Add link-warning.
27473         (configure.ac): Update.
27474         (Makefile.am): Create unistd.h always. Substitute many new variables
27475         into it.
27476
27477 2007-02-18  Bruno Haible  <bruno@clisp.org>
27478
27479         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
27480         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
27481         HAVE_GETSUBOPT.
27482         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
27483         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
27484         * lib/getsubopt.h: Remove file.
27485         * modules/getsubopt (Files): Remove lib/getsubopt.h.
27486         (Depends-on): Add stdlib.
27487         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
27488         (Includes): Use <stdlib.h> instead of getsubopt.h.
27489         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
27490         Set HAVE_GETSUBOPT.
27491         * lib/getsubopt.c: Don't include getsubopt.h.
27492
27493 2007-02-18  Bruno Haible  <bruno@clisp.org>
27494
27495         * modules/fchdir (Depends-on): Add dup2.
27496
27497 2007-02-18  Bruno Haible  <bruno@clisp.org>
27498
27499         * lib/stdlib_.h: Handle glibc's special invocation convention
27500         specially.
27501
27502 2007-02-18  Bruno Haible  <bruno@clisp.org>
27503
27504         * modules/stdlib-tests: New file.
27505         * tests/test-stdlib.c: New file.
27506
27507         * modules/mkstemp (Files): Remove lib/mkstemp.h.
27508         (Depends-on): Add stdlib.
27509         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
27510         (Includes): Use <stdlib.h> instead of mkstemp.h.
27511         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
27512         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
27513         * lib/mkstemp.c: Don't include mkstemp.h.
27514         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
27515         * lib/stdlib--.h: Don't include mkstemp.h.
27516
27517         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
27518         (Depends-on): Add stdlib.
27519         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
27520         (Includes): Use <stdlib.h> instead of mkdtemp.h.
27521         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
27522         HAVE_MKDTEMP.
27523         * lib/mkdtemp.c: Don't include mkdtemp.h.
27524         * lib/clean-temp.c: Don't include mkdtemp.h.
27525
27526         * modules/exit (Files): Remove lib/exit.h.
27527         (Depends-on): Add stdlib.
27528         (Makefile.am): Remove lib_SOURCES.
27529         (Include): Use <stdlib.h> instead of exit.h.
27530         * lib/argmatch.c: Don't include exit.h.
27531         * lib/execute.c: Likewise.
27532         * lib/pagealign_alloc.c: Likewise.
27533         * lib/pipe.c: Likewise.
27534         * lib/wait-process.c: Likewise.
27535         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
27536         * lib/exitfail.c: Likewise.
27537         * lib/savewd.c: Likewise.
27538         * lib/xsetenv.c: Likewise.
27539
27540         * modules/stdlib: New file.
27541         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
27542         and extra comments about mkstemp().
27543         * lib/exit.h: Remove file.
27544         * lib/mkdtemp.h: Remove file.
27545         * lib/mkstemp.h: Remove file.
27546         * m4/stdlib_h.m4: New file.
27547         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
27548
27549 2007-02-18  Bruno Haible  <bruno@clisp.org>
27550
27551         * modules/math-tests: New file.
27552         * tests/test-math.c: New file.
27553
27554         * modules/math: New file.
27555         * modules/mathl (Files): Remove lib/mathl.h.
27556         (Depends-on): Add math.
27557         (Makefile.am): Don't mention mathl.h.
27558         (Include): Use <math.h> instead of mathl.h.
27559         * lib/math_.h: New file.
27560         * lib/mathl.h: Remove file.
27561         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
27562         mathl.h.
27563         * lib/asinl.c: Likewise.
27564         * lib/atanl.c: Likewise.
27565         * lib/ceill.c: Likewise.
27566         * lib/cosl.c: Likewise.
27567         * lib/expl.c: Likewise.
27568         * lib/floorl.c: Likewise.
27569         * lib/frexpl.c: Likewise.
27570         * lib/ldexpl.c: Likewise.
27571         * lib/logl.c: Likewise.
27572         * lib/sincosl.c: Likewise.
27573         * lib/sinl.c: Likewise.
27574         * lib/sqrtl.c: Likewise.
27575         * lib/tanl.c: Likewise.
27576         * lib/trigl.c: Likewise.
27577         * m4/math_h.m4: New file.
27578         * MODULES.html.sh (Mathematics): Add math.
27579
27580 2007-02-17  Bruno Haible  <bruno@clisp.org>
27581
27582         * modules/wctype-tests: New file.
27583         * tests/test-wctype.c: New file.
27584
27585         * modules/wchar-tests: New file.
27586         * tests/test-wchar.c: New file.
27587
27588         * modules/unistd-tests: New file.
27589         * tests/test-unistd.c: New file.
27590
27591         * modules/time-tests: New file.
27592         * tests/test-time.c: New file.
27593
27594         * modules/sysexits-tests: New file.
27595         * tests/test-sysexits.c: New file.
27596
27597         * modules/sys_time-tests: New file.
27598         * tests/test-sys_time.c: New file.
27599
27600         * modules/sys_stat-tests: New file.
27601         * tests/test-sys_stat.c: New file.
27602
27603         * modules/sys_socket-tests: New file.
27604         * tests/test-sys_socket.c: New file.
27605
27606         * modules/sys_select-tests: New file.
27607         * tests/test-sys_select.c: New file.
27608
27609         * modules/string-tests: New file.
27610         * tests/test-string.c: New file.
27611
27612         * modules/stdbool-tests: New file.
27613         * tests/test-stdbool.c: New file.
27614
27615         * modules/netinet_in-tests: New file.
27616         * tests/test-netinet_in.c: New file.
27617
27618         * modules/inttypes-tests: New file.
27619         * tests/test-inttypes.c: New file.
27620
27621         * modules/fcntl-tests: New file.
27622         * tests/test-fcntl.c: New file.
27623
27624         * modules/byteswap-tests: New file.
27625         * tests/test-byteswap.c: New file.
27626
27627         * modules/arpa_inet-tests: New file.
27628         * tests/test-arpa_inet.c: New file.
27629
27630 2007-02-17  Bruno Haible  <bruno@clisp.org>
27631
27632         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
27633         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
27634         if the corresponding module is not enabled. Emit link warnings if
27635         the function is used nevertheless.
27636         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
27637         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
27638         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
27639         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
27640         * modules/inttypes (Depends-on): Add link-warning.
27641         (Makefile.am): Copy the contents of build-aux/link-warning.h into
27642         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
27643         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
27644         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
27645         * modules/imaxdiv (configure.ac): Likewise.
27646         * modules/strtoimax (configure.ac): Likewise.
27647         * modules/strtoumax (configure.ac): Likewise.
27648
27649 2007-02-17  Bruno Haible  <bruno@clisp.org>
27650
27651         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
27652         gl_STRING_MODULE_INDICATOR_DEFAULTS.
27653         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
27654         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
27655
27656 2007-02-17  Bruno Haible  <bruno@clisp.org>
27657
27658         * modules/link-warning: New file.
27659         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
27660         * lib/string_.h (GL_LINK_WARNING): Remove definition.
27661         * modules/string (Depends-on): Add link-warning.
27662         (Makefile.am): Copy the contents of build-aux/link-warning.h into
27663         string.h.
27664         * MODULES.html.sh (Support for building libraries and executables): Add
27665         link-warning.
27666
27667 2007-02-17  Bruno Haible  <bruno@clisp.org>
27668
27669         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
27670         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
27671         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
27672         long lines.
27673
27674 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
27675             Bruno Haible  <bruno@clisp.org>
27676
27677         * modules/tmpfile: New file.
27678         * lib/tmpfile.c: New file.
27679         * m4/tmpfile.m4: New file.
27680         * MODULES.html.sh (func_all_modules): New section "Input/output".
27681
27682 2007-02-15  Bruno Haible  <bruno@clisp.org>
27683
27684         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
27685         (supports_delete_on_close): New function.
27686         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
27687
27688 2007-02-14  Bruno Haible  <bruno@clisp.org>
27689
27690         * modules/mbspcasecmp-tests: New file.
27691         * tests/test-mbspcasecmp.sh: New file.
27692         * tests/test-mbspcasecmp.c: New file.
27693
27694         New module mbspcasecmp.
27695         * modules/mbspcasecmp: New file.
27696         * lib/mbspcasecmp.c: New file.
27697         * lib/string_.h (strncasecmp): Change warning message.
27698         (mbspcasecmp): New declaration.
27699         * m4/mbspcasecmp.m4: New file.
27700         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
27701         GNULIB_MBSPCASECMP.
27702         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
27703         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
27704
27705 2007-02-14  Bruno Haible  <bruno@clisp.org>
27706
27707         * modules/mbsncasecmp-tests: New file.
27708         * tests/test-mbsncasecmp.sh: New file.
27709         * tests/test-mbsncasecmp.c: New file.
27710
27711         New module mbsncasecmp.
27712         * modules/mbsncasecmp: New file.
27713         * lib/mbsncasecmp.c: New file.
27714         * lib/string_.h (mbsncasecmp): New declaration.
27715         * m4/mbsncasecmp.m4: New file.
27716         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
27717         GNULIB_MBSNCASECMP.
27718         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
27719         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
27720
27721 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
27722
27723         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
27724         Verify that it doesn't overlap with our flags.
27725         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
27726         do not have the desired effect in multibyte locales; instead, use
27727         mbscasecmp.
27728         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
27729         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
27730         we don't require GNU fnmatch ourselves (if our users require it, they
27731         should do so explicitly).
27732
27733         Fix regex code so it doesn't rely on strcasecmp.
27734         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
27735         Otherwise, include gnulib's langinfo.h.
27736         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
27737         undesirable behavior in non-C locales.  Instead, rely on localecharset.
27738         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
27739         * modules/regex (FILES): Remove m4/codeset.m4.
27740         (Depends-on): Add localcharset.  Remove strcase.
27741
27742 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27743
27744         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
27745         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
27746
27747 2007-02-13  Bruno Haible  <bruno@clisp.org>
27748
27749         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
27750         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27751
27752 2007-02-12  Bruno Haible  <bruno@clisp.org>
27753
27754         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
27755         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
27756         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
27757         time warning rather than a link error.
27758
27759 2007-02-12  Bruno Haible  <bruno@clisp.org>
27760
27761         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
27762         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
27763         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27764
27765 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
27766
27767         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
27768         args, not 2.
27769
27770 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
27771
27772         New module 'time', so that apps can include <time.h> as per
27773         POSIX and GNU instead of separate include files like time_r.h
27774         and timegm.h.  This implementation tries out a simpler approach
27775         for replacing decls in standard include files (as compared to
27776         the string module), somewhat as an experiment.
27777
27778         * config/srclist.txt: Comment out mktime.c for now.
27779         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
27780         since it doesn't apply any more.  Use generic wording instead.
27781         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
27782         'time'.
27783         * lib/time_.h, m4/time_h.m4, modules/time: New files.
27784         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
27785         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
27786         Don't include <sys/types.h>; no longer needed since we assume C89.
27787         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
27788         * lib/strftime.c: Likewise.
27789         * lib/time_r.c: Likewise.
27790         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
27791         * lib/nanosleep.c: Include <time.h> first, to check interface.
27792         * lib/strptime.c: Likewise.
27793         * lib/time_r.c: Likewise.
27794         * lib/timegm.c: Likewise.
27795         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
27796         needed.
27797         * lib/timegm.c: Don't include timegm.h; no longer needed.
27798         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
27799         time.h now handles any problems in that area.
27800         (struct timespec, nanosleep): Remove; time.h now arranges for these.
27801         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
27802         that time.h defines struct timespec.
27803         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
27804         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
27805         handles that.
27806         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
27807         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
27808         needed.  Set REPLACE_LOCALTIME.
27809         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
27810         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
27811         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
27812         nanosleep; time_h.m4 now does that.  Don't require
27813         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
27814         module handles this now.
27815         * modules/getdate (Depends-on): Remove timespec.  Add time.
27816         * modules/nanosleep (Depends-on): Likewise.
27817         * modules/stat-time (Depends-on): Likewise.
27818         * modules/nanosleep (Include): Include time.h, not timespec.h.
27819         * modules/strptime (Files): Remove lib/strptime.h.
27820         (Depends-on): Add extensions, time.
27821         (Include): Include time.h, not strptime.h.
27822         * modules/time_r (Files): Remove lib/time_r.h.
27823         (Depends-on): Add time.
27824         (Include): Include time.h, not time_r.h.
27825         * modules/timegm: Likewise.
27826         * modules/timespec (Description): Now does timespec-related decls
27827         of our own, instead of struct timespec itself.
27828         (Depends-on): Add time; remove extensions.
27829         (Maintainer): Add self.
27830         * modules/utimecmp (Depends-on): Add time; remove timespec.
27831         * modules/utimens (Depends-on): Likewise.
27832         * modules/xnanosleep (Depends-on): Likewise.
27833
27834 2007-02-11  Bruno Haible  <bruno@clisp.org>
27835
27836         * lib/c-strstr.c: Include allocsa.h.
27837         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
27838         * lib/c-strcasestr.c: Include allocsa.h.
27839         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
27840         * lib/strcasestr.c: Include allocsa.h.
27841         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
27842         * lib/mbsstr.c: Include allocsa.h.
27843         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
27844         allocsa/freesa instead of malloc/free.
27845         * lib/mbscasestr.c: Include allocsa.h.
27846         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
27847         allocsa/freesa instead of malloc/free.
27848         * modules/c-strstr (Depends-on): Add allocsa.
27849         * modules/c-strcasestr (Depends-on): Likewise.
27850         * modules/strcasestr (Depends-on): Likewise.
27851         * modules/mbsstr (Depends-on): Likewise.
27852         * modules/mbscasestr (Depends-on): Likewise.
27853
27854 2007-02-11  Bruno Haible  <bruno@clisp.org>
27855
27856         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
27857
27858         * modules/mbsspn-tests: New file.
27859         * tests/test-mbsspn.sh: New file.
27860         * tests/test-mbsspn.c: New file.
27861
27862 2007-02-11  Bruno Haible  <bruno@clisp.org>
27863
27864         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
27865
27866         * modules/mbspbrk-tests: New file.
27867         * tests/test-mbspbrk.sh: New file.
27868         * tests/test-mbspbrk.c: New file.
27869
27870 2007-02-11  Bruno Haible  <bruno@clisp.org>
27871
27872         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
27873         unneeded cast.
27874
27875         * modules/mbscspn-tests: New file.
27876         * tests/test-mbscspn.sh: New file.
27877         * tests/test-mbscspn.c: New file.
27878
27879 2007-02-11  Bruno Haible  <bruno@clisp.org>
27880
27881         * modules/mbscasecmp-tests: New file.
27882         * tests/test-mbscasecmp.sh: New file.
27883         * tests/test-mbscasecmp.c: New file.
27884
27885 2007-02-11  Bruno Haible  <bruno@clisp.org>
27886
27887         Ensure O(n) worst-case complexity of mbscasestr.
27888         * lib/mbscasestr.c: Include stdbool.h.
27889         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
27890         functions.
27891         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
27892         the bookkeeping indicates that it's worth it.
27893         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
27894
27895         * modules/mbscasestr-tests: New file.
27896         * tests/test-mbscasestr1.c: New file.
27897         * tests/test-mbscasestr2.sh: New file.
27898         * tests/test-mbscasestr2.c: New file.
27899         * tests/test-mbscasestr3.sh: New file.
27900         * tests/test-mbscasestr3.c: New file.
27901         * tests/test-mbscasestr4.sh: New file.
27902         * tests/test-mbscasestr4.c: New file.
27903         * m4/locale-tr.m4: New file.
27904
27905 2007-02-11  Bruno Haible  <bruno@clisp.org>
27906
27907         Ensure O(n) worst-case complexity of mbsstr.
27908         * lib/mbsstr.c: Include stdbool.h.
27909         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
27910         functions.
27911         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
27912         bookkeeping indicates that it's worth it.
27913         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
27914
27915         * modules/mbsstr-tests: New file.
27916         * tests/test-mbsstr1.c: New file.
27917         * tests/test-mbsstr2.sh: New file.
27918         * tests/test-mbsstr2.c: New file.
27919         * tests/test-mbsstr3.sh: New file.
27920         * tests/test-mbsstr3.c: New file.
27921         * m4/locale-fr.m4: New file.
27922
27923 2007-02-11  Bruno Haible  <bruno@clisp.org>
27924
27925         * lib/mbsrchr.c (mbsrchr): Fix bug.
27926
27927         * modules/mbsrchr-tests: New file.
27928         * tests/test-mbsrchr.sh: New file.
27929         * tests/test-mbsrchr.c: New file.
27930
27931 2007-02-11  Bruno Haible  <bruno@clisp.org>
27932
27933         * lib/mbschr.c (mbschr): Fix bug.
27934
27935         * modules/mbschr-tests: New file.
27936         * tests/test-mbschr.sh: New file.
27937         * tests/test-mbschr.c: New file.
27938         * m4/locale-zh.m4: New file.
27939
27940 2007-02-11  Bruno Haible  <bruno@clisp.org>
27941
27942         Support for copying multibyte string iterators.
27943         * lib/mbiter.h: Include <string.h>.
27944         (mbiter_multi_copy): New function.
27945         (mbi_copy): New macro.
27946         * lib/mbuiter.h: Include <string.h>.
27947         (mbuiter_multi_copy): New function.
27948         (mbui_copy): New macro.
27949
27950 2007-02-11  Bruno Haible  <bruno@clisp.org>
27951
27952         New module mbslen.
27953         * modules/mbslen: New file.
27954         * lib/mbslen.c: New file.
27955         * lib/string_.h (mbslen): New declaration.
27956         * m4/mbslen.m4: New file.
27957         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
27958         GNULIB_MBSLEN.
27959         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
27960         * MODULES.html.sh (Internationalization functions): Add mbslen.
27961
27962 2007-02-11  Bruno Haible  <bruno@clisp.org>
27963
27964         Ensure O(n) worst-case complexity of strcasestr substitute.
27965         * lib/strcasestr.c: Include stdbool.h.
27966         (knuth_morris_pratt): New function.
27967         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
27968         bookkeeping indicates that it's worth it.
27969         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
27970
27971         * modules/strcasestr-tests: New file.
27972         * tests/test-strcasestr.c: New file.
27973
27974 2007-02-11  Bruno Haible  <bruno@clisp.org>
27975
27976         Ensure O(n) worst-case complexity of c_strcasestr.
27977         * lib/c-strcasestr.c: Include stdbool.h, string.h.
27978         (knuth_morris_pratt): New function.
27979         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
27980         the bookkeeping indicates that it's worth it.
27981         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
27982
27983         * modules/c-strcasestr-tests: New file.
27984         * tests/test-c-strcasestr.c: New file.
27985
27986 2007-02-11  Bruno Haible  <bruno@clisp.org>
27987
27988         Ensure O(n) worst-case complexity of c_strstr.
27989         * lib/c-strstr.c: Include stdbool.h, string.h.
27990         (knuth_morris_pratt): New function.
27991         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
27992         bookkeeping indicates that it's worth it.
27993         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
27994
27995         * lib/c-strstr.c: Complete rewrite for maintainability.
27996
27997         * modules/c-strstr-tests: New file.
27998         * tests/test-c-strstr.c: New file.
27999
28000 2007-02-11  Bruno Haible  <bruno@clisp.org>
28001
28002         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
28003         5.2.1 and earlier, whereby \055 was treated just like the range
28004         delimiter '-'.
28005         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
28006
28007 2007-02-08  Bruno Haible  <bruno@clisp.org>
28008
28009         * modules/regex (Depends-on): Add stdbool.
28010         Reported by Dalibor Topic <robilad@kaffe.org>.
28011
28012 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
28013
28014         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
28015         Prefer returning from main to exiting from it.
28016         Remove unnecessary parens after sizeof.
28017
28018 2007-02-05  Bruno Haible  <bruno@clisp.org>
28019
28020         New module mbssep.
28021         * modules/mbssep: New file.
28022         * lib/mbssep.c: New file.
28023         * lib/string_.h (strsep): Add a conditional link warning.
28024         (mbssep): New declaration.
28025         * m4/mbssep.m4: New file.
28026         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28027         GNULIB_MBSSEP.
28028         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
28029         * MODULES.html.sh (Internationalization functions): Add mbssep.
28030
28031 2007-02-05  Bruno Haible  <bruno@clisp.org>
28032
28033         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
28034         Optimize search in case of 1 delimiter.
28035
28036 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
28037
28038         * lib/acl.h: Include sys/types.h before sys/acl.h.
28039
28040 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
28041
28042         Merge upstream fix for glibc bugzilla #3957:
28043
28044         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
28045
28046         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
28047         bit for RE_HAT_LISTS_NOT_NEWLINE.
28048         (build_charclass_op): Remove bogus comment.
28049
28050 2007-02-05  Simon Josefsson  <simon@josefsson.org>
28051
28052         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
28053
28054 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
28055
28056         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
28057         * lib/memmem.c [!defined _LIBC]: Include config.h.
28058
28059 2007-02-04  Bruno Haible  <bruno@clisp.org>
28060
28061         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
28062         warning message.
28063
28064 2007-02-04  Bruno Haible  <bruno@clisp.org>
28065
28066         New module mbstok_r.
28067         * modules/mbstok_r: New file.
28068         * lib/mbstok_r.c: New file.
28069         * lib/string_.h (strtok_r): Change argument names to match the
28070         comments. Add a conditional link warning.
28071         (mbstok_r): New declaration.
28072         * m4/mbstok_r.m4: New file.
28073         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28074         GNULIB_MBSTOK_R.
28075         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
28076         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
28077
28078 2007-02-04  Bruno Haible  <bruno@clisp.org>
28079
28080         New module mbsspn.
28081         * modules/mbsspn: New file.
28082         * lib/mbsspn.c: New file.
28083         * lib/string_.h (strspn): Add a conditional link warning.
28084         (mbsspn): New declaration.
28085         * m4/mbsspn.m4: New file.
28086         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28087         GNULIB_MBSSPN.
28088         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
28089         * MODULES.html.sh (Internationalization functions): Add mbsspn.
28090
28091 2007-02-04  Bruno Haible  <bruno@clisp.org>
28092
28093         New module mbspbrk.
28094         * modules/mbspbrk: New file.
28095         * lib/mbspbrk.c: New file.
28096         * lib/string_.h (strpbrk): Add a conditional link warning.
28097         (mbspbrk): New declaration.
28098         * m4/mbspbrk.m4: New file.
28099         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28100         GNULIB_MBSPBRK.
28101         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
28102         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
28103
28104 2007-02-04  Bruno Haible  <bruno@clisp.org>
28105
28106         New module mbscspn.
28107         * modules/mbscspn: New file.
28108         * lib/mbscspn.c: New file.
28109         * lib/string_.h (strcspn): Add a conditional link warning.
28110         (mbscspn): New declaration.
28111         * m4/mbscspn.m4: New file.
28112         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28113         GNULIB_MBSCSPN.
28114         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
28115         * MODULES.html.sh (Internationalization functions): Add mbscspn.
28116
28117 2007-02-04  Bruno Haible  <bruno@clisp.org>
28118
28119         New module mbscasestr, reduced goal of strcasestr.
28120         * modules/mbscasestr: New file.
28121         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
28122         (mbscasestr): Renamed from strcasestr.
28123         * lib/strcasestr.c: Don't include mbuiter.h.
28124         (strcasestr): Remove support for multibyte locales.
28125         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
28126         Change the conditional link warning.
28127         (mbscasestr): New declaration.
28128         * m4/mbscasestr.m4: New file.
28129         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
28130         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
28131         REPLACE_STRCASESTR.
28132         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
28133         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28134         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
28135         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
28136         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
28137         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
28138         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
28139         (Depends-on): Remove mbuiter.
28140         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
28141
28142 2007-02-04  Bruno Haible  <bruno@clisp.org>
28143
28144         Simplify handling of strncasecmp.
28145         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
28146         the conditional link warning.
28147         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28148         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
28149         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
28150         * modules/strcase (configure.ac): Don't invoke
28151         gl_STRING_MODULE_INDICATOR.
28152         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
28153
28154 2007-02-04  Bruno Haible  <bruno@clisp.org>
28155
28156         New module mbscasecmp, reduced goal of strcasecmp.
28157         * modules/mbscasecmp: New file.
28158         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
28159         (mbscasecmp): Renamed from strcasecmp.
28160         * lib/strcasecmp.c: Don't include mbuiter.h.
28161         (strcasecmp): Remove support for multibyte locales.
28162         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
28163         Change the conditional link warning.
28164         (mbscasecmp): New declaration.
28165         * m4/mbscasecmp.m4: New file.
28166         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
28167         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
28168         REPLACE_STRCASECMP.
28169         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
28170         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28171         GNULIB_MBSCASECMP.
28172         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
28173         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
28174         * modules/strcase (Files): Remove m4/mbrtowc.m4.
28175         (Depends-on): Remove mbuiter.
28176         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
28177
28178 2007-02-04  Bruno Haible  <bruno@clisp.org>
28179
28180         New module mbsstr. Remove module strstr.
28181         * modules/mbsstr: New file.
28182         * modules/strstr: Remove file.
28183         * lib/mbsstr.c: Renamed from lib/strstr.c.
28184         (mbsstr): Renamed from strstr.
28185         * lib/string_.h (strstr): Remove declaration. Change the conditional
28186         link warning.
28187         (mbsstr): New declaration.
28188         * m4/mbsstr.m4: New file.
28189         * m4/strstr.m4: Remove file.
28190         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
28191         REPLACE_STRSTR.
28192         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
28193         Don't initialize GNULIB_STRSTR.
28194         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
28195         substitute GNULIB_STRSTR and REPLACE_STRSTR.
28196         * MODULES.html.sh (Internationalization functions): Add mbsstr.
28197         (Support for systems lacking ANSI C 89): Remove strstr.
28198
28199 2007-02-04  Bruno Haible  <bruno@clisp.org>
28200
28201         New module mbsrchr.
28202         * modules/mbsrchr: New file.
28203         * lib/mbsrchr.c: New file.
28204         * lib/string_.h (strrchr): Add a conditional link warning.
28205         (mbsrchr): New declaration.
28206         * m4/mbsrchr.m4: New file.
28207         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28208         GNULIB_MBSRCHR.
28209         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
28210         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
28211
28212 2007-02-04  Bruno Haible  <bruno@clisp.org>
28213
28214         New module mbschr.
28215         * modules/mbschr: New file.
28216         * lib/mbschr.c: New file.
28217         * lib/string_.h (strchr): Add a conditional link warning.
28218         (mbschr): New declaration.
28219         * m4/mbschr.m4: New file.
28220         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
28221         GNULIB_MBSCHR.
28222         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
28223         * MODULES.html.sh (Internationalization functions): Add mbschr.
28224
28225 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
28226
28227         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
28228
28229         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
28230
28231 2007-02-04  Bruno Haible  <bruno@clisp.org>
28232
28233         New module description section 'configure.ac-early'.
28234         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
28235         (func_get_autoconf_early_snippet): New function.
28236         (func_import, func_create_testdir): Use it. Remove special cases for
28237         modules 'extensions' and 'lock'.
28238         * modules/extensions (configure.ac-early): Require
28239         gl_USE_SYSTEM_EXTENSIONS.
28240         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
28241
28242 2007-02-04  Bruno Haible  <bruno@clisp.org>
28243
28244         Make use of gcj-4.3's -fsource and -ftarget option.
28245         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
28246         and if so try the options -fsource and -ftarget.
28247         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
28248         source_version, ftarget_option, target_version arguments.
28249         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
28250         (is_envjavac_oldgcj_14_14_usable): Renamed from
28251         is_envjavac_gcj_14_14_usable.
28252         (is_envjavac_oldgcj_14_13_usable): Renamed from
28253         is_envjavac_gcj_14_13_usable.
28254         (is_gcj_present): Update.
28255         (is_gcj_43, is_gcj43_usable): New functions.
28256         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
28257         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
28258         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
28259         try the options -fsource and -ftarget.
28260
28261 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28262
28263         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
28264         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
28265         larger value.
28266
28267 2007-02-03  Jim Meyering  <jim@meyering.net>
28268
28269         Give tools a better chance to allocate space for very large buffers.
28270         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
28271
28272         Make pwd and readlink work also when run with an unreadable parent dir
28273         on systems with openat support.
28274         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
28275         provided getcwd function, even when we have openat support.
28276         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
28277
28278 2007-02-02  Bruno Haible  <bruno@clisp.org>
28279
28280         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
28281         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
28282         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
28283         portability problems if one of these functions is only used on specific
28284         platforms.
28285         Reported by Paul Eggert.
28286
28287 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
28288
28289         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
28290         is causing more trouble than it's curing.
28291         * lib/regex_internal.h (__mempcpy): Remove.
28292         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
28293         (and make the code a tad smaller to boot).
28294         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
28295
28296 2007-02-02  Jim Meyering  <jim@meyering.net>
28297
28298         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
28299         section, not in the Makefile.am: one.
28300
28301 2007-02-02  Eric Blake  <ebb9@byu.net>
28302
28303         * lib/strchrnul.c: Always include config.h first.
28304
28305         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
28306         gnulib strstr is not necessary here.
28307
28308 2007-02-02  Simon Josefsson  <simon@josefsson.org>
28309
28310         * m4/socklen.m4: Fix typo.
28311
28312 2007-02-02  Eric Blake  <ebb9@byu.net>
28313
28314         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
28315         * modules/netinet_in (Makefile.am): Likewise.
28316
28317 2007-02-01  Bruno Haible  <bruno@clisp.org>
28318
28319         * lib/string_.h (GL_LINK_WARNING): New macro.
28320         (strcasecmp, strstr, strcasestr): If provided by the system,
28321         conditionally define as a macro that leads to a warning instead of to
28322         an error.
28323         (strncasecmp): Conditionally define as a macro that leads to a warning.
28324
28325 2007-02-01  Karl Berry  <karl@gnu.org>
28326
28327         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
28328
28329 2007-02-01  Bruno Haible  <bruno@clisp.org>
28330
28331         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
28332         renamings.
28333
28334 2007-02-01  Eric Blake  <ebb9@byu.net>
28335
28336         * modules/regex (Depends-on): Revert dependence on mempcpy.
28337         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
28338         module's definition of mempcpy.
28339         Reported by Paul Eggert.
28340
28341 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
28342
28343         * lib/string_.h: If the gnulib module XYZ is not present, undefine
28344         the symbol XYZ before redefining it.  This fixes a problem with
28345         programs that don't use XYZ, when compiled on systems that define
28346         XYZ to something else.
28347
28348 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
28349
28350         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
28351         occurs when "mkdir -m foo" creates a setgid directory that is (1)
28352         writeable to group or other and (2) is intended to have a special
28353         mode bit that is set or cleared.  In such a case, the directory
28354         should be neither group- nor other-writeable until the special
28355         mode bits are right.
28356
28357 2007-01-31  Eric Blake  <ebb9@byu.net>
28358
28359         * modules/mountlist (Depends-on): Add strstr.
28360
28361         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
28362         bug.
28363         * modules/string (Makefile.am): Remove redundant replacement.
28364         * modules/regex (Depends-on): Add mempcpy.
28365
28366 2007-01-31  Bruno Haible  <bruno@clisp.org>
28367
28368         New module description field 'Link'.
28369         * gnulib-tool (func_usage): Document --extract-link-directive.
28370         (sed_extract_prog): Recognize 'Link' directive.
28371         (func_get_link_directive): New function.
28372         (func_import): Show summary of link directives.
28373         Handle --extract-link-directive option.
28374         * modules/acl (Link): New section.
28375         * modules/clock-time (Link): New section.
28376         * modules/euidaccess (Link): New section.
28377         * modules/gettext (Link): New section.
28378         * modules/iconv (Link): New section.
28379         * modules/lock (Link): New section.
28380         * modules/nanosleep (Link): New section.
28381         * modules/readline (Link): New section.
28382
28383 2007-01-27  Bruno Haible  <bruno@clisp.org>
28384
28385         Enforce the use of gnulib modules for unportable <string.h> functions.
28386         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
28387         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
28388         (gl_HEADER_STRING_H_BODY): Require it.
28389         * lib/string_.h: If the gnulib module XYZ is not present, redefine
28390         the symbol XYZ to one that gives a link error.
28391         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
28392         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
28393         * modules/mempcpy (configure.ac): Likewise.
28394         * modules/memrchr (configure.ac): Likewise.
28395         * modules/stpcpy (configure.ac): Likewise.
28396         * modules/stpncpy (configure.ac): Likewise.
28397         * modules/strcase (configure.ac): Likewise.
28398         * modules/strcasestr (configure.ac): Likewise.
28399         * modules/strchrnul (configure.ac): Likewise.
28400         * modules/strdup (configure.ac): Likewise.
28401         * modules/strndup (configure.ac): Likewise.
28402         * modules/strnlen (configure.ac): Likewise.
28403         * modules/strpbrk (configure.ac): Likewise.
28404         * modules/strsep (configure.ac): Likewise.
28405         * modules/strstr (configure.ac): Likewise.
28406         * modules/strtok_r (configure.ac): Likewise.
28407
28408 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
28409
28410         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
28411
28412 2007-01-30  Jim Meyering  <jim@meyering.net>
28413
28414         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
28415
28416 2007-01-29  Bruno Haible  <bruno@clisp.org>
28417
28418         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
28419         * lib/execute.c: Likewise.
28420         * lib/pipe.c: Likewise.
28421         * lib/printf-args.h: Likewise.
28422         * lib/printf-args.c: Likewise.
28423         * lib/printf-parse.c: Likewise.
28424         * lib/vasnprintf.c: Likewise.
28425
28426 2007-01-29  Eric Blake  <ebb9@byu.net>
28427
28428         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
28429         declaration.
28430
28431 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
28432
28433         * lib/strptime.h (strptime): Use 'restrict' for args where
28434         POSIX requires this.
28435         * lib/strptime.c (strptime): Likewise.
28436         Change license notice from LGPL to GPL, since gnulib-tool will
28437         change this as needed.
28438         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
28439         defined.
28440         Include "strptime.h" first, to check interface.
28441         Do not #undef _LIBC and _NL_CURRENT.
28442         Do not include <stdlib.h>; no longer needed.
28443         Include "time_r.h" and declare ptime_locale_status
28444         only if _LIBC is not defined.
28445         (__P): Remove unused macro.
28446         (match_string): Bring back glibc version, but use it only if _LIBC
28447         is defined.
28448         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
28449         Remove unnecessary assertion and abort() call.
28450         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
28451         * m4/strptime.m4: Fix serial number comment.
28452         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
28453         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
28454         (Depends-on): Add time_r.
28455
28456 2007-01-29  Bruno Haible  <bruno@clisp.org>
28457
28458         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
28459         strptime.
28460         * modules/strptime (Depends-on): Add stdbool.
28461         * lib/strptime.h: Include <time.h> always. Add comments.
28462
28463 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
28464
28465         * modules/strptime: New file.
28466         * lib/strptime.h: New file.
28467         * lib/strptime.c: New file.
28468         * m4/strptime.m4: New file.
28469
28470 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
28471
28472         * MODULES.html.sh: New module mpsort.
28473         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
28474
28475         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
28476         a circularity problem with HP-UX ia64 reported by Bob Proulx in
28477         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
28478         All uses changed.
28479         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
28480         All uses changed.
28481         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
28482         to _Restrict_.
28483         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
28484         the parameter matches the prototype.
28485
28486 2007-01-28  Jim Meyering  <jim@meyering.net>
28487
28488         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
28489         sys/time.h here, reverting that part of the previous patch:
28490         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
28491
28492 2007-01-28  Bruno Haible  <bruno@clisp.org>
28493
28494         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
28495         value of $(SYS_TIME_H).
28496         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
28497         remove it conditionally, too. [added by Jim Meyering]
28498         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
28499         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
28500         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
28501         GETTIMEOFDAY_REPLACEMENT to 1.
28502
28503 2007-01-28  Bruno Haible  <bruno@clisp.org>
28504
28505         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
28506         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
28507         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
28508         Set UNISTD_H instead of UNISTD_H2.
28509         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
28510
28511 2007-01-28  Bruno Haible  <bruno@clisp.org>
28512
28513         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
28514         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
28515
28516 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28517
28518         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
28519         (func_create_testdir): Ensure C locale for `grep' and `tr'
28520         character ranges.
28521         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
28522         ACLOCAL_AMFLAGS parsing state machine.
28523
28524 2007-01-27  Bruno Haible  <bruno@clisp.org>
28525
28526         * modules/unistr/base: Update.
28527
28528 2007-01-27  Bruno Haible  <bruno@clisp.org>
28529
28530         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
28531         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
28532         * modules/unistr/u32-mbtouc-unsafe: Renamed from
28533         modules/unistr/u32-mbtouc.
28534         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
28535         * lib/unistr.h: Update.
28536         * lib/linebreak.c: Update.
28537         * modules/unistr/u32-mbtouc: Renamed from
28538         modules/unistr/u32-mbtouc-safe.
28539         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
28540         * lib/unistr.h: Update.
28541         * lib/unistr/u32-to-u8.c: Update.
28542         * lib/unistr/u32-to-u16.c: Update.
28543
28544 2007-01-27  Bruno Haible  <bruno@clisp.org>
28545
28546         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
28547         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
28548         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
28549         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
28550         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
28551         * modules/unistr/u16-mbtouc-unsafe: Renamed from
28552         modules/unistr/u16-mbtouc.
28553         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
28554         * lib/unistr.h: Update.
28555         * lib/linebreak.c: Update.
28556         * modules/linebreak: Update.
28557         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
28558         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
28559         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
28560         * modules/unistr/u16-mbtouc: Renamed from
28561         modules/unistr/u16-mbtouc-safe.
28562         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
28563         * lib/unistr.h: Update.
28564         * lib/unistr/u16-to-u8.c: Update.
28565         * modules/unistr/u16-to-u8: Update.
28566         * lib/unistr/u16-to-u32.c: Update.
28567         * modules/unistr/u16-to-u32: Update.
28568
28569 2007-01-27  Bruno Haible  <bruno@clisp.org>
28570
28571         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
28572         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
28573         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
28574         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
28575         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
28576         * modules/unistr/u8-mbtouc-unsafe: Renamed from
28577         modules/unistr/u8-mbtouc.
28578         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
28579         * lib/unistr.h: Update.
28580         * lib/striconveh.c: Update.
28581         * modules/striconveh: Update.
28582         * lib/linebreak.c: Update.
28583         * modules/linebreak: Update.
28584         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
28585         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
28586         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
28587         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
28588         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
28589         * lib/unistr.h: Update.
28590         * lib/striconveh.c: Update.
28591         * modules/striconveh: Update.
28592         * lib/unistr/u8-to-u16.c: Update.
28593         * modules/unistr/u8-to-u16: Update.
28594         * lib/unistr/u8-to-u32.c: Update.
28595         * modules/unistr/u8-to-u32: Update.
28596
28597 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28598
28599         Sync from Libtool.
28600         * lib/argz.c: Do not include strings.h nor memory.h, include
28601         string.h unconditionally.  Patch by Simon Josefsson.
28602
28603 2007-01-27  Bruno Haible  <bruno@clisp.org>
28604
28605         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
28606         from gl_HEADER_STRING_H_BODY.
28607         (gl_HEADER_STRING_H_BODY): Require it.
28608         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
28609         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
28610         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
28611         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
28612         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28613         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
28614         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
28615         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
28616         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
28617         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
28618         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
28619         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
28620         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
28621         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
28622         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28623
28624 2007-01-27  Bruno Haible  <bruno@clisp.org>
28625
28626         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
28627         check_PROGRAMS into noinst_PROGRAMS.
28628         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
28629         check_PROGRAMS in this case.
28630         (func_import): Set for_test to false.
28631         (func_create_testdir): Set for_test to true.
28632
28633 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
28634             Bruno Haible  <bruno@clisp.org>
28635
28636         * modules/strcasestr (Files): Remove lib/strcasestr.h.
28637         (Depends-on): Add string.
28638         (Includes): Use <string.h> instead of strcasestr.h.
28639         * modules/string (Makefile.am): Also substitute the value of
28640         REPLACE_STRCASESTR.
28641         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
28642         assume strcasestr is declared in <string.h> not <strings.h>. Also
28643         set REPLACE_STRCASESTR.
28644         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
28645         REPLACE_STRCASESTR.
28646         * lib/strcasestr.h: Remove file.
28647         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
28648         * lib/string_.h (strcasestr): New declaration.
28649
28650 2007-01-27  Bruno Haible  <bruno@clisp.org>
28651
28652         * lib/string_.h: Use 'extern'.
28653
28654 2007-01-27  Jim Meyering  <jim@meyering.net>
28655
28656         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
28657         of set-but-not-used local, "q".
28658
28659         * lib/mempcpy.c: Include <config.h> before <string.h>.
28660         This fixes a compilation error on HP-UX, due to the system's
28661         "restrict"-using mempcpy prototype.
28662
28663 2007-01-26  Bruno Haible  <bruno@clisp.org>
28664
28665         Small optimization.
28666         * lib/javacomp.c: Include c-strstr.h.
28667          (is_envjavac_gcj): Use c_strstr instead of strstr.
28668         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
28669
28670 2007-01-26  Bruno Haible  <bruno@clisp.org>
28671
28672         * MODULES.html.sh (Unicode string functions): Add the new modules.
28673
28674         * modules/uniconv/u32-strconv-to-locale: New file.
28675         * lib/uniconv/u32-strconv-to-locale.c: New file.
28676
28677         * modules/uniconv/u16-strconv-to-locale: New file.
28678         * lib/uniconv/u16-strconv-to-locale.c: New file.
28679
28680         * modules/uniconv/u8-strconv-to-locale: New file.
28681         * lib/uniconv/u8-strconv-to-locale.c: New file.
28682
28683         * modules/uniconv/u32-strconv-from-locale: New file.
28684         * lib/uniconv/u32-strconv-from-locale.c: New file.
28685
28686         * modules/uniconv/u16-strconv-from-locale: New file.
28687         * lib/uniconv/u16-strconv-from-locale.c: New file.
28688
28689         * modules/uniconv/u8-strconv-from-locale: New file.
28690         * lib/uniconv/u8-strconv-from-locale.c: New file.
28691
28692         * modules/uniconv/u32-strconv-to-enc: New file.
28693         * lib/uniconv/u32-strconv-to-enc.c: New file.
28694         * modules/uniconv/u32-strconv-to-enc-tests: New file.
28695         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
28696
28697         * modules/uniconv/u16-strconv-to-enc: New file.
28698         * lib/uniconv/u16-strconv-to-enc.c: New file.
28699         * lib/uniconv/u-strconv-to-enc.h: New file.
28700         * modules/uniconv/u16-strconv-to-enc-tests: New file.
28701         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
28702
28703         * modules/uniconv/u8-strconv-to-enc: New file.
28704         * lib/uniconv/u8-strconv-to-enc.c: New file.
28705         * modules/uniconv/u8-strconv-to-enc-tests: New file.
28706         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
28707
28708         * modules/uniconv/u32-strconv-from-enc: New file.
28709         * lib/uniconv/u32-strconv-from-enc.c: New file.
28710         * modules/uniconv/u32-strconv-from-enc-tests: New file.
28711         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
28712
28713         * modules/uniconv/u16-strconv-from-enc: New file.
28714         * lib/uniconv/u16-strconv-from-enc.c: New file.
28715         * modules/uniconv/u16-strconv-from-enc-tests: New file.
28716         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
28717
28718         * modules/uniconv/u8-strconv-from-enc: New file.
28719         * lib/uniconv/u8-strconv-from-enc.c: New file.
28720         * lib/uniconv/u-strconv-from-enc.h: New file.
28721         * modules/uniconv/u8-strconv-from-enc-tests: New file.
28722         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
28723
28724         * modules/uniconv/u32-conv-from-enc: New file.
28725         * lib/uniconv/u32-conv-from-enc.c: New file.
28726         * modules/uniconv/u32-conv-from-enc-tests: New file.
28727         * tests/uniconv/test-u32-conv-from-enc.c: New file.
28728
28729         * modules/uniconv/u16-conv-from-enc: New file.
28730         * lib/uniconv/u16-conv-from-enc.c: New file.
28731         * lib/uniconv/u-conv-from-enc.h: New file.
28732         * modules/uniconv/u16-conv-from-enc-tests: New file.
28733         * tests/uniconv/test-u16-conv-from-enc.c: New file.
28734
28735         * modules/uniconv/u8-conv-from-enc: New file.
28736         * lib/uniconv/u8-conv-from-enc.c: New file.
28737         * modules/uniconv/u8-conv-from-enc-tests: New file.
28738         * tests/uniconv/test-u8-conv-from-enc.c: New file.
28739
28740         * modules/uniconv/base: New file.
28741         * lib/uniconv.h: New file.
28742
28743 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
28744
28745         * doc/gnulib-tool.texi (Initial import): Update to match current
28746         behavior with strdup module.
28747         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
28748         * lib/memmem.h: Remove; all uses removed.  This is now done
28749         by <string.h>.
28750         * lib/mempcpy.h: Likewise.
28751         * lib/memrchr.h: Likewise.
28752         * lib/stpcpy.h: Likewise.
28753         * lib/stpncpy.h: Likewise.
28754         * lib/strcase.h: Likewise.
28755         * lib/strchrnul.h: Likewise.
28756         * lib/strdup.h: Likewise.
28757         * lib/strndup.h: Likewise.
28758         * lib/strnlen.h: Likewise.
28759         * lib/strpbrk.h: Likewise.
28760         * lib/strsep.h: Likewise.
28761         * lib/strstr.h: Likewise.
28762         * lib/strtok_r.h: Likewise.
28763         * lib/string_.h: New file.
28764         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
28765         Rely on <string.h> instead.
28766         * lib/canon-host.c: Likewise.
28767         * lib/chdir-long.c: Likewise.
28768         * lib/concatpath.c: Likewise.
28769         * lib/exclude.c: Likewise.
28770         * lib/fchdir.c: Likewise.
28771         * lib/getaddrinfo.c: Likewise.
28772         * lib/getcwd.c: Likewise.
28773         * lib/getsubopt.c: Likewise.
28774         * lib/glob.c: Likewise.
28775         * lib/hard-locale.c: Likewise.
28776         * lib/iconvme.c: Likewise.
28777         * lib/javacomp.c: Likewise.
28778         * lib/mempcpy.c: Likewise.
28779         * lib/memrchr.c: Likewise.
28780         * lib/regex_internal.h: Likewise.
28781         * lib/stpncpy.c: Likewise.
28782         * lib/strcasecmp.c: Likewise.
28783         * lib/strchrnul.c: Likewise.
28784         * lib/strdup.c: Likewise.
28785         * lib/striconv.c: Likewise.
28786         * lib/striconveh.c: Likewise.
28787         * lib/striconveha.c: Likewise.
28788         * lib/strncasecmp.c: Likewise.
28789         * lib/strndup.c: Likewise.
28790         * lib/strnlen.c: Likewise.
28791         * lib/strsep.c: Likewise.
28792         * lib/strstr.c: Likewise.
28793         * lib/strtok_r.c: Likewise.
28794         * lib/userspec.c: Likewise.
28795         * lib/w32spawn.h: Likewise.
28796         * lib/xstrndup.c: Likewise.
28797         * lib/mountlist.c (strstr): Remove decl.
28798         * m4/string_h.m4: New file.
28799         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
28800         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
28801         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
28802         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
28803         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
28804         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
28805         Set REPLACE_STRCASECMP if necessary.
28806         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
28807         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
28808         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
28809         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
28810         HAVE_DECL_STRDUP if necessary.
28811         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
28812         since gl_FUNC_STRNDUP does that now.
28813         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
28814         Check for decl here...
28815         (gl_PREREQ_STRNLEN): ... not here.
28816         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
28817         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
28818         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
28819         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
28820         necessary.
28821         * modules/string: New file.
28822         * modules/memmem (Files): Remove special-purpose include file.
28823         (Depends-on): Add string.
28824         (Include): Include <string.h>, not the removed file.
28825         * modules/mempcpy: Likewise.
28826         * modules/memrchr: Likewise.
28827         * modules/stpcpy: Likewise.
28828         * modules/stpncpy: Likewise.
28829         * modules/strcase: Likewise.
28830         * modules/strchrnul: Likewise.
28831         * modules/strdup: Likewise.
28832         * modules/strndup: Likewise.
28833         * modules/strnlen: Likewise.
28834         * modules/strpbrk: Likewise.
28835         * modules/strsep: Likewise.
28836         * modules/strstr: Likewise.
28837         * modules/strtok_r: Likewise.
28838         * tests/test-dirname.c: Don't include "strdup.h", since
28839         <string.h> now suffices.
28840         * tests/test-memmem.c: Don't include "memmem.h", since
28841         <string.h> now suffices.
28842
28843 2007-01-25  Bruno Haible  <bruno@clisp.org>
28844
28845         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
28846         *resultp is 0.
28847
28848         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
28849         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
28850         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
28851         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
28852
28853         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
28854         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
28855         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
28856         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
28857         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
28858         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
28859
28860 2007-01-24  Bruno Haible  <bruno@clisp.org>
28861
28862         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
28863         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
28864         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
28865         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
28866         gl_FUNC_FTS_CORE.
28867         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
28868         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
28869         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
28870         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
28871         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
28872         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
28873         gl_FUNC_FCHOWNAT.
28874         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
28875         gl_FUNC_STRFTIME.
28876         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
28877         Reported by Ralf Wildenhues.
28878
28879 2007-01-24  Bruno Haible  <bruno@clisp.org>
28880
28881         Drop AC_REQUIRE calls that are redundant with the module dependencies.
28882         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
28883         gl_GETADDRINFO.
28884         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
28885         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
28886         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
28887
28888 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
28889
28890         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
28891         Don't use 'exit'; just return from 'main'.
28892         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
28893
28894         * lib/fnmatch_.h: Readjust white space and comments to match
28895         glibc, to avoid spurious diffs.
28896
28897 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
28898
28899         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
28900         2004-12-01 change by Jakub Jelinek, since this code won't compile
28901         if !LIBC.  Problem reported by Bob Proulx.
28902
28903 2007-01-23  Bruno Haible  <bruno@clisp.org>
28904
28905         * lib/striconveh.c: Include c-strcaseeq.h.
28906         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
28907         * modules/striconveh (Depends-on): Add c-strcaseeq.
28908
28909 2007-01-23  Bruno Haible  <bruno@clisp.org>
28910
28911         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
28912
28913         * modules/c-strcaseeq: New file.
28914         * lib/c-strcaseeq.h: New file.
28915
28916         * modules/streq: New file.
28917         * lib/streq.h: New file.
28918
28919 2007-01-23  Bruno Haible  <bruno@clisp.org>
28920
28921         * modules/striconveha-tests: New file.
28922         * tests/test-striconveha.c: New file.
28923
28924         * lib/striconveha.h: Include <stdbool.h>.
28925         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
28926         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
28927         (mem_iconveha_notranslit): Renamed from mem_iconveha.
28928         (mem_iconveha): New function.
28929         (str_iconveha_notranslit): Renamed from str_iconveha.
28930         (str_iconveha): New function.
28931         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
28932         c-strcase.
28933
28934 2007-01-23  Bruno Haible  <bruno@clisp.org>
28935
28936         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
28937         encodings without forgiving before trying any encoding with handler.
28938         (str_iconveha): Try all encodings without forgiving before trying any
28939         encoding with handler.
28940
28941 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
28942
28943         Import the following changes from libc.
28944
28945         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
28946
28947         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
28948
28949         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
28950
28951         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
28952         normal_bracket label.
28953
28954         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
28955
28956         [BZ #361]
28957         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
28958         to normal_bracket after fetching the next character.
28959
28960 2007-01-22  Bruno Haible  <bruno@clisp.org>
28961
28962         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
28963         argument.
28964         * lib/striconveh.c (iconv_carefully_1): New function.
28965         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
28966         argument.
28967         (str_cd_iconveh): Update.
28968         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
28969         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
28970         * tests/test-striconveh.c (MAGIC): New macro.
28971         (new_offsets): New function.
28972         (main): Test call with and without offsets.
28973
28974 2007-01-22  Bruno Haible  <bruno@clisp.org>
28975
28976         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
28977         * modules/sys_select (Makefile.am): Likewise.
28978         * modules/sys_socket (Makefile.am): Likewise.
28979         * modules/sys_time (Makefile.am): Likewise.
28980
28981 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
28982
28983         * modules/gettimeofday (License): Change from GPL to LGPL, since
28984         gettimeofday is a library function.
28985
28986 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28987
28988         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
28989
28990 2007-01-21  Bruno Haible  <bruno@clisp.org>
28991
28992         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
28993
28994 2007-01-21  Bruno Haible  <bruno@clisp.org>
28995
28996         * modules/striconveha: New file.
28997         * lib/striconveha.h: New file.
28998         * lib/striconveha.c: New file.
28999         * MODULES.html.sh (Internationalization functions): Add striconveha.
29000         * lib/striconv.c (str_iconv): Optimize the case of an empty input
29001         string.
29002         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
29003
29004 2007-01-21  Bruno Haible  <bruno@clisp.org>
29005
29006         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
29007         * lib/striconveh.c (str_iconveh): Likewise.
29008
29009 2007-01-21  Bruno Haible  <bruno@clisp.org>
29010
29011         * lib/striconveh.h (mem_iconveh): New declaration.
29012         * lib/striconveh.c (mem_iconveh): New function.
29013         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
29014
29015 2007-01-21  Bruno Haible  <bruno@clisp.org>
29016
29017         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
29018
29019         * lib/striconveh.h (mem_cd_iconveh): Change specification.
29020         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
29021         original result buffer.
29022         (str_cd_iconveh): Update.
29023         * tests/test-striconveh.c (main): Update.
29024
29025         * lib/striconv.h (mem_cd_iconv): Change specification.
29026         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
29027         result buffer.
29028         (str_cd_iconv): Update.
29029         * tests/test-striconv.c (main): Update.
29030
29031 2007-01-21  Bruno Haible  <bruno@clisp.org>
29032
29033         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
29034
29035 2007-01-20  Jim Meyering  <jim@meyering.net>
29036
29037         * lib/userspec.c (parse_with_separator): If a user or group string
29038         starts with "+", skip the corresponding name-to-ID look-up, since
29039         such a look-up must fail: user and group names may not include "+".
29040
29041 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
29042
29043         * lib/poll.c: Include sys/time.h and time.h unconditionally,
29044         since we now assume the sys_time module.
29045         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
29046         check for sys/time.h; no longer needed.
29047         * modules/poll (Depends-on): Depend on sys_time.
29048
29049 2007-01-18  Bruno Haible  <bruno@clisp.org>
29050
29051         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
29052         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
29053
29054         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
29055         gettimeofday.
29056
29057         * tests/test-gettimeofday.c: Include <time.h>.
29058         (dummy): Remove variable.
29059
29060         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
29061         gl_HEADER_SYS_TIME_H.
29062         (gl_HEADER_SYS_TIME_H): New macro.
29063
29064         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
29065         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
29066         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
29067         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
29068         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
29069         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
29070         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
29071         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
29072         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
29073         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
29074         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
29075
29076         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
29077         last change; it caused a compilation error when cross-compiling to
29078         Cygwin.
29079
29080 2007-01-18  Jim Meyering  <jim@meyering.net>
29081
29082         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
29083         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
29084         than the race-prone "test -d sys || mkdir sys".
29085         (configure.ac): Use AC_PROG_MKDIR_P.
29086         * modules/sys_select: Likewise.
29087         * modules/sys_socket: Likewise.
29088         * modules/sys_time: Likewise.
29089
29090 2007-01-18  Eric Blake  <ebb9@byu.net>
29091
29092         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
29093         replace gettimeofday.
29094         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
29095         name, to avoid infinite recursion.
29096
29097 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
29098
29099         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
29100         module sys_time.
29101         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
29102         assume timespec.h defines struct timeval.
29103         * lib/settime.c: Likewise.
29104         * lib/utimens.c: Likewise.
29105         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
29106         since we now assume the gettimeofday module.
29107         * lib/tempname.c (__gen_tempname): Likewise.
29108         * lib/gettimeofday.h: Remove.
29109         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
29110         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
29111         Include <time.h>, for 'time()'.
29112         (localtime_buffer_addr): Also use this workaround if
29113         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
29114         to simplify the uses.  All uses changed.
29115         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
29116         that #undef is inside {}, and 'const' follows type name consistently.
29117         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
29118         (gettimeofday): Do not use the maximum possible value for
29119         tv->tv_usec, since that might break usages other than ls.c.
29120         Instead, we'll leave ls.c alone.  This undoes today's patch
29121         by Bruno.  Add a compile-time warning for 1s-clock resolution;
29122         we've never observed the problem but might as well keep the
29123         canary.
29124         * lib/nanosleep.c: Include timespec.h first, for interface check.
29125         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
29126         now assume the sys_time module.
29127         * lib/tempname.c: Likewise.
29128         * lib/timespec.h: Likewise.
29129         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
29130         needed.
29131         * lib/strftime.c: Likewise.
29132         * lib/timespec.h: Likewise.
29133         * lib/posixtm.c: Include posixtm.h first, for interface check.
29134         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
29135         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
29136         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
29137         * lib/sys_time_.h: New file.
29138         * lib/timespec.h (struct timespec): Use long int, not long.
29139         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
29140         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
29141         Remove obsolescent call to AC_HEADER_TIME.
29142         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
29143         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
29144         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
29145         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
29146         Likewise.
29147         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
29148         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
29149         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
29150         into the sys_time module.  Check for gettimeofday just once.
29151         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
29152         for gettimeofday signature to just check the signature.  Merely
29153         compile it, since linking doesn't test signature.  Improve test for
29154         whether gettimeofday.o is actually needed.
29155         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
29156         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
29157         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
29158         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
29159         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
29160         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
29161         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
29162         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
29163         than worrying about sys/time.h.
29164         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
29165         Don't bother worrying about TIME_WITH_SYS_TIME.
29166         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
29167         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
29168         * m4/sys_time_h.m4: New file.
29169         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
29170         Don't include sys/time.h.  Return from main rather than exiting.
29171         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
29172         all uses changed.
29173         * modules/gethrxtime (Depends-on): Add sys_time.
29174         * modules/gettime (Depends-on): Likewise.
29175         * modules/gettimeofday (Depends-on): Likewise.
29176         * modules/nanosleep (Depends-on): Likewise.
29177         * modules/settime (Depends-on): Likewise.
29178         * modules/tempname (Depends-on): Likewise.
29179         * modules/utimens (Depends-on): Likewise.
29180         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
29181         (Include:) Change back to <sys/time.h>.
29182         (Maintainer:) Add self.
29183         * modules/sys_time: New file.
29184         * modules/tempname (Depends-on): Add gettimeofday.
29185         * tests/test-gettimeofday.c: Include <sys/time.h>
29186         rather than gettimeofday.h.
29187
29188 2007-01-17  Bruno Haible  <bruno@clisp.org>
29189
29190         * gnulib-tool (func_get_license): Revert last patch. Instead, let
29191         the license default to GPL.
29192         (func_create_testdir): Don't complain if a module is LGPL and its
29193         tests module depends on GPLed modules.
29194
29195 2007-01-17  Bruno Haible  <bruno@clisp.org>
29196
29197         * lib/gettimeofday.c (gettimeofday): Add code for the case
29198         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
29199         maximum possible value for tv->tv_usec, rather than the minimum one.
29200
29201 2005-10-08  Martin Lambers  <marlam@marlam.de>
29202 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
29203 2007-01-16  Bruno Haible  <bruno@clisp.org>
29204
29205         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
29206         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
29207         gl_FUNC_GETTIMEOFDAY.
29208         (Include): Add gettimeofday.h.
29209         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
29210         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
29211         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
29212         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
29213         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
29214         * lib/gettimeofday.h: New file.
29215         * lib/gettimeofday.c: Include <sys/timeb.h>.
29216         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
29217         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
29218         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
29219         fall back on time().
29220
29221         * tests/test-gettimeofday.c: New file.
29222         * modules/gettimeofday-tests: New file.
29223
29224 2007-01-16  Eric Blake  <ebb9@byu.net>
29225
29226         * modules/fnmatch (Depends-on): Depend on wchar.
29227         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
29228         * m4/fnmatch.m4: Likewise.
29229         * modules/mbchar (Makefile.am): Assume <wchar.h>.
29230         * m4/mbchar.m4: Likewise.
29231         * modules/mbswidth (Depends-on): Depend on wchar.
29232         * lib/mbswidth.c: Assume <wchar.h>.
29233         * m4/mbswidth.m4: Likewise.
29234         * modules/quotearg (Depends-on): Depend on wchar.
29235         * lib/quotearg.c: Assume <wchar.h>.
29236         * m4/quotearg.m4: Likewise.
29237         * modules/regex (Depends-on): Depend on wchar.
29238         * lib/regex_internal.h: Assume <wchar.h>.
29239         * m4/regex.m4: Likewise.
29240         * modules/stdint (Depends-on): Depend on wchar.
29241         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
29242         * m4/stdint.m4: Likewise.
29243         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
29244         * modules/strftime (Depends-on): Depend on wchar.
29245         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
29246         * modules/strtol (Depends-on): Depend on wchar.
29247         * lib/strtol.c: Assume <wchar.h>.
29248         * modules/wcwidth (Depends-on): Depend on wchar.
29249         * lib/wcwidth.h: Assume <wchar.h>.
29250         * m4/wcwidth.m4: Likewise.
29251
29252 2007-01-16  Bruno Haible  <bruno@clisp.org>
29253
29254         * modules/csharpexec-script: New, created from...
29255         * modules/csharpexec: ... this.
29256
29257 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
29258
29259         * modules/javaexec-script: New, created from...
29260         * modules/javaexec: ... this.
29261
29262 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
29263
29264         * modules/poll (Dependencies): Add sys_select.
29265
29266 2007-01-15  Jim Meyering  <jim@meyering.net>
29267
29268         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
29269         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
29270         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
29271         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
29272
29273 2007-01-15  Bruno Haible  <bruno@clisp.org>
29274
29275         * modules/striconveh: New file.
29276         * lib/striconveh.h: New file.
29277         * lib/striconveh.c: New file.
29278         * MODULES.html.sh (Internationalization functions): Add striconveh.
29279
29280         * modules/striconveh-tests: New file.
29281         * tests/test-striconveh.c: New file.
29282
29283 2007-01-15  Bruno Haible  <bruno@clisp.org>
29284
29285         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
29286         not from GNU libiconv or GNU libc.
29287
29288 2007-01-15  Bruno Haible  <bruno@clisp.org>
29289
29290         * doc/gnulib-intro.texi (Copyright): Explain the different license
29291         terms for module descriptions, autoconf macros, tests, documentation.
29292
29293 2007-01-14  Bruno Haible  <bruno@clisp.org>
29294
29295         * modules/striconv-tests: New file.
29296         * tests/test-striconv.c: New file.
29297
29298 2007-01-14  Bruno Haible  <bruno@clisp.org>
29299
29300         * modules/iconv-tests: New file.
29301         * tests/test-iconv.c: New file.
29302
29303 2007-01-14  Bruno Haible  <bruno@clisp.org>
29304
29305         * gnulib-tool (func_get_license): For test modules, use the license of
29306         the main module.
29307
29308 2007-01-14  Bruno Haible  <bruno@clisp.org>
29309
29310         * modules/iconv (Include): Clarify that <iconv.h> can only be included
29311         if iconv is found to exist.
29312
29313 2007-01-14  Bruno Haible  <bruno@clisp.org>
29314
29315         * modules/c-ctype-tests: New file.
29316         * tests/test-c-ctype.c: New file.
29317
29318 2007-01-14  Bruno Haible  <bruno@clisp.org>
29319
29320         * modules/binary-io-tests: New file.
29321         * tests/test-binary-io.sh: New file.
29322         * tests/test-binary-io.c: New file.
29323
29324 2007-01-14  Bruno Haible  <bruno@clisp.org>
29325
29326         * modules/array-oset-tests: New file.
29327         * tests/test-array_oset.c: New file.
29328
29329 2007-01-14  Bruno Haible  <bruno@clisp.org>
29330
29331         * modules/array-list-tests: New file.
29332         * tests/test-array_list.c: New file.
29333
29334 2007-01-14  Bruno Haible  <bruno@clisp.org>
29335
29336         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
29337         and make.
29338         Reported by Simon Josefsson in
29339         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
29340
29341 2007-01-14  Bruno Haible  <bruno@clisp.org>
29342
29343         * modules/allocsa-tests: New file.
29344         * tests/test-allocsa.c: New file.
29345
29346 2007-01-14  Bruno Haible  <bruno@clisp.org>
29347
29348         * modules/fchdir (Depends-on): Add absolute-header.
29349         * modules/unistd (Depends-on): Likewise.
29350
29351 2006-12-30  Bruno Haible  <bruno@clisp.org>
29352
29353         * modules/fchdir: New file.
29354         * modules/unistd (Files): Add lib/unistd_.h.
29355         (Makefile.am): Generate unistd.h from unistd_.h.
29356         * lib/fchdir.c: New file.
29357         * lib/dirent_.h: New file.
29358         * lib/unistd_.h: New file.
29359         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
29360         * m4/fchdir.m4: New file.
29361         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
29362         (gl_HEADER_UNISTD): Invoke it.
29363         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
29364         function.
29365         * lib/backupfile.c (opendir, closedir): Undefine.
29366         * lib/chown.c (open, close): Undefine.
29367         * lib/clean-temp.c (open, close): Undefine.
29368         * lib/copy-file.c (open, close): Undefine.
29369         * lib/execute.c (open, close): Undefine.
29370         * lib/fsusage.c (open, close): Undefine.
29371         * lib/gc-gnulib.c (open, close): Undefine.
29372         * lib/getcwd.c (opendir, closedir): Undefine.
29373         * lib/glob.c (opendir, closedir): Undefine.
29374         * lib/javacomp.c (open, close): Undefine.
29375         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
29376         * lib/openat-proc.c (open, close): Undefine.
29377         * lib/pagealign_alloc.c (open, close): Undefine.
29378         * lib/pipe.c (open, close): Undefine.
29379         * lib/progreloc.c (open, close): Undefine.
29380         * lib/savedir.c (opendir, closedir): Undefine.
29381         * lib/utime.c (open, close): Undefine.
29382         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
29383
29384 2007-01-10  Bruno Haible  <bruno@clisp.org>
29385
29386         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
29387
29388 2007-01-12  Eric Blake  <ebb9@byu.net>
29389
29390         Provide a robust <wchar.h>.  Further simplifications are now
29391         possible in other modules, but not included here.
29392         * modules/wchar: New module.
29393         * m4/wchar.m4: New file.
29394         * lib/wchar_.h: Likewise.
29395         * modules/mbchar (Depends-on): Depend on wchar, as the first use
29396         of the new module.
29397         * MODULES.html.sh (Extended multibyte and wide character utilities):
29398         New section.
29399
29400 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
29401
29402         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
29403         to a reasonable default for memory allocation.
29404         (xreadlink): Don't allocate a huge buffer, to work around a buggy
29405         file system that reports garbage st_size values for symlinks.
29406         Problem reported by Liyang Hu.
29407
29408 2007-01-11  Simon Josefsson  <simon@josefsson.org>
29409
29410         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
29411         Emacs .#* auto-save files).
29412
29413 2007-01-11  Bruno Haible  <bruno@clisp.org>
29414
29415         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
29416         directory.
29417
29418 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
29419
29420         Use @...@ consistently in lib/wctype_.h.
29421         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
29422         on it being set to 1 or 0.
29423         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
29424         go back to AC_SUBSTing it.
29425         * modules/wctype (Makefile.am): Undo previous change.
29426
29427 2007-01-10  Eric Blake  <ebb9@byu.net>
29428
29429         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
29430         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
29431         * modules/wctype (Makefile.am): Likewise.
29432         Reported by Chris McGuire.
29433
29434 2007-01-10  Jim Meyering  <jim@meyering.net>
29435
29436         fts.c: a small readability/maintainability improvement
29437         * lib/fts.c (fts_read): Make this code slightly more readable and
29438         maintainable by hoisting the "sp->fts_cur = p" assignments to
29439         immediately follow the statements that set P.  Derived from
29440         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
29441
29442 2007-01-10  Eric Blake  <ebb9@byu.net>
29443
29444         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
29445         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
29446         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
29447         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
29448         Reported by Chris McGuire.
29449
29450 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29451
29452         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
29453         in sed script.
29454
29455 2007-01-09  Bruno Haible  <bruno@clisp.org>
29456
29457         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
29458         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
29459         variables.
29460         (func_module): Use them.
29461
29462 2007-01-09  Bruno Haible  <bruno@clisp.org>
29463
29464         * modules/unistr/base: New file.
29465         * lib/unistr.h: New file.
29466
29467         * modules/unistr/u8-to-u16: New file.
29468         * lib/unistr/u8-to-u16.c: New file.
29469
29470         * modules/unistr/u8-to-u32: New file.
29471         * lib/unistr/u8-to-u32.c: New file.
29472
29473         * modules/unistr/u16-to-u8: New file.
29474         * lib/unistr/u16-to-u8.c: New file.
29475
29476         * modules/unistr/u16-to-u32: New file.
29477         * lib/unistr/u16-to-u32.c: New file.
29478
29479         * modules/unistr/u32-to-u8: New file.
29480         * lib/unistr/u32-to-u8.c: New file.
29481
29482         * modules/unistr/u32-to-u16: New file.
29483         * lib/unistr/u32-to-u16.c: New file.
29484
29485         * modules/unistr/u8-check: New file.
29486         * modules/unistr/u16-check: New file.
29487         * modules/unistr/u32-check: New file.
29488         * lib/unistr/u8-check.c: New file.
29489         * lib/unistr/u16-check.c: New file.
29490         * lib/unistr/u32-check.c: New file.
29491
29492         * modules/unistr/u8-chr: New file.
29493         * modules/unistr/u16-chr: New file.
29494         * modules/unistr/u32-chr: New file.
29495         * lib/unistr/u8-chr.c: New file.
29496         * lib/unistr/u16-chr.c: New file.
29497         * lib/unistr/u32-chr.c: New file.
29498
29499         * modules/unistr/u8-cmp: New file.
29500         * modules/unistr/u16-cmp: New file.
29501         * modules/unistr/u32-cmp: New file.
29502         * lib/unistr/u8-cmp.c: New file.
29503         * lib/unistr/u16-cmp.c: New file.
29504         * lib/unistr/u32-cmp.c: New file.
29505
29506         * modules/unistr/u8-cpy: New file.
29507         * modules/unistr/u16-cpy: New file.
29508         * modules/unistr/u32-cpy: New file.
29509         * lib/unistr/u8-cpy.c: New file.
29510         * lib/unistr/u16-cpy.c: New file.
29511         * lib/unistr/u32-cpy.c: New file.
29512         * lib/unistr/u-cpy.h: New file.
29513
29514         * modules/unistr/u8-cpy-alloc: New file.
29515         * modules/unistr/u16-cpy-alloc: New file.
29516         * modules/unistr/u32-cpy-alloc: New file.
29517         * lib/unistr/u8-cpy-alloc.c: New file.
29518         * lib/unistr/u16-cpy-alloc.c: New file.
29519         * lib/unistr/u32-cpy-alloc.c: New file.
29520         * lib/unistr/u-cpy-alloc.h: New file.
29521
29522         * modules/unistr/u8-endswith: New file.
29523         * modules/unistr/u16-endswith: New file.
29524         * modules/unistr/u32-endswith: New file.
29525         * lib/unistr/u8-endswith.c: New file.
29526         * lib/unistr/u16-endswith.c: New file.
29527         * lib/unistr/u32-endswith.c: New file.
29528         * lib/unistr/u-endswith.h: New file.
29529
29530         * modules/unistr/u8-mblen: New file.
29531         * modules/unistr/u16-mblen: New file.
29532         * modules/unistr/u32-mblen: New file.
29533         * lib/unistr/u8-mblen.c: New file.
29534         * lib/unistr/u16-mblen.c: New file.
29535         * lib/unistr/u32-mblen.c: New file.
29536
29537         * modules/unistr/u8-mbtouc: New file.
29538         * modules/unistr/u16-mbtouc: New file.
29539         * modules/unistr/u32-mbtouc: New file.
29540         * lib/unistr/u8-mbtouc.c: New file.
29541         * lib/unistr/u16-mbtouc.c: New file.
29542         * lib/unistr/u32-mbtouc.c: New file.
29543
29544         * modules/unistr/u8-mbtouc-safe: New file.
29545         * modules/unistr/u16-mbtouc-safe: New file.
29546         * modules/unistr/u32-mbtouc-safe: New file.
29547         * lib/unistr/u8-mbtouc-safe.c: New file.
29548         * lib/unistr/u16-mbtouc-safe.c: New file.
29549         * lib/unistr/u32-mbtouc-safe.c: New file.
29550
29551         * modules/unistr/u8-move: New file.
29552         * modules/unistr/u16-move: New file.
29553         * modules/unistr/u32-move: New file.
29554         * lib/unistr/u8-move.c: New file.
29555         * lib/unistr/u16-move.c: New file.
29556         * lib/unistr/u32-move.c: New file.
29557         * lib/unistr/u-move.h: New file.
29558
29559         * modules/unistr/u8-next: New file.
29560         * modules/unistr/u16-next: New file.
29561         * modules/unistr/u32-next: New file.
29562         * lib/unistr/u8-next.c: New file.
29563         * lib/unistr/u16-next.c: New file.
29564         * lib/unistr/u32-next.c: New file.
29565
29566         * modules/unistr/u8-prev: New file.
29567         * modules/unistr/u16-prev: New file.
29568         * modules/unistr/u32-prev: New file.
29569         * lib/unistr/u8-prev.c: New file.
29570         * lib/unistr/u16-prev.c: New file.
29571         * lib/unistr/u32-prev.c: New file.
29572
29573         * modules/unistr/u8-set: New file.
29574         * modules/unistr/u16-set: New file.
29575         * modules/unistr/u32-set: New file.
29576         * lib/unistr/u8-set.c: New file.
29577         * lib/unistr/u16-set.c: New file.
29578         * lib/unistr/u32-set.c: New file.
29579         * lib/unistr/u-set.h: New file.
29580
29581         * modules/unistr/u8-startswith: New file.
29582         * modules/unistr/u16-startswith: New file.
29583         * modules/unistr/u32-startswith: New file.
29584         * lib/unistr/u8-startswith.c: New file.
29585         * lib/unistr/u16-startswith.c: New file.
29586         * lib/unistr/u32-startswith.c: New file.
29587         * lib/unistr/u-startswith.h: New file.
29588
29589         * modules/unistr/u8-stpcpy: New file.
29590         * modules/unistr/u16-stpcpy: New file.
29591         * modules/unistr/u32-stpcpy: New file.
29592         * lib/unistr/u8-stpcpy.c: New file.
29593         * lib/unistr/u16-stpcpy.c: New file.
29594         * lib/unistr/u32-stpcpy.c: New file.
29595         * lib/unistr/u-stpcpy.h: New file.
29596
29597         * modules/unistr/u8-stpncpy: New file.
29598         * modules/unistr/u16-stpncpy: New file.
29599         * modules/unistr/u32-stpncpy: New file.
29600         * lib/unistr/u8-stpncpy.c: New file.
29601         * lib/unistr/u16-stpncpy.c: New file.
29602         * lib/unistr/u32-stpncpy.c: New file.
29603         * lib/unistr/u-stpncpy.h: New file.
29604
29605         * modules/unistr/u8-strcat: New file.
29606         * modules/unistr/u16-strcat: New file.
29607         * modules/unistr/u32-strcat: New file.
29608         * lib/unistr/u8-strcat.c: New file.
29609         * lib/unistr/u16-strcat.c: New file.
29610         * lib/unistr/u32-strcat.c: New file.
29611         * lib/unistr/u-strcat.h: New file.
29612
29613         * modules/unistr/u8-strchr: New file.
29614         * modules/unistr/u16-strchr: New file.
29615         * modules/unistr/u32-strchr: New file.
29616         * lib/unistr/u8-strchr.c: New file.
29617         * lib/unistr/u16-strchr.c: New file.
29618         * lib/unistr/u32-strchr.c: New file.
29619
29620         * modules/unistr/u8-strcmp: New file.
29621         * modules/unistr/u16-strcmp: New file.
29622         * modules/unistr/u32-strcmp: New file.
29623         * lib/unistr/u8-strcmp.c: New file.
29624         * lib/unistr/u16-strcmp.c: New file.
29625         * lib/unistr/u32-strcmp.c: New file.
29626
29627         * modules/unistr/u8-strcpy: New file.
29628         * modules/unistr/u16-strcpy: New file.
29629         * modules/unistr/u32-strcpy: New file.
29630         * lib/unistr/u8-strcpy.c: New file.
29631         * lib/unistr/u16-strcpy.c: New file.
29632         * lib/unistr/u32-strcpy.c: New file.
29633         * lib/unistr/u-strcpy.h: New file.
29634
29635         * modules/unistr/u8-strcspn: New file.
29636         * modules/unistr/u16-strcspn: New file.
29637         * modules/unistr/u32-strcspn: New file.
29638         * lib/unistr/u8-strcspn.c: New file.
29639         * lib/unistr/u16-strcspn.c: New file.
29640         * lib/unistr/u32-strcspn.c: New file.
29641         * lib/unistr/u-strcspn.h: New file.
29642
29643         * modules/unistr/u8-strdup: New file.
29644         * modules/unistr/u16-strdup: New file.
29645         * modules/unistr/u32-strdup: New file.
29646         * lib/unistr/u8-strdup.c: New file.
29647         * lib/unistr/u16-strdup.c: New file.
29648         * lib/unistr/u32-strdup.c: New file.
29649         * lib/unistr/u-strdup.h: New file.
29650
29651         * modules/unistr/u8-strlen: New file.
29652         * modules/unistr/u16-strlen: New file.
29653         * modules/unistr/u32-strlen: New file.
29654         * lib/unistr/u8-strlen.c: New file.
29655         * lib/unistr/u16-strlen.c: New file.
29656         * lib/unistr/u32-strlen.c: New file.
29657         * lib/unistr/u-strlen.h: New file.
29658
29659         * modules/unistr/u8-strmblen: New file.
29660         * modules/unistr/u16-strmblen: New file.
29661         * modules/unistr/u32-strmblen: New file.
29662         * lib/unistr/u8-strmblen.c: New file.
29663         * lib/unistr/u16-strmblen.c: New file.
29664         * lib/unistr/u32-strmblen.c: New file.
29665
29666         * modules/unistr/u8-strmbtouc: New file.
29667         * modules/unistr/u16-strmbtouc: New file.
29668         * modules/unistr/u32-strmbtouc: New file.
29669         * lib/unistr/u8-strmbtouc.c: New file.
29670         * lib/unistr/u16-strmbtouc.c: New file.
29671         * lib/unistr/u32-strmbtouc.c: New file.
29672
29673         * modules/unistr/u8-strncat: New file.
29674         * modules/unistr/u16-strncat: New file.
29675         * modules/unistr/u32-strncat: New file.
29676         * lib/unistr/u8-strncat.c: New file.
29677         * lib/unistr/u16-strncat.c: New file.
29678         * lib/unistr/u32-strncat.c: New file.
29679         * lib/unistr/u-strncat.h: New file.
29680
29681         * modules/unistr/u8-strncmp: New file.
29682         * modules/unistr/u16-strncmp: New file.
29683         * modules/unistr/u32-strncmp: New file.
29684         * lib/unistr/u8-strncmp.c: New file.
29685         * lib/unistr/u16-strncmp.c: New file.
29686         * lib/unistr/u32-strncmp.c: New file.
29687
29688         * modules/unistr/u8-strncpy: New file.
29689         * modules/unistr/u16-strncpy: New file.
29690         * modules/unistr/u32-strncpy: New file.
29691         * lib/unistr/u8-strncpy.c: New file.
29692         * lib/unistr/u16-strncpy.c: New file.
29693         * lib/unistr/u32-strncpy.c: New file.
29694         * lib/unistr/u-strncpy.h: New file.
29695
29696         * modules/unistr/u8-strnlen: New file.
29697         * modules/unistr/u16-strnlen: New file.
29698         * modules/unistr/u32-strnlen: New file.
29699         * lib/unistr/u8-strnlen.c: New file.
29700         * lib/unistr/u16-strnlen.c: New file.
29701         * lib/unistr/u32-strnlen.c: New file.
29702         * lib/unistr/u-strnlen.h: New file.
29703
29704         * modules/unistr/u8-strpbrk: New file.
29705         * modules/unistr/u16-strpbrk: New file.
29706         * modules/unistr/u32-strpbrk: New file.
29707         * lib/unistr/u8-strpbrk.c: New file.
29708         * lib/unistr/u16-strpbrk.c: New file.
29709         * lib/unistr/u32-strpbrk.c: New file.
29710         * lib/unistr/u-strpbrk.h: New file.
29711
29712         * modules/unistr/u8-strrchr: New file.
29713         * modules/unistr/u16-strrchr: New file.
29714         * modules/unistr/u32-strrchr: New file.
29715         * lib/unistr/u8-strrchr.c: New file.
29716         * lib/unistr/u16-strrchr.c: New file.
29717         * lib/unistr/u32-strrchr.c: New file.
29718
29719         * modules/unistr/u8-strspn: New file.
29720         * modules/unistr/u16-strspn: New file.
29721         * modules/unistr/u32-strspn: New file.
29722         * lib/unistr/u8-strspn.c: New file.
29723         * lib/unistr/u16-strspn.c: New file.
29724         * lib/unistr/u32-strspn.c: New file.
29725         * lib/unistr/u-strspn.h: New file.
29726
29727         * modules/unistr/u8-strstr: New file.
29728         * modules/unistr/u16-strstr: New file.
29729         * modules/unistr/u32-strstr: New file.
29730         * lib/unistr/u8-strstr.c: New file.
29731         * lib/unistr/u16-strstr.c: New file.
29732         * lib/unistr/u32-strstr.c: New file.
29733         * lib/unistr/u-strstr.h: New file.
29734
29735         * modules/unistr/u8-strtok: New file.
29736         * modules/unistr/u16-strtok: New file.
29737         * modules/unistr/u32-strtok: New file.
29738         * lib/unistr/u8-strtok.c: New file.
29739         * lib/unistr/u16-strtok.c: New file.
29740         * lib/unistr/u32-strtok.c: New file.
29741         * lib/unistr/u-strtok.h: New file.
29742
29743         * modules/unistr/u8-uctomb: New file.
29744         * modules/unistr/u16-uctomb: New file.
29745         * modules/unistr/u32-uctomb: New file.
29746         * lib/unistr/u8-uctomb.c: New file.
29747         * lib/unistr/u16-uctomb.c: New file.
29748         * lib/unistr/u32-uctomb.c: New file.
29749
29750         * MODULES.html.sh (Unicode string functions): Add the new modules.
29751
29752 2007-01-08  Bruno Haible  <bruno@clisp.org>
29753
29754         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
29755         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
29756         subdirectories.
29757
29758 2007-01-08  Karl Berry  <karl@gnu.org>
29759
29760         * doc/error.texi: mention that main() fns must set program_name
29761         when progname is used.
29762
29763 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
29764
29765         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
29766         WCTYPE_H is empty, for the benefit of builds from non-distclean
29767         directories.  Problem reported by Eric Blake in
29768         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
29769
29770 2007-01-08  Bruno Haible  <bruno@clisp.org>
29771
29772         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
29773         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
29774         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
29775         PROVIDE_CANONICALIZE_FILENAME_MODE.
29776         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
29777
29778 2007-01-08  Bruno Haible  <bruno@clisp.org>
29779
29780         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
29781         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
29782         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
29783         * lib/fts.c: Likewise.
29784         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
29785
29786 2006-12-25  Bruno Haible  <bruno@clisp.org>
29787
29788         * modules/utf8-ucs4-safe: New file.
29789         * lib/utf8-ucs4-safe.h: New file.
29790         * lib/unistr/utf8-ucs4-safe.c: New file.
29791
29792         * modules/utf16-ucs4-safe: New file.
29793         * lib/utf16-ucs4-safe.h: New file.
29794         * lib/unistr/utf16-ucs4-safe.c: New file.
29795
29796         * MODULES.html.sh (Unicode string functions): Add the new modules.
29797
29798 2007-01-08  Bruno Haible  <bruno@clisp.org>
29799
29800         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
29801         (Depends-on): Add unitypes.
29802         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
29803         (u8_mbtouc_aux): Move out to separate file.
29804         (u8_mbtouc): Use ucs4_t, uint8_t types.
29805         * lib/unistr/utf8-ucs4.c: New file.
29806
29807         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
29808         (Depends-on): Add unitypes.
29809         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
29810         (u16_mbtouc_aux): Move out to separate file.
29811         (u16_mbtouc): Use ucs4_t, uint16_t types.
29812         * lib/unistr/utf16-ucs4.c: New file.
29813
29814         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
29815         (Depends-on): Add unitypes.
29816         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
29817         (u8_uctomb_aux): Move out to separate file.
29818         (u8_uctomb): Use ucs4_t, uint8_t types.
29819         * lib/unistr/ucs4-utf8.c: New file.
29820
29821         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
29822         (Depends-on): Add unitypes.
29823         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
29824         (u16_uctomb_aux): Move out to separate file.
29825         (u16_uctomb): Use ucs4_t, uint16_t types.
29826         * lib/unistr/ucs4-utf16.c: New file.
29827
29828 2006-12-25  Bruno Haible  <bruno@clisp.org>
29829
29830         * modules/unitypes: New file.
29831         * lib/unitypes.h: New file.
29832         * MODULES.html.sh (func_all_modules): New section "Unicode string
29833         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
29834         this section. Add unitypes.
29835
29836 2007-01-08  Bruno Haible  <bruno@clisp.org>
29837
29838         Avoid variable names that conflict with those from libtool.
29839         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
29840         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
29841         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
29842         library_names_spec to acl_library_names_spec, hardcode_* to
29843         acl_hardcode_*.
29844         Reported by Ralf Wildenhues.
29845
29846 2007-01-08  Bruno Haible  <bruno@clisp.org>
29847
29848         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
29849         definition.
29850         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
29851         definition.
29852         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
29853         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
29854         definition.
29855         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
29856         definition.
29857         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
29858         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
29859         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
29860         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
29861         definition.
29862         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
29863         definition.
29864         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
29865         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
29866         GC_USE_<algorithm>.
29867         * lib/gc-libgcrypt.c: Likewise.
29868         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
29869         * modules/gc-arctwo (configure.ac): Likewise.
29870         * modules/gc-des (configure.ac): Likewise.
29871         * modules/gc-hmac-md5 (configure.ac): Likewise.
29872         * modules/gc-hmac-sha1 (configure.ac): Likewise.
29873         * modules/gc-md2 (configure.ac): Likewise.
29874         * modules/gc-md4 (configure.ac): Likewise.
29875         * modules/gc-md5 (configure.ac): Likewise.
29876         * modules/gc-random (configure.ac): Likewise.
29877         * modules/gc-rijndael (configure.ac): Likewise.
29878         * modules/gc-sha1 (configure.ac): Likewise.
29879
29880 2007-01-08  Bruno Haible  <bruno@clisp.org>
29881
29882         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
29883         macro definition.
29884         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
29885         definition.
29886         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
29887         definition.
29888         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
29889         * modules/fcntl-safer (configure.ac): Likewise.
29890         * modules/fopen-safer (configure.ac): Likewise.
29891         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
29892         GNULIB_FWRITEERROR macro definition.
29893
29894 2007-01-08  Bruno Haible  <bruno@clisp.org>
29895
29896         * m4/gnulib-common.m4: New file.
29897         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
29898         (func_get_filelist): Add m4/gnulib-common.m4.
29899
29900 2007-01-08  Bruno Haible  <bruno@clisp.org>
29901
29902         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
29903         command.
29904
29905 2007-01-08  Jim Meyering  <jim@meyering.net>
29906
29907         Use a more robust test for a "can't happen" condition.
29908         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
29909         narrowed the st_size value.  Presuming the "can't happen" condition
29910         is true, that narrowing could conceivably convert an invalid st_size
29911         value into a valid one.  Instead, use a change based on Matthew
29912         Woehlke's original patch.
29913
29914         Slight readability improvement: use an assert-like macro
29915         in place of literal "abort ()" uses.
29916         * lib/fts.c (fts_assert): Define.
29917         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
29918         Use this macro instead of a bare 'abort'.
29919
29920 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
29921
29922         Don't worry about using IRIX 5.3's wctype.h broken definitions;
29923         simply work around them.
29924         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
29925         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
29926         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
29927         declaring.
29928         Don't bother to define as macros, since the standard doesn't require it.
29929         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
29930         longer worry about IRIX 5.3.
29931         (HAVE_WCTYPE_CTMP_BUG): Remove.
29932
29933 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
29934
29935         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
29936         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
29937         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
29938         Problems reported by Georg Schwarz for IRIX 5.3.
29939
29940         * gnulib-tool (autoconf_minversion): Take the maximum version number
29941         found, not the minimum.  Problem reported by James Youngman.
29942
29943 2007-01-03  Karl Berry  <karl@gnu.org>
29944
29945         * doc/error.texi: new file, explaining interaction with progname.
29946         * doc/gnulib.texi: include it.  Update copyright.
29947
29948 2007-01-03  Simon Josefsson  <simon@josefsson.org>
29949
29950         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
29951         AC_CANONICAL_HOST, to improve autobuild outputs.
29952
29953 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
29954             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
29955
29956         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
29957         sockets, server sockets, and other file descriptors.  Count errors
29958         to compute the return value.  Reorder the code a bit to be easier
29959         to follow.  Don't set event bits that were not requested (except
29960         POLLERR and POLLHUP).
29961
29962 2007-01-01  Bruno Haible  <bruno@clisp.org>
29963
29964         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
29965
29966 2007-01-03  Jim Meyering  <jim@meyering.net>
29967
29968         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
29969
29970 2007-01-02  Bruno Haible  <bruno@clisp.org>
29971
29972         * modules/settime (Include): Require timespec.h.
29973         * modules/nanosleep (Include): Likewise.
29974
29975 2007-01-01  Bruno Haible  <bruno@clisp.org>
29976
29977         * gnulib-tool (func_emit_copyright_notice): Bump year.
29978         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
29979
29980 2007-01-01  Bruno Haible  <bruno@clisp.org>
29981
29982         Improve support for OpenBSD.
29983         * build-aux/config.rpath (libname_spec): Export.
29984         (library_names_spec): New variable. Export.
29985         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
29986         library_names_spec from the config.rpath output. Locate shared library
29987         through the name pattern in library_names_spec.
29988
29989 2007-01-01  Eric Blake  <ebb9@byu.net>
29990
29991         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
29992
29993 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
29994
29995         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
29996         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
29997         assume the C locale, and avoid an "eval" that could cause trouble.
29998         Problem with SORT reported by Bob Proulx.
29999
30000         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
30001         Define.  Trivial patch from Henning Nielsen Lund, originally
30002         sent to bug-grep@gnu.org today.
30003
30004 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
30005
30006         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
30007         struct stat.  Problem reported by Henning Nielsen Lund.
30008         * lib/acl.c: Include acl.h first, to check interface.  Don't
30009         bother to include sys/types.h and sys/stat.h again.
30010
30011 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
30012
30013         Import the following change from libc; problem reported by
30014         Sven Verdoolaege.
30015
30016         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
30017
30018         [BZ #1373]
30019         * lib/argp.h: Remove __NTH for __argp_usage inline function.
30020
30021 2006-12-28  Jim Meyering  <jim@meyering.net>
30022
30023         * build-aux/announce-gen: Do not assume that the package
30024         builds any of tar.gz, tar.bz2, and .xdelta files.
30025         Suggestion from Simon Josefsson.
30026
30027 2006-12-28  Simon Josefsson  <simon@josefsson.org>
30028
30029         * modules/announce-gen: New file.
30030
30031 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
30032
30033         * lib/mbchar.h: Just include <wctype.h>; the wctype module
30034         handles its gotchas now.
30035         * lib/mbswidth.c: Likewise.
30036         * lib/wcwidth.h: Likewise.
30037         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
30038         and iswcntrl; the wctype module does this stuff now.
30039         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
30040         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
30041         * modules/mbchar (Depends-on): Add wctype.
30042         * modules/mbswidth (Depends-on): Likewise.
30043         * modules/wcwidth (Depends-on): Likewise.
30044
30045 2006-12-27  Eric Blake  <ebb9@byu.net>
30046
30047         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
30048         module uses more than what <wctype.h> is required to provide.
30049
30050 2006-12-26  Eric Blake  <ebb9@byu.net>
30051
30052         * gnulib-tool (sed_extract_prog): Avoid space-tab.
30053
30054 2006-12-26  Eric Blake  <ebb9@byu.net>
30055
30056         * modules/absolute-header: New module.
30057         * modules/fcntl (Depends-on): Depend on it.
30058         * modules/inttypes (Depends-on): Likewise.
30059         * modules/stdint (Depends-on): Likewise.
30060         * modules/sys_stat (Depends-on): Likewise.
30061         * modules/wctype (Depends-on): Likewise.
30062         * MODULES.html.sh (Support for building libraries and
30063         executables): Document it.
30064
30065 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
30066
30067         * gnulib-tool (SED): Remove, undoing previous change.
30068         The problem was that it broke coreutils on Solaris, because
30069         "sed --posix" leaked into a makefile.
30070         (sed): New alias, if 'alias' and GNU sed.
30071
30072 2006-12-24  Jim Meyering  <jim@meyering.net>
30073
30074         Work around an fchownat bug in glibc-2.4:
30075         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
30076         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
30077         in spite of the -P option.
30078         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
30079         New macros.
30080         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
30081         * modules/openat (Files): Add lib/fchownat.c.
30082         * lib/openat.c (fchownat): Don't define here.  Move to...
30083         * lib/fchownat.c: ...this new file.
30084
30085 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
30086
30087         Fix bug reported by Bruno Haible in
30088         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
30089         where quotearg.c didn't compile on Mac OS X 10.2 because it
30090         lacks <wchar.h> and wint_t.
30091         * lib/wctype_.h (__wctype_wint_t): New type.
30092         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
30093         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
30094         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
30095         Arg is now of type __wctype_wint_t, not wint_t.
30096         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
30097         substitute HAVE_WINT_T.
30098         * modules/wctype (Files): Add m4/wint_t.m4.
30099         (wctype.h): Substitute HAVE_WINT_T.
30100
30101 2006-12-23  Bruno Haible  <bruno@clisp.org>
30102
30103         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
30104
30105 2006-12-23  Bruno Haible  <bruno@clisp.org>
30106
30107         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
30108         S_ISLNK.
30109         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
30110         mingw.
30111
30112 2006-12-22  Bruno Haible  <bruno@clisp.org>
30113
30114         * lib/copy-file.c: Include acl.h.
30115         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
30116         Close the file descriptors only after being done with copy_acl.
30117         * modules/copy-file (Depends-on): Add acl.
30118
30119 2006-12-22  Bruno Haible  <bruno@clisp.org>
30120
30121         * gnulib-tool (SED): New variable.
30122         Use $SED instead of sed everywhere.
30123
30124 2006-12-22  Bruno Haible  <bruno@clisp.org>
30125
30126         * modules/no-c++: New file.
30127         * m4/no-c++.m4: New file.
30128         * MODULES.html.sh (Support for building libraries and executables):
30129         Add no-c++.
30130
30131 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
30132
30133         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
30134         Include <limits.h>, and use its INT_MAX to rewrite the
30135         j loop so that it does not overflow 'int'.  Problem reported by
30136         Ralf Wildenhues in
30137         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
30138         Play it safe by shifting left by 1 rather than multiplying by 2,
30139         as GCC is less likely to optimize this away when the value
30140         is signed (when it assumes overflow leads to undefined behavior).
30141         Also, don't assume time_t uses two's complement.
30142
30143 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
30144
30145         * MODULES.html.sh: New module wctype.
30146         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
30147         * lib/fnmatch.c: Don't bother to include <wchar.h> before
30148         <wctype.h>, since the new wctype module should fix this.
30149         * lib/quotearg.c: Include <wctype.h> unconditionally, since
30150         the wctype module should arrange for it.
30151         * lib/regex_internal.h: Likewise.
30152         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
30153         since the wctype module should handle this now.
30154         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
30155         * modules/fnmatch (Depends-on): Add wctype.
30156         * modules/quotearg (Depends-on): Likewise.
30157         * modules/regex (Depends-on): Likewise.
30158
30159 2006-12-19  Bruno Haible  <bruno@clisp.org>
30160
30161         * lib/strdup.h [C++]: Wrap definitions in extern "C".
30162         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
30163
30164 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30165
30166         * modules/savewd (Depends-on): Fix dependency on fcntl.
30167
30168 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
30169
30170         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
30171         conforms to C99, rather than relying on the user's environment
30172         setting of STDINT_H.
30173
30174 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
30175         and Eric Blake  <ebb9@byu.net>
30176
30177         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
30178         This is more consistent with the other defines here.
30179         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
30180         Port to z/OS.  Problem reported by Paul Gilmartin.
30181         Change local vars to use gl_ prefix rather than ac_.
30182         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
30183         with other defines.
30184         * modules/double-slash-root: New module.
30185         * modules/dirname (Files): Remove m4/double-slash-root.m4.
30186         (Depends-on): Add double-slash-root.
30187         * MODULES.html.sh (File system functions): Mention new module.
30188
30189 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
30190
30191         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
30192         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
30193         This is for the benefit of gzip, which doesn't do i18n.
30194
30195 2006-12-12  Jim Meyering  <jim@meyering.net>
30196
30197         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
30198         Reported by Andreas Schwab <schwab@suse.de>.
30199
30200 2006-12-12  Bruno Haible  <bruno@clisp.org>
30201
30202         Merge these changes.
30203         2006-09-05  Bruno Haible  <bruno@clisp.org>
30204         * lib/iconvme.c (iconv_string): No need to save and restore errno when
30205         iconv_alloc succeeded.
30206         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
30207         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
30208         test for " && dest " at the end - dest is always != NULL there. Call
30209         iconv with 4xNULL arguments initially, to reset the state. Call iconv
30210         with 2xNULL arguments, also to flush the state storage. Handle the
30211         IRIX iconv behaviour. Realloc the final result, to throw away unused
30212         memory.
30213
30214 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
30215
30216         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
30217         and fchmodat unconditionally, since glibc 2.4 has them.
30218         Problem reported by Arkadiusz Miskiewicz.
30219
30220 2006-12-10  Bruno Haible  <bruno@clisp.org>
30221
30222         * gnulib-tool (func_import): Show the include files only for those
30223         modules that are copied and specified.
30224         Reported by Karl Berry.
30225
30226 2006-12-08  Jim Meyering  <jim@meyering.net>
30227
30228         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
30229         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
30230
30231         * build-aux/announce-gen: Add two new options, both optional:
30232         --bootstrap-tools=TOOL_LIST
30233               a comma-separated list of tools, e.g.,
30234               autoconf,automake,bison,gnulib
30235         --gnulib-snapshot-date=DATE
30236               if gnulib is in the bootstrap tool list,
30237               then report this as the snapshot date.
30238               If not specified, use the current date/time.
30239               If you specify a date here, be sure it's UTC.
30240
30241 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30242
30243         * tests/test-argp-2.sh: Fix test to match actual output.
30244         (func_compare): Fix sed script to be portable.
30245
30246 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
30247
30248         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
30249         workaround for this case.  It is not autoconfigured now; offhand
30250         it's hard to see how to autoconfigure it.
30251
30252 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
30253
30254         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
30255         a directory that is about to be chowned.  Such a directory's
30256         initial file permissions should permit the owner only and this
30257         should not be changed until after the chown, since the group and
30258         other bits would be incorrect if they granted permission before
30259         the chown.
30260
30261         Fix porting problem for iswctype reported by Georg Schwarz in:
30262         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
30263         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
30264         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
30265         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
30266         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
30267
30268 2006-12-03  Jim Meyering  <jim@meyering.net>
30269
30270         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
30271         p->fts_statp may not yet be defined.
30272         (fts_read): Instead, set it in the caller, once p->fts_statp is
30273         sure to be defined, and corresponds to a top-level directory.
30274         This bug made du -x fail.  Here's the coreutils test case:
30275         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
30276         Reported by Mike Frysinger.
30277
30278 2006-12-01  Jim Meyering  <jim@meyering.net>
30279
30280         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
30281         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
30282         Reported by Simon Josefsson.
30283
30284 2006-11-30  Jim Meyering  <jim@meyering.net>
30285
30286         * m4/warning.m4: Use the all-permissive copyright notice
30287         recommended by RMS (rather than LGPL).
30288         * m4/vararrays.m4: Likewise.
30289         * m4/flexmember.m4: Likewise.
30290
30291 2006-11-29  Bruno Haible  <bruno@clisp.org>
30292
30293         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
30294         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
30295         using +=.
30296         Reported by Simon Josefsson <simon@josefsson.org>.
30297
30298 2006-11-28  James Youngman <jay@gnu.org>
30299
30300         * README: Advise users that they might find the bug-gnulib@gnu.org
30301         and autotools-announce@gnu.org mailing lists useful.
30302
30303 2006-11-28  Bruno Haible  <bruno@clisp.org>
30304
30305         * m4/ptrdiff_max.m4: Remove file.
30306
30307 2006-11-21  Bruno Haible  <bruno@clisp.org>
30308
30309         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
30310         _AC_COMPUTE_INT.
30311         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
30312         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
30313         _AC_COMPUTE_INT.
30314         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
30315         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
30316         _AC_COMPUTE_INT.
30317         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
30318
30319 2006-11-28  Jim Meyering  <jim@meyering.net>
30320
30321         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
30322         warning from "gcc -Wshadow" about shadowing the builtin.
30323
30324 2006-11-27  Bruno Haible  <bruno@clisp.org>
30325
30326         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
30327         _AC_COMPUTE_INT.
30328         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
30329
30330 2006-11-27  Bruno Haible  <bruno@clisp.org>
30331             Paul Eggert  <eggert@cs.ucla.edu>
30332
30333         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
30334
30335 2006-11-26  Bruno Haible  <bruno@clisp.org>
30336
30337         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
30338         noinst_LTLIBRARIES.
30339
30340 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
30341             Bruno Haible  <bruno@clisp.org>
30342
30343         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
30344         if compiling with "gcc -ansi".
30345
30346 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
30347
30348         Fix some incompatibilities with gcc -ansi -pedantic.
30349         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
30350         if compiling pedantically with GCC, unless it's C99 or later.
30351         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
30352         it mishandles gcc -ansi -pedantic as well.
30353         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
30354         if gcc -pedantic.
30355         * lib/regexec.c (check_node_accept_bytes): Don't use auto
30356         initializers for struct if -pedantic, unless it's C99 or later.
30357
30358 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
30359
30360         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
30361         Don't close an fd more than once. Identical atimes indicate
30362         success, not failure.
30363
30364 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
30365
30366         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
30367
30368 2006-11-23  Jim Meyering  <jim@meyering.net>
30369
30370         * build-aux/announce-gen: New file.  From coreutils.
30371
30372 2006-11-22  Jim Meyering  <jim@meyering.net>
30373
30374         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
30375         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
30376         (fts_read): Use a temporary to narrow the overused st_size member
30377         before using it in a switch statement.  Reported by Matthew Woehlke.
30378
30379         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
30380         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
30381
30382 2006-11-20  Bruno Haible  <bruno@clisp.org>
30383
30384         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
30385         changequote instead of pairs of brackets.
30386         Reported by Andreas Schwab <schwab@suse.de>.
30387
30388 2006-11-21  Jim Meyering  <jim@meyering.net>
30389
30390         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
30391         so as to remain compatible with older compilers.
30392         Patch from Michael Deutschmann.
30393
30394 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
30395
30396         * MODULES.html.sh (File system functions): Add openat.
30397
30398         * lib/openat.h (rpl_fstatat): New macro, if
30399         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
30400         (fstatat): Define to rpl_fstatat under the same conditions,
30401         unless COMPILING_FSTATAT.
30402         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
30403         seems to have the bug.
30404         * lib/fstatat.c: New file.
30405         * modules/openat (Files): Add it.
30406
30407 2006-11-20  Bruno Haible  <bruno@clisp.org>
30408
30409         * Makefile: New file.
30410
30411 2006-11-20  Jim Meyering  <jim@meyering.net>
30412
30413         The beginnings of syntax-related checks for gnulib.
30414         * lib/Makefile: New file.
30415         * lib/t-idcache: New script.  Ensure that the two halves of
30416         idcache.c stay in sync.
30417
30418         * lib/idcache.c: Adjust comments in user- and group- portions to
30419         be more accurate, and to be consistent with one another.
30420
30421 2006-11-20  Jim Meyering  <jim@meyering.net>
30422
30423         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
30424         continue using the flexible array member (thus, this module performs
30425         half as many malloc calls), with the addition that...
30426         (getgroup, getuser): Consistently record a non-match via an empty
30427         "name" string, and map an empty string match to a NULL return value.
30428         * modules/idcache (Depends-on): Re-add flexmember.
30429
30430         * lib/idcache.c (getuser): Remove all uses of the register keyword.
30431         (getuidbyname, getgroup, getgidbyname): Likewise.
30432
30433         Use cleaner syntax: NULL rather than 0.
30434         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
30435
30436 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
30437
30438         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
30439         It mishandled the case where the group was missing.
30440         Problem reported by Greg Schafer.
30441         * modules/idcache: Likewise.
30442
30443 2006-11-18  Jim Meyering  <jim@meyering.net>
30444
30445         * check-module (%exempt_header): Add exception for some
30446         conditionally-included headers.
30447
30448         * modules/i-ring (Depends-on): Add verify.
30449         (License): Change to LGPL.
30450
30451 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
30452
30453         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
30454         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
30455         and inttostr.h.  Use snprintf rather than uinttostr, so that
30456         LGPLed code doesn't depend on GPLed.
30457
30458 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
30459
30460         * modules/inline (License): Change from GPL to LGPL.
30461
30462 2006-11-17  Jim Meyering  <jim@meyering.net>
30463
30464         * modules/d-type (License): Switch to LGPL.
30465
30466 2006-11-15  Bruno Haible  <bruno@clisp.org>
30467
30468         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
30469
30470 2006-11-15  Eric Blake  <ebb9@byu.net>
30471
30472         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
30473         the module dependency.
30474
30475 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
30476             Bruno Haible  <bruno@clisp.org>
30477
30478         * gnulib-tool (func_create_testdir): Add license consistency check.
30479
30480 2006-11-15  Eric Blake  <ebb9@byu.net>
30481
30482         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
30483         random "(cached)" in configure output.
30484
30485 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30486
30487         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
30488         test for conforming inttypes.h is both announced and cached.
30489
30490         * MODULES.html.sh (seen_modules, seen_files): New variables.
30491         (func_module): Rewrite to use a few less gnulib-tool and sed
30492         invocations.  Avoid a couple of quadratic algorithms for ...
30493         (missed_modules, missed_files): ... these, with ...
30494         (func_append, func_tmpdir): ... these new functions, from
30495         gnulib-tool.  Analogously, install traps for cleanup.
30496
30497         * tests/test-gc.c (main): Remove unused variables.
30498         * tests/test-read-file.c: Include stdlib.h, for 'free'.
30499
30500 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
30501
30502         * modules/inttostr (License): Change to LGPL.
30503
30504 2006-11-14  Eric Blake  <ebb9@byu.net>
30505
30506         * modules/tempname (License): Change to LGPL.
30507
30508 2006-11-14  Eric Blake  <ebb9@byu.net>
30509
30510         * doc/functions.texi (Function Portability): *printf functions on
30511         Cygwin now understand all POSIX size specifiers.
30512
30513 2006-11-14  Bruno Haible  <bruno@clisp.org>
30514
30515         * modules/c-ctype (License): Change to LGPL.
30516
30517 2006-11-12  Bruno Haible  <bruno@clisp.org>
30518
30519         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
30520         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
30521         for GNOME libraries, for which the include files are installed in
30522         subdirectories of $prefix/include.
30523
30524 2006-11-12  Bruno Haible  <bruno@clisp.org>
30525
30526         * m4/lib-link.m4: Require at least autoconf-2.54.
30527         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
30528         name to underscores for the --with option.
30529
30530 2006-11-13  Bruno Haible  <bruno@clisp.org>
30531
30532         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
30533         the tests directory.
30534         Reported by Ralf Wildenhues.
30535
30536 2006-11-13  Bruno Haible  <bruno@clisp.org>
30537
30538         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
30539         (func_emit_initmacro_end): Undo the override here.
30540         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
30541         Works around the famous automake error in coreutils.
30542
30543 2006-11-13  Eric Blake  <ebb9@byu.net>
30544
30545         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
30546         element, not its node.
30547
30548 2006-11-12  Bruno Haible  <bruno@clisp.org>
30549
30550         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
30551         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
30552
30553 2006-11-12  Bruno Haible  <bruno@clisp.org>
30554
30555         * gnulib-tool: New option --local-symlink.
30556         (func_usage): Document it.
30557         (lsymbolic): New variable.
30558         (func_import, func_create_testdir): If --symlink was not specified,
30559         test whether --local-symlink was specified and the file comes from
30560         the local_gnulib_dir.
30561
30562 2006-11-12  Bruno Haible  <bruno@clisp.org>
30563
30564         * gnulib-tool (func_ln): New function.
30565         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
30566
30567 2006-11-12  Bruno Haible  <bruno@clisp.org>
30568
30569         Finish support for source files in subdirectories.
30570         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
30571         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
30572         AUTOMAKE_OPTIONS.
30573         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
30574
30575 2006-11-12  Bruno Haible  <bruno@clisp.org>
30576
30577         * gnulib-tool (func_get_automake_snippet): Synthesize also an
30578         EXTRA_lib_SOURCES augmentation.
30579         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
30580
30581 2006-11-12  Jim Meyering  <jim@meyering.net>
30582
30583         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
30584         file descriptors.  This also averts a failure on systems with
30585         native openat support when a traversed directory lacks "x" access.
30586         * lib/fts_.h: Include "i-ring.h"
30587         (struct FTS) [fts_fd_ring]: New member.
30588         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
30589         (FCHDIR): Add parentheses.
30590         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
30591         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
30592         When descending, rather than simply closing the previous
30593         fts_cwd_fd value, push that file descriptor onto the ring.
30594         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
30595         (fts_open): Initialize the new fd_ring member.
30596         (fts_close): Clear the ring.
30597         (fts_safe_changedir): When possible, use our new fd_ring to skip
30598         the diropen and fstat and dev/ino comparison that would normally
30599         accompany a virtual `chdir ("..")'.
30600
30601         * modules/fts (Depends-on): Add i-ring.
30602         * modules/i-ring: New module.
30603         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
30604         * m4/i-ring.m4: New file.
30605
30606 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30607
30608         * gnulib-tool (func_create_testdir): Fix replacement of
30609         `build-aux' in configure.ac.  Run autotools in gltests
30610         subdirectory.
30611         (func_create_testdir, func_create_megatestdir, test): There is
30612         no need for '--force' in most autotool invocations in a new
30613         tree.  Actually fail the whole test if any of the tools, or the
30614         configure or make stages fail.
30615
30616         Sync from Automake.
30617         * build-aux/gnupload: Revert last change.  Add pointer to upload
30618         instructions of the GNU Maintenance Instructions.
30619         Suggestion by Karl Berry.
30620
30621 2006-11-10  Jim Meyering  <jim@meyering.net>
30622
30623         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
30624
30625 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
30626
30627         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
30628         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
30629         (bind_textdomain_codeset) [! ENABLE_NLS]:
30630         Evaluate all the arguments.  That way, callers get compatible behavior
30631         if the arguments have side effects.  Also, it avoids some GCC
30632         diagnostics in some cases; Joel E. Denny reported problems when Bison
30633         was configured with --enable-gcc-warnigs.
30634
30635 2006-11-10  Jim Meyering  <jim@meyering.net>
30636
30637         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
30638         relevant options in CFLAGS (like -O, -fno-inline) are taken into
30639         account.
30640
30641 2006-11-10  Jim Meyering  <jim@meyering.net>
30642
30643         * modules/inline: New file/module.
30644         * modules/xalloc (Files): Remove m4/inline.m4.
30645         (Depends-on): Add inline, instead.
30646         * modules/oset: Likewise.
30647         * modules/list: Likewise.
30648
30649 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
30650
30651         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
30652         Problem reported by Matthew Woehlke.
30653
30654 2006-11-09  Bruno Haible  <bruno@clisp.org>
30655
30656         * lib/tempname.c (gen_tempname): Remove variant that invokes
30657         __gen_tempname.
30658         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
30659         __gen_tempname.
30660
30661 2006-11-08  Bruno Haible  <bruno@clisp.org>
30662
30663         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
30664         to 'yes' instead of 'cross-compiling'.
30665
30666 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
30667
30668         * lib/quotearg.h (quotearg_free): New decl.
30669         * lib/quotearg.c (quotearg_free): New function.
30670         (slot0, nslots, slotvec0, slotvec):
30671         Now file-scope so that quotearg_free can get at them.
30672
30673 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30674
30675         Sync from Automake.
30676         * build-aux/gnupload: Add missing 'gnu' to example URL.
30677         Report by Karl Berry.
30678
30679 2006-11-08  Bruno Haible  <bruno@clisp.org>
30680
30681         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
30682         Suggested by Paul Eggert.
30683
30684 2006-11-08  Jim Meyering  <jim@meyering.net>
30685
30686         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
30687         It's already included if !_LIBC.
30688         (fts_safe_changedir): Add a comment.
30689
30690 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
30691
30692         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
30693         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
30694         Matthew Woehlke.
30695
30696         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
30697         definitions up, to avoid colliding with change below.
30698         (static_inline) [HAVE_INLINE]: New macro.
30699         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
30700         Provide extern decls when !HAVE_INLINE.  Do not define unless
30701         static_inline is defined, either by us or by xmalloc.c.  Use
30702         static_inline rather than static inline.
30703         (XCALLOC): Optimize sizeof(T) = 1 case.
30704         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
30705
30706 2006-11-07  Bruno Haible  <bruno@clisp.org>
30707
30708         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
30709         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
30710         AC_C_INLINE.
30711         * modules/xalloc (Files): Add m4/inline.m4.
30712
30713 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30714
30715         * README: Fix typo.
30716         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
30717         (Miscellanous Notes): ...from this.
30718
30719 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
30720
30721         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
30722         Mention that offsetof should be used instead of sizeof.
30723         From Bruno Haible.
30724
30725 2006-11-07  Bruno Haible  <bruno@clisp.org>
30726
30727         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
30728
30729 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
30730
30731         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
30732         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
30733         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
30734         (gl_tree_add_before, gl_tree_add_after):
30735         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
30736         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
30737         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30738         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
30739         (gl_linked_add_after, gl_linked_add_at): Likewise.
30740         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
30741         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
30742         (gl_tree_add_before, gl_tree_add_after): Likewise.
30743         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
30744         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
30745         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
30746
30747 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30748
30749         * lib/gl_oset.h: Use C comment style, not C++ comment style.
30750
30751 2006-11-06  Bruno Haible  <bruno@clisp.org>
30752
30753         * m4/inline.m4: New file.
30754         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
30755         * modules/list (Files): Add m4/inline.m4.
30756         * modules/oset (Files): Likewise.
30757
30758 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
30759
30760         * lib/idcache.c: Include <stddef.h>, for offsetof.
30761         (struct userid.name): Change from char * to a flexible array member.
30762         All uses changed.
30763         * modules/idcache (Depends-on): Add flexmember.
30764
30765         * MODULES.html.sh (Core language properties): New module flexmember.
30766         * modules/flexmember, m4/flexmember.m4: New files.
30767
30768         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
30769         inline functions that are identical with the old xnmalloc_inline,
30770         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
30771         that we can avoid some unnecessary integer multiplications and
30772         divisions in the common case where the element size is known at
30773         compile time.
30774         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
30775         needed.
30776         (xnboundedmalloc): Remove.
30777         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
30778         arguments, for consistency with rest of this header.
30779         (xcharalloc): Rewrite using XNMALLOC.
30780         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
30781         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
30782         versions have been moved to lib/xalloc.h and renamed to be the
30783         non-*_inline versions.
30784         (xmalloc, xrealloc): Implement without reference to the xnmalloc
30785         and xnrealloc functions, since those functions are now inline and
30786         now call us.
30787         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
30788         renaming described above.
30789         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
30790         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
30791         captures the dependency in AC_C_INLINE.
30792
30793         New module canonicalize-lgpl, proposed by Charles Wilson in
30794         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
30795         with a few small changes afterwards.
30796         * MODULES.html.sh (File system functions): New module
30797         canonicalize-lgpl.
30798         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
30799         and canonicalize_file_name.
30800         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
30801         * modules/canonicalize-lgpl: New files.
30802
30803 2006-11-05  Bruno Haible  <bruno@clisp.org>
30804
30805         * gnulib-tool (func_import, func_create_testdir): Create directories
30806         also for files in subdirectories of lib/.
30807
30808 2006-11-05  Bruno Haible  <bruno@clisp.org>
30809
30810         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
30811         ANSI C compliant.
30812
30813 2006-11-03  Bruno Haible  <bruno@clisp.org>
30814
30815         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
30816         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
30817         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
30818         (xnboundedmalloc): New inline function.
30819         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
30820         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
30821         xmalloc.
30822         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
30823         xmalloc.
30824         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
30825         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
30826         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
30827         xmalloc.
30828         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
30829         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
30830         xmalloc.
30831         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
30832         gl_tree_add_after): Use XMALLOC instead of xmalloc.
30833         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
30834         xmalloc.
30835         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
30836         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
30837         gl_tree_add_after): Use XMALLOC instead of xmalloc.
30838         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
30839         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
30840         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
30841         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
30842
30843 2006-11-03  Bruno Haible  <bruno@clisp.org>
30844
30845         * lib/c-ctype.h [C++]: Define functions without name mangling.
30846         * lib/fwriteerror.h [C++]: Likewise.
30847         * lib/gcd.h [C++]: Likewise.
30848         * lib/linebreak.h [C++]: Likewise.
30849
30850 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
30851
30852         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
30853         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
30854         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
30855         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
30856         Check for functions and headers just once.
30857         Check for declaration of canonicalize_file_name.
30858         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
30859
30860 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
30861
30862         * gnulib-tool (func_import): Fix typo in actioncmd.
30863
30864 2006-11-02  Bruno Haible  <bruno@clisp.org>
30865
30866         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
30867         newline sequence in the Makefile.am snippet as a space, like "make"
30868         does.
30869         Reported by Roger Persson <perrog@gmail.com>.
30870
30871 2006-11-01  Bruno Haible  <bruno@clisp.org>
30872
30873         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
30874         already declared in <string.h>.
30875         * lib/strcase.h (strncasecmp): Don't declare it if yes.
30876
30877 2006-11-01  Bruno Haible  <bruno@clisp.org>
30878
30879         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
30880         * lib/strcase.h: Include <string.h>.
30881         (strcasecmp): Define to rpl_strcasecmp here.
30882
30883 2006-11-01  Bruno Haible  <bruno@clisp.org>
30884
30885         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
30886
30887 2006-11-01  Eric Blake  <ebb9@byu.net>
30888
30889         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
30890
30891         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
30892
30893 2006-10-29  Bruno Haible  <bruno@clisp.org>
30894
30895         Make it compile in C++ mode.
30896         * lib/full-write.c (full_rw): Add a cast.
30897
30898 2006-11-01  Bruno Haible  <bruno@clisp.org>
30899
30900         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
30901         be POSIX compliant.
30902         Reported by Roger Persson <perrog@gmail.com>.
30903
30904 2006-11-01  Eric Blake  <ebb9@byu.net>
30905
30906         * lib/getopt_.h: Fix comments.
30907
30908 2006-10-31  Eric Blake  <ebb9@byu.net>
30909
30910         * modules/tmpdir (Depends-on): Add sys_stat.
30911         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
30912         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
30913         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
30914         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
30915         tempname.
30916
30917 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
30918
30919         Avoid some C++ diagnostics reported by Bruno Haible.
30920         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
30921         xmalloc.
30922         (quotearg_alloc): Use xcharalloc rather than xmalloc.
30923         (struct slotvec): Move to top level.
30924         (quotearg_n_options): Rewrite to avoid xmalloc.
30925         * lib/xalloc.h (xcharalloc): New function.
30926         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
30927         [defined __cplusplus]: Add function template that provides result
30928         type propagation.  This part of the change is from Bruno Haible.
30929
30930 2006-10-29  Bruno Haible  <bruno@clisp.org>
30931
30932         Make it compile in C++ mode.
30933         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
30934         * lib/strnlen1.c (strnlen1): Cast memchr result.
30935         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
30936         * lib/clean-temp.c (string_equals, string_hash): Add casts.
30937         (create_temp_dir): Rename local variable 'template'.
30938         (compile_csharp_using_sscli): Add cast.
30939         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
30940         * lib/findprog.c (find_in_path): Likewise.
30941         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
30942         * lib/wait-process.c (register_slave_subprocess): Likewise.
30943
30944 2006-10-22  Bruno Haible  <bruno@clisp.org>
30945
30946         * modules/tsearch: New file.
30947         * lib/tsearch.h: New file.
30948         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
30949         * m4/tsearch.m4: New file.
30950         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
30951
30952 2006-10-29  Eric Blake  <ebb9@byu.net>
30953
30954         * lib/arcfour.c: Assume config.h.
30955         * lib/arctwo.c: Likewise.
30956         * lib/base64.c: Likewise.
30957         * lib/check-version.c: Likewise.
30958         * lib/crc.c: Likewise.
30959         * lib/des.c: Likewise.
30960         * lib/gc-gnulib.c: Likewise.
30961         * lib/gc-libgcrypt.c: Likewise.
30962         * lib/gc-pbkdf2-sha1.c: Likewise.
30963         * lib/getaddrinfo.c: Likewise.
30964         * lib/getdelim.c: Likewise.
30965         * lib/getline.c: Likewise.
30966         * lib/hmac-md5.c: Likewise.
30967         * lib/hmac-sha1.c: Likewise.
30968         * lib/iconvme.c: Likewise.
30969         * lib/md2.c: Likewise.
30970         * lib/md4.c: Likewise.
30971         * lib/memxor.c: Likewise.
30972         * lib/read-file.c: Likewise.
30973         * lib/readline.c: Likewise.
30974         * lib/rijndael-alg-fst.c: Likewise.
30975         * lib/rijndael-api-fst.c: Likewise.
30976         * lib/xgetdomainname.c: Likewise.
30977
30978 2006-10-28  Eric Blake  <ebb9@byu.net>
30979
30980         * lib/xstrndup.c: Assume config.h.
30981
30982 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
30983
30984         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
30985         stat-macros.h is now for our own macros, whereas stat_h is for
30986         macros in the <sys/stat.h> name space.
30987         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
30988         (STAT_MACROS_H): Remove.
30989         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
30990         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
30991         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
30992         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
30993         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
30994         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
30995         Move these macros to ...
30996         * lib/stat_.h: here.  Don't include stat-macros.h.
30997         * lib/canonicalize.c: Don't include stat-macros.h.
30998         * lib/chown.c: Likewise.
30999         * lib/euidaccess.c: Likewise.
31000         * lib/file-type.c: Likewise.
31001         * lib/filemode.c: Likewise.
31002         * lib/glob.c: Likewise.
31003         * lib/isapipe.c: Likewise.
31004         * lib/lchown.c: Likewise.
31005         * lib/lstat.c: Likewise.
31006         * lib/mkdir-p.c: Likewise.
31007         * lib/rmdir.c: Likewise.
31008         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
31009         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
31010         unless mkdir isn't declared, to speed up 'configure'.
31011         Always create sys/stat.h, since it's unlikely any real sys/stat.h
31012         would define all the S_* symbols.
31013         * modules/canonicalize (Depends-on):
31014         Depend on sys_stat, not stat-macros.
31015         * modules/chown: Likewise.
31016         * modules/euidaccess: Likewise.
31017         * modules/filemode: Likewise.
31018         * modules/file-type: Likewise.
31019         * modules/glob: Likewise.
31020         * modules/isapipe: Likewise.
31021         * modules/lchown: Likewise.
31022         * modules/lstat: Likewise.
31023         * modules/mkancesdirs: Likewise.
31024         * modules/rmdir: Likewise.
31025         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
31026         * modules/modechange: Likewise.
31027         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
31028         (configure.ac): Remove gl_STAT_MACROS.
31029         * modules/sys_stat (Depends-on): Remove stat-macros.
31030
31031 2006-10-27  Bruno Haible  <bruno@clisp.org>
31032
31033         * m4/signed.m4: Remove file.
31034         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
31035         invocation.
31036         * modules/vasnprintf (Files): Remove m4/signed.m4.
31037
31038 2006-10-27  Bruno Haible  <bruno@clisp.org>
31039
31040         Update to GNU gettext 0.16.
31041         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
31042         m4/inttypes-h.m4, m4/signed.m4.
31043         * m4/gettext.m4: Update to GNU gettext 0.16.
31044         * m4/intl.m4: New file, from GNU gettext.
31045         * m4/intldir.m4: New file, from GNU gettext.
31046         * config/srclist.txt: Update
31047
31048 2006-10-27  Eric Blake  <ebb9@byu.net>
31049
31050         * MODULES.html.sh: Document tempname.
31051         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
31052         dependencies.
31053         (Files): Move lib/tempname.c...
31054         * modules/tempname: ...to this new module.
31055         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
31056         (gl_PREREQ_TEMPNAME): Move...
31057         * m4/tempname.m4: ...to this new file.
31058         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
31059         * modules/sys_stat (Depends-on): Add stat-macros.
31060         * lib/stat_.h (includes): Pick up stat macros.
31061         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
31062         if stat macros are broken.
31063         * lib/tempname.c (includes): No need to include "stat-macros.h".
31064         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
31065         (direxists, __path_search) [!_LIBC]: Don't compile these in
31066         gnulib; the tmpdir module covers that.
31067         * lib/tempname.h: New file.
31068
31069 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
31070
31071         * COPYING: Explain how gnulib-tool converts licence headers.
31072         Almost all wording by Eric Blake.
31073
31074 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
31075
31076         * lib/mbchar.h (is_basic_table): Make read-only.
31077         * lib/mbchar.c (is_basic_table): Likewise.
31078         Reported by John Darrington.
31079
31080 2006-10-25  Bruno Haible  <bruno@clisp.org>
31081
31082         * lib/progname.h (set_program_name): Undefine before defining.
31083
31084 2006-10-25  Bruno Haible  <bruno@clisp.org>
31085
31086         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
31087         false for non-gcc C++ compilers.
31088         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
31089
31090 2006-10-24  Bruno Haible  <bruno@clisp.org>
31091
31092         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
31093         iconv implementations like Irix iconv.
31094
31095 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
31096
31097         * modules/vararrays: New file.
31098         * m4/vararrays.m4: New file, taken from diffutils.
31099         * MODULES.html.sh: New module vararrays.
31100
31101 2006-10-24  Karl Berry  <karl@gnu.org>
31102
31103         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
31104         Don't call GNU Unix.
31105
31106 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31107
31108         * users.txt: Add Libtool.
31109
31110         Sync from Libtool:
31111
31112         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
31113
31114         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
31115         to gnulib's policy of including config.h unconditionally.
31116
31117 2006-10-24  Bruno Haible  <bruno@clisp.org>
31118
31119         * modules/wcwidth (Files): Add m4/wint_t.m4.
31120         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
31121         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
31122
31123 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
31124
31125         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
31126         to pacify GCC with some -W flags enabled.  Problem reported by
31127         Bruno Haible.
31128
31129 2006-10-24  Jim Meyering  <jim@meyering.net>
31130
31131         * MODULES.html.sh: Remove uinttostr.  It's not a module.
31132         Reported by Karl Berry.
31133
31134 2006-10-23  Bruno Haible  <bruno@clisp.org>
31135
31136         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
31137
31138 2006-10-24  Bruno Haible  <bruno@clisp.org>
31139
31140         * lib/gl_list.h: Use C comment style, not C++ comment style.
31141
31142 2006-10-23  Eric Blake  <ebb9@byu.net>
31143
31144         * lib/getaddrinfo.c (includes): Add missing include.
31145
31146 2006-10-23  Bruno Haible  <bruno@clisp.org>
31147             Paul Eggert  <eggert@cs.ucla.edu>
31148
31149         Ability to rename obstack_free.
31150         * lib/obstack.h (__obstack_free): New macro. Declare instead of
31151         obstack_free.
31152         (obstack_free): Invoke the __obstack_free macro.
31153         * lib/obstack.c (obstack_free): Use __obstack_free macro.
31154
31155 2006-10-23  Bruno Haible  <bruno@clisp.org>
31156             Paul Eggert  <eggert@cs.ucla.edu>
31157
31158         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
31159         __argc, __argv from the declaration. (They are defined as macros on
31160         mingw.)
31161
31162 2006-10-22  Bruno Haible  <bruno@clisp.org>
31163
31164         * doc/gnulib-intro.texi: New file.
31165         * doc/gnulib.texi: Include it.
31166
31167 2006-10-21  Bruno Haible  <bruno@clisp.org>
31168
31169         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
31170         "Introduction", "Miscellanous Notes", "Particular Modules".
31171
31172 2006-10-21  Bruno Haible  <bruno@clisp.org>
31173
31174         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
31175         Change mostlyclean-local rule to avoid sh syntax error from bash
31176         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
31177
31178 2006-10-23  Jim Meyering  <jim@meyering.net>
31179
31180         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
31181         in place of snprintf.
31182
31183         * modules/inttostr (Files): Add lib/uinttostr.c.
31184         * lib/uinttostr.c (inttostr): New file/function.
31185         * lib/inttostr.h (uinttostr): Declare.
31186         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
31187         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
31188         Add uinttostr.
31189         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
31190
31191 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
31192
31193         * lib/canonicalize.c (ELOOP): Define if not already defined.
31194         Problem reported by Bruno Haible in
31195         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
31196
31197 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
31198
31199         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
31200         Problem reported by Perry Smith and Ville Laurikari.
31201
31202         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
31203         uses.
31204
31205 2006-10-19  Bruno Haible  <bruno@clisp.org>
31206
31207         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
31208         for mingw.
31209
31210 2006-10-19  Bruno Haible  <bruno@clisp.org>
31211
31212         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
31213         Needed for mingw.
31214
31215 2006-10-19  Bruno Haible  <bruno@clisp.org>
31216
31217         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
31218
31219 2006-10-19  Bruno Haible  <bruno@clisp.org>
31220
31221         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
31222         it.
31223
31224 2006-10-19  Bruno Haible  <bruno@clisp.org>
31225
31226         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
31227         invocation.
31228
31229 2006-10-19  Bruno Haible  <bruno@clisp.org>
31230
31231         * gnulib-tool (func_create_testdir): Don't include ftruncate and
31232         mountlist by default.
31233
31234 2006-10-16  Bruno Haible  <bruno@clisp.org>
31235
31236         * lib/c-strstr.c: Include c-strstr.h.
31237
31238 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
31239
31240         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
31241         in a slash.
31242
31243 2006-10-18  Bruno Haible  <bruno@clisp.org>
31244
31245         * lib/lock.h [C++]: Wrap definitions in extern "C".
31246
31247 2006-10-18  Bruno Haible  <bruno@clisp.org>
31248
31249         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
31250         gl_LIBOBJS list.
31251
31252 2006-10-18  Bruno Haible  <bruno@clisp.org>
31253
31254         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
31255
31256 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
31257
31258         * lib/xstrtol.h: Include gettext.h.
31259         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
31260         Problem reported by Eric Blake.
31261         * modules/xstrtol (Depends-on): Add gettext-h.
31262
31263 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
31264
31265         * lib/strftime.c (advance): New macro.
31266         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
31267         incomplete type, so you can't add 0 to it.  Problem and patch
31268         reported by Eelco Dolstra for dietlibc.
31269
31270 2006-10-18  Jim Meyering  <jim@meyering.net>
31271
31272         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
31273         type for a local, and rename it: s/up/user_proc/.
31274
31275 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
31276
31277         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
31278         READ_UTMP_USER_PROCESS.
31279         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
31280
31281 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
31282
31283         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
31284         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
31285
31286 2006-10-17  Eric Blake  <ebb9@byu.net>
31287
31288         * lib/sigprocmask.c (sigprocmask): Fix typo.
31289
31290         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
31291
31292         * modules/clean-temp (Makefile.am): Don't add to make output...
31293         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
31294         config.h.
31295
31296 2006-10-17  Bruno Haible  <bruno@clisp.org>
31297
31298         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
31299         differently if DEFAULT_TEXT_DOMAIN is set.
31300
31301 2006-10-16  Bruno Haible  <bruno@clisp.org>
31302
31303         * lib/clean-temp.c: Include fwriteerror.h.
31304
31305 2006-10-16  Bruno Haible  <bruno@clisp.org>
31306
31307         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
31308
31309 2006-10-16  Bruno Haible  <bruno@clisp.org>
31310
31311         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
31312         * lib/sigprocmask.h: Include <sys/types.h>.
31313         (sigset_t): Use the system's definition if present.
31314
31315 2006-10-17  Eric Blake  <ebb9@byu.net>
31316
31317         * lib/xvasprintf.c (includes): Assume config.h.
31318         * lib/xasprintf.c (includes): Likewise.
31319
31320 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
31321
31322         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
31323         at least as wide as intmax_t.
31324
31325 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
31326
31327         (Imported from Automake.)
31328         * build-aux/gnupload: Update to version 1.1 of directive file.
31329
31330 2006-10-16  Eric Blake  <ebb9@byu.net>
31331
31332         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
31333         match Automake 1.10a.
31334
31335 2006-10-14  Bruno Haible  <bruno@clisp.org>
31336
31337         * modules/sigprocmask: New file.
31338         * lib/sigprocmask.h: New file.
31339         * lib/sigprocmask.c: New file.
31340         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
31341         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
31342         request sigprocmask.o.
31343         (gl_PREREQ_SIGPROCMASK): New macro.
31344         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
31345         (Depends-on): Add sigprocmask.
31346         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
31347         gt_SIGNALBLOCKING. Test for 'raise' only once.
31348         * lib/fatal-signal.c: Include sigprocmask.h.
31349         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
31350         unblock_fatal_signals): Define always.
31351         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
31352         sigprocmask.
31353
31354 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
31355
31356         Sync from Automake.
31357         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
31358         which incorrectly sets the mode of an existing destination
31359         directory.  In some cases the unpatched install-sh could do the
31360         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
31361         system.  We hope this is rare in practice, but it's clearly worth
31362         fixing.  Problem reported by Alex Unleashed in
31363         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
31364         Also, don't bother to check for -m bugs unless we're using -m;
31365         suggested by Stepan Kasal.
31366
31367 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31368
31369         Sync from Automake.
31370         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
31371         `-c' flag, so they appear at the same position as in %FASTDEP%
31372         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
31373         which ignores unknown options only after the first non-option.
31374         Bug report against M4 by Nelson H. F. Beebe.
31375
31376 2006-10-13  Jim Meyering  <jim@meyering.net>
31377
31378         Fix a bug in yesterday's change.
31379         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
31380         p->fts_statp->st_dev would be used uninitialized.
31381         Ensures that we always call fts_stat on the very first entry.
31382         Miklos Szeredi reported that find -xdev stopped working.
31383
31384 2006-10-12  Bruno Haible  <bruno@clisp.org>
31385
31386         * gnulib-tool (func_get_automake_snippet): Append an automatically
31387         computed EXTRA_DIST augmentation.
31388         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
31389         * modules/alloca-opt (Makefile.am): Likewise.
31390         * modules/allocsa (Makefile.am): Likewise.
31391         * modules/arcfour (Makefile.am): Likewise.
31392         * modules/arctwo (Makefile.am): Likewise.
31393         * modules/argmatch (Makefile.am): Likewise.
31394         * modules/argz (Makefile.am): Likewise.
31395         * modules/atexit (Makefile.am): Likewise.
31396         * modules/backupfile (Makefile.am): Likewise.
31397         * modules/byteswap (Makefile.am): Likewise.
31398         * modules/c-strtod (Makefile.am): Likewise.
31399         * modules/c-strtold (Makefile.am): Likewise.
31400         * modules/calloc (Makefile.am): Likewise.
31401         * modules/canon-host (Makefile.am): Likewise.
31402         * modules/canonicalize (Makefile.am): Likewise.
31403         * modules/chdir-long (Makefile.am): Likewise.
31404         * modules/chdir-safer (Makefile.am): Likewise.
31405         * modules/check-version (Makefile.am): Likewise.
31406         * modules/chown (Makefile.am): Likewise.
31407         * modules/cloexec (Makefile.am): Likewise.
31408         * modules/close-stream (Makefile.am): Likewise.
31409         * modules/closeout (Makefile.am): Likewise.
31410         * modules/crc (Makefile.am): Likewise.
31411         * modules/csharpexec (Makefile.am): Likewise.
31412         * modules/cycle-check (Makefile.am): Likewise.
31413         * modules/des (Makefile.am): Likewise.
31414         * modules/dev-ino (Makefile.am): Likewise.
31415         * modules/dirfd (Makefile.am): Likewise.
31416         * modules/dirname (Makefile.am): Likewise.
31417         * modules/dup2 (Makefile.am): Likewise.
31418         * modules/eealloc (Makefile.am): Likewise.
31419         * modules/error (Makefile.am): Likewise.
31420         * modules/euidaccess (Makefile.am): Likewise.
31421         * modules/exclude (Makefile.am): Likewise.
31422         * modules/exitfail (Makefile.am): Likewise.
31423         * modules/fcntl-safer (Makefile.am): Likewise.
31424         * modules/fcntl (Makefile.am): Likewise.
31425         * modules/file-type (Makefile.am): Likewise.
31426         * modules/fileblocks (Makefile.am): Likewise.
31427         * modules/filemode (Makefile.am): Likewise.
31428         * modules/filenamecat (Makefile.am): Likewise.
31429         * modules/fnmatch (Makefile.am): Likewise.
31430         * modules/fopen-safer (Makefile.am): Likewise.
31431         * modules/fpending (Makefile.am): Likewise.
31432         * modules/fprintftime (Makefile.am): Likewise.
31433         * modules/free (Makefile.am): Likewise.
31434         * modules/fsusage (Makefile.am): Likewise.
31435         * modules/ftruncate (Makefile.am): Likewise.
31436         * modules/fts (Makefile.am): Likewise.
31437         * modules/gc-arcfour (Makefile.am): Likewise.
31438         * modules/gc-des (Makefile.am): Likewise.
31439         * modules/gc-hmac-md5 (Makefile.am): Likewise.
31440         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
31441         * modules/gc-md4 (Makefile.am): Likewise.
31442         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
31443         * modules/gc-sha1 (Makefile.am): Likewise.
31444         * modules/gc (Makefile.am): Likewise.
31445         * modules/getaddrinfo (Makefile.am): Likewise.
31446         * modules/getcwd (Makefile.am): Likewise.
31447         * modules/getdelim (Makefile.am): Likewise.
31448         * modules/getdomainname (Makefile.am): Likewise.
31449         * modules/getgroups (Makefile.am): Likewise.
31450         * modules/gethostname (Makefile.am): Likewise.
31451         * modules/gethrxtime (Makefile.am): Likewise.
31452         * modules/getline (Makefile.am): Likewise.
31453         * modules/getloadavg (Makefile.am): Likewise.
31454         * modules/getlogin_r (Makefile.am): Likewise.
31455         * modules/getndelim2 (Makefile.am): Likewise.
31456         * modules/getopt (Makefile.am): Likewise.
31457         * modules/getpagesize (Makefile.am): Likewise.
31458         * modules/getpass-gnu (Makefile.am): Likewise.
31459         * modules/getpass (Makefile.am): Likewise.
31460         * modules/getsubopt (Makefile.am): Likewise.
31461         * modules/gettime (Makefile.am): Likewise.
31462         * modules/gettimeofday (Makefile.am): Likewise.
31463         * modules/getugroups (Makefile.am): Likewise.
31464         * modules/getusershell (Makefile.am): Likewise.
31465         * modules/glob (Makefile.am): Likewise.
31466         * modules/group-member (Makefile.am): Likewise.
31467         * modules/hard-locale (Makefile.am): Likewise.
31468         * modules/hash (Makefile.am): Likewise.
31469         * modules/hmac-md5 (Makefile.am): Likewise.
31470         * modules/hmac-sha1 (Makefile.am): Likewise.
31471         * modules/human (Makefile.am): Likewise.
31472         * modules/idcache (Makefile.am): Likewise.
31473         * modules/imaxabs (Makefile.am): Likewise.
31474         * modules/imaxdiv (Makefile.am): Likewise.
31475         * modules/inet_ntop (Makefile.am): Likewise.
31476         * modules/inet_pton (Makefile.am): Likewise.
31477         * modules/intprops (Makefile.am): Likewise.
31478         * modules/inttostr (Makefile.am): Likewise.
31479         * modules/inttypes (Makefile.am): Likewise.
31480         * modules/isapipe (Makefile.am): Likewise.
31481         * modules/javaversion (Makefile.am): Likewise.
31482         * modules/lchmod (Makefile.am): Likewise.
31483         * modules/lchown (Makefile.am): Likewise.
31484         * modules/localcharset (Makefile.am): Likewise.
31485         * modules/long-options (Makefile.am): Likewise.
31486         * modules/lstat (Makefile.am): Likewise.
31487         * modules/malloc (Makefile.am): Likewise.
31488         * modules/mathl (Makefile.am): Likewise.
31489         * modules/mbchar (Makefile.am): Likewise.
31490         * modules/md2 (Makefile.am): Likewise.
31491         * modules/md4 (Makefile.am): Likewise.
31492         * modules/md5 (Makefile.am): Likewise.
31493         * modules/memcasecmp (Makefile.am): Likewise.
31494         * modules/memchr (Makefile.am): Likewise.
31495         * modules/memcmp (Makefile.am): Likewise.
31496         * modules/memcoll (Makefile.am): Likewise.
31497         * modules/memcpy (Makefile.am): Likewise.
31498         * modules/memmem (Makefile.am): Likewise.
31499         * modules/memmove (Makefile.am): Likewise.
31500         * modules/mempcpy (Makefile.am): Likewise.
31501         * modules/memrchr (Makefile.am): Likewise.
31502         * modules/memset (Makefile.am): Likewise.
31503         * modules/memxor (Makefile.am): Likewise.
31504         * modules/mkancesdirs (Makefile.am): Likewise.
31505         * modules/mkdir-p (Makefile.am): Likewise.
31506         * modules/mkdir (Makefile.am): Likewise.
31507         * modules/mkdtemp (Makefile.am): Likewise.
31508         * modules/mkstemp (Makefile.am): Likewise.
31509         * modules/mktime (Makefile.am): Likewise.
31510         * modules/modechange (Makefile.am): Likewise.
31511         * modules/mountlist (Makefile.am): Likewise.
31512         * modules/nanosleep (Makefile.am): Likewise.
31513         * modules/obstack (Makefile.am): Likewise.
31514         * modules/openat (Makefile.am): Likewise.
31515         * modules/pagealign_alloc (Makefile.am): Likewise.
31516         * modules/pathmax (Makefile.am): Likewise.
31517         * modules/physmem (Makefile.am): Likewise.
31518         * modules/poll (Makefile.am): Likewise.
31519         * modules/posixtm (Makefile.am): Likewise.
31520         * modules/posixver (Makefile.am): Likewise.
31521         * modules/putenv (Makefile.am): Likewise.
31522         * modules/quote (Makefile.am): Likewise.
31523         * modules/quotearg (Makefile.am): Likewise.
31524         * modules/raise (Makefile.am): Likewise.
31525         * modules/read-file (Makefile.am): Likewise.
31526         * modules/readline (Makefile.am): Likewise.
31527         * modules/readlink (Makefile.am): Likewise.
31528         * modules/readtokens (Makefile.am): Likewise.
31529         * modules/readutmp (Makefile.am): Likewise.
31530         * modules/realloc (Makefile.am): Likewise.
31531         * modules/regex (Makefile.am): Likewise.
31532         * modules/rename-dest-slash (Makefile.am): Likewise.
31533         * modules/rename (Makefile.am): Likewise.
31534         * modules/rijndael (Makefile.am): Likewise.
31535         * modules/rmdir (Makefile.am): Likewise.
31536         * modules/rpmatch (Makefile.am): Likewise.
31537         * modules/safe-read (Makefile.am): Likewise.
31538         * modules/safe-write (Makefile.am): Likewise.
31539         * modules/same-inode (Makefile.am): Likewise.
31540         * modules/same (Makefile.am): Likewise.
31541         * modules/save-cwd (Makefile.am): Likewise.
31542         * modules/savedir (Makefile.am): Likewise.
31543         * modules/setenv (Makefile.am): Likewise.
31544         * modules/settime (Makefile.am): Likewise.
31545         * modules/sha1 (Makefile.am): Likewise.
31546         * modules/sig2str (Makefile.am): Likewise.
31547         * modules/snprintf (Makefile.am): Likewise.
31548         * modules/stat-macros (Makefile.am): Likewise.
31549         * modules/stat-time (Makefile.am): Likewise.
31550         * modules/stdbool (Makefile.am): Likewise.
31551         * modules/stdint (Makefile.am): Likewise.
31552         * modules/stdlib-safer (Makefile.am): Likewise.
31553         * modules/stpcpy (Makefile.am): Likewise.
31554         * modules/stpncpy (Makefile.am): Likewise.
31555         * modules/strcase (Makefile.am): Likewise.
31556         * modules/strcasestr (Makefile.am): Likewise.
31557         * modules/strchrnul (Makefile.am): Likewise.
31558         * modules/strcspn (Makefile.am): Likewise.
31559         * modules/strdup (Makefile.am): Likewise.
31560         * modules/strerror (Makefile.am): Likewise.
31561         * modules/strftime (Makefile.am): Likewise.
31562         * modules/strndup (Makefile.am): Likewise.
31563         * modules/strnlen (Makefile.am): Likewise.
31564         * modules/strpbrk (Makefile.am): Likewise.
31565         * modules/strsep (Makefile.am): Likewise.
31566         * modules/strstr (Makefile.am): Likewise.
31567         * modules/strtod (Makefile.am): Likewise.
31568         * modules/strtoimax (Makefile.am): Likewise.
31569         * modules/strtok_r (Makefile.am): Likewise.
31570         * modules/strtol (Makefile.am): Likewise.
31571         * modules/strtoll (Makefile.am): Likewise.
31572         * modules/strtoul (Makefile.am): Likewise.
31573         * modules/strtoull (Makefile.am): Likewise.
31574         * modules/strtoumax (Makefile.am): Likewise.
31575         * modules/strverscmp (Makefile.am): Likewise.
31576         * modules/sys_socket (Makefile.am): Likewise.
31577         * modules/sys_stat (Makefile.am): Likewise.
31578         * modules/sysexits (Makefile.am): Likewise.
31579         * modules/time_r (Makefile.am): Likewise.
31580         * modules/timegm (Makefile.am): Likewise.
31581         * modules/timespec (Makefile.am): Likewise.
31582         * modules/tmpfile-safer (Makefile.am): Likewise.
31583         * modules/trim (Makefile.am): Likewise.
31584         * modules/unistd-safer (Makefile.am): Likewise.
31585         * modules/unlinkdir (Makefile.am): Likewise.
31586         * modules/unlocked-io (Makefile.am): Likewise.
31587         * modules/userspec (Makefile.am): Likewise.
31588         * modules/utime (Makefile.am): Likewise.
31589         * modules/utimecmp (Makefile.am): Likewise.
31590         * modules/utimens (Makefile.am): Likewise.
31591         * modules/vasnprintf (Makefile.am): Likewise.
31592         * modules/vasprintf (Makefile.am): Likewise.
31593         * modules/vsnprintf (Makefile.am): Likewise.
31594         * modules/xalloc (Makefile.am): Likewise.
31595         * modules/xgetcwd (Makefile.am): Likewise.
31596         * modules/xnanosleep (Makefile.am): Likewise.
31597         * modules/xreadlink (Makefile.am): Likewise.
31598         * modules/xstrtod (Makefile.am): Likewise.
31599         * modules/xstrtol (Makefile.am): Likewise.
31600         * modules/xstrtold (Makefile.am): Likewise.
31601         * modules/yesno (Makefile.am): Likewise.
31602         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
31603
31604 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
31605
31606         * modules/error (Makefile.am): Distribute files through
31607         EXTRA_DIST, not lib_SOURCES.
31608
31609 2006-10-12  Eric Blake  <ebb9@byu.net>
31610
31611         * modules/error (Makefile.am): Distribute files in /lib.
31612         * modules/obstack (Makefile.am): Likewise.
31613
31614 2006-10-12  Bruno Haible  <bruno@clisp.org>
31615
31616         * modules/acl (Makefile.am): Distribute all files in lib/ through
31617         EXTRA_DIST.
31618         * modules/arcfour (Makefile.am): Likewise.
31619         * modules/arctwo (Makefile.am): Likewise.
31620         * modules/argmatch (Makefile.am): Likewise.
31621         * modules/argz (Makefile.am): Likewise.
31622         * modules/atexit (Makefile.am): Likewise.
31623         * modules/backupfile (Makefile.am): Likewise.
31624         * modules/c-strtod (Makefile.am): Likewise.
31625         * modules/c-strtold (Makefile.am): Likewise.
31626         * modules/calloc (Makefile.am): Likewise.
31627         * modules/canon-host (Makefile.am): Likewise.
31628         * modules/canonicalize (Makefile.am): Likewise.
31629         * modules/chdir-long (Makefile.am): Likewise.
31630         * modules/chdir-safer (Makefile.am): Likewise.
31631         * modules/check-version (Makefile.am): Likewise.
31632         * modules/chown (Makefile.am): Likewise.
31633         * modules/cloexec (Makefile.am): Likewise.
31634         * modules/close-stream (Makefile.am): Likewise.
31635         * modules/closeout (Makefile.am): Likewise.
31636         * modules/crc (Makefile.am): Likewise.
31637         * modules/cycle-check (Makefile.am): Likewise.
31638         * modules/des (Makefile.am): Likewise.
31639         * modules/dirfd (Makefile.am): Likewise.
31640         * modules/dirname (Makefile.am): Likewise.
31641         * modules/dup2 (Makefile.am): Likewise.
31642         * modules/euidaccess (Makefile.am): Likewise.
31643         * modules/exclude (Makefile.am): Likewise.
31644         * modules/exitfail (Makefile.am): Likewise.
31645         * modules/fcntl-safer (Makefile.am): Likewise.
31646         * modules/file-type (Makefile.am): Likewise.
31647         * modules/fileblocks (Makefile.am): Likewise.
31648         * modules/filemode (Makefile.am): Likewise.
31649         * modules/filenamecat (Makefile.am): Likewise.
31650         * modules/fnmatch (Makefile.am): Likewise.
31651         * modules/fopen-safer (Makefile.am): Likewise.
31652         * modules/fpending (Makefile.am): Likewise.
31653         * modules/fprintftime (Makefile.am): Likewise.
31654         * modules/free (Makefile.am): Likewise.
31655         * modules/fsusage (Makefile.am): Likewise.
31656         * modules/ftruncate (Makefile.am): Likewise.
31657         * modules/fts (Makefile.am): Likewise.
31658         * modules/gc (Makefile.am): Likewise.
31659         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
31660         * modules/getaddrinfo (Makefile.am): Likewise.
31661         * modules/getcwd (Makefile.am): Likewise.
31662         * modules/getdelim (Makefile.am): Likewise.
31663         * modules/getdomainname (Makefile.am): Likewise.
31664         * modules/getgroups (Makefile.am): Likewise.
31665         * modules/gethostname (Makefile.am): Likewise.
31666         * modules/gethrxtime (Makefile.am): Likewise.
31667         * modules/getline (Makefile.am): Likewise.
31668         * modules/getloadavg (Makefile.am): Likewise.
31669         * modules/getlogin_r (Makefile.am): Likewise.
31670         * modules/getopt (Makefile.am): Likewise.
31671         * modules/getpass (Makefile.am): Likewise.
31672         * modules/getpass-gnu (Makefile.am): Likewise.
31673         * modules/getsubopt (Makefile.am): Likewise.
31674         * modules/gettime (Makefile.am): Likewise.
31675         * modules/gettimeofday (Makefile.am): Likewise.
31676         * modules/getugroups (Makefile.am): Likewise.
31677         * modules/getusershell (Makefile.am): Likewise.
31678         * modules/glob (Makefile.am): Likewise.
31679         * modules/group-member (Makefile.am): Likewise.
31680         * modules/hard-locale (Makefile.am): Likewise.
31681         * modules/hash (Makefile.am): Likewise.
31682         * modules/hmac-md5 (Makefile.am): Likewise.
31683         * modules/hmac-sha1 (Makefile.am): Likewise.
31684         * modules/human (Makefile.am): Likewise.
31685         * modules/idcache (Makefile.am): Likewise.
31686         * modules/imaxabs (Makefile.am): Likewise.
31687         * modules/imaxdiv (Makefile.am): Likewise.
31688         * modules/inet_ntop (Makefile.am): Likewise.
31689         * modules/inet_pton (Makefile.am): Likewise.
31690         * modules/inttostr (Makefile.am): Likewise.
31691         * modules/isapipe (Makefile.am): Likewise.
31692         * modules/lchown (Makefile.am): Likewise.
31693         * modules/long-options (Makefile.am): Likewise.
31694         * modules/lstat (Makefile.am): Likewise.
31695         * modules/malloc (Makefile.am): Likewise.
31696         * modules/mathl (Makefile.am): Likewise.
31697         * modules/mbchar (Makefile.am): Likewise.
31698         * modules/md2 (Makefile.am): Likewise.
31699         * modules/md4 (Makefile.am): Likewise.
31700         * modules/md5 (Makefile.am): Likewise.
31701         * modules/memcasecmp (Makefile.am): Likewise.
31702         * modules/memchr (Makefile.am): Likewise.
31703         * modules/memcmp (Makefile.am): Likewise.
31704         * modules/memcoll (Makefile.am): Likewise.
31705         * modules/memcpy (Makefile.am): Likewise.
31706         * modules/memmem (Makefile.am): Likewise.
31707         * modules/memmove (Makefile.am): Likewise.
31708         * modules/mempcpy (Makefile.am): Likewise.
31709         * modules/memrchr (Makefile.am): Likewise.
31710         * modules/memset (Makefile.am): Likewise.
31711         * modules/memxor (Makefile.am): Likewise.
31712         * modules/mkancesdirs (Makefile.am): Likewise.
31713         * modules/mkdir (Makefile.am): Likewise.
31714         * modules/mkdir-p (Makefile.am): Likewise.
31715         * modules/mkdtemp (Makefile.am): Likewise.
31716         * modules/mkstemp (Makefile.am): Likewise.
31717         * modules/mktime (Makefile.am): Likewise.
31718         * modules/modechange (Makefile.am): Likewise.
31719         * modules/mountlist (Makefile.am): Likewise.
31720         * modules/nanosleep (Makefile.am): Likewise.
31721         * modules/openat (Makefile.am): Likewise.
31722         * modules/pagealign_alloc (Makefile.am): Likewise.
31723         * modules/physmem (Makefile.am): Likewise.
31724         * modules/poll (Makefile.am): Likewise.
31725         * modules/posixtm (Makefile.am): Likewise.
31726         * modules/posixver (Makefile.am): Likewise.
31727         * modules/putenv (Makefile.am): Likewise.
31728         * modules/quote (Makefile.am): Likewise.
31729         * modules/quotearg (Makefile.am): Likewise.
31730         * modules/raise (Makefile.am): Likewise.
31731         * modules/read-file (Makefile.am): Likewise.
31732         * modules/readline (Makefile.am): Likewise.
31733         * modules/readlink (Makefile.am): Likewise.
31734         * modules/readtokens (Makefile.am): Likewise.
31735         * modules/readutmp (Makefile.am): Likewise.
31736         * modules/realloc (Makefile.am): Likewise.
31737         * modules/regex (Makefile.am): Likewise.
31738         * modules/rename (Makefile.am): Likewise.
31739         * modules/rename-dest-slash (Makefile.am): Likewise.
31740         * modules/rijndael (Makefile.am): Likewise.
31741         * modules/rmdir (Makefile.am): Likewise.
31742         * modules/rpmatch (Makefile.am): Likewise.
31743         * modules/safe-read (Makefile.am): Likewise.
31744         * modules/safe-write (Makefile.am): Likewise.
31745         * modules/same (Makefile.am): Likewise.
31746         * modules/save-cwd (Makefile.am): Likewise.
31747         * modules/savedir (Makefile.am): Likewise.
31748         * modules/setenv (Makefile.am): Likewise.
31749         * modules/settime (Makefile.am): Likewise.
31750         * modules/sha1 (Makefile.am): Likewise.
31751         * modules/sig2str (Makefile.am): Likewise.
31752         * modules/snprintf (Makefile.am): Likewise.
31753         * modules/stdlib-safer (Makefile.am): Likewise.
31754         * modules/stpcpy (Makefile.am): Likewise.
31755         * modules/stpncpy (Makefile.am): Likewise.
31756         * modules/strcase (Makefile.am): Likewise.
31757         * modules/strcasestr (Makefile.am): Likewise.
31758         * modules/strchrnul (Makefile.am): Likewise.
31759         * modules/strcspn (Makefile.am): Likewise.
31760         * modules/strdup (Makefile.am): Likewise.
31761         * modules/strerror (Makefile.am): Likewise.
31762         * modules/strftime (Makefile.am): Likewise.
31763         * modules/strndup (Makefile.am): Likewise.
31764         * modules/strnlen (Makefile.am): Likewise.
31765         * modules/strpbrk (Makefile.am): Likewise.
31766         * modules/strsep (Makefile.am): Likewise.
31767         * modules/strstr (Makefile.am): Likewise.
31768         * modules/strtod (Makefile.am): Likewise.
31769         * modules/strtoimax (Makefile.am): Likewise.
31770         * modules/strtok_r (Makefile.am): Likewise.
31771         * modules/strtol (Makefile.am): Likewise.
31772         * modules/strtoll (Makefile.am): Likewise.
31773         * modules/strtoul (Makefile.am): Likewise.
31774         * modules/strtoull (Makefile.am): Likewise.
31775         * modules/strtoumax (Makefile.am): Likewise.
31776         * modules/strverscmp (Makefile.am): Likewise.
31777         * modules/time_r (Makefile.am): Likewise.
31778         * modules/timegm (Makefile.am): Likewise.
31779         * modules/tmpfile-safer (Makefile.am): Likewise.
31780         * modules/unistd-safer (Makefile.am): Likewise.
31781         * modules/unlinkdir (Makefile.am): Likewise.
31782         * modules/userspec (Makefile.am): Likewise.
31783         * modules/utime (Makefile.am): Likewise.
31784         * modules/utimecmp (Makefile.am): Likewise.
31785         * modules/utimens (Makefile.am): Likewise.
31786         * modules/vasnprintf (Makefile.am): Likewise.
31787         * modules/vasprintf (Makefile.am): Likewise.
31788         * modules/vsnprintf (Makefile.am): Likewise.
31789         * modules/xalloc (Makefile.am): Likewise.
31790         * modules/xgetcwd (Makefile.am): Likewise.
31791         * modules/xnanosleep (Makefile.am): Likewise.
31792         * modules/xreadlink (Makefile.am): Likewise.
31793         * modules/xstrtod (Makefile.am): Likewise.
31794         * modules/xstrtol (Makefile.am): Likewise.
31795         * modules/xstrtold (Makefile.am): Likewise.
31796         * modules/yesno (Makefile.am): Likewise.
31797
31798 2006-10-12  Jim Meyering  <jim@meyering.net>
31799
31800         * m4/getloadavg.m4: Revert the change below.
31801
31802         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
31803         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
31804         fail with a symlink, which is what coreutils' ./bootstrap now
31805         creates by default.
31806
31807 2006-10-12  Bruno Haible  <bruno@clisp.org>
31808
31809         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
31810         mingw.
31811         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
31812         MSVC and mingw explicitly.
31813
31814 2006-10-11  Simon Josefsson  <jas@extundo.com>
31815             Bruno Haible  <bruno@clisp.org>
31816
31817         Add support for multiple gnulib-tool invocations in the scope of a
31818         single configure.ac file.
31819         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
31820         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
31821         with the same contents as the _LIBADD variable.
31822         (func_emit_initmacro_start, func_emit_initmacro_end,
31823         func_emit_initmacro_done): New functions.
31824         (func_import, func_create_testdir): Invoke them. Allow the identifiers
31825         gl_LIBOBJS and gl_LTLIBOBJS.
31826
31827 2006-10-11  Bruno Haible  <bruno@clisp.org>
31828
31829         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
31830         (func_create_testdir): Don't create po/Makefile.am, don't invoke
31831         autoreconf. Instead, invoke autopoint explicitly but move back the
31832         *.m4 files from gnulib.
31833
31834 2006-10-11  Bruno Haible  <bruno@clisp.org>
31835
31836         * gnulib-tool (func_usage): Make module names after --create-testdir
31837         optional.
31838         (func_create_testdir): If no module was specified, use nearly all
31839         modules.
31840
31841 2006-10-12  Jim Meyering  <jim@meyering.net>
31842
31843         Big performance improvement for fts-based tools that use FTS_NOSTAT.
31844         Avoid spurious inode-mismatch problems on non-POSIX file systems.
31845         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
31846         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
31847         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
31848         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
31849         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
31850         (fts_set_stat_required): New function.
31851         (fts_open): Defer the calls to fts_stat, if possible or requested.
31852         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
31853         into fts_stat itself.
31854         (fts_read): Perform any required (deferred) fts_stat call.
31855         (fts_build): Likewise, for the directory we're about to open and read.
31856         In the readdir loop, carefully decide whether each entry will require
31857         an eventual call to fts_stat, using dirent.d_type info if available.
31858         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
31859         a command line argument into this function.  Update all callers.
31860         Map a return value of FTS_DOT to FTS_D for a command line argument.
31861         * modules/fts (Depends-on): Add d-type.  Alphabetize.
31862         Thanks to Miklos Szeredi for his tenacity and for the initial
31863         bug report about "find" failing on a FUSE-based file system.
31864
31865         * lib/fts.c (fts_open): Use consistent indentation.
31866
31867 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
31868
31869         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
31870         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
31871         reported by Jim Meyering.  All uses of cache variables renamed
31872         to match Autoconf's.
31873         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
31874         the other one.
31875
31876         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
31877         Fix misspelling in diagnostic.
31878
31879 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
31880
31881         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
31882         defined.  Problem reported by Matthew Woehlke.
31883
31884         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
31885         Add support for Tandem NonStop R series.
31886         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
31887         Use new macro.
31888
31889         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
31890         (has_trailing_slash): Omit size arg; all callers changed.
31891         Omit 'inline', since it doesn't help performance and we'd
31892         need to configure it.
31893         Don't count //, ///, etc. as having a trailing slash.
31894         As a side effect, this removes a C99ism reported by Matthew Woehlke.
31895         (rpl_rename_dest_slash): On failure, use rename's errno rather
31896         than (in some cases) an incorrect or junk errno.
31897         Simplify code by removing need to compute length; this does
31898         cause it to make two passes instead of one over the file name,
31899         but it's worth it.
31900
31901         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
31902         change, since Autoconf's version may no longer be appropriate now
31903         that we are using CVS Autoconf's version.  Add support for Tandem.
31904
31905 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
31906             Bruno Haible  <bruno@clisp.org>
31907
31908         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
31909         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
31910         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
31911         gl_AC_TYPE_LONG_LONG.
31912
31913         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
31914         instead of HAVE_LONG_LONG.
31915         * lib/printf-args.c (printf_fetchargs): Likewise.
31916         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
31917         * lib/vasnprintf.c (VASNPRINTF): Likewise.
31918         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
31919         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
31920         gl_AC_TYPE_LONG_LONG.
31921
31922 2006-10-11  Bruno Haible  <bruno@clisp.org>
31923
31924         * m4/longlong.m4: Add comments.
31925         * m4/ulonglong.m4: Likewise.
31926
31927 2006-10-10  Bruno Haible  <bruno@clisp.org>
31928
31929         Make it possible to #define stpcpy, strdup to aliases.
31930         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
31931         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
31932
31933 2006-10-10  Bruno Haible  <bruno@clisp.org>
31934
31935         Make it possible to #define gcd to an alias.
31936         * lib/gcd.c: Include config.h.
31937
31938 2006-10-10  Bruno Haible  <bruno@clisp.org>
31939
31940         Make it possible to #define c_isascii to an alias.
31941         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
31942         defined. Undefine the macros before defining them, to avoid gcc
31943         warnings.
31944         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
31945         define NO_C_CTYPE_MACROS early.
31946
31947 2006-10-10  Bruno Haible  <bruno@clisp.org>
31948
31949         Make it possible to #define set_program_name to an alias.
31950         * lib/progname.c: Don't undefine set_program_name; instead, undefine
31951         ENABLE_RELOCATABLE early.
31952
31953 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
31954
31955         Port to Tandem NSK OSS, which has 64-bit signed int but at most
31956         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
31957         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
31958         More generally, don't assume that 64-bit signed int is available
31959         if unsigned int is, and vice versa.
31960         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
31961         unsigned symbols, not on their signed counterparts.
31962         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
31963         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
31964         (UINT64_C, UINTMAX_C):
31965         Likewise.
31966         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
31967         unsigned counterparts.
31968         (Have_long_long, Unsigned): New macros.
31969         (Int): Renamed from INT.
31970         (strtoimax): Use the new macros.
31971         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
31972         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
31973         * modules/inttypes (inttypes.h): Substitute
31974         HAVE_UNSIGNED_LONG_LONG_INT.
31975         * modules/stdint (stdint.h): Likewise.
31976         (Files): Add m4/ulonglong.m4.
31977
31978 2006-10-10  Bruno Haible  <bruno@clisp.org>
31979
31980         Fix a gcc -Wshadow warning.
31981         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
31982         to 'bucket'.
31983         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
31984         gl_linked_indexof_from_to): Likewise.
31985         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
31986         Likewise.
31987         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
31988         Likewise.
31989         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
31990         Reported by Eric Blake.
31991
31992 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
31993
31994         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
31995         for NetBSD.  Problem reported by Bruno Haible.
31996
31997 2006-10-09  Jim Meyering  <jim@meyering.net>
31998
31999         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
32000         Patch from Bruno Haible.
32001
32002 2006-10-09  Jim Meyering  <jim@meyering.net>
32003
32004         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
32005         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
32006         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
32007
32008 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
32009
32010         Don't include <config.h> twice; this doesn't work in some cases,
32011         e.g., when config.h has "#define intmax_t long long int" and
32012         we include <config.h>, <inttypes.h>, <config.h> in that order.
32013         Problem reported by Matthew Woehlke in:
32014         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
32015         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
32016         * lib/fts-cycle.c: Don't include config.h.
32017         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
32018         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
32019         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
32020         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
32021         inttypes.h.
32022         * lib/xstrtoumax.c: Likewise.
32023         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
32024         __strtol and the like, so that this module is more like its siblings.
32025         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
32026         Remove; no longer needed now that we assume gnulib inttypes.h.
32027
32028 2006-10-08  Bruno Haible  <bruno@clisp.org>
32029
32030         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
32031         option.
32032
32033 2006-10-07  Jim Meyering  <jim@meyering.net>
32034
32035         * modules/inttypes (inttypes.h): Revert what seems to have been
32036         an inadvertent part of today's change: use "|", not "/" in the
32037         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
32038
32039 2006-10-07  Bruno Haible  <bruno@clisp.org>
32040
32041         * modules/sublist: New file.
32042
32043 2006-10-07  Bruno Haible  <bruno@clisp.org>
32044
32045         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
32046         * modules/argz (argz.h): Likewise.
32047         * modules/arpa_inet (arpa/inet.h): Likewise.
32048         * modules/byteswap (byteswap.h): Likewise.
32049         * modules/configmake (configmake.h): Likewise.
32050         * modules/fcntl (fcntl.h): Likewise.
32051         * modules/fnmatch (fnmatch.h): Likewise.
32052         * modules/getopt (getopt.h): Likewise.
32053         * modules/glob (glob.h): Likewise.
32054         * modules/inttypes (inttypes.h): Likewise.
32055         * modules/netinet_in (netinet/in.h): Likewise.
32056         * modules/poll (poll.h): Likewise.
32057         * modules/stdbool (stdbool.h): Likewise.
32058         * modules/stdint (stdint.h): Likewise.
32059         * modules/sys_select (sys/select.h): Likewise.
32060         * modules/sys_socket (sys/socket.h): Likewise.
32061         * modules/sys_stat (sys/stat.h): Likewise.
32062         * modules/sysexits (sysexits.h): Likewise.
32063         * modules/unistd (unistd.h): Likewise.
32064         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32065         Add a "DO NOT EDIT" comment to the generated file.
32066         (func_import): Likewise for gnulib-comp.m4.
32067
32068 2006-10-07  Bruno Haible  <bruno@clisp.org>
32069
32070         * lib/gl_sublist.h: New file.
32071         * lib/gl_sublist.c: New file.
32072
32073 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
32074
32075         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
32076         name (relative to the original working directory) and the file
32077         name component (relative to the temporary working directory).  All
32078         callers changed.
32079         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
32080         * lib/mkdir-p.c (make_dir_parents): Likewise.
32081         * lib/mkdir-p.h (make_dir_parents): Likewise.
32082
32083 2006-10-06  Eric Blake  <ebb9@byu.net>
32084
32085         Define several macros for use by the clean-temp module.
32086         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
32087         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
32088         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
32089
32090         * lib/clean-temp.h (close_stream_temp): New declaration.
32091         * lib/clean-temp.c (includes): Pull in headers according to what
32092         other modules are in use.
32093         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
32094
32095 2006-10-06  Bruno Haible  <bruno@clisp.org>
32096
32097         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
32098         instead of fopen, fwriteerror.
32099
32100 2006-10-06  Bruno Haible  <bruno@clisp.org>
32101
32102         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
32103         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
32104         int.
32105         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
32106         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
32107         Return an error indicator.
32108         Suggested by Eric Blake.
32109
32110 2006-10-06  Bruno Haible  <bruno@clisp.org>
32111
32112         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
32113         Reported by Eric Blake.
32114
32115 2006-10-06  Bruno Haible  <bruno@clisp.org>
32116
32117         * modules/closeout (Description): Mention stderr too.
32118
32119 2006-10-06  Bruno Haible  <bruno@clisp.org>
32120         and Paul Eggert  <eggert@cs.ucla.edu>
32121
32122         * lib/closeout.c (close_stdout): Also close stderr.
32123         * lib/closeout.h: Update comment.
32124
32125 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
32126
32127         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
32128         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
32129         * lib/dirchownmod.c: Include lchown.h.
32130         * lib/lchown.c: Don't include files that lchown.h now includes.
32131         Don't declare chown, since lchown.h now does that.
32132         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
32133         (lchown): Define to rpl_chown if lchown is declared but
32134         does not exist.  Declare using a prototype if lchown is not
32135         declared.  Add a copyright notice.
32136         * lib/mkstemp.h: Include <unistd.h>.
32137         * lib/openat.c: Include lchown.h.
32138
32139         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
32140         we now test for that separately.
32141         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
32142         rather than O_NOFOLLOW, when testing whether it's possible to
32143         avoid a race condition reliably.
32144         * lib/savewd.c (savewd_chdir): Likewise.
32145
32146         Remove macros that are no longer needed now that stdint.h is
32147         reliable.
32148         * lib/fsusage.c (UINTMAX_MAX): Remove.
32149         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
32150         * lib/utimecmp.c (SIZE_MAX): Remove.
32151
32152         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
32153
32154         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
32155         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
32156         O_NOATIME works.
32157
32158 2006-10-05  Bruno Haible  <bruno@clisp.org>
32159
32160         * lib/gl_list.h (gl_sortedlist_search_from_to,
32161         gl_sortedlist_indexof_from_to): New declarations.
32162         (gl_list_implementation): New fields sortedlist_search_from_to,
32163         sortedlist_indexof_from_to.
32164         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
32165         inline functions.
32166         * lib/gl_list.c (gl_sortedlist_search_from_to,
32167         gl_sortedlist_indexof_from_to): New functions.
32168         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
32169         function.
32170         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
32171         (gl_array_sortedlist_search_from_to): New function.
32172         (gl_array_list_implementation): Update.
32173         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
32174         function.
32175         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
32176         (gl_carray_sortedlist_search_from_to): New function.
32177         (gl_carray_list_implementation): Update.
32178         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
32179         gl_linked_sortedlist_indexof_from_to): New functions.
32180         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
32181         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
32182         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
32183         gl_tree_sortedlist_indexof_from_to): New functions.
32184         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
32185         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
32186         Update.
32187         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
32188         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
32189         Update.
32190
32191 2006-10-05  Bruno Haible  <bruno@clisp.org>
32192
32193         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
32194         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
32195         (struct gl_list_implementation): Add fields search_from_to,
32196         indexof_from_to. Remove fields search, indexof.
32197         (gl_list_search): Use the search_from_to method.
32198         (gl_list_search_from, gl_list_search_from_to): New functions.
32199         (gl_list_indexof): Use the indexof_from_to method.
32200         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
32201         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
32202         (gl_list_search_from, gl_list_search_from_to): New functions.
32203         (gl_list_indexof): Use the indexof_from_to method.
32204         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
32205         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
32206         gl_array_indexof. Add start_index, end_index arguments.
32207         (gl_array_search_from_to): Renamed from gl_array_search. Add
32208         start_index, end_index arguments.
32209         (gl_array_remove, gl_array_list_implementation): Update.
32210         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
32211         gl_carray_indexof. Add start_index, end_index arguments.
32212         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
32213         start_index, end_index arguments.
32214         (gl_carray_remove, gl_carray_list_implementation): Update.
32215         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
32216         gl_linked_search. Add start_index, end_index arguments.
32217         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
32218         start_index, end_index arguments.
32219         (gl_linked_remove): Update.
32220         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
32221         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
32222         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
32223         field to 'size_t'.
32224         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
32225         gl_tree_search. Add start_index, end_index arguments.
32226         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
32227         start_index, end_index arguments.
32228         (gl_tree_remove): Update.
32229         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
32230         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
32231         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
32232         function.
32233         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
32234         gl_tree_search. Add start_index, end_index arguments.
32235         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
32236         start_index, end_index arguments.
32237         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
32238         Update.
32239         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
32240
32241 2006-10-05  Bruno Haible  <bruno@clisp.org>
32242
32243         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
32244
32245         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
32246         fwriteerror_temp): New declarations.
32247         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
32248         (descriptors): New variable.
32249         (cleanup): First, close the descriptors.
32250         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
32251         fclose_temp, fwriteerror_temp): New functions.
32252
32253 2006-10-04  Jim Meyering  <jim@meyering.net>
32254
32255         * lib/fts.c (fts_open): Tiny comment change.
32256
32257 2006-10-04  Bruno Haible  <bruno@clisp.org>
32258
32259         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
32260         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
32261         gl_LOCK_BODY.
32262         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
32263         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
32264         gl_LOCK_EARLY_BODY.
32265         (gl_LOCK): Require gl_LOCK_BODY.
32266
32267 2006-10-04  Bruno Haible  <bruno@clisp.org>
32268
32269         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
32270         (gl_oset_search_atleast): New declaration.
32271         (struct gl_oset_implementation): Add field 'search_atleast'.
32272         (gl_oset_search_atleast): New inline function.
32273         * lib/gl_oset.c (gl_oset_search_atleast): New function.
32274         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
32275         (gl_array_oset_implementation): Update.
32276         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
32277         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
32278         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
32279
32280 2006-10-04  Bruno Haible  <bruno@clisp.org>
32281
32282         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
32283
32284 2006-10-03  Bruno Haible  <bruno@clisp.org>
32285
32286         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
32287         from gl_avltreehash_list_implementation.
32288
32289 2006-10-03  Bruno Haible  <bruno@clisp.org>
32290
32291         * lib/gl_oset.c (gl_oset_add): Fix return type.
32292
32293 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
32294
32295         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
32296
32297 2006-10-02  Eric Blake  <ebb9@byu.net>
32298
32299         * modules/strnlen (Depends-on): Add extensions.
32300
32301 2006-10-02  Eric Blake  <ebb9@byu.net>
32302
32303         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
32304         definition in 2.60+.
32305
32306 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
32307
32308         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
32309         checks.
32310
32311 2006-10-02  Bruno Haible  <bruno@clisp.org>
32312
32313         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
32314         to the AUTOMAKE_OPTIONS.
32315         Reported by Jim Meyering.
32316
32317 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
32318
32319         Work around bug in Solaris 10 /proc file system:
32320         /proc/self/fd/NNN/.. isn't the parent directory of
32321         the directory whose file descriptor is NNN.  This needs to
32322         be worked around at run time, not compile time, since a
32323         program might be built on Solaris 8, where things work, and
32324         run on Solaris 10.
32325         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
32326         to use the following interface instead:
32327         (OPENAT_BUFFER_SIZE): New macro.
32328         (openat_proc_name): New function.
32329         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
32330         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
32331         Likewise.
32332         * lib/openat-proc.c: New file.
32333         * modules/openat (Files): Add lib/openat-proc.c.
32334         (Depends-on): Add same-inode, stdbool.
32335         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
32336
32337 2006-09-29  Bruno Haible  <bruno@clisp.org>
32338
32339         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
32340         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
32341         argument. Set stdout_closed before testing for ferror, not after.
32342         (fwriteerror, fwriteerror_no_ebadf): New functions.
32343
32344 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32345
32346         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
32347
32348 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
32349
32350         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
32351         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
32352
32353 2006-09-28  Jim Meyering  <jim@meyering.net>
32354
32355         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
32356         Include <unistd.h>.
32357
32358 2006-09-28  Bruno Haible  <bruno@clisp.org>
32359
32360         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
32361         * modules/linkedhash-list (Depends-on): Likewise.
32362         * modules/rbtreehash-list (Depends-on): Likewise.
32363
32364 2006-09-28  Bruno Haible  <bruno@clisp.org>
32365
32366         * lib/strndup.h: Simplify the redefinition of strndup.
32367         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
32368         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
32369
32370 2006-09-28  Bruno Haible  <bruno@clisp.org>
32371
32372         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
32373         * lib/gl_linkedhash_list.c: Likewise.
32374         * lib/gl_rbtreehash_list.c: Likewise.
32375
32376 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
32377
32378         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
32379         getaddrinfo.
32380
32381         * lib/__fpending.h: Don't include <stdio_ext.h> unless
32382         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
32383         it causes <stdio_ext.h> to cause a compile-time error.
32384         Problem reported by Nelson H. F. Beebe.
32385         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
32386         of HAVE_DECL___PENDING.
32387
32388         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
32389         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
32390         declaration.
32391
32392 2006-09-27  Jim Meyering  <jim@meyering.net>
32393
32394         This file could end up with a definition for a function
32395         named __strndup, rather than rpl_strndup on a system with
32396         incomplete weak_alias support.
32397         * lib/strndup.c (strndup): Rename from __strndup.
32398         Remove #defines that used to map __strndup to strndup.
32399         Don't use K&R prototypes.
32400         Remove LIBC-related code, since this file is not sync'd with glibc.
32401         * lib/strndup.h: Revamp, accordingly.
32402         * m4/strndup.m4: Modernize.
32403
32404 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
32405
32406         * modules/savewd (Depends-on): Add 'raise'.
32407         * lib/savewd.c: Include <signal.h>, for 'raise'.
32408
32409 2006-09-26  Jim Meyering  <jim@meyering.net>
32410
32411         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
32412         when we detect Darwin 8.7.0's acl_get_file bug.
32413         Rearrange to perform the new (below) run-test while $LIBS
32414         contains any acl-related library.  Set USE_ACL at the end.
32415         (gl_ACL_GET_FILE): New function.
32416
32417 2006-09-26  Eric Blake  <ebb9@byu.net>
32418
32419         * lib/verror.c: Include <config.h> unconditionally.
32420
32421 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
32422
32423         * modules/clock-time (Maintainer): Add self.
32424         * modules/getlogin_r (Depends-on): Add extensions.
32425
32426 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32427
32428         * modules/clock-time: New module.
32429         * modules/nanosleep (Depends-on): Add clock-time.
32430         * modules/gethrxtime (Depends-on): Likewise.
32431         * modules/gettime (Depends-on): Likewise.
32432         * modules/settime (Depends-on): Likewise.
32433
32434         * modules/fts-lgpl: Depend on openat.
32435         * modules/mkancesdirs: Depend on savewd.
32436         * modules/mkdir-p: Likewise.
32437
32438 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32439
32440         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
32441
32442         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
32443         `gl_have_arbitrary_file_name_length_limit' to
32444         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
32445         actually works between configure runs.
32446
32447 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32448             Bruno Haible  <bruno@clisp.org>
32449
32450         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
32451
32452 2006-09-25  Jim Meyering  <jim@meyering.net>
32453
32454         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
32455         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
32456
32457 2006-09-25  Eric Blake  <ebb9@byu.net>
32458
32459         * gnulib-tool (func_import, func_create_testdir): Fix typos in
32460         exec's in 2006-09-18 patch when shuffling fds.
32461
32462 2006-09-25  Bruno Haible  <bruno@clisp.org>
32463
32464         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
32465         Reported by Jim Meyering.
32466
32467 2006-09-24  Jim Meyering  <jim@meyering.net>
32468
32469         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
32470         compare a pointer against a literal "0".  That caused failures with
32471         at least HP-UX's hpcc.
32472
32473 2006-09-22  Simon Josefsson  <jas@extundo.com>
32474
32475         * modules/gc-sha1:
32476         * modules/gc-md4:
32477         * modules/gc-hmac-sha1:
32478         * modules/gc-hmac-md5:
32479         * modules/gc-des:
32480         * modules/gc-arcfour: Distribute more files.
32481
32482 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32483
32484         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
32485         (gl_linked_iterator_from_to): Initialize struct completely.
32486         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
32487         (gl_tree_iterator_from_to): Likewise
32488         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
32489         * lib/gl_array_list.c [lint] (gl_array_iterator)
32490         (gl_array_iterator_from_to): Likewise.
32491         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
32492         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
32493         (gl_carray_iterator_from_to): Likewise.
32494
32495         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
32496         * lib/md4.c (md4_process_block): Remove unused variable.
32497         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
32498         parentheses for clarity.
32499
32500 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32501
32502         * modules/bison-i18n (Depends-on): Add gettext.
32503
32504 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32505
32506         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
32507         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
32508         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
32509         also add missing comma that caused broken test.
32510         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
32511         stdlib.h, for `abort'.
32512         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
32513         variables.
32514         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
32515         include unistd.h if present, for `rmdir'.
32516         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
32517         variables.
32518         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
32519         in the process include standard headers for prototypes.
32520         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
32521         gets declared on GNU/Linux.
32522         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
32523         unistd.h, for `rmdir'.
32524         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
32525
32526         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
32527         always true.
32528         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
32529
32530         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
32531
32532 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32533
32534         * gnulib-tool (func_version): Create output all at once.  This
32535         may help avoid triggering unnecessary SIGPIPEs, and at any
32536         rate it doesn't hurt.
32537
32538 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32539             Bruno Haible  <bruno@clisp.org>
32540
32541         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
32542         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
32543         * m4/signed.m4 (bh_C_SIGNED): Likewise.
32544
32545         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
32546         (gl_FUNC_VASPRINTF): Invoke it.
32547
32548 2006-09-22  Bruno Haible  <bruno@clisp.org>
32549
32550         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
32551         getloadavg.c as first argument.
32552
32553 2006-09-22  Bruno Haible  <bruno@clisp.org>
32554
32555         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
32556         at the beginning of the gl_INIT macro.
32557         * modules/getloadavg (configure.ac): Pass $gl_source_base to
32558         gl_GETLOADAVG.
32559
32560 2006-09-22  Bruno Haible  <bruno@clisp.org>
32561
32562         * gnulib-tool (func_create_megatestdir): Don't include the config-h
32563         module.
32564         Suggested by Ralf Wildenhues.
32565
32566 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
32567
32568         Import this patch from libc:
32569
32570         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
32571
32572         * lib/regex_internal.c (re_string_reconstruct): Handle
32573         offset < pstr->valid_raw_len && pstr->offsets_needed case.
32574         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
32575         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
32576         re_string_context_at.
32577
32578         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
32579         now requires it.
32580         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
32581         gl_REGEX now does it for us.
32582         (gl_REGEX): Add test taken from
32583         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
32584
32585         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
32586         Check that large offsets work.  Modernize Autoconf usages.
32587         Prefer "yes" to mean a good thing rather than a bad.
32588         Don't put "#define mkstemp" in config.h, as this might interfere
32589         with standard system headers that "#define mkstemp mkstemp64".
32590
32591         * modules/mkstemp (Depends-on): Add extensions, so that
32592         mkstemp is visible on some platforms.
32593         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
32594         (Include): Change to "mkstemp.h" from <stdlib.h>.
32595         (Files): Add mkstemp.h.
32596
32597         * lib/mkstemp.h: New file, since some standard headers
32598         #define mkstemp.
32599         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
32600         Include "mkstemp.h".
32601         Make the _LIBC code resemble glibc original more,
32602         e.g., use K&R style.
32603         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
32604         (mkstemp): Remove, since mkstemp.h does this for us.
32605         * lib/stdlib--.h: Include mkstemp.h.
32606
32607         Import this patch from libc:
32608
32609         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
32610
32611         * lib/tempname.c (__gen_tempname): Change attempts_min
32612         into a macro.  Use preprocessor to decide how to initialize
32613         attempts [Coverity CID 67].
32614
32615 2006-09-20  Bruno Haible  <bruno@clisp.org>
32616
32617         * lib/mkdtemp.c: Import from libc.
32618         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
32619                 * sysdeps/posix/tempname.c (__gen_tempname): Change
32620                 attempts_min into a macro.  Use preprocessor to decide how to
32621                 initialize attempts [Coverity CID 67].
32622         2001-11-27  Paul Eggert  <eggert@twinsun.com>
32623                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
32624                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
32625
32626 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32627
32628         * gnulib-tool (func_exit): New function, to allow to pass the
32629         exit status portably through the trap.  Use everywhere.
32630         (--help, --version): Signal a write error.
32631         (trap): catch SIGPIPE, for write errors.
32632         Exit at the end of the trap, with the correct exit status.
32633
32634 2006-09-19  Karl Berry  <karl@gnu.org>
32635
32636         * doc/gnulib.texi: note about the license texinfo files.
32637
32638 2006-09-19  Eric Blake  <ebb9@byu.net>
32639
32640         * gnulib-tool: Avoid space-tab.
32641
32642 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
32643
32644         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
32645         that prevented coreutils 6.1 from building.  Problem reported
32646         by Petter Reinholdtsen.
32647
32648 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
32649
32650         * gnulib-tool (avoidlist): Fix typo that broke options like
32651         --avoid=lock that are used by coreutils bootstrap.
32652
32653 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
32654
32655         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
32656         more systematically.
32657
32658 2006-09-18  Jim Meyering  <jim@meyering.net>
32659
32660         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
32661
32662 2006-09-18  Bruno Haible  <bruno@clisp.org>
32663
32664         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
32665
32666 2006-09-18  Bruno Haible  <bruno@clisp.org>
32667
32668         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
32669         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
32670         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
32671         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
32672         * m4/gettext.m4: Require autoconf >= 2.52.
32673         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
32674         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
32675         of gl_cv_header_inttypes_h.
32676
32677 2006-09-18  Bruno Haible  <bruno@clisp.org>
32678
32679         * lib/javaversion.c: Include configmake.h.
32680
32681 2006-09-18  Bruno Haible  <bruno@clisp.org>
32682
32683         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
32684         avoid that the while loops be executed in a subshell.
32685
32686 2006-09-18  Bruno Haible  <bruno@clisp.org>
32687
32688         * MODULES.html.sh (func_module): Break long lines.
32689         Suggested by Bruce Korb <bkorb@gnu.org>.
32690
32691 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32692
32693         Speed up by a factor of 1.12.
32694         * gnulib-tool (nl): New variable.
32695         (func_import): Rewrite include directive extraction to only read each
32696         directive once.
32697
32698 2006-09-17  Bruno Haible  <bruno@clisp.org>
32699
32700         * modules/javaversion (Makefile.am): Remove DEFS setting.
32701         (Depends-on): Add configmake, for PKGDATADIR definition.
32702
32703 2006-09-17  Bruno Haible  <bruno@clisp.org>
32704
32705         * gnulib-tool (func_create_testdir): Rewrite all files at once.
32706
32707 2006-09-17  Bruno Haible  <bruno@clisp.org>
32708
32709         * gnulib-tool (func_append): New function, stolen from libtool.m4.
32710         (func_modules_transitive_closure, func_modules_add_dummy,
32711         func_modules_to_filelist, func_import, func_create_testdir,
32712         func_create_megatestdir, ...): Use it wherever possible.
32713         Suggested by Ralf Wildenhues.
32714
32715 2006-09-16  Karl Berry  <karl@gnu.org>
32716
32717         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
32718         to avoid sectioning errors.
32719         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
32720         [ifinfo]: blank line after @center-ed titles.
32721         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
32722         Spell FSF address consistently with others.
32723         (These changes approved by rms.)
32724
32725 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32726
32727         Speed up by a factor of 1.61.
32728         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
32729         already checked module names again.
32730
32731 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32732
32733         Speed up by a factor of 1.13.
32734         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
32735         for new_files, and the input to func_add_or_update.
32736
32737 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32738
32739         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
32740         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
32741
32742 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
32743
32744         * modules/mkancesdirs (Depends-on): Add fcntl.
32745         * modules/savewd: New file.
32746         * MODULES.html.sh (File system functions): Add savewd.
32747
32748         * modules/configmake (Makefile.am): Add support for the
32749         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
32750
32751 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
32752
32753         * m4/savewd.m4: New file.
32754
32755 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
32756
32757         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
32758         (dirchownmod): New arg FD.  All callers changed.
32759         Use FD rather than opening the directory ourself, as opening is
32760         now the caller's responsibility.
32761         * lib/dirchownmod.h: Likewise.
32762         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
32763         hosts that require <sys/types.h> before <sys/stat.h>.  Include
32764         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
32765         (test_dir): Remove.
32766         (mkancesdirs): Return length of prefix of FILE that has already
32767         been made, or -2 if there is a child doing the work.  Redo
32768         algorithm so that it is O(N) rather than O(N**2).  Optimize away
32769         ".", and treat ".." specially since it might stray back into
32770         already-created areas.  Use a subprocess if necessary.  New arg
32771         WD; all users changed.  MAKE_DIR function should now return 1
32772         if it creates a directory that is not readable.  Return -2 if
32773         a child process is spun off.
32774         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
32775         Adjust signature to match code.
32776         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
32777         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
32778         all users changed.
32779         * lib/savewd.c, lib/savewd.h: New files.
32780
32781 2006-09-15  Jim Meyering  <jim@meyering.net>
32782
32783         * modules/rename-dest-slash: New module.
32784         * MODULES.html.sh (posix_compat): Add it here.
32785
32786         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
32787
32788 2006-09-15  Jim Meyering  <jim@meyering.net>
32789
32790         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
32791         file.
32792
32793         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
32794
32795 2006-09-15  Jim Meyering  <jim@meyering.net>
32796
32797         * lib/rename-dest-slash.c (has_trailing_slash): Use
32798         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
32799         (rpl_rename_dest_slash): Perform the cheaper trailing slash
32800         test before testing whether SRC is a directory.
32801         Suggestions from Bruno Haible.
32802
32803         Avoid a warning about an unused variable.
32804         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
32805         into the #ifdef block where it's used.
32806
32807         * lib/rename-dest-slash.c: New file.
32808
32809 2006-09-14  Bruno Haible  <bruno@clisp.org>
32810
32811         * lib/allocsa.c: Include <config.h> unconditionally.
32812         * lib/asnprintf.c: Likewise.
32813         * lib/asprintf.c: Likewise.
32814         * lib/c-strcasecmp.c: Likewise.
32815         * lib/c-strcasestr.c: Likewise.
32816         * lib/c-strncasecmp.c: Likewise.
32817         * lib/c-strstr.c: Likewise.
32818         * lib/classpath.c: Likewise.
32819         * lib/clean-temp.c: Likewise.
32820         * lib/concatpath.c: Likewise.
32821         * lib/copy-file.c: Likewise.
32822         * lib/csharpcomp.c: Likewise.
32823         * lib/csharpexec.c: Likewise.
32824         * lib/execute.c: Likewise.
32825         * lib/fatal-signal.c: Likewise.
32826         * lib/findprog.c: Likewise.
32827         * lib/fwriteerror.c: Likewise.
32828         * lib/gl_array_list.c: Likewise.
32829         * lib/gl_array_oset.c: Likewise.
32830         * lib/gl_avltree_list.c: Likewise.
32831         * lib/gl_avltree_oset.c: Likewise.
32832         * lib/gl_avltreehash_list.c: Likewise.
32833         * lib/gl_carray_list.c: Likewise.
32834         * lib/gl_linked_list.c: Likewise.
32835         * lib/gl_linkedhash_list.c: Likewise.
32836         * lib/gl_list.c: Likewise.
32837         * lib/gl_oset.c: Likewise.
32838         * lib/gl_rbtree_list.c: Likewise.
32839         * lib/gl_rbtree_oset.c: Likewise.
32840         * lib/gl_rbtreehash_list.c: Likewise.
32841         * lib/imaxabs.c: Likewise.
32842         * lib/imaxdiv.c: Likewise.
32843         * lib/javacomp.c: Likewise.
32844         * lib/javaexec.c: Likewise.
32845         * lib/javaversion.c: Likewise.
32846         * lib/linebreak.c: Likewise.
32847         * lib/localcharset.c: Likewise.
32848         * lib/lock.c: Likewise.
32849         * lib/mbchar.c: Likewise.
32850         * lib/mbswidth.c: Likewise.
32851         * lib/mkdtemp.c: Likewise.
32852         * lib/pipe.c: Likewise.
32853         * lib/printf-args.c: Likewise.
32854         * lib/printf-parse.c: Likewise.
32855         * lib/progname.c: Likewise.
32856         * lib/progreloc.c: Likewise.
32857         * lib/readlink.c: Likewise.
32858         * lib/sh-quote.c: Likewise.
32859         * lib/stpcpy.c: Likewise.
32860         * lib/stpncpy.c: Likewise.
32861         * lib/strcasecmp.c: Likewise.
32862         * lib/strcasestr.c: Likewise.
32863         * lib/strcspn.c: Likewise.
32864         * lib/striconv.c: Likewise.
32865         * lib/strncasecmp.c: Likewise.
32866         * lib/strnlen1.c: Likewise.
32867         * lib/strstr.c: Likewise.
32868         * lib/strtok_r.c: Likewise.
32869         * lib/tls.c: Likewise.
32870         * lib/tmpdir.c: Likewise.
32871         * lib/unicodeio.c: Likewise.
32872         * lib/unsetenv.c: Likewise.
32873         * lib/vasnprintf.c: Likewise.
32874         * lib/vasprintf.c: Likewise.
32875         * lib/wait-process.c: Likewise.
32876         * lib/xallocsa.c: Likewise.
32877         * lib/xsetenv.c: Likewise.
32878         * lib/xstriconv.c: Likewise.
32879
32880 2006-09-13  Simon Josefsson  <jas@extundo.com>
32881
32882         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
32883         that internally, suggested by Ralf Wildenhues
32884         <Ralf.Wildenhues@gmx.de>.
32885
32886 2006-09-13  Simon Josefsson  <jas@extundo.com>
32887
32888         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
32889         @LIBOBJS@.
32890         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32891
32892 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
32893
32894         * lib/_fpending.c: Include <config.h> unconditionally, since we no
32895         longer worry about uses that don't define HAVE_CONFIG_H.
32896         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
32897         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
32898         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
32899         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
32900         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
32901         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
32902         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
32903         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
32904         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
32905         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
32906         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
32907         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
32908         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
32909         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
32910         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
32911         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
32912         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
32913         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
32914         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
32915         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
32916         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
32917         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
32918         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
32919         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
32920         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
32921         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
32922         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
32923         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
32924         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
32925         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
32926         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
32927         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
32928         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
32929         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
32930         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
32931         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
32932         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
32933         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
32934         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
32935         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
32936         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
32937         Likewise.
32938
32939 2006-09-13  Eric Blake  <ebb9@byu.net>
32940
32941         * lib/getopt.c: Fix typo in last commit.
32942
32943 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
32944
32945         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
32946         dgettext.
32947
32948 2006-09-12  Jim Meyering  <jim@meyering.net>
32949
32950         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
32951         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
32952         Reported by Nelson H. F. Beebe.
32953
32954 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
32955
32956         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
32957         program_invocation_name and program_invocation_short_name are
32958         initialized.
32959         * lib/argp-namefrob.h: Move declarations of program_invocation_name
32960         and program_invocation_short_name to argp.h, so they are visible
32961         to user programs.
32962         * lib/argp.h: Likewise
32963
32964 2006-09-10  Bruno Haible  <bruno@clisp.org>
32965
32966         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
32967         m4/inttypes_h.m4, m4/uintmax_t.m4.
32968
32969 2006-09-10  Bruno Haible  <bruno@clisp.org>
32970
32971         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
32972         gl_AC_TYPE_UINTMAX_T.
32973
32974 2006-09-10  Bruno Haible  <bruno@clisp.org>
32975
32976         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
32977
32978 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
32979
32980         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
32981         convention.  Text proposed by Bruno Haible.
32982         (struct argp_option): Document the use of N_() wrappers.
32983
32984         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
32985         '\v', and translate the two parts separately, instead of feeding
32986         the whole string to gettext.  This allows to exclude
32987         '\v' from the strings visible to the translator by writing doc
32988         strings as N_("..") "\v" N_("..").
32989
32990 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
32991
32992         * config/srclist.txt: Undo latest change; the bug was fixed.
32993
32994 2006-09-09  Bruno Haible  <bruno@clisp.org>
32995
32996         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
32997         assignments if building a library without libtool.
32998         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
32999         in func_emit_lib_Makefile_am.
33000         (func_import): When building a static library libfoo.a, arrange to
33001         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
33002         (func_create_testdir): Likewise.
33003         * modules/gc (configure.ac, Makefile.am): If building statically,
33004         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
33005         * modules/iconvme (configure.ac, Makefile.am): Likewise.
33006         * modules/striconv (configure.ac, Makefile.am): Likewise.
33007         Based on a suggestion by Ralf Wildenhues.
33008
33009 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
33010
33011         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
33012         Check for unistd.h too, since Autoconf doesn't assume POSIX.
33013         Also:
33014
33015         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
33016         Add year_2050_test to catch glibc bug 2821
33017         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
33018
33019         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
33020         Prefer #ifdef to #if.
33021
33022         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
33023         Return from 'main' instead of calling 'exit'.
33024
33025 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
33026
33027         * lib/mktime.c (guess_time_tm): Fix bug where mktime
33028         returned the maximum time_t value rather than (time_t) -1.
33029         Problem originally reported by William Bardwell
33030         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
33031
33032         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
33033         Moved to here ...
33034         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
33035         ... from here.
33036
33037 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
33038
33039         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
33040         2821 is fixed.
33041
33042 2006-09-08  Jim Meyering  <jim@meyering.net>
33043
33044         Don't make generated files read-only.  That would bother too many
33045         people.  However, do retain the ability to work when targets are
33046         read-only: remove the destination and temporary files before writing
33047         them (when generated via sed or echo), or by using the -f option for
33048         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
33049         * modules/alloca-opt, modules/argz, modules/arpa_inet:
33050         * modules/byteswap, modules/configmake, modules/fcntl:
33051         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
33052         * modules/localcharset, modules/netinet_in, modules/poll:
33053         * modules/stdbool, modules/stdint, modules/sys_select:
33054         * modules/sys_socket, modules/sys_stat, modules/sysexits:
33055
33056 2006-09-08  Jim Meyering  <jim@meyering.net>
33057
33058         Avoid new build failure on FreeBSD 6.0.
33059         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
33060         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
33061         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
33062
33063 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33064
33065         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
33066
33067 2006-09-07  Jim Meyering  <jim@meyering.net>
33068
33069         Fix global typo in last change: use chmod u-w, not chmod u-x.
33070         Spotted by Paul Eggert and Bruce Korb.
33071         * modules/alloca-opt, modules/argz, modules/arpa_inet:
33072         * modules/byteswap, modules/configmake, modules/fcntl:
33073         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
33074         * modules/localcharset, modules/netinet_in, modules/poll:
33075         * modules/stdbool, modules/stdint, modules/sys_select:
33076         * modules/sys_socket, modules/sys_stat, modules/sysexits:
33077
33078 2006-09-06  Jim Meyering  <jim@meyering.net>
33079
33080         Make generated files be read-only.
33081         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
33082         Ensure that each generated file is now read-only.
33083         * modules/argz: Likewise.
33084         * modules/arpa_inet: Likewise.
33085         * modules/byteswap: Likewise.
33086         * modules/configmake: Likewise.
33087         * modules/fcntl: Likewise.
33088         * modules/fnmatch: Likewise.
33089         * modules/getopt: Likewise.
33090         * modules/glob: Likewise.
33091         * modules/inttypes: Likewise.
33092         * modules/netinet_in: Likewise.
33093         * modules/poll: Likewise.
33094         * modules/stdbool: Likewise.
33095         * modules/stdint: Likewise.
33096         * modules/sys_select: Likewise.
33097         * modules/sys_socket: Likewise.
33098         * modules/sys_stat: Likewise.
33099         * modules/sysexits: Likewise.
33100         * modules/localcharset: Same as above, but continue using temporary
33101         file named "t-$@" (why different?) rather than the "$@-t" used
33102         everywhere else.
33103
33104         * modules/sysexits (Makefile.am): Replace literal occurrences
33105         of "sysexit.h" more readable, and more consistent, "$@".
33106
33107 2006-09-06  Bruno Haible  <bruno@clisp.org>
33108
33109         * modules/striconv: New file.
33110         * modules/xstriconv: New file.
33111         * MODULES.html.sh (Internationalization functions): Add striconv,
33112         xstriconv.
33113
33114 2006-09-06  Bruno Haible  <bruno@clisp.org>
33115
33116         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
33117         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
33118         not using libtool correctly.
33119
33120 2006-09-06  Bruno Haible  <bruno@clisp.org>
33121
33122         * lib/striconv.h: New file.
33123         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
33124         iconvstring.c.
33125         * lib/xstriconv.h: New file.
33126         * lib/xstriconv.c: New file.
33127
33128 2006-09-06  Bruno Haible  <bruno@clisp.org>
33129
33130         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
33131         lib_..._LDFLAGS.
33132
33133 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33134
33135         * lib/argz_.h: Sync from Libtool.
33136
33137         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
33138                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
33139
33140         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
33141
33142 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
33143
33144         * modules/trim: New file.
33145
33146 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
33147
33148         * lib/trim.h: New file.
33149         * lib/trim.c: New file.
33150
33151 2006-09-05  Bruno Haible  <bruno@clisp.org>
33152
33153         * MODULES.html.sh (String handling): Add trim.
33154
33155 2006-09-04  Karl Berry  <karl@gnu.org>
33156
33157         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
33158         until next release.
33159
33160 2006-09-03  Bruno Haible  <bruno@clisp.org>
33161
33162         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
33163         correctly.
33164
33165 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
33166
33167         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
33168         not gl_GETLOADAVG.  Omit unneeded semicolons.
33169         Problems reported by Ralf Wildenhues in
33170         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
33171         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
33172         at the end, which is the usual gnulib style.
33173
33174         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
33175         of doing all the work ourselves.
33176         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
33177         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
33178
33179 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
33180
33181         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
33182         Problem reported by Ralf Wildenhues in
33183         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
33184
33185         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
33186         HAVE_STRUCT_STATFS_F_FSTYPENAME.
33187
33188 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
33189
33190         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
33191         yesterday's patch by changing test -n to test -z.
33192
33193 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
33194
33195         * modules/getloadavg (Files): Add m4/getloadavg.m4.
33196         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
33197         the former is now obsolescent.
33198
33199         * modules/chdir-long (Depends-on): Add fcntl.
33200
33201 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
33202
33203         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
33204         obsolescent, and programs should use gnulib instead.
33205         * m4/getloadavg.m4: New file, with contents taken from Autoconf
33206         but with prefixes changed.
33207
33208 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
33209
33210         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
33211         or stdbool.h, because they might not exist while configuring.
33212
33213         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
33214         Don't include unistd.h or limits.h; not needed, since chdir-long.h
33215         does that for us.
33216         (O_DIRECTORY): Remove.
33217
33218 2006-08-31  Eric Blake  <ebb9@byu.net>
33219
33220         * gnulib-tool: Don't let emacs change spaces to TAB.
33221
33222 2006-08-31  Bruno Haible  <bruno@clisp.org>
33223
33224         * gnulib-tool: When calling func_import more than once, do it in a
33225         subshell.
33226         Reported by Eric Blake <ebb9@byu.net>.
33227
33228 2006-08-31  Bruno Haible  <bruno@clisp.org>
33229
33230         * gnulib-tool (nl): Remove variable.
33231         (sed_transform_lib_file): Use more robust test for config-h module.
33232         (func_import): Fix typo in 2006-08-25 patch.
33233
33234 2006-08-31  Bruno Haible  <bruno@clisp.org>
33235
33236         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
33237         specified, augment Makefile.am variables instead of assigning them.
33238
33239 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
33240
33241         Work around a bug in both the Linux and SunOS 64-bit kernels:
33242         nanosleep mishandles sleeps for longer than 2**31 seconds.
33243         Problem reported by Frank v Waveren in
33244         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
33245         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
33246         Check for nanosleep bug.
33247         (LIB_NANOSLEEP): Append clock_gettime library if needed.
33248
33249 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
33250
33251         Work around a bug in both the Linux and SunOS 64-bit kernels:
33252         nanosleep mishandles sleeps for longer than 2**31 seconds.
33253         Problem reported by Frank v Waveren in
33254         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
33255         * lib/nanosleep.c (BILLION): New constant.
33256         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
33257         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
33258         implementation.
33259
33260 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
33261
33262         * modules/nanosleep (Depends-on): Add gettime.
33263
33264 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
33265         and Simon Josefsson  <jas@extundo.com>
33266         and Oskar Liljeblad  <oskar@osk.mine.nu>
33267
33268         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
33269         * gnulib-tool (func_import): New license type 'unmodifiable license
33270         text'.
33271         * modules/fdl: Use it.  Longer description.
33272         * module/gpl, module/lgpl: New files.
33273
33274 2006-08-30  Jim Meyering  <jim@meyering.net>
33275
33276         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
33277         shadowing the parameter.
33278
33279 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33280
33281         Sync from Libtool:
33282
33283         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33284
33285         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
33286         sharing with gnulib.  Report by Eric Blake.
33287
33288 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
33289
33290         * modules/isapipe: New file.
33291         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
33292
33293 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
33294
33295         * modules/configmake (Makefile.am): Add a comment, and omit
33296         the CONFIGMAKE_ prefix from generated macro names.  Suggested
33297         by Bruno Haible.
33298
33299 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
33300
33301         * m4/isapipe.m4: New file.
33302
33303 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
33304
33305         * lib/isapipe.c, lib/isapipe.h: New files.
33306
33307 2006-08-29  Jim Meyering  <jim@meyering.net>
33308
33309         * modules/configmake (Makefile.am): Make configmake.h depend on
33310         Makefile.  Otherwise, a stale configmake.h could hang around.
33311
33312 2006-08-29  Eric Blake  <ebb9@byu.net>
33313
33314         * lib/error.c (error_at_line, print_errno_message): Match libc, after
33315         resolution of upstream bug 3044.
33316
33317 2006-08-29  Bruno Haible  <bruno@clisp.org>
33318
33319         * modules/localcharset (Depends-on): Add configmake.
33320         (Makefile.am): Remove setting of LIBDIR through DEFS.
33321
33322 2006-08-29  Bruno Haible  <bruno@clisp.org>
33323
33324         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
33325         defined.
33326
33327 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
33328
33329         * modules/fcntl: New file.
33330         * modules/chdir-safer (Depends-on): Add fcntl.
33331         * modules/fts: Likewise.
33332         * modules/mkdir-p: Likewise.
33333
33334         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
33335         This undoes the most recent change, since we're now addressing the
33336         problem in a different way.
33337
33338         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
33339         into output, since the output might be called Makefile.am even
33340         if $makefile_name is something different.
33341         (func_import): Use $makefile_am rather than
33342         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
33343         empty.
33344
33345         * modules/inttypes (Files): Add m4/inttypes-h.m4.
33346
33347 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
33348
33349         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
33350         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
33351         recent change to stdint.m4, since we're now addressing the problem in a
33352         different way.
33353
33354 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
33355
33356         * m4/fcntl_h.m4: New file.
33357
33358 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
33359
33360         * lib/fcntl_.h: New file.
33361         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
33362         the fcntl module.
33363         * lib/dirchownmod.c: Likewise.
33364         * lib/fts.c: Likewise.
33365
33366         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
33367         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
33368         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
33369         just before including <inttypes.h>, to avoid circular inclusion.
33370
33371 2006-08-28  Jim Meyering  <jim@meyering.net>
33372
33373         * doc/visibility.texi: Actually read and correct the grammar of the
33374         sentence affected by yesterday's change.
33375
33376 2006-08-28  Eric Blake  <ebb9@byu.net>
33377
33378         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
33379         needs wrapper.
33380
33381 2006-08-28  Eric Blake  <ebb9@byu.net>
33382
33383         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
33384
33385 2006-08-28  Eric Blake  <ebb9@byu.net>
33386
33387         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
33388
33389 2006-08-28  Bruno Haible  <bruno@clisp.org>
33390
33391         * modules/c-strstr: New file, from GNU gettext.
33392         * MODULES.html.sh (String handling): Add c-strstr.
33393
33394 2006-08-28  Bruno Haible  <bruno@clisp.org>
33395
33396         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
33397         macros.
33398         Reported by Eric Blake.
33399
33400 2006-08-28  Bruno Haible  <bruno@clisp.org>
33401
33402         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
33403         (VASNPRINTF): Return a string of length > INT_MAX without failing.
33404         * lib/vasprintf.c: Include errno.h, limits.h.
33405         (EOVERFLOW): New fallback definition.
33406         (vasprintf): Test here whether the string length is > INT_MAX.
33407         * lib/vsnprintf.c: Include errno.h, limits.h.
33408         (EOVERFLOW): New fallback definition.
33409         (vsnprintf): Fix bug when generated string was too long for the buffer.
33410         Test here whether the string length is > INT_MAX.
33411
33412 2006-08-28  Bruno Haible  <bruno@clisp.org>
33413
33414         * lib/inttypes_.h (SCNX*): Remove definitions.
33415         Reported by Eric Blake.
33416
33417 2006-08-28  Bruno Haible  <bruno@clisp.org>
33418
33419         * lib/c-strstr.h: New file, from GNU gettext.
33420         * lib/c-strstr.c: New file, from GNU gettext.
33421
33422 2006-08-28  Bruno Haible  <bruno@clisp.org>
33423
33424         * gnulib-tool: Reorder some statements.
33425
33426 2006-08-28  Bruno Haible  <bruno@clisp.org>
33427
33428         * gnulib-tool: New option --makefile-name.
33429         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
33430         $makefile_name.
33431         (func_import): Write $makefile_name to the cache file, and read it from
33432         there unless explicitly specified. Use $makefile_name as file name
33433         instead of Makefile.am. Adjust the recommendations accordingly.
33434
33435 2006-08-28  Bruno Haible  <bruno@clisp.org>
33436
33437         * gnulib-tool (func_verify_module): Check against misapplying patch.
33438
33439 2006-08-28  Bruno Haible  <bruno@clisp.org>
33440
33441         * gnulib-tool (func_relativize, func_relconcat): New functions.
33442         Give an error if --local-dir is given with --update.
33443         Remove trailing slashes from $local_gnulib_dir.
33444         (func_import): Store the relativized $local_gnulib_dir in
33445         gnulib-cache.m4, and read it from there if not specified explicitly.
33446
33447 2006-08-28  Bruno Haible  <bruno@clisp.org>
33448
33449         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
33450         is the current directory. Respect also $local_gnulib_dir.
33451
33452 2006-08-28  Bruno Haible  <bruno@clisp.org>
33453             Simon Josefsson  <jas@extundo.com>
33454
33455         BeOS portability.
33456         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
33457
33458 2006-08-27  Jim Meyering  <jim@meyering.net>
33459
33460         * doc/visibility.texi: Remove duplicate word: "pointer".
33461
33462 2006-08-26  Bruno Haible  <bruno@clisp.org>
33463
33464         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
33465         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
33466         (Makefile.am): Create inttypes.h from inttypes_.h.
33467         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
33468
33469         * modules/imaxabs: New file.
33470
33471         * modules/imaxdiv: New file.
33472
33473 2006-08-26  Bruno Haible  <bruno@clisp.org>
33474
33475         * m4/inttypes.m4: New file.
33476         * m4/_inttypes_h.m4: Remove file.
33477         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
33478         PRI_MACROS_BROKEN.
33479         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
33480
33481         * m4/imaxabs.m4: New file.
33482
33483         * m4/imaxdiv.m4: New file.
33484
33485 2006-08-26  Bruno Haible  <bruno@clisp.org>
33486
33487         * lib/inttypes_.h: New file.
33488         * lib/inttypes.h: Remove file.
33489         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
33490
33491         * lib/imaxabs.c: New file.
33492
33493         * lib/imaxdiv.c: New file.
33494
33495 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
33496
33497         New config-h module, so that "make" output needn't be cluttered
33498         by -DHAVE_CONFIG_H.
33499         * MODULES.html.sh (Support for building libraries and executables):
33500         Add config-h.
33501         * modules/config-h: New file.
33502         * gnulib-tool (nl, sed_transform_lib_file): New vars.
33503         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
33504         the config-h module is used.
33505
33506         New configmake module, so that "make" output needn't be cluttered
33507         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
33508         * MODULES.html.sh (Support for building libraries and executables):
33509         Add configmake.
33510         * modules/configmake: New file.
33511
33512 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
33513
33514         * m4/config-h.m4: New file.
33515
33516 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
33517
33518         * config/srclist.txt: Add elisp-comp.
33519
33520 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
33521
33522         * MODULES.html.sh (Support for building libraries and executables):
33523         Add elisp-comp.
33524         * build-aux/elisp-comp: New file.
33525         * modules/elisp-comp: New file.
33526
33527 2006-08-24  Bruno Haible  <bruno@clisp.org>
33528
33529         * gnulib-tool (func_create_testdir): Use non-default values of
33530         sourcebase and m4base.
33531
33532 2006-08-24  Bruno Haible  <bruno@clisp.org>
33533
33534         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
33535         HTML structure.
33536
33537 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
33538
33539         * modules/openat (Depends-on): Add lchown.
33540
33541 2006-08-23  Bruno Haible  <bruno@clisp.org>
33542
33543         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
33544         of gl_LOCK_EARLY instead of gl_LOCK.
33545
33546 2006-08-23  Bruno Haible  <bruno@clisp.org>
33547
33548         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
33549         on OSF/1 to no.
33550         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
33551
33552 2006-08-23  Bruno Haible  <bruno@clisp.org>
33553
33554         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
33555         as unusable.
33556
33557         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
33558         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
33559         (gl_LOCK): New macro.
33560
33561 2006-08-22  Simon Josefsson  <jas@extundo.com>
33562
33563         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
33564         to md5 module.
33565
33566 2006-08-22  Simon Josefsson  <jas@extundo.com>
33567
33568         * MODULES.html.sh: Add "Support for maintaining and release
33569         projects".
33570
33571         * build-aux/gnupload: New file, from coreutils.
33572
33573 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
33574
33575         Avoid the need for AC_LIBSOURCES in m4 macros.
33576         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
33577         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
33578         * modules/check-version (EXTRA_DIST): Add check-version.h.
33579         * modules/crc (EXTRA_DIST): Add crc.h.
33580         * modules/des (EXTRA_DIST): Add des.h.
33581         * modules/gc (EXTRA_DIST): Add gc.h.
33582         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
33583         * modules/getline (EXTRA_DIST): Add getline.h.
33584         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
33585         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
33586         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
33587         * modules/md2 (EXTRA_DIST): Add md2.h.
33588         * modules/md4 (EXTRA_DIST): Add md4.h.
33589         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
33590         * modules/read-file (EXTRA_DIST): Add read-file.h.
33591         * modules/readline (EXTRA_DIST): Add readline.h.
33592         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
33593         rijndael-api-fst.h.
33594
33595 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
33596
33597         * m4/rijndael.m4 (gl_ARCFOUR):
33598         * m4/arctwo.m4 (gl_ARCTWO):
33599         * m4/check-version.m4 (gl_CHECK_VERSION):
33600         * m4/crc.m4 (gl_CRC):
33601         * m4/des.m4 (gl_DES):
33602         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
33603         * m4/gc.m4 (gl_GC):
33604         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
33605         * m4/getline.m4 (gl_FUNC_GETLINE):
33606         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
33607         * m4/hmac-md5.m4 (gl_HMAC_MD5):
33608         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
33609         * m4/md2.m4 (gl_MD2):
33610         * m4/md4.m4 (gl_MD4):
33611         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
33612         * m4/read-file.m4 (gl_FUNC_READ_FILE):
33613         * m4/readline.m4 (gl_FUNC_READLINE):
33614         * m4/rijndael.m4 (gl_RIJNDAEL):
33615         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
33616         to get the necessary .h files and whatnot.
33617
33618 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
33619
33620         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
33621         gnulib rather than the other way around.
33622         * config/srclistvars.sh (COREUTILS): Remove.
33623
33624 2006-08-22  Jim Meyering  <jim@meyering.net>
33625
33626         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
33627
33628         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
33629
33630 2006-08-22  Eric Blake  <ebb9@byu.net>
33631
33632         * modules/regexprops-generic: New file.
33633         * MODULES.html.sh (Support for building documentation): List it.
33634
33635 2006-08-22  Eric Blake  <ebb9@byu.net>
33636
33637         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
33638         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
33639         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
33640         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
33641
33642 2006-08-22  Bruno Haible  <bruno@clisp.org>
33643
33644         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
33645         and lib_LTLIBRARIES like the other lib_* variables.
33646
33647 2006-08-22  Bruno Haible  <bruno@clisp.org>
33648
33649         * build-aux/x-to-1.in: New file, from GNU gettext.
33650
33651 2006-08-22  Bruno Haible  <bruno@clisp.org>
33652
33653         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
33654         <utmpx.h> exists.
33655
33656 2006-08-22  Bruno Haible  <bruno@clisp.org>
33657
33658         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
33659         <utmpx.h> exists.
33660
33661 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
33662
33663         BeOS portability.
33664         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
33665         exist.
33666         Problem reported by Bruno Haible.
33667
33668 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
33669
33670         Avoid the need for AC_LIBSOURCES in m4 macros.
33671         * modules/acl (EXTRA_DIST): Add acl.h.
33672         * modules/argmatch (Files): Add m4/argmatch.m4.
33673         (configure.ac): Add gl_ARGMATCH.
33674         (EXTRA_DIST): Renamed from lib_SOURCES, for
33675         consistency with the other modules.  Remove argmatch.c.
33676         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
33677         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
33678         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
33679         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
33680         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
33681         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
33682         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
33683         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
33684         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
33685         * modules/closeout (EXTRA_DIST): Add closeout.h.
33686         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
33687         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
33688         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
33689         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
33690         dirname.h; remove basename.c and stripslash.c.
33691         * modules/exclude (EXTRA_DIST): Add exclude.h.
33692         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
33693         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
33694         * modules/file-type (EXTRA_DIST): Add file-type.h.
33695         * modules/filemode (EXTRA_DIST): Add filemode.h.
33696         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
33697         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
33698         * modules/fpending (EXTRA_DIST): Add __fpending.h.
33699         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
33700         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
33701         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
33702         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
33703         * modules/getdate (EXTRA_DIST): Add getdate.c.
33704         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
33705         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
33706         * modules/getpass (EXTRA_DIST): Add getpass.h.
33707         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
33708         * modules/group-member (EXTRA_DIST): Add group-member.h.
33709         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
33710         * modules/hash (EXTRA_DIST): Add hash.h.
33711         * modules/human (EXTRA_DIST): Add human.h.
33712         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
33713         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
33714         * modules/lchown (EXTRA_DIST): Add lchown.h.
33715         * modules/long-options (EXTRA_DIST): Add long-options.h.
33716         * modules/lstat (EXTRA_DIST): Add lstat.h.
33717         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
33718         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
33719         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
33720         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
33721         * modules/memxor (EXTRA_DIST): Add memxor.h.
33722         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
33723         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
33724         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
33725         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
33726         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
33727         * modules/physmem (EXTRA_DIST): Add physmem.h.
33728         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
33729         * modules/posixver (EXTRA_DIST): Add posixver.h.
33730         * modules/quote (EXTRA_DIST): Add quote.h.
33731         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
33732         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
33733         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
33734         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
33735         regex_internal.h regexec.c.
33736         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
33737         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
33738         * modules/same (EXTRA_DIST): Add same.h.
33739         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
33740         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
33741         * modules/savedir (EXTRA_DIST): Add savedir.h.
33742         * modules/sha1 (EXTRA_DIST): Add sha1.h.
33743         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
33744         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
33745         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
33746         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
33747         * modules/strdup (EXTRA_DIST): Add strdup.h.
33748         * modules/strftime (EXTRA_DIST): Add strftime.h.
33749         * modules/strndup (EXTRA_DIST): Add strndup.h.
33750         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
33751         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
33752         * modules/time_r (EXTRA_DIST): Add time_r.h.
33753         * modules/timespec (EXTRA_DIST): Add timespec.h.
33754         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
33755         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
33756         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
33757         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
33758         * modules/userspec (EXTRA_DIST): Add userspec.h.
33759         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
33760         * modules/utimens (EXTRA_DIST): Add utimens.h.
33761         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
33762         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
33763         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
33764         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
33765         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
33766         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
33767         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
33768         * modules/yesno (EXTRA_DIST): Add yesno.h.
33769
33770 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
33771
33772         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
33773
33774         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
33775         * m4/dev-ino.m4, same-inode.m4: Remove.
33776
33777         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
33778         * m4/acl.m4 (AC_FUNC_ACL):
33779         * m4/backupfile.m4 (gl_BACKUPFILE):
33780         * m4/c-strtod.m4 (gl_C99_STRTOLD):
33781         * m4/canon-host.m4 (gl_CANON_HOST):
33782         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
33783         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
33784         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
33785         * m4/cloexec.m4 (gl_CLOEXEC):
33786         * m4/close-stream.m4 (gl_CLOSE_STREAM):
33787         * m4/closeout.m4 (gl_CLOSEOUT):
33788         * m4/dirfd.m4 (gl_FUNC_DIRFD):
33789         * m4/dirname.m4 (gl_DIRNAME):
33790         * m4/exclude.m4 (gl_EXCLUDE):
33791         * m4/exitfail.m4 (gl_EXITFAIL):
33792         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
33793         * m4/file-type.m4 (gl_FILE_TYPE):
33794         * m4/filemode.m4 (gl_FILEMODE):
33795         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
33796         * m4/fpending.m4 (gl_FUNC_FPENDING):
33797         * m4/fprintftime.m4 (gl_FPRINTFTIME):
33798         * m4/fts.m4 (gl_FUNC_FTS):
33799         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
33800         * m4/getdate.m4 (gl_GETDATE):
33801         * m4/gethrxtime.m4 (gl_GETHRXTIME):
33802         * m4/getpagesize.m4 (gl_GETPAGESIZE):
33803         * m4/getpass.m4 (gl_FUNC_GETPASS):
33804         * m4/gettime.m4 (gl_GETTIME):
33805         * m4/getugroups.m4 (gl_GETUGROUPS):
33806         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
33807         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
33808         * m4/hard-locale.m4 (gl_HARD_LOCALE):
33809         * m4/hash.m4 (gl_HASH):
33810         * m4/idcache.m4 (gl_IDCACHE):
33811         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
33812         * m4/lchown.m4 (gl_FUNC_LCHOWN):
33813         * m4/long-options.m4 (gl_LONG_OPTIONS):
33814         * m4/lstat.m4 (gl_FUNC_LSTAT):
33815         * m4/md5.m4 (gl_MD5):
33816         * m4/memcasecmp.m4 (gl_MEMCASECMP):
33817         * m4/memcoll.m4 (gl_MEMCOLL):
33818         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
33819         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
33820         * m4/memxor.m4 (gl_MEMXOR):
33821         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
33822         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
33823         * m4/modechange.m4 (gl_MODECHANGE):
33824         * m4/mountlist.m4 (gl_MOUNTLIST):
33825         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33826         * m4/openat.m4 (gl_FUNC_OPENAT):
33827         * m4/pathmax.m4 (gl_PATHMAX):
33828         * m4/physmem.m4 (gl_PHYSMEM):
33829         * m4/posixtm.m4 (gl_POSIXTM):
33830         * m4/posixver.m4 (gl_POSIXVER):
33831         * m4/quote.m4 (gl_QUOTE):
33832         * m4/quotearg.m4 (gl_QUOTEARG):
33833         * m4/readtokens.m4 (gl_READTOKENS):
33834         * m4/readutmp.m4 (gl_READUTMP):
33835         * m4/regex.m4 (gl_REGEX):
33836         * m4/safe-read.m4 (gl_SAFE_READ):
33837         * m4/safe-write.m4 (gl_SAFE_WRITE):
33838         * m4/same.m4 (gl_SAME):
33839         * m4/save-cwd.m4 (gl_SAVE_CWD):
33840         * m4/savedir.m4 (gl_SAVEDIR):
33841         * m4/settime.m4 (gl_SETTIME):
33842         * m4/sha1.m4 (gl_SHA1):
33843         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
33844         * m4/stat-macros.m4 (gl_STAT_MACROS):
33845         * m4/stat-time.m4 (gl_STAT_TIME):
33846         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
33847         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
33848         * m4/strdup.m4 (gl_FUNC_STRDUP):
33849         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
33850         * m4/strndup.m4 (gl_FUNC_STRNDUP):
33851         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
33852         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
33853         * m4/time_r.m4 (gl_TIME_R):
33854         * m4/timespec.m4 (gl_TIMESPEC):
33855         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
33856         * m4/unlinkdir.m4 (gl_UNLINKDIR):
33857         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
33858         * m4/userspec.m4 (gl_USERSPEC):
33859         * m4/utimecmp.m4 (gl_UTIMECMP):
33860         * m4/utimens.m4 (gl_UTIMENS):
33861         * m4/xalloc.m4 (gl_XALLOC):
33862         * m4/xgetcwd.m4 (gl_XGETCWD):
33863         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
33864         * m4/xreadlink.m4 (gl_XREADLINK):
33865         * m4/xstrtod.m4 (gl_XSTRTOD):
33866         * m4/yesno.m4 (gl_YESNO):
33867         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
33868         to get the necessary .h files and whatnot.
33869
33870 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
33871             Bruno Haible  <bruno@clisp.org>
33872
33873         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
33874         /bin/sh understanding of '!' conditional negation.
33875
33876 2006-08-21  Jim Meyering  <jim@meyering.net>
33877
33878         * modules/openat (Depends-on): Really alphabetize.
33879
33880         * modules/acl (Depends-on): Add error and quote.
33881
33882         * check-module (find_included_lib_files): Add at-func.c to the
33883         ok-to-include-more-than-once white list.
33884
33885         * modules/openat (Depends-on): Add lstat.  Alphabetize.
33886
33887 2006-08-21  Bruno Haible  <bruno@clisp.org>
33888
33889         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33890         Emit a pkgdata_DATA variable only if some snippets add contents to it.
33891         Reported by Martin Lambers <marlam@marlam.de>.
33892
33893 2006-08-21  Bruno Haible  <bruno@clisp.org>
33894
33895         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
33896         specify an installation location, don't emit a noinst_LIBRARIES or
33897         noinst_LTLIBRARIES assignment.
33898
33899 2006-08-21  Bruno Haible  <bruno@clisp.org>
33900
33901         BeOS portability.
33902         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
33903         BeOS has mbrtowc() but no <wctype.h>.
33904
33905 2006-08-21  Bruno Haible  <bruno@clisp.org>
33906
33907         BeOS portability.
33908         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
33909         exist.
33910
33911 2006-08-21  Bruno Haible  <bruno@clisp.org>
33912
33913         BeOS portability.
33914         * lib/mbchar.h: Include <wctype.h> only if it exists.
33915
33916 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
33917
33918         Remove files that are no longer needed by their respective modules.
33919         * m4/obstack.m4: Remove.
33920         * m4/strerror_r.m4: Remove.
33921         * m4/uint32_t.m4: Remove.
33922         * m4/uintptr_t.m4: Remove.
33923         * m4/ullong_max.m4: Remove.
33924         * m4/xstrtoimax.m4: Remove.
33925         * m4/xstrtoumax.m4: Remove.
33926
33927         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
33928         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
33929         dependencies now capture this.
33930
33931         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
33932         Do not use AC_LIBSOURCES, since gnulib modules now do this.
33933         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
33934         * m4/human.m4 (gl_HUMAN): Likewise.
33935         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
33936         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
33937
33938         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
33939
33940         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
33941         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
33942         stdint.
33943         * m4/human.m4 (gl_HUMAN): Likewise.
33944         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
33945         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
33946         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
33947         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
33948         * m4/xstrtol (gl_XSTRTOL): Likewise.
33949
33950         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
33951         AC_TYPE_LONG_LONG_INT.
33952         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
33953         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
33954         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
33955         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
33956
33957         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
33958         on stdbool.
33959
33960         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
33961         (gl_PREREQ_XSTRTOUL): Remove.
33962
33963         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
33964
33965         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
33966         mode.
33967
33968 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
33969
33970         Add and change modules to make it easier for coreutils to use
33971         gnulib-tool.
33972         * modules/backupfile (Files): Remove m4/d-ino.m4.
33973         (Depends-on): Add d-ino.
33974         * modules/cycle-check (Depends-on): Add stdint.
33975         (lib_SOURCES): Add cycle-check.h.
33976         * modules/d-ino: New module.
33977         * modules/d-type: New module.
33978         * modules/error (Files): Remove m4/strerror_r.m4.
33979         * modules/filemode (Files): Add m4/st_dm_mode.m4.
33980         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
33981         m4/inttypes_h.m4, m4/uintmax_t.m4.
33982         (Depends-on): Add stdint.
33983         (lib_SOURCES): Add fsusage.h.
33984         * modules/getcwd (Files): Remove d-ino.m4.
33985         (Depends-on): Add d-ino.
33986         * modules/getndelim2 (Depends-on): Add stdint.
33987         * modules/glob (Files): Remove m4/d-type.m4.
33988         (Depends-on): Add d-type.
33989         * modules/host-os: New module.
33990         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
33991         m4/inttypes_h.m4, m4/uintmax_t.m4.
33992         * Depends-on: Add stdint.
33993         (lib_SOURCES): Add human.h.
33994         * modules/inttostr (Files): Remove m4/intmax_t.m4,
33995         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
33996         m4/uintmax_t.m4, m4/ulonglong.m4.
33997         (Depends-on): Add stdint.
33998         (EXTRA_DIST): Add inttostr.h.
33999         * modules/lchmod: New module.
34000         * modules/link-follow: New module.
34001         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
34002         (Depends-on): Add lchmod.
34003         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
34004         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
34005         (Depends-on): Add stdint.
34006         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
34007         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
34008         (Depends-on): Add stdint.
34009         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
34010         * modules/perl: New module.
34011         * modules/regex (Depends-on): Add stdint.
34012         * modules/rmdir-errno: New module.
34013         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
34014         m4/intmax_t.m4.
34015         (Depends-on): Add stdint.
34016         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
34017         m4/uintmax_t.m4.
34018         (Depends-on): Add stdint.
34019         * modules/unlink-busy: New module.
34020         * modules/utimecmp (Depends-on): Add stdint.
34021         * modules/uptime: New module.
34022         * modules/winsz-ioctl: New module.
34023         * modules/winsz-termios: New module.
34024         * modules/xnanosleep (Depends-on): Add nanosleep.
34025         * modules/ullong_max: Remove.
34026         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
34027         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
34028         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
34029         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
34030         (Depends-on): Add inttypes.
34031         (lib_SOURCES): Add xstrtol.h.
34032         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
34033         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
34034         * MODULES.html.sh: Move 'assert' into the assert section.
34035         Move 'dummy' into the linking section.
34036         Remove ullong_max.
34037         Add section for compatibility checks for POSIX:2001 functions,
34038         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
34039         winsz-ioctl, and winsz-termios into it.
34040         Add lchmod.
34041         Add top-level Misc section and put host-os, perl, and uptime
34042         into it.
34043
34044 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
34045
34046         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
34047         now assume the stdint module.  Do not include inttypes.h.
34048         * lib/fsusage.h: Likewise.
34049         * lib/getndelim2.c: Likewise.
34050         * lib/human.h: Likewise.
34051         * lib/inttostr.h: Likewise.
34052         * lib/obstack.c: Likewise.
34053         * lib/regex_internal.h: Likewise.
34054         * lib/tempname.c: Likewise.
34055         * lib/utimecmp.c: Likewise.
34056         * lib/xstrtol.h: Likewise.
34057
34058         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
34059
34060         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
34061         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
34062         * lib/xtime.h: Likewise.
34063
34064 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
34065
34066         * modules/openat (Files): Add lib/fchmodat.c.
34067         Fixes problem reported by Jay Youngman.
34068
34069 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
34070
34071         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
34072         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
34073
34074 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
34075             Bruno Haible  <bruno@clisp.org>
34076
34077         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
34078         and is a script that invokes bison. Tighten the code. Add comments.
34079
34080 2006-08-18  Jim Meyering  <jim@meyering.net>
34081
34082         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
34083         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
34084         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
34085         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
34086
34087 2006-08-18  Bruno Haible  <bruno@clisp.org>
34088
34089         * modules/bison-i18n: New file.
34090         * MODULES.html.sh (Internationalization functions): Add it.
34091
34092 2006-08-18  Bruno Haible  <bruno@clisp.org>
34093
34094         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
34095         sys/statvfs.h. When getmntinfo was found, check its declaration and
34096         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
34097
34098 2006-08-18  Bruno Haible  <bruno@clisp.org>
34099
34100         * m4/bison-i18n.m4: New file, from bison.
34101
34102 2006-08-18  Bruno Haible  <bruno@clisp.org>
34103
34104         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
34105         (ME_DUMMY): Treat "kernfs" as a dummy.
34106         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
34107
34108 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
34109
34110         Update from coreutils.
34111
34112         2006-08-15  Jim Meyering  <jim@meyering.net>
34113
34114         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
34115
34116         2006-01-17  Jim Meyering  <jim@meyering.net>
34117
34118         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
34119
34120         2006-01-11  Jim Meyering  <jim@meyering.net>
34121
34122         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
34123         Check for the lchmod function.
34124
34125 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
34126
34127         Update from coreutils.
34128
34129         * lib/__fpending.h: Add copyright notice.
34130         * lib/fprintftime.h: Likewise.
34131         * lib/savedir.c: Use (C) in copyright notice.
34132         * lib/savedir.h: Likewise.
34133
34134         2006-08-15  Jim Meyering  <jim@meyering.net>
34135
34136         * lib/at-func.c: New file, with the logic of all emulated at-functions.
34137         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
34138         in support of the EXPECTED_ERRNO macro.
34139         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
34140         definitions.  Instead, define the appropriate symbols and include
34141         "at-func.c".
34142         * lib/mkdirat.c (mkdirat): Likewise.
34143         * lib/fchmodat.c (fchmodat): Likewise.
34144         (ENOSYS): Remove definition.
34145         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
34146         it.  Don't include "unistd--.h" -- it wasn't ever used.
34147
34148         2006-01-17  Jim Meyering  <jim@meyering.net>
34149
34150         Rewrite fts.c not to change the current working directory,
34151         by using openat, fstatat, fdopendir, etc..
34152
34153         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
34154         (HAVE_OPENAT_SUPPORT): Define.
34155         [_LIBC] (fchdir): Don't undef or define; no longer used.
34156         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
34157         Now, this `function' always succeeds, and consumes its file descriptor
34158         parameter -- so callers must not close such FDs.  Update callers.
34159         (diropen_fd, opendirat, cwd_advance_fd): New functions.
34160         (diropen): Add parameter, SP.  Adjust all callers.
34161         Implement using diropen_fd, rather than open.
34162         (fts_open): Initialize new member, fts_cwd_fd.
34163         Remove fts_rft-setting code.
34164         (fts_close): Close fts_cwd_fd, if necessary.
34165         (__opendir2): Define in terms of opendir or opendirat,
34166         depending on whether the FST_NOCHDIR flag is set.
34167         (fts_build): Since fts_safe_changedir consumes its FD, and since
34168         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
34169         and close the dup'd file descriptor upon failure.
34170         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
34171         (fts_safe_changedir): Tweak semantics to reflect that this function
34172         now calls cwd_advance_fd and hence consumes its FD argument.
34173         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
34174         [struct FTS] (fts_rft): Remove now-unused member.
34175         [struct FTS] (fts_cycle.state): Improve comment.
34176
34177         * lib/openat.c (openat_needs_fchdir): New function.
34178         * lib/openat.h (openat_needs_fchdir): Declare it.
34179
34180 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
34181
34182         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
34183         Problem and fix reported by Pádraig Brady in
34184         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
34185
34186 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
34187
34188         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
34189
34190 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
34191
34192         * lib/memcoll.c (memcoll): Optimize for the common case where the
34193         arguments are bytewise equal.
34194
34195 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
34196
34197         * doc/regexprops-generic.texi: Add a copyright notice.
34198
34199 2006-08-15  Bruno Haible  <bruno@clisp.org>
34200
34201         * modules/tmpdir (License): Change to LGPL.
34202
34203 2006-08-15  Bruno Haible  <bruno@clisp.org>
34204
34205         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
34206         module.
34207
34208 2006-08-14  Simon Josefsson  <jas@extundo.com>
34209
34210         * config/srclist.txt: Add gnupload.
34211
34212 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
34213
34214         Change copyright notice from LGPL 2 to GPL 2, since that's the
34215         standard form used in the gnulib repository.
34216         * tests/test-lock.c: Likewise.
34217         * tests/test-stdint.c: Likewise.
34218         * tests/test-tls.c: Likewise.
34219
34220         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
34221         prelude-manager.  User shorter URLs for GNU projects, without '?'.
34222         Add copyright notice.
34223
34224         * check-module: Add copyright notice.  Output a copyright
34225         notice if "--version" is specified.
34226         * modules/COPYING: New file.
34227         * tests/test-getaddrinfo.c: Add copyright notice.
34228         * tests/test-verify.c: Likewise.
34229
34230 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
34231
34232         Change copyright notice from LGPL 2 to GPL 2, since that's the
34233         standard form used in the gnulib repository.
34234         * lib/lock.c: LGPL -> GPL.
34235         * lib/lock.h: Likewise.
34236         * lib/strnlen1.c: Likewise.
34237         * lib/strnlen1.h: Likewise.
34238         * lib/tls.c: Likewise.
34239         * lib/tls.h: Likewise.
34240         * lib/tmpdir.c: Likewise.
34241
34242         * lib/TODO: Remove; this belongs only in coreutils.
34243
34244 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
34245
34246         Add copyright notices to long-enough files that lack them, since
34247         otherwise the files aren't clearly free.  Use the same notice that
34248         getdate.texi already uses.
34249         * doc/alloca-opt.texi: Add copyright notice.
34250         * doc/alloca.texi: Likewise.
34251         * doc/ctime.texi: Likewise.
34252         * doc/functions.texi: Likewise.
34253         * doc/gcd.texi: Likewise.
34254         * doc/gnulib-tool.texi: Likewise.
34255         * doc/inet_ntoa.texi: Likewise.
34256         * doc/visibility.texi: Likewise.
34257
34258         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
34259         * doc/quote.texi: Add copyright notice.
34260
34261         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
34262         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
34263         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
34264         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
34265         is now obsolete, and give a pointer to the Sun list.
34266         Add copyright notice.
34267
34268 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
34269
34270         * config/srclistvars.sh: Add copyright notice.
34271
34272 2006-08-14  Eric Blake  <ebb9@byu.net>
34273
34274         Import the following change from libc:
34275
34276         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
34277
34278         Upstream bug 2997.
34279         * lib/misc/error.c: Add space between program name and message if file
34280         name is missing.
34281
34282 2006-08-12  Karl Berry  <karl@gnu.org>
34283
34284         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
34285         remove, these originate in gnulib now.
34286
34287 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34288
34289         * doc/Makefile (standards.info standards.html standards.dvi):
34290         Also depend on make-stds.texi.
34291
34292 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
34293
34294         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
34295         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
34296
34297         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
34298         in wchar_t.  Problem reported by Eric Blake.
34299
34300         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
34301         LEN is smaller than SIZE.  Suggested by Bruno Haible.
34302         Also, help the compiler to keep LEN in a register.
34303
34304 2006-08-11  Eric Blake  <ebb9@byu.net>
34305
34306         * users.txt: Sort.  Add tar.
34307
34308 2006-08-11  Bruno Haible  <bruno@clisp.org>
34309
34310         * users.txt: New file.
34311
34312 2006-08-11  Bruno Haible  <bruno@clisp.org>
34313
34314         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
34315         before <wchar.h>. Needed for OSF/1 and BSD/OS.
34316
34317 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
34318
34319         * modules/snprintf (Depends-on): Remove minmax.
34320         (Maintainer): Add self and Bruno.
34321
34322 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
34323
34324         * lib/.cppi-disable: Add snprintf.h, socket_.h.
34325         * lib/snprintf.c: Include <errno.h> and <limits.h>.
34326         (EOVERFLOW): Define if the system does not.
34327         Do not include "minmax.h"; it wasn't used.
34328         (snprintf): Don't assume size_t promotes to an unsigned type.
34329         Fix bug when generated string was too long for the buffer: the
34330         buffer's contents are supposed to be the initial prefix of the
34331         output.  Don't assume vasnprintf returns EOVERFLOW if the size
34332         exceeds INT_MAX; do the check ourselves.
34333
34334         Import the following changes from libc:
34335
34336         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
34337
34338         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
34339         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
34340         set wc to the byte which couldn't be converted.
34341         (re_string_reconstruct): Don't clear valid_raw_len before calling
34342         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
34343         tip_context using re_string_context_at.
34344
34345         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
34346
34347         * lib/posix/regex.h: g++ still cannot handled [restrict].
34348
34349         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
34350
34351         * lib/posix/regex.h: Remove special handling for VMS.
34352
34353 2006-08-10  Jim Meyering  <jim@meyering.net>
34354
34355         * modules/same-inode: New module.
34356         * modules/dev-ino: New module.
34357         * modules/cycle-check: Depend on these modules, rather than simply
34358         including their .h files.
34359         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
34360         required via m4/cycle-check.m4.
34361         * modules/same: Depend on new same-inode module, rather than
34362         including same-inode.h.
34363         * modules/chdir-safer: New file.
34364
34365         * modules/chown (Depends-on): Add stat-macros.
34366
34367 2006-08-10  Jim Meyering  <jim@meyering.net>
34368
34369         * m4/cycle-check.m4: New file.
34370         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
34371         * m4/dev-ino.m4, m4/same-inode.m4: New files.
34372
34373 2006-08-10  Eric Blake  <ebb9@byu.net>
34374
34375         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
34376         in from original proposal.
34377
34378 2006-08-10  Eric Blake  <ebb9@byu.net>
34379         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
34380
34381         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
34382         namespace.
34383
34384 2006-08-10  Bruno Haible  <bruno@clisp.org>
34385
34386         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
34387         as well.
34388
34389 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
34390
34391         Sync from coreutils.
34392
34393         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
34394
34395         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
34396         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
34397
34398 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
34399
34400         * modules/restrict: Remove; no longer needed now that we assume
34401         Autoconf 2.59 or later.
34402         * MODULES.html.sh: Remove 'restrict'.
34403         * modules/argp (Depends-on): Remove 'restrict'.
34404         * modules/base64 (Depends-on): Likewise.
34405         * modules/gc (Depends-on): Likewise.
34406         * modules/getaddrinfo (Depends-on): Likewise.
34407         * modules/glob (Depends-on): Likewise.
34408         * modules/inet_ntop (Depends-on): Likewise.
34409         * modules/inet_pton (Depends-on): Likewise.
34410         * modules/memxor (Depends-on): Likewise.
34411         * modules/regex (Depends-on): Likewise.
34412         * modules/strtok_r (Depends-on): Likewise.
34413         * modules/time_r (Depends-on): Likewise.
34414
34415 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
34416
34417         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
34418         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
34419         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
34420         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
34421         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
34422         * m4/memxor.m4 (gl_MEMXOR): Likewise.
34423         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
34424         gl_C_RESTRICT replaced by AC_C_RESTRICT.
34425
34426         Merge from coreutils.
34427         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
34428         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
34429         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
34430         * m4/time_r.m4 (gl_TIME_R): Likewise.
34431
34432 2006-08-09  Karl Berry  <karl@gnu.org>
34433
34434         * config/srclist.txt: no more gettext-tools, per Bruno.
34435
34436 2006-08-08  Eric Blake  <ebb9@byu.net>
34437
34438         * modules/verror: New module.
34439         * MODULES.html.sh: Document it.
34440
34441 2006-08-08  Eric Blake  <ebb9@byu.net>
34442
34443         * lib/verror.h, lib/verror.c: New files.
34444
34445 2006-08-08  Eric Blake  <ebb9@byu.net>
34446
34447         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
34448         verror_at_line output complies with GNU Coding Standards even when
34449         file is NULL.
34450
34451 2006-08-07  Bruno Haible  <bruno@clisp.org>
34452
34453         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
34454         versions of AIX.
34455         Reported by Ralf Wildenhues.
34456
34457 2006-08-07  Bruno Haible  <bruno@clisp.org>
34458
34459         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
34460         in an AC_DEFUN. Needed so that the autoconf snippets can use
34461         AC_REQUIRE.
34462
34463 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34464
34465         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34466         Initialize pkgdata_DATA.
34467         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
34468         overriding it.
34469
34470 2006-08-06  Eric Blake  <ebb9@byu.net>
34471
34472         * lib/error.h: Fold in some upstream changes from glibc.
34473         * lib/error.c: Likewise.
34474
34475 2006-08-04  Bruno Haible  <bruno@clisp.org>
34476
34477         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34478         Make the mostlyclean-local rule depend on mostlyclean-generic.
34479         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
34480
34481 2006-07-31  Bruno Haible  <bruno@clisp.org>
34482
34483         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
34484         <stdlib.h>, <string.h>.
34485
34486 2006-07-30  Bruno Haible  <bruno@clisp.org>
34487
34488         * modules/readlink (License): Change to LGPL.
34489
34490 2006-07-30  Bruno Haible  <bruno@clisp.org>
34491
34492         * modules/javaversion (Makefile.am): Distribute javaversion.java and
34493         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
34494         set PKGDATADIR to point to it.
34495
34496 2006-07-30  Bruno Haible  <bruno@clisp.org>
34497
34498         * modules/csharpexec (configure.ac): Comment out macro invocation.
34499         * modules/javaexec (configure.ac): Likewise.
34500         * modules/javacomp-script (configure.ac): Likewise.
34501
34502         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
34503
34504 2006-07-30  Bruno Haible  <bruno@clisp.org>
34505
34506         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
34507         linked-list.
34508
34509 2006-07-30  Bruno Haible  <bruno@clisp.org>
34510
34511         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
34512
34513 2006-07-30  Bruno Haible  <bruno@clisp.org>
34514
34515         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34516         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
34517         get removed.
34518
34519 2006-07-29  Bruno Haible  <bruno@clisp.org>
34520
34521         Make it possible for gnulib-tool to work with locally modified or
34522         augmented gnulib repositories.
34523         * gnulib-tool (func_usage): Document --local-dir option.
34524         (local_gnulib_dir): New variable.
34525         Handle --local-dir option.
34526         (func_lookup_file): New function.
34527         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
34528         (func_get_description, func_get_filelist, func_get_description,
34529         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
34530         func_get_automake_snippet, func_get_include_directive,
34531         func_get_license, func_get_maintainer): Use func_lookup_file.
34532         (func_import, func_create_testdir): Use func_lookup_file.
34533
34534 2006-07-29  Bruno Haible  <bruno@clisp.org>
34535
34536         * modules/setenv (Depends-on): Add unistd.
34537
34538 2006-07-29  Bruno Haible  <bruno@clisp.org>
34539
34540         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
34541
34542 2006-07-29  Bruno Haible  <bruno@clisp.org>
34543
34544         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
34545
34546 2006-07-29  Bruno Haible  <bruno@clisp.org>
34547
34548         * gnulib-tool (import, update): If there is no Makefile.am, look at
34549         aclocal.m4, instead of bailing out.
34550
34551 2006-07-29  Bruno Haible  <bruno@clisp.org>
34552
34553         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
34554         Categorize the options by when they are useful.
34555
34556 2006-07-29  Bruno Haible  <bruno@clisp.org>
34557
34558         * gnulib-tool (func_usage): Document option --no-libtool.
34559         Handle option --no-libtool.
34560         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
34561         for changed semantics of $libtool variable.
34562         (func_import): Likewise. If libtool is not used, show this through
34563         an option --no-libtool.
34564         (func_create_testdir): Update.
34565
34566 2006-07-29  Bruno Haible  <bruno@clisp.org>
34567
34568         * gnulib-tool (func_import): Extend error message about missing
34569         --doc-base.
34570
34571 2006-07-29  Bruno Haible  <bruno@clisp.org>
34572
34573         * gnulib-tool (func_import): Don't create the $docbase directory if
34574         there is no file to store there.
34575
34576 2006-07-29  Bruno Haible  <bruno@clisp.org>
34577
34578         * gnulib-tool (autoconf_minversion): If a --dir option is given and
34579         relevant, look for configure.ac there, not in the current directory.
34580         Also use a simple search for AC_PREREQ, not "autoconf --trace".
34581
34582 2006-07-29  Bruno Haible  <bruno@clisp.org>
34583
34584         * gnulib-tool (SORT): New variable.
34585         (func_usage): Undocument --assume-autoconf option.
34586         Remove --assume-autoconf option handling.
34587         (autoconf_minversion): Determine from the contents of configure.ac.
34588         (func_import): Remove autoconf_minversion handling.
34589         Suggested by Eric Blake.
34590
34591 2006-07-29  Bruno Haible  <bruno@clisp.org>
34592
34593         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
34594
34595 2006-07-29  Bruno Haible  <bruno@clisp.org>
34596
34597         * config/srclist.txt (*setenv.[ch]): Remove rules.
34598
34599 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34600
34601         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
34602
34603 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34604
34605         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
34606         arpa/inet.h.
34607
34608 2006-07-28  Simon Josefsson  <jas@extundo.com>
34609
34610         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
34611         * modules/inet_pton (Depends-on): Likewise.
34612
34613 2006-07-28  Simon Josefsson  <jas@extundo.com>
34614
34615         * m4/netinet_in_h.m4: New file.
34616
34617 2006-07-28  Simon Josefsson  <jas@extundo.com>
34618
34619         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
34620         #include's.
34621
34622 2006-07-28  Simon Josefsson  <jas@extundo.com>
34623
34624         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
34625         #include's.
34626
34627 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
34628
34629         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
34630         setgid on directories only if they set these bits.
34631         * lib/modechange.h: Remove obsolete comment about masks.
34632
34633 2006-07-28  Eric Blake  <ebb9@byu.net>
34634
34635         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
34636         macro expansion.
34637
34638 2006-07-28  Bruno Haible  <bruno@clisp.org>
34639
34640         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
34641
34642 2006-07-28  Bruno Haible  <bruno@clisp.org>
34643
34644         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
34645
34646 2006-07-28  Bruno Haible  <bruno@clisp.org>
34647
34648         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
34649         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
34650         Define fallbacks.
34651         Avoids link error on FreeBSD 4.x.
34652         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
34653
34654         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
34655         encoding.
34656         * lib/mbswidth.c (iswcntrl): Likewise.
34657
34658 2006-07-27  Bruno Haible  <bruno@clisp.org>
34659
34660         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
34661         test.
34662
34663 2006-07-27  Bruno Haible  <bruno@clisp.org>
34664
34665         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
34666         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
34667         defined.
34668
34669 2006-07-26  Eric Blake  <ebb9@byu.net>
34670
34671         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
34672
34673 2006-07-26  Eric Blake  <ebb9@byu.net>
34674
34675         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
34676         like mingw that lack mkstemp.
34677         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
34678         avoid compilation warning on mingw.
34679
34680 2006-07-26  Bruno Haible  <bruno@clisp.org>
34681
34682         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
34683         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
34684         INT_FAST*_MIN, INTPTR_MIN.
34685
34686 2006-07-25  Bruno Haible  <bruno@clisp.org>
34687
34688         * modules/version-etc (Depends-on): Add stdarg.
34689
34690 2006-07-25  Bruno Haible  <bruno@clisp.org>
34691
34692         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
34693         complex commands.
34694
34695 2006-07-25  Bruno Haible  <bruno@clisp.org>
34696
34697         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
34698         defined in <stdarg.h> or config.h.
34699
34700 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
34701
34702         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
34703         (gl_STDIO_SAFER): Remove.
34704
34705 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
34706
34707         * MODULES.html.sh (File stream based Input/Output):
34708         Add fopen-safer, tmpfile-safer; remove stdio-safer.
34709         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
34710         * modules/fopen-safer, modules/tmpfile-safer: New files.
34711         * modules/stdio-safer: Remove.
34712
34713 2006-07-24  Bruno Haible  <bruno@clisp.org>
34714
34715         * modules/tmpdir: New file.
34716         * MODULES.html.sh (File system functions): Add it.
34717
34718 2006-07-24  Bruno Haible  <bruno@clisp.org>
34719
34720         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
34721         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
34722
34723 2006-07-24  Bruno Haible  <bruno@clisp.org>
34724
34725         * modules/clean-temp: New file.
34726
34727 2006-07-24  Bruno Haible  <bruno@clisp.org>
34728
34729         * m4/tmpdir.m4: New file, from GNU gettext.
34730
34731 2006-07-24  Bruno Haible  <bruno@clisp.org>
34732
34733         * lib/tmpdir.h: New file, from GNU gettext.
34734         * lib/tmpdir.c: New file, from GNU gettext.
34735
34736 2006-07-24  Bruno Haible  <bruno@clisp.org>
34737
34738         * lib/clean-temp.h: New file, from GNU gettext.
34739         * lib/clean-temp.c: New file, from GNU gettext.
34740
34741 2006-07-23  Eric Blake  <ebb9@byu.net>
34742
34743         * modules/stdio-safer (Files): Add tmpfile-safer.c.
34744         (Depends-on): Add binary-io.
34745
34746 2006-07-23  Eric Blake  <ebb9@byu.net>
34747
34748         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
34749
34750 2006-07-23  Eric Blake  <ebb9@byu.net>
34751
34752         * lib/tmpfile-safer.c: New file.
34753         * lib/stdio-safer.h (fopen_safer): Add prototype.
34754         * lib/stdio--.h (tmpfile): Make safer.
34755
34756 2006-07-23  Bruno Haible  <bruno@clisp.org>
34757
34758         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
34759         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
34760         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
34761         gl_linked_remove_at): Use it.
34762
34763 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34764         and Simon Josefsson <jas@extundo.com>
34765
34766         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
34767
34768         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
34769
34770 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
34771
34772         * modules/close-stream: New file.
34773         * modules/closeout (Description): Make it clear that it exits
34774         with a diagnostic on error.
34775         (Depends-on): Add close-stream.  Remove fpending, stdbool.
34776         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
34777
34778 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
34779
34780         * m4/close-stream.m4: New file.
34781
34782 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
34783
34784         * lib/close-stream.c, lib/close-stream.h: New files.
34785
34786 2006-07-22  Bruno Haible  <bruno@clisp.org>
34787
34788         Merge from GNU gettext 0.15.
34789
34790         2006-05-01  Bruno Haible  <bruno@clisp.org>
34791
34792                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
34793
34794         2006-07-22  Bruno Haible  <bruno@clisp.org>
34795
34796                 * modules/javaversion: New file.
34797                 * MODULES.html.sh (Java): Add javaversion.
34798
34799         2006-03-12  Bruno Haible  <bruno@clisp.org>
34800
34801                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
34802
34803         2005-12-04  Bruno Haible  <bruno@clisp.org>
34804
34805                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
34806                 (untested).
34807
34808         2006-06-21  Bruno Haible  <bruno@clisp.org>
34809
34810                 Avoid warnings from recent versions of mcs.
34811                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
34812                 -o, -L, -r any more. Use options documented since mcs-1.0
34813                 instead. Similarly for -g.
34814
34815         2005-12-04  Bruno Haible  <bruno@clisp.org>
34816
34817                 * build-aux/csharpcomp.sh.in: Suffix for resources is
34818                 .resources, not .resource.
34819
34820         2005-07-09  Bruno Haible  <bruno@clisp.org>
34821
34822                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
34823                 add a .dll suffix.
34824                 Reported by Mark Junker <mjscod@gmx.de>.
34825
34826         2006-07-22  Bruno Haible  <bruno@clisp.org>
34827
34828                 * modules/gettext: Upgrade to gettext-0.15.
34829                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
34830                 m4/visibility.m4.
34831                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
34832
34833 2006-07-22  Bruno Haible  <bruno@clisp.org>
34834
34835         Merge from GNU gettext 0.15.
34836
34837         2006-03-25  Bruno Haible  <bruno@clisp.org>
34838
34839                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
34840
34841         2006-07-21  Bruno Haible  <bruno@clisp.org>
34842
34843                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
34844                 "1.1".
34845
34846         2006-05-09  Bruno Haible  <bruno@clisp.org>
34847
34848                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
34849                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
34850                 for the conftestver execution.
34851
34852         2006-05-01  Bruno Haible  <bruno@clisp.org>
34853
34854                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
34855                 optional target-version argument. Verify that the compiler
34856                 groks source of the specified source-version, or add -source
34857                 option as necessary. Verify that the compiler produces
34858                 bytecode in the specified target-version, or add -target and
34859                 -source options as necessary. Make the result of the test
34860                 available as variable CONF_JAVAC. Also log error output in
34861                 config.log.
34862
34863         2006-03-11  Bruno Haible  <bruno@clisp.org>
34864
34865                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
34866
34867         2006-05-09  Bruno Haible  <bruno@clisp.org>
34868
34869                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
34870                 CLASSPATH_SEPARATOR to a semicolon.
34871
34872         2006-03-12  Bruno Haible  <bruno@clisp.org>
34873
34874                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
34875                 available as variable CONF_JAVA, for subsequent autoconf
34876                 tests. Also log error output in config.log.
34877
34878         2006-07-19  Bruno Haible  <bruno@clisp.org>
34879
34880                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
34881                 that getline works on glibc2 systems. Needed to avoid trouble
34882                 in relocatable.c.
34883                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
34884
34885         2005-12-04  Bruno Haible  <bruno@clisp.org>
34886
34887                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
34888                 launcher (untested).
34889
34890         2005-12-04  Bruno Haible  <bruno@clisp.org>
34891
34892                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
34893
34894         2006-07-22  Bruno Haible  <bruno@clisp.org>
34895
34896                 * gettext.m4: Update from GNU gettext-0.15.
34897                 * nls.m4: Likewise.
34898                 * po.m4: Likewise.
34899                 * inttypes-pri.m4: Likewise.
34900                 * inttypes-h.m4: Renamed from inttypes.m4.
34901                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
34902
34903 2006-07-22  Bruno Haible  <bruno@clisp.org>
34904
34905         Merge from GNU gettext 0.15.
34906
34907         2005-07-05  Bruno Haible  <bruno@clisp.org>
34908
34909                 * printf-args.c (printf_fetchargs): Work around broken
34910                 definition of wint_t on mingw.
34911
34912         2005-02-12  Bruno Haible  <bruno@clisp.org>
34913
34914                 * xallocsa.h: Add extern "C" for C++.
34915
34916         2006-05-17  Bruno Haible  <bruno@clisp.org>
34917
34918                 Cygwin portability.
34919                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
34920
34921         2006-04-30  Bruno Haible  <bruno@clisp.org>
34922
34923                 * progreloc.c: Include <mach-o/dyld.h> if available.
34924                 (find_executable): Use _NSGetExecutablePath when possible.
34925
34926         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34927
34928                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
34929                 function.
34930
34931         2005-12-29  Bruno Haible  <bruno@clisp.org>
34932
34933                 * progreloc.c (set_program_name_and_installdir): Fix
34934                 compilation error.
34935
34936         2005-12-04  Bruno Haible  <bruno@clisp.org>
34937
34938                 Cygwin portability.
34939                 * progreloc.c: Include <windows.h> also on Cygwin.
34940                 (find_executable): Add support for Cygwin.
34941                 (set_program_name_and_installdir): Handle also platforms with
34942                 nonempty EXEEXT.
34943
34944         2006-07-11  Bruno Haible  <bruno@clisp.org>
34945
34946                 * javacomp.c: Fix a comment.
34947                 Reported by Jim Meyering.
34948
34949         2006-04-30  Bruno Haible  <bruno@clisp.org>
34950
34951                 * javacomp.h (compile_java_class): Add source_version,
34952                 target_version arguments.
34953                 * javacomp.c: Rewritten to choose only a compiler that
34954                 respects the specified source_version and target_version.
34955
34956         2006-06-27  Bruno Haible  <bruno@clisp.org>
34957
34958                 Assume correct S_ISDIR macro.
34959                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
34960
34961         2006-07-22  Bruno Haible  <bruno@clisp.org>
34962
34963                 * javaversion.h: New file, from GNU gettext.
34964                 * javaversion.c: New file, from GNU gettext.
34965                 * javaversion.java: New file, from GNU gettext.
34966                 * javaversion.class: New file, from GNU gettext.
34967
34968         2006-05-17  Bruno Haible  <bruno@clisp.org>
34969
34970                 Cygwin portability.
34971                 * javaexec.c (execute_java_class): Test for jview program
34972                 also on Cygwin.
34973
34974         2006-04-09  Bruno Haible  <bruno@clisp.org>
34975
34976                 * fatal-signal.c: Don't include string.h.
34977                 (at_fatal_signal): Use a copying loop instead of memcpy.
34978
34979         2005-12-04  Bruno Haible  <bruno@clisp.org>
34980
34981                 * csharpexec.c: Add support for 'clix' launcher (untested).
34982                 (execute_csharp_using_sscli): New function.
34983                 (execute_csharp_program): Call it.
34984
34985         2006-06-21  Bruno Haible  <bruno@clisp.org>
34986
34987                 Avoid warnings from recent versions of mcs.
34988                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
34989                 -o, -L, -r any more. Use options documented since mcs-1.0
34990                 instead. Similarly for -g.
34991
34992         2005-07-09  Bruno Haible  <bruno@clisp.org>
34993
34994                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
34995                 add a .dll suffix.
34996                 Reported by Mark Junker <mjscod@gmx.de>.
34997
34998         2006-06-17  Bruno Haible  <bruno@clisp.org>
34999
35000                 * config.charset: Update for NetBSD 3.0.
35001
35002         2006-05-17  Bruno Haible  <bruno@clisp.org>
35003
35004                 Cygwin portability.
35005                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
35006
35007         2006-05-16  Bruno Haible  <bruno@clisp.org>
35008
35009                 * localcharset.c [CYGWIN]: Include <windows.h>.
35010                 (get_charset_aliases): For Cygwin, return the same CPxxx
35011                 aliases list as under WIN32.
35012                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
35013                 the environment variables. Fall back to GetACP().
35014
35015         2006-04-05  Bruno Haible  <bruno@clisp.org>
35016
35017                 * config.charset: Update Juan Manuel Guerrero's address.
35018
35019         2005-02-12  Bruno Haible  <bruno@clisp.org>
35020
35021                 * allocsa.h: Add extern "C" for C++.
35022
35023         2005-02-10  Bruno Haible  <bruno@clisp.org>
35024
35025                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
35026                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
35027
35028         2006-07-22  Bruno Haible  <bruno@clisp.org>
35029
35030                 * gettext.h: Update to GNU gettext-0.15.
35031
35032 2006-07-22  Bruno Haible  <bruno@clisp.org>
35033
35034         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
35035         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
35036         lib-prefix.m4, longdouble.m4, ssize_t.m4.
35037
35038 2006-07-21  Eric Blake  <ebb9@byu.net>
35039
35040         * modules/stdlib-safer: New file.
35041         * MODULES.html.sh (File stream based Input/Output): Add
35042         stdlib-safer.
35043
35044 2006-07-21  Eric Blake  <ebb9@byu.net>
35045
35046         * lib/stdlib-safer.h: New file from coreutils, required by
35047         stdlib--.h.
35048
35049 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
35050
35051         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
35052
35053 2006-07-20  Bruno Haible  <bruno@clisp.org>
35054
35055         * gnulib-tool: Recognize new option --assume-autoconf.
35056         (autoconf_minversion): New variable.
35057         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
35058
35059 2006-07-20  Bruno Haible  <bruno@clisp.org>
35060
35061         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
35062
35063 2006-07-19  Derek R. Price  <derek@ximbiot.com>
35064
35065         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
35066         Reindent and repaginate.
35067
35068 2006-07-19  Derek Price  <derek@ximbiot.com>
35069
35070         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
35071         Correct grammar.
35072
35073 2006-07-17  Bruno Haible  <bruno@clisp.org>
35074
35075         * modules/list: New file.
35076         * modules/array-list: New file.
35077         * modules/carray-list, modules/carray-list-tests: New files.
35078         * modules/linked-list, modules/linked-list-tests: New files.
35079         * modules/avltree-list, modules/avltree-list-tests: New files.
35080         * modules/rbtree-list, modules/rbtree-list-tests: New files.
35081         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
35082         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
35083         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
35084         * modules/oset: New file.
35085         * modules/array-oset: New file.
35086         * modules/avltree-oset, modules/avltree-oset-tests: New files.
35087         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
35088         * tests/test-carray_list.c: New file.
35089         * tests/test-linked_list.c: New file.
35090         * tests/test-avltree_list.c: New file.
35091         * tests/test-rbtree_list.c: New file.
35092         * tests/test-linkedhash_list.c: New file.
35093         * tests/test-avltreehash_list.c: New file.
35094         * tests/test-rbtreehash_list.c: New file.
35095         * tests/test-avltree_oset.c: New file.
35096         * tests/test-rbtree_oset.c: New file.
35097         * MODULES.html.sh (Container data structures): New section.
35098
35099 2006-07-17  Bruno Haible  <bruno@clisp.org>
35100
35101         * m4/gl_list.m4: New file.
35102
35103 2006-07-17  Bruno Haible  <bruno@clisp.org>
35104
35105         * lib/gl_list.h: New file.
35106         * lib/gl_list.c: New file.
35107         * lib/gl_array_list.h: New file.
35108         * lib/gl_array_list.c: New file.
35109         * lib/gl_carray_list.h: New file.
35110         * lib/gl_carray_list.c: New file.
35111         * lib/gl_linked_list.h: New file.
35112         * lib/gl_linked_list.c: New file.
35113         * lib/gl_anylinked_list1.h: New file.
35114         * lib/gl_anylinked_list2.h: New file.
35115         * lib/gl_avltree_list.h: New file.
35116         * lib/gl_avltree_list.c: New file.
35117         * lib/gl_anyavltree_list1.h: New file.
35118         * lib/gl_anyavltree_list2.h: New file.
35119         * lib/gl_rbtree_list.h: New file.
35120         * lib/gl_rbtree_list.c: New file.
35121         * lib/gl_anyrbtree_list1.h: New file.
35122         * lib/gl_anyrbtree_list2.h: New file.
35123         * lib/gl_anytree_list1.h: New file.
35124         * lib/gl_anytree_list2.h: New file.
35125         * lib/gl_linkedhash_list.h: New file.
35126         * lib/gl_linkedhash_list.c: New file.
35127         * lib/gl_anyhash_list1.h: New file.
35128         * lib/gl_anyhash_list2.h: New file.
35129         * lib/gl_avltreehash_list.h: New file.
35130         * lib/gl_avltreehash_list.c: New file.
35131         * lib/gl_rbtreehash_list.h: New file.
35132         * lib/gl_rbtreehash_list.c: New file.
35133         * lib/gl_anytreehash_list1.h: New file.
35134         * lib/gl_anytreehash_list2.h: New file.
35135
35136         * lib/gl_oset.h: New file.
35137         * lib/gl_oset.c: New file.
35138         * lib/gl_array_oset.h: New file.
35139         * lib/gl_array_oset.c: New file.
35140         * lib/gl_avltree_oset.h: New file.
35141         * lib/gl_avltree_oset.c: New file.
35142         * lib/gl_rbtree_oset.h: New file.
35143         * lib/gl_rbtree_oset.c: New file.
35144         * lib/gl_anytree_oset.h: New file.
35145
35146 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
35147
35148         * m4/mkancesdirs.m4: New file.
35149         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
35150         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
35151         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
35152         it.
35153
35154 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
35155
35156         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
35157         * lib/mkancesdirs.h: New files.
35158         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
35159         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
35160         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
35161         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
35162         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
35163         callers changed.  Revamp internals significantly, by not
35164         attempting to create directories that are temporarily more
35165         permissive than the final results.  Do not attempt to use
35166         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
35167         This removes some race conditions, fixes some bugs, and simplifies
35168         things.  Use new dirchownmod function to do owner and mode changes.
35169         * lib/mkdir-p.h: Likewise.
35170         * lib/modechange.c (octal_to_mode): New function.
35171         (struct mode_change): New member mentioned.
35172         (make_node_op_equals): New arg mentioned.  All callers changed.
35173         (mode_compile): Keep track of which mode bits the user has explicitly
35174         mentioned.
35175         (mode_adjust): New arg DIR, so that we implement the X op correctly.
35176         New arg PMODE_BITS, to keep track of which mode bits the user
35177         mentioned; it treats S_ISUID and S_ISGID speciall.
35178         All callers changed.
35179         * lib/modechange.h: Likewise.
35180
35181 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
35182
35183         * MODULES.html.sh: Add mkancestors.
35184         * modules/mkancesdirs: New module.
35185         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
35186         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
35187         The chdir-safer and afs files are now orphans; I'll remove them
35188         unless someone speaks up.
35189         Add lib/dirchownmod.c, lib/dirchownmod.h.
35190         (Depends-on): Remove alloca, chown, save-cwd, dirname.
35191         Add lchown, mkancesdirs.
35192         (Maintainer): Add self.
35193
35194 2006-07-15  Karl Berry  <karl@gnu.org>
35195
35196         * gnulib-tool: help message wording/arrangement.
35197
35198 2006-07-14  Simon Josefsson  <jas@extundo.com>
35199
35200         * doc/gnulib.texi (Libtool and Windows): New section.
35201
35202 2006-07-12  Simon Josefsson  <jas@extundo.com>
35203
35204         * modules/gendocs (License): Fix license, approved by Karl.
35205
35206 2006-07-12  Eric Blake  <ebb9@byu.net>
35207
35208         * MODULES.html.sh: Add gendocs.
35209
35210 2006-07-11  Eric Blake  <ebb9@byu.net>
35211
35212         * modules/fdl: New module, to install doc/fdl.texi.
35213         * MODULES.html.sh: Add new section for documentation modules.
35214         * gnulib-tool: Avoid space-tab.
35215         (--doc-base): New option, to manage files from doc.
35216
35217 2006-07-11  Eric Blake  <ebb9@byu.net>
35218
35219         * m4/absolute-header.m4: Fix comments to match recent change.
35220
35221 2006-07-11  Eric Blake  <ebb9@byu.net>
35222
35223         * gnulib-tool: List --doc-base before --tests-base.
35224
35225 2006-07-11  Derek R. Price  <derek@ximbiot.com>
35226
35227         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
35228
35229 2006-07-11  Bruno Haible  <bruno@clisp.org>
35230
35231         * README: Mention where to put documentation.
35232
35233 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35234
35235         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
35236
35237 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
35238
35239         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
35240         to stdint.m4.
35241
35242 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
35243
35244         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
35245         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
35246         "no/such/file/stdint.h" when there is no such file, so that
35247         the resulting C code can be parsed by dodgy compilers.
35248         Problems reported by Bob Proulx.
35249
35250 2006-07-10  Derek R. Price  <derek@ximbiot.com>
35251
35252         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
35253         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
35254         macros into the GNU _D_EXACT_NAMLEN.
35255         * lib/savedir.c:  Likewise.
35256         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
35257
35258 2006-07-10  Derek R. Price  <derek@ximbiot.com>
35259         and Paul Eggert  <eggert@cs.ucla.edu>
35260
35261         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
35262         * m4/savedir.m4:
35263         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
35264         macros into the GNU _D_EXACT_NAMLEN.
35265
35266 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
35267
35268         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
35269         around the absolute name, to work around a problem with the HP-UX
35270         11.23 native C compiler, reported by Bob Proulx.
35271
35272 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
35273
35274         * doc/maintain.texi, make-stds.texi: Sync from
35275         <http://savannah.gnu.org/projects/gnustandards>.
35276
35277 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
35278
35279         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
35280
35281 2006-07-09  Jim Meyering  <jim@meyering.net>
35282
35283         * m4/glob.m4: Remove a doubled word in a comment.
35284
35285 2006-07-09  Jim Meyering  <jim@meyering.net>
35286
35287         * lib/argp-pv.c: Remove a doubled word in a comment.
35288         * lib/check-version.c (check_version): Likewise.
35289         * lib/javacomp.c (compile_java_class): Likewise.
35290
35291 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
35292
35293         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
35294         for the benefit of people using Autoconf 2.60.  If you want to
35295         support older Autoconf versions you can copy m4/onceonly_2_57.m4
35296         (or m4/onceonly.m4, if pre-2.57) manually.
35297
35298 2006-07-08  Jim Meyering  <jim@meyering.net>
35299
35300         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
35301         comment.
35302         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
35303         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
35304         comment.
35305
35306 2006-07-08  Jim Meyering  <jim@meyering.net>
35307
35308         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
35309
35310 2006-07-07  Simon Josefsson  <jas@extundo.com>
35311
35312         * tests/test-crc.c: Change expected crc value, the test vector
35313         were probably computed using the old broken crc.c?
35314
35315 2006-07-06  Simon Josefsson  <jas@extundo.com>
35316
35317         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
35318         now the canonical place for the M4 file).
35319
35320         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
35321         from the sys_socket dependency now.
35322
35323         * modules/inet_pton (Files): Ditto.
35324
35325         * modules/inet_ntop (Files): Ditto.
35326
35327 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
35328
35329         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
35330         not gl_PREREQ_GETUSERSHELL.
35331
35332 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35333
35334         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
35335         with only one argument, for Autoconf 2.60.
35336         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
35337         expand to nothing, so add a shell command to avoid syntax error.
35338         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
35339
35340 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35341
35342         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
35343
35344 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
35345
35346         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
35347         no longer needed.  Check for isblank decl.
35348         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
35349         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
35350         of existence.
35351
35352 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
35353
35354         * lib/getloadavg.c: Use __VMS, not VMS.
35355         * lib/getopt.c: Likewise.
35356         * lib/getpagesize.h: Likewise.
35357         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
35358         and probably does not work.
35359
35360 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
35361
35362         * lib/.cppi-disable: Add wcwidth.
35363         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
35364         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
35365         (ISGRAPH): Remove.  All uses changed to isgraph.
35366         (FOLD) [!defined _LIBC]: Remove special case.
35367         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
35368         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
35369         HAVE_ISBLANK.
35370         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
35371         case.
35372
35373 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
35374
35375         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
35376         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
35377         brackets.  Other minor changes to suppress some compiler
35378         warnings.
35379
35380 2006-07-06  Derek R. Price  <derek@ximbiot.com>
35381         and Paul Eggert  <eggert@cs.ucla.edu>
35382
35383         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
35384         of invoking obsolescent AC_HEADER_DIRENT macro.
35385         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
35386         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
35387         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
35388         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
35389         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
35390         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
35391         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
35392         * m4/readdir.m4: Remove; no longer needed.
35393
35394 2006-07-06  Derek R. Price  <derek@ximbiot.com>
35395         and Paul Eggert  <eggert@cs.ucla.edu>
35396
35397         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
35398         Don't worry about this obsolete case any more.
35399         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
35400         directories.
35401         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
35402         worry about this obsolete case any more.
35403         * lib/fts.c: Likewise.
35404         * lib/getcwd.c: Likewise.
35405         * lib/glob.h: Likewise.
35406         * lib/savedir.c: Likewise.
35407
35408 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
35409
35410         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
35411         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
35412         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
35413         needed.
35414         All uses removed.
35415         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
35416         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
35417         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
35418         needed.
35419         * m4/getdate.m4 (gl_GETDATE): Likewise.
35420         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
35421         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
35422         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
35423         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
35424         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
35425         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
35426         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
35427         needed.
35428
35429 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
35430
35431         * lib/memcasecmp.c: Include <limits.h>.
35432         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
35433         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
35434         Don't assume isdigit succeeds only on '0' through '9'.
35435
35436 2006-07-05  Eric Blake  <ebb9@byu.net>
35437
35438         * modules/getaddrinfo (Depends-on): Add snprintf.
35439
35440 2006-07-05  Eric Blake  <ebb9@byu.net>
35441
35442         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
35443         to avoid 'header present but could not be compiled' on cygwin.
35444
35445 2006-07-05  Eric Blake  <ebb9@byu.net>
35446
35447         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
35448         missing from netdb.h.
35449         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
35450
35451 2006-07-05  Derek R. Price  <derek@ximbiot.com>
35452
35453         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
35454         no longer needed.
35455         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
35456         * m4/getdate.m4 (gl_GETDATE): Likewise.
35457         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
35458         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
35459         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
35460         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
35461         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
35462
35463 2006-07-05  Derek R. Price  <derek@ximbiot.com>
35464
35465         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
35466         All uses of is_space replaced by isspace.
35467         * lib/exit.h: Don't talk about STDC_HEADERS.
35468         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
35469         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
35470         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
35471         replaced by isprint etc.
35472         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
35473         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
35474         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
35475         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
35476         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
35477         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
35478
35479 2006-07-05  Bruno Haible  <bruno@clisp.org>
35480
35481         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
35482         the function exists, before testing against AIX.
35483         Reported by Martin Lambers <marlam@marlam.de>.
35484
35485 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
35486
35487         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
35488         From Mark D. Baushke.
35489
35490 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
35491
35492         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
35493         to the absolute name, not just one, to bypass Sun C 5.8's
35494         "warning: #include of /usr/include/... may be non-portable".
35495
35496 2006-07-04  Eric Blake  <ebb9@byu.net>
35497
35498         * modules/dirname-tests: New test module.
35499         * tests/test-dirname.c: New file, replacing dirname.c
35500         TEST_DIRNAME section that was recently deleted.
35501
35502 2006-07-04  Bruno Haible  <bruno@clisp.org>
35503
35504         Assume ANSI C header files and <ctype.h> functions.
35505         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
35506         (mbsnwidth): Use isprint, iscntrl instead.
35507
35508 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
35509
35510         Merge from coreutils.
35511         * MODULES.html.sh: Add xstrtold.
35512         * modules/xstrtold: New file.
35513         * modules/cycle-check (Files): Add lib/same-inode.h.
35514         * modules/dirname (Files): Add m4/double-slash-root.m4.
35515         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
35516         * modules/mkdir-p (Files): Add lib/same-inode.h.
35517         * modules/same (Files): Add lib/same-inode.h.
35518
35519 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
35520
35521         * m4/absolute-header.m4: Renamed from full-header-path.m4.
35522         This is to keep the terminology clean; POSIX talks about
35523         "absolute pathnames", not "full pathnames", but the GNU
35524         Coding Standards say to use "path" for something else;
35525         so use "absolute" to keep both sides happy.
35526         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
35527         Set gl_absolute_header, not gl_full_header_path.
35528         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
35529         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
35530         All uses changed.
35531
35532         Merge from coreutils.
35533
35534         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
35535
35536         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
35537         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
35538         want to require the building of c-strtod.o.
35539         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
35540         needs -lm directly.
35541         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
35542
35543         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
35544
35545         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
35546         --as-needed option if available.  Problem reported by Albert Chin in
35547         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
35548         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
35549         cc merely issues a bunch of annoying warnings for --as-needed
35550         (this problem was reported by Bob Proulx).  Also, try linking with
35551         -lm to detect a bug in binutils 2.16 (this problem was reported
35552         by Ralf Wildenhues).
35553
35554         2006-06-18  Jim Meyering  <jim@meyering.net>
35555
35556         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
35557         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
35558         macro.
35559         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
35560         also check for glibc-2.4's abort-inducing bug.
35561
35562         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
35563         Low-probability clean-up should be to use rmdir to get rid of
35564         the just-created directory, not unlink.
35565
35566         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
35567         configure fail, and request a bug report to inform us about it.
35568         Add a comment that, barring reports to the contrary, in 2007 we'll
35569         assume ftruncate is universally available.
35570
35571         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
35572
35573         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
35574
35575         2006-03-12  Jim Meyering  <jim@meyering.net>
35576
35577         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
35578         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
35579         * m4/same.m4 (gl_SAME): Likewise.
35580         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
35581
35582         2006-03-11  Eric Blake  <ebb9@byu.net>
35583
35584         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
35585         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
35586         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
35587         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
35588
35589 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
35590
35591         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
35592         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
35593         reported by Mark D. Baushke, one in
35594         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
35595
35596         Merge from coreutils.
35597
35598         * lib/.cppi-disable: Add stdint_.h.
35599         * lib/.cvsignore: Add stdint.h.
35600
35601         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
35602
35603         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
35604         both double and long double versions.
35605         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
35606         * lib/xstrtold.c: New file.
35607         * lib/xstrtod.h (xstrtold): New decl.
35608
35609         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
35610
35611         * lib/filemode.c (setst): Remove.
35612         (strmode): Rewrite to avoid setst.  This makes the code shorter,
35613         (arguably) clearer, and the generated code is a bit smaller on my
35614         Debian GNU/Linux stable x86 host.
35615
35616         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
35617
35618         * lib/filemode.c: Include "filemode.h" first, to test the interface.
35619         Assume that filemode.h includes sys/types.h and sys/stat.h.
35620         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
35621         (ftypelet): Reorder to put common cases first, for efficiency.
35622         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
35623         to do 'M'.
35624         (strmode): Renamed from mode_string, and now stores 12 bytes instead
35625         of 10, for compatibility with FreeBSD.  All callers changed.
35626         (filemodestring): Now stores 12 bytes instead of 10, and sets file
35627         types that can't be deduced solely from st_mode.  First arg is now a
35628         const pointer.
35629         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
35630         (strmode): Renamed from mode_string.
35631         (filemodestring): New decl.
35632         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
35633         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
35634         needed.
35635         (S_ISPORT, S_ISWHT): New macros, if not already defined.
35636
35637         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
35638
35639         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
35640         fsusage.h now does that.  Include fsusage.h first, to test interface.
35641         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
35642         at most one method (the old code could have generated decls that
35643         didn't conform to C89, not that this was ever exercised).
35644         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
35645
35646         2006-03-19  Jim Meyering  <jim@meyering.net>
35647
35648         Work even in a chroot where d_ino values for entries in "/"
35649         don't match the stat.st_ino values for the same names.
35650         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
35651         number, iterate through all entries again, using lstat instead.
35652         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
35653         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
35654
35655         * lib/getcwd.c (__getcwd): Clarify a comment.
35656         Use memcpy in place of a call to strcpy.
35657
35658         2006-03-12  Jim Meyering  <jim@meyering.net>
35659
35660         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
35661         matches that of the current directory (which we're about to chdir ".."
35662         out of), then save the dev-ino of the parent, instead.
35663
35664         * lib/same-inode.h (SAME_INODE): New file/macro.
35665         * lib/chdir-safer.c (SAME_INODE): Remove definition.
35666         Include "same-inode.h", instead.
35667         * lib/same.c: Likewise.
35668         * lib/cycle-check.h: Include "same-inode.h".
35669         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
35670         * lib/cycle-check.c (SAME_INODE): Remove definition.
35671         * lib/root-dev-ino.h: Include "same-inode.h".
35672
35673         2006-03-11  Eric Blake  <ebb9@byu.net>
35674
35675         * lib/same.c (same_name): s/base_name/last_component/
35676         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
35677         * lib/filenamecat.c (file_name_concat): Likewise.
35678
35679         2006-03-11  Eric Blake  <ebb9@byu.net>,
35680                     Paul Eggert  <eggert@cs.ucla.edu>
35681
35682         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
35683         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
35684         drive prefix.
35685         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
35686         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
35687         (last_component): New method.
35688         * lib/dirname.c (dir_len): Determine when drive letters need a
35689         subsequent slash.  Preserve // when it is special.
35690         (dir_name): Don't append dot when drive letter is absolute.
35691         [TEST_DIRNAME]: Move into a full-blown gnulib test.
35692         * lib/basename.c (base_name): New semantics - malloc the result.
35693         Preserve // when it is special.  Preserve relative files that look
35694         like drive letters.
35695         (base_len): Preserve // when it is special.
35696         (last_component): New method, similar to old base_name semantics.
35697         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
35698         base_name.  Strip redundant slashes from ///.
35699
35700 2006-07-03  Jim Meyering  <jim@meyering.net>
35701
35702         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
35703         macro is used before the first cycle_check call.
35704
35705 2006-07-03  Eric Blake  <ebb9@byu.net>
35706
35707         * modules/dirname (Depends-on): Add xstrndup.
35708
35709 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
35710
35711         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
35712         test cases, so that config.log is a bit easier to follow.
35713
35714 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
35715
35716         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
35717         both are 64 bits, since this seems to be the tradition, and this
35718         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
35719         we ever run into a host that prefers long long to long in this
35720         case, we'll need another configure-time test.  Problem reported by
35721         Jim Meyering.
35722
35723 2006-07-02  Eric Blake  <ebb9@byu.net>
35724
35725         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
35726
35727 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
35728
35729         * modules/inttypes (Depends-on): No longer depends on stdint.
35730         * modules/stdint (Description): Say more about assumptions.
35731         Say that the fast types might differ.  Say macros are used.
35732         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
35733         (Makefile.am): Revise list of substituted symbols to match
35734         new stdint.m4.
35735         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
35736         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
35737         * tests/test-stdint.c (verify_same_types)
35738         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
35739         the code conforms to C99/C89.
35740         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
35741         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
35742
35743 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
35744
35745         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
35746         but fix a bug, by requiring at least 64 bits.
35747         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
35748         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
35749         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
35750         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
35751
35752         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
35753         changes.  Make 2.59 a prerequisite.  Check and substitute for
35754         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
35755         inttypes.h.  Do not use special include files; just use the
35756         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
35757         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
35758         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
35759         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
35760         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
35761         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
35762         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
35763         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
35764         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
35765         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
35766         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
35767         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
35768         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
35769         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
35770         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
35771         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
35772         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
35773         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
35774         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
35775         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
35776         WINT_MAX.  Check for C99 conformance more strictly, by detecting
35777         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
35778         not check for things that C99 does not require, e.g., int8_t.  If
35779         a test isn't needed unless <stdint.h> isn't working, and is
35780         unlikely to be needed for any other reason, then don't do it
35781         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
35782         size_t, since we assume C89 freestanding at least.  Do not check
35783         for sig_atomic_t, wchar_t, or wint_t, since the code now does
35784         the right thing even if the types are not defined.  Instead use:
35785         (gl_STDINT_TYPE_PROPERTIES): New macro.
35786         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
35787         testing whether <sys/types.h> clashes, as Autoconf does this for
35788         us now.  All uses removed.
35789         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
35790         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
35791         (gl_CHECK_TYPE_SAME):
35792         Remove; no longer needed.
35793         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
35794         exists, since we'll return 0 anyway in that case.
35795         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
35796
35797 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
35798
35799         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
35800         possible collision with system files.
35801         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
35802         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
35803         WCHAR_MIN and WCHAR_MAX in this case.
35804         (<stddef.h>): Do not include; no longer needed.
35805         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
35806         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
35807         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
35808         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
35809         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
35810         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
35811         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
35812         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
35813         !defined(__c99))]: Include in this case too, since it's harmless
35814         now.
35815         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
35816         dangerous to do so.
35817         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
35818         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
35819         (_STDINT_MIN, _STDINT_MAX): New macros.
35820         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
35821         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
35822         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
35823         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
35824         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
35825         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
35826         macros, not typedefs; this simplifies things quite a bit.
35827         Use long int for all types narrower than int64_t.
35828         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
35829         Define in terms of long long int or int64_t or long int,
35830         not int64_t or int32_t.  This saves some compile-time testing.
35831         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
35832         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
35833         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
35834         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
35835         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
35836         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
35837         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
35838         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
35839         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
35840         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
35841         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
35842         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
35843         undef any previous version and define our own version, for
35844         simplicity and consistency with the new macros for types.
35845         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
35846         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
35847         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
35848         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
35849         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
35850         @WINT_T_SUFFIX@ to keep things simple here.
35851         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
35852         Simplify by assuming typical 8/16/32/64 host, since we're
35853         already doing that elsewhere anyway.
35854         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
35855         and assume long long int is 64 bits if available.  This
35856         speeds up 'configure'.
35857
35858 2006-07-01  Eric Blake  <ebb9@byu.net>
35859
35860         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
35861         Reported by Andreas Buening.
35862
35863 2006-07-01  Eric Blake  <ebb9@byu.net>
35864
35865         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
35866
35867 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
35868
35869         * lib/getaddrinfo.c: fixed typo
35870
35871 2006-06-29  Jim Meyering  <jim@meyering.net>
35872
35873         * modules/strftime (Maintainer): Add my name, since with the
35874         FPRINTFTIME changes strftime.c has forked from glibc.
35875
35876 2006-06-29  Eric Blake  <ebb9@byu.net>
35877
35878         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
35879
35880 2006-06-29  Eric Blake  <ebb9@byu.net>
35881
35882         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
35883
35884 2006-06-29  Eric Blake  <ebb9@byu.net>
35885
35886         * lib/stat_.h: New file.
35887
35888 2006-06-29  Eric Blake  <ebb9@byu.net>
35889
35890         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
35891         unused static function.
35892
35893 2006-06-29  Eric Blake  <ebb9@byu.net>
35894
35895         * doc/functions.texi (Function Portability): Document missing lstat
35896         on mingw.
35897
35898 2006-06-29  Eric Blake  <ebb9@byu.net>
35899
35900         * MODULES.html.sh: Add sys_stat.
35901         * modules/sys_stat: New module.
35902         * modules/mkstemp (Depends-on): Add sys_stat.
35903
35904 2006-06-29  Derek R. Price  <derek@ximbiot.com>
35905
35906         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
35907
35908 2006-06-29  Derek R. Price  <derek@ximbiot.com>
35909
35910         * m4/c-bs-a.m4: Removed.
35911
35912 2006-06-29  Derek R. Price  <derek@ximbiot.com>
35913
35914         * lib/strftime.c: Assume strftime() exists.
35915
35916 2006-06-29  Derek Price  <derek@ximbiot.com>
35917
35918         * modules/c-bs-a: Removed - \a is C89.
35919         * MODULES.html.sh: Remove c-bs-a.
35920
35921 2006-06-29  Bruno Haible  <bruno@clisp.org>
35922
35923         * modules/wcwidth (License): Change to LGPL.
35924
35925 2006-06-28  Simon Josefsson  <jas@extundo.com>
35926
35927         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
35928         on _WIN32.
35929
35930         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
35931         getnameinfo.
35932
35933 2006-06-28  Simon Josefsson  <jas@extundo.com>
35934
35935         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
35936
35937 2006-06-28  Simon Josefsson  <jas@extundo.com>
35938
35939         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
35940         functions there.  It will succeed on Windows XP, but on Windows
35941         2000 and (presumably) earlier, it will fail, and use the internal
35942         re-implementation.
35943         (use_win32_p): New function.
35944         (getaddrinfo): Use strtoul on servname, to support numeric ports.
35945         Support AI_NUMERICSERV to disable getservbyname.
35946         (getnameinfo): New function, only supports
35947         NI_NUMERICHOST|NI_NUMERICSERV for now.
35948
35949         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
35950         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
35951         getnameinfo.
35952
35953 2006-06-28  Eric Blake  <ebb9@byu.net>
35954
35955         * modules/wcwidth: New file.
35956         * modules/mbchar (Depends-on): Add wcwidth.
35957         * modules/mbswidth (Depends-on): Add wcwidth.
35958         * MODULES.html.sh: Add wcwidth.
35959
35960 2006-06-28  Eric Blake  <ebb9@byu.net>
35961
35962         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
35963         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
35964
35965 2006-06-28  Eric Blake  <ebb9@byu.net>
35966
35967         * lib/xvasprintf.h: Fix comments.
35968
35969 2006-06-28  Eric Blake  <ebb9@byu.net>
35970
35971         * lib/mbchar.h (wcwidth): Include wcwidth.h.
35972         * lib/mbswidth.c (wcwidth): Move from here...
35973         * lib/wcwidth.h: ...to this new file.
35974
35975 2006-06-28  Derek R. Price  <derek@ximbiot.com>
35976
35977         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
35978
35979         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
35980         it's obsolete.
35981         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
35982
35983 2006-06-28  Derek R. Price  <derek@ximbiot.com>
35984
35985         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
35986         Autoconf 2.60 says this stuff was obsolete.
35987
35988 2006-06-28  Bruno Haible  <bruno@clisp.org>
35989
35990         * modules/wcwidth (Files): Add m4/wchar_t.m4.
35991
35992 2006-06-28  Bruno Haible  <bruno@clisp.org>
35993
35994         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
35995         gt_TYPE_WCHAR_T.
35996
35997 2006-06-28  Bruno Haible  <bruno@clisp.org>
35998
35999         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
36000         declaration for wcwidth.
36001         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
36002
36003 2006-06-28  Bruno Haible  <bruno@clisp.org>
36004
36005         * lib/mkdtemp.c [MINGW]: Include <io.h>.
36006         (mkdir): Define using _mkdir.
36007
36008 2006-06-28  Bruno Haible  <bruno@clisp.org>
36009
36010         * lib/getaddrinfo.h: Fix POSIX URL.
36011         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
36012         _WIN32.
36013         (use_win32_p): Make static.
36014         (getaddrinfo): Reject service name if it is empty or does not consist
36015         solely of decimal digits, or if its value is > 65535.
36016         (getnameinfo): Remove useless casts.
36017
36018 2006-06-27  Simon Josefsson  <jas@extundo.com>
36019
36020         * modules/sys_select: New file, suggested by Bruno Haible, Paul
36021         Eggert and Martin Lambers.
36022
36023 2006-06-27  Simon Josefsson  <jas@extundo.com>
36024
36025         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
36026         Eggert and Martin Lambers.
36027
36028 2006-06-27  Bruno Haible  <bruno@clisp.org>
36029
36030         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
36031         result to 0, not to empty.
36032         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
36033
36034 2006-06-27  Bruno Haible  <bruno@clisp.org>
36035
36036         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
36037
36038 2006-06-26  Simon Josefsson  <jas@extundo.com>
36039
36040         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
36041         present.
36042
36043 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
36044
36045         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
36046         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
36047         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
36048
36049 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
36050
36051         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
36052
36053 2006-06-26  Bruno Haible  <bruno@clisp.org>
36054
36055         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
36056
36057 2006-06-26  Bruno Haible  <bruno@clisp.org>
36058
36059         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
36060
36061 2006-06-26  Bruno Haible  <bruno@clisp.org>
36062
36063         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
36064         SGI C compiler in pre-C99 mode.
36065         Suggested by Mark D. Baushke and Larry Jones.
36066
36067 2006-06-26  Bruno Haible  <bruno@clisp.org>
36068
36069         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
36070         WCHAR_MAX.
36071         Reported by Mark D. Baushke and Larry Jones.
36072
36073 2006-06-26  Bruno Haible  <bruno@clisp.org>
36074
36075         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
36076         in pre-C99 mode.
36077         Suggested by Mark D. Baushke and Larry Jones.
36078
36079 2006-06-23  Simon Josefsson  <jas@extundo.com>
36080             Bruno Haible  <bruno@clisp.org>
36081
36082         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
36083         Emit mostlyclean-local rule.
36084         (func_emit_tests_Makefile_am): Likewise.
36085         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
36086
36087 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
36088
36089         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
36090
36091 2006-06-23  Bruno Haible  <bruno@clisp.org>
36092
36093         * tests/test-stdint.c: Update to match ISO C 99 Technical
36094         Corrigendum 1.
36095
36096 2006-06-23  Bruno Haible  <bruno@clisp.org>
36097
36098         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
36099
36100 2006-06-23  Bruno Haible  <bruno@clisp.org>
36101
36102         * lib/stdint_.h: Treat IRIX like OpenBSD.
36103
36104 2006-06-23  Bruno Haible  <bruno@clisp.org>
36105
36106         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
36107         ISO C 99 Technical Corrigendum 1.
36108
36109 2006-06-22  Simon Josefsson  <jas@extundo.com>
36110
36111         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
36112         MinGW.
36113
36114 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
36115
36116         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
36117         needed.  Some compiler complained about some of them.  Problem reported
36118         by Larry Jones in
36119         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
36120
36121 2006-06-21  Simon Josefsson  <jas@extundo.com>
36122
36123         * tests/test-getaddrinfo.c: New file.
36124
36125         * modules/getaddrinfo-tests: New file.
36126
36127         * MODULES.html.sh: Add inet_pton.
36128
36129         * modules/inet_pton: New file.
36130
36131 2006-06-21  Simon Josefsson  <jas@extundo.com>
36132
36133         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
36134         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
36135         of using the (limited) gnulib implementation on Windows XP.
36136
36137         * m4/inet_pton.m4: New file.
36138
36139 2006-06-21  Simon Josefsson  <jas@extundo.com>
36140
36141         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
36142         variable.
36143
36144         * lib/socket_.h: Don't define WINVER.
36145
36146         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
36147         slightly modified to work in gnulib.
36148
36149 2006-06-21  Simon Josefsson  <jas@extundo.com>
36150
36151         * doc/gnulib.texi (Windows sockets): Add.
36152
36153 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
36154
36155         * lib/read-file.c (fread_file): Start with buffer allocation of
36156         0 bytes rather than 1 byte; this simplifies the code.
36157         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
36158         code to free buffer and save/restore errno.
36159         (internal_read_file): Remove unused local.
36160
36161 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
36162
36163         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
36164         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
36165         Problem reported by Denis Excoffier in
36166         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
36167
36168 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
36169
36170         * modules/sys_socket, modules/socklen: Include sys/types since
36171         FreeBSD 4.x's sys/socket.h needs it.
36172
36173 2006-06-19  Simon Josefsson  <jas@extundo.com>
36174
36175         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
36176
36177 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
36178
36179         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
36180
36181 2006-06-19  Bruno Haible  <bruno@clisp.org>
36182
36183         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
36184         and FULL_PATH_INTTYPES_H in angle brackets.
36185         Reported by Mark D. Baushke <mdb@gnu.org>.
36186
36187 2006-06-17  Eric Blake  <ebb9@byu.net>
36188
36189         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
36190         errno.
36191
36192 2006-06-17  Bruno Haible  <bruno@clisp.org>
36193
36194         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
36195         <sys/inttypes.h>.
36196
36197 2006-06-17  Bruno Haible  <bruno@clisp.org>
36198
36199         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
36200         whether errno is declared. Assume <errno.h> declares errno.
36201
36202 2006-06-17  Bruno Haible  <bruno@clisp.org>
36203
36204         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
36205
36206 2006-06-17  Bruno Haible  <bruno@clisp.org>
36207
36208         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
36209         problem on Solaris 2.5.1.
36210
36211 2006-06-16  Eric Blake  <ebb9@byu.net>
36212
36213         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
36214         * lib/unicodeio.c [!defined errno]: Likewise.
36215         * lib/strtol.c [!defined errno]: Likewise.
36216         * lib/strtod.c [!defined errno]: Likewise.
36217
36218 2006-06-15  Eric Blake  <ebb9@byu.net>
36219
36220         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
36221
36222 2006-06-15  Eric Blake  <ebb9@byu.net>
36223
36224         * config/srclist.txt (ssize_t.m4): Lose sync.
36225
36226 2006-06-15  Bruno Haible  <bruno@clisp.org>
36227
36228         * modules/stdint (Files): Include m4/full-header-path.m4,
36229         m4/size_max.m4, m4/wchar_t.m4.
36230         (Makefile.am): Many more substitutions.
36231         * modules/stdint-tests: New file.
36232         * tests/test-stdint.c: New file.
36233
36234 2006-06-15  Bruno Haible  <bruno@clisp.org>
36235
36236         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
36237         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
36238         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
36239         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
36240         gl_CHECK_TYPE_SAME): New macros.
36241
36242 2006-06-15  Bruno Haible  <bruno@clisp.org>
36243
36244         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
36245
36246 2006-06-15  Bruno Haible  <bruno@clisp.org>
36247
36248         * lib/stdint_.h: Rewritten to be fully auto-configured.
36249         Fixes bug on HP-UX/IA64.
36250
36251 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
36252
36253         * lib/getdate.y (__attribute__): Don't define if already defined.
36254         Problem reported by Larry Jones.
36255         * lib/utimens.c (__attribute__): Likewise.
36256
36257 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
36258
36259         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
36260         reported by Andreas Schwab.
36261
36262 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36263             Bruno Haible  <bruno@clisp.org>
36264
36265         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
36266         check for the declaration of strnlen and a run test that exposes the
36267         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
36268         rpl_strndup.
36269
36270 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36271             Bruno Haible  <bruno@clisp.org>
36272
36273         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
36274
36275 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36276
36277         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
36278         compile test, for Tru64 4.0D.
36279
36280 2006-05-28  Karl Berry  <karl@gnu.org>
36281
36282         * config/srclist.txt (printf-args.c): lose sync.
36283
36284 2006-05-26  Martin Lambers  <marlam@marlam.de>
36285
36286         * lib/getpass.c: Updates the test for the native W32 API, and adds
36287         missing includes, thus fixing compilation warnings.
36288
36289 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
36290
36291         * lib/exclude.c (exclude_fnmatch): New function.
36292         (excluded_file_name): Call exclude_fnmatch.
36293         * lib/exclude.h (excluded_file_name): New prototype
36294
36295 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
36296
36297         * lib/tempname.c (small_open, large_open): New macros.
36298         (__open, __open64) [!_LIBC]: Remove.
36299         (__gen_tempname): Use small_open and large_open instead of __open
36300         and __open64.  This fixes a portability bug on HP-UX 11.11i
36301         reported by Simon Wing-Tang in
36302         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
36303
36304 2006-05-24  Bruno Haible  <bruno@clisp.org>
36305
36306         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
36307         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
36308         Reported by Thorsten Maerz <torte@netztorte.de> via
36309         Aaron Stone <aaron@serendipity.cx>.
36310
36311 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
36312
36313         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
36314         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
36315         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
36316         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
36317         not really conditional on the cache.
36318         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
36319
36320 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
36321
36322         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
36323         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
36324         (my_usleep): Don't mishandle maximum value.
36325
36326 2006-05-19  Jim Meyering  <jim@meyering.net>
36327
36328         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
36329
36330 2006-05-17  Bruno Haible  <bruno@clisp.org>
36331
36332         Cygwin portability.
36333         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
36334
36335 2006-05-17  Bruno Haible  <bruno@clisp.org>
36336
36337         * lib/stdint_.h: Fix recognition of Cygwin.
36338
36339 2006-05-15  Bruno Haible  <bruno@clisp.org>
36340
36341         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
36342         on libtool patch by Ralf Wildenhues.
36343
36344 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
36345
36346         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
36347         test for C99 conformance; (bool) 0.5 is an integer constant
36348         expression, but (bool) -0.5 is not.  Problem reported by Fedor
36349         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
36350
36351 2006-05-11  Simon Josefsson  <jas@extundo.com>
36352
36353         * m4/xvasprintf.m4: Fix obvious typo.
36354
36355 2006-05-11  Jim Meyering  <jim@meyering.net>
36356
36357         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
36358         James Lemley.
36359
36360 2006-05-10  Simon Josefsson  <jas@extundo.com>
36361
36362         * lib/md4.c: Typo fix, update copyright years.
36363         (K1, K2): Don't use L because it turn computations into 64-bit on
36364         64-bit platforms.
36365
36366 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
36367
36368         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
36369         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
36370         unwanted sign propagation, e.g., on hosts with 64-bit int.
36371         There still are some problems with reeelly weird theoretical hosts
36372         (e.g., 33-bit int) but it's not worth worrying about now.
36373         * lib/sha1.c (rol): Likewise.
36374         (K1, K2, K3, K4): Remove unnecessary L suffix.
36375
36376 2006-05-10  Bruno Haible  <bruno@clisp.org>
36377
36378         * lib/des.c: Cast to avoid warnings.
36379
36380 2006-05-09  Bruno Haible  <bruno@clisp.org>
36381
36382         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
36383         (Depends-on): Depend also on xsize, stdarg.
36384         (configure.ac): Add gl_XVASPRINTF.
36385
36386 2006-05-09  Bruno Haible  <bruno@clisp.org>
36387
36388         * m4/xvasprintf.m4: New file.
36389
36390 2006-05-09  Bruno Haible  <bruno@clisp.org>
36391
36392         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
36393         (EOVERFLOW): Define fallback value.
36394         (xstrcat): New function.
36395         (xvasprintf): Recognize the special case of a string concatenation.
36396
36397 2006-05-08  Eric Blake  <ebb9@byu.net>
36398
36399         * gnulib-tool (func_version): Base copyright year on CVS date.
36400         (func_emit_copyright_notice): New function.
36401         (func_emit_lib_Makefile_am): Use it.
36402         (func_emit_tests_Makefile_am): Likewise.
36403         (func_import): Likewise.
36404
36405 2006-05-08  Bruno Haible  <bruno@clisp.org>
36406
36407         * modules/stdarg: New file.
36408         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
36409
36410 2006-05-08  Bruno Haible  <bruno@clisp.org>
36411
36412         * m4/stdarg.m4: New file, from GNU gettext.
36413
36414 2006-05-08  Bruno Haible  <bruno@clisp.org>
36415
36416         * config/srclist.txt (build-aux/config.rpath): different from latest
36417         release.
36418
36419 2006-05-08  Bruno Haible  <bruno@clisp.org>
36420
36421         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
36422
36423 2006-05-05  Jim Meyering  <jim@meyering.net>
36424
36425         * m4/warning.m4: New file, derived from bison's file by the same name.
36426
36427 2006-05-03  Bruno Haible  <bruno@clisp.org>
36428
36429         * lib/stdint_.h: Shorter URL.
36430         * lib/inttypes.h: Likewise.
36431
36432 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
36433
36434         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
36435
36436 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
36437
36438         * lib/verify.h: Document the internals better.  Most of this change
36439         was written by Bruno Haible.
36440
36441 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
36442
36443         * doc/verify.texi: New file, partly based on a proposal by
36444         Bruno Haible.
36445
36446 2006-05-02  Bruno Haible  <bruno@clisp.org>
36447
36448         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
36449         test from here...
36450         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
36451
36452 2006-04-29  Bruno Haible  <bruno@clisp.org>
36453
36454         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
36455         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
36456
36457 2006-04-29  Bruno Haible  <bruno@clisp.org>
36458
36459         * gnulib-tool: Make --update option actually work.
36460
36461 2006-04-29  Bruno Haible  <bruno@clisp.org>
36462
36463         * doc/gcd.texi: New file.
36464         * doc/gnulib.texi: Include it.
36465
36466 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
36467
36468         * lib/getdate.y (get_date): When adding relative date, start with the
36469         initial time, not with the result of the first mktime call.
36470
36471 2006-04-25  Bruno Haible  <bruno@clisp.org>
36472
36473         * gnulib-tool (func_import): Output the include directives in three
36474         blocks, sorted separately.
36475         Reported by Ben Pfaff <blp@cs.stanford.edu>.
36476
36477 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
36478
36479         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
36480         to define main with arguments, for C++.  Reported by Eric Blake.
36481         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
36482         Prefer 'int main ()' to 'int main (void)', for C++.
36483         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
36484         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
36485         for 'main', for C99 and C++.
36486
36487 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
36488
36489         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
36490         Don't assume that exit status -1 is valid.
36491         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
36492         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
36493         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
36494         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
36495         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
36496         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
36497         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
36498         functions can be used without declaring them, or that you can
36499         exit with status -1.
36500         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
36501
36502 2006-04-24  Karl Berry  <karl@gnu.org>
36503
36504         * config/srclist.txt (longdouble.m4): sync lost.
36505
36506 2006-04-24  Eric Blake  <ebb9@byu.net>
36507
36508         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
36509
36510 2006-04-24  Bruno Haible  <bruno@clisp.org>
36511
36512         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
36513         poll() implementation in AIX.
36514         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36515
36516 2006-04-24  Bruno Haible  <bruno@clisp.org>
36517
36518         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
36519         assigned exactly once.
36520
36521 2006-04-23  Claudio Fontana  <claudio@gnu.org>
36522             Bruno Haible  <bruno@clisp.org>
36523
36524         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
36525         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
36526         for AM_CPPFLAGS.
36527
36528 2006-04-23  Bruno Haible  <bruno@clisp.org>
36529
36530         * modules/copy-file: Depend on unistd.
36531         * modules/execute: Likewise.
36532         * modules/fatal-signal: Likewise.
36533         * modules/findprog: Likewise.
36534         * modules/mkdtemp : Likewise.
36535         * modules/pipe: Likewise.
36536         * modules/wait-process: Likewise.
36537
36538 2006-04-23  Bruno Haible  <bruno@clisp.org>
36539
36540         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
36541         condition was already detected.
36542         Reported by Ben Pfaff <blp@cs.stanford.edu>.
36543
36544 2006-04-23  Bruno Haible  <bruno@clisp.org>
36545
36546         * lib/copy-file.c: Include <unistd.h> unconditionally.
36547         * lib/execute.c: Likewise.
36548         * lib/fatal-signal.c: Likewise.
36549         * lib/findprog.c: Likewise.
36550         * lib/mkdtemp.c: Likewise.
36551         * lib/pipe.h: Likewise.
36552         * lib/pipe.c: Likewise.
36553         * lib/wait-process.h: Likewise.
36554
36555 2006-04-23  Bruno Haible  <bruno@clisp.org>
36556
36557         * gnulib-tool (func_usage): Fix --import description. Document
36558         --update.
36559         (func_import): Create temporary file in a temporary directory, if
36560         --dry-run is specified. Silence errors from 'grep' when there are no
36561         m4 files in $m4dir.
36562         (func_create_testdir): Silence errors from 'grep' when there are no
36563         m4 files in $m4dir.
36564         Reported by Karl Berry <karl@freefriends.org>.
36565
36566 2006-04-20  Bruno Haible  <bruno@clisp.org>
36567
36568         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
36569         one argument, so that the code will be portable to Autoconf 2.60.
36570         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
36571         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
36572         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
36573
36574 2006-04-19  Derek Price  <derek@ximbiot.com>
36575             Eric Blake  <ebb9@byu.net>
36576
36577         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
36578         rather than "/full/path.h".  Update comment to match.  Shorten &
36579         generalize m4_translit call via AS_TR_CPP.
36580
36581 2006-04-19  Derek Price  <derek@ximbiot.com>
36582             Eric Blake  <ebb9@byu.net>
36583
36584         * lib/inttypes.h: Correct grammar in comment.
36585
36586 2006-04-18  Derek Price  <derek@ximbiot.com>
36587             Paul Eggert  <eggert@cs.ucla.edu>
36588
36589         * modules/inttypes: New file.
36590         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
36591
36592 2006-04-18  Derek Price  <derek@ximbiot.com>
36593             Paul Eggert  <eggert@cs.ucla.edu>
36594
36595         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
36596         New files.
36597
36598 2006-04-18  Derek Price  <derek@ximbiot.com>
36599             Paul Eggert  <eggert@cs.ucla.edu>
36600
36601         * lib/inttypes.h: New file.
36602         * lib/strtoimax.c: Assume <inttypes.h>.
36603
36604 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
36605
36606         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
36607         isn't mounted.  Problem reported by Kir Kolyshkin.
36608
36609 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
36610
36611         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
36612         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
36613         Derek R. Price.
36614         * lib/regex.h (RE_DUP_MAX): Update comment to match current
36615         implementation.
36616
36617 2006-04-12  Eric Blake  <ebb9@byu.net>
36618
36619         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
36620         is now done automatically by the corresponding Autoconf macro.
36621
36622 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
36623
36624         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
36625         time_r.h.
36626
36627 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
36628
36629         Merge regex changes from libc, removing some of our
36630         POSIX-conformance changes that were rejected and redoing them in a
36631         less-intrusive way.
36632
36633         * lib/regcomp.c (re_compile_internal, init_dfa):
36634         Length arg is now size_t, not Idx.  All uses changed.
36635         (peek_token): Forward decl now says internal_function.
36636         (__re_error_msgid, __re_error_msgid_idx):
36637         Now static rather than extern with attribute_hidden.
36638         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
36639         For some reason libc prefers K&R style defns for external functions.
36640         (regerror) [!defined _LIBC]: Likewise.
36641         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
36642         (seek_collating_symbol_entry, lookup_collation_sequence_value):
36643         (build_range_exp, build_collating_symbol):
36644         Use K&R-style defn.
36645         (re_compile_fastmap): Use '\0' to memset, not 0.
36646         (utf8_sb_map): Make the calculations more obvious.
36647         (init_dfa, parse_bracket_exp, build_charclass_op):
36648         Call calloc and cast result, as glibc does.
36649         (init_word_char, fetch_token, peek_token, peek_token_bracket):
36650         (build_range_exp, build_collating_symbol):
36651         Now internal functions.
36652
36653         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
36654
36655         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
36656         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
36657         Don't depend on VMS; depend on __VMS instead, for POSIX
36658         namespace cleanness.
36659         (regoff_t): Define to ssize_t, not long int.
36660
36661         Remove the REG_ macros named below.  Instead, make the old names
36662         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
36663         __USE_GNU_REGEX.
36664         (REG_BACKSLASH_ESCAPE_IN_LISTS):
36665         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
36666         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
36667         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
36668         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
36669         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
36670         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
36671         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
36672         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
36673         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
36674         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
36675         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
36676         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
36677         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
36678         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
36679         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
36680         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
36681         (REG_NREGS):
36682         Remove.  All uses replaced by the old RE_* names.
36683         (RE_BACKSLASH_ESCAPE_IN_LISTS):
36684         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
36685         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
36686         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
36687         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
36688         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
36689         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
36690         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
36691         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
36692         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
36693         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
36694         Don't bother having these macros be independent of each others'
36695         values, since they no longer exist in the POSIX name space.
36696
36697         Rename the following member names back to their old names,
36698         unless !__USE_GNU_REGEX.  All uses changed back.
36699         (buffer): Renamed from re_buffer.
36700         (allocated): Renamed from re_allocated.
36701         (used): Renamed from re_used.
36702         (syntax): Renamed from re_syntax.
36703         (fastmap): Renamed from re_fastmap.
36704         (translate): Renamed from re_translate.
36705         (can_be_null): Renamed from re_can_be_null.
36706         (regs_allocated): Renamed from re_regs_allocated.
36707         (fastmap_accurate): Renamed from re_fastmap_accurate.
36708         (no_sub): Renamed from re_no_sub.
36709         (not_bol): Renamed from re_not_bol.
36710         (not_eol): Renamed from re_not_eol.
36711         (newline_anchor): Renamed from re_newline_anchor.
36712         (num_regs): Renamed from rm_num_regs.
36713         (start): Renamed from rm_start.
36714         (end): Renamed from rm_end.
36715
36716         (free_state): Move up a bit.
36717
36718         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
36719         #define to be empty.
36720         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
36721         when that is what is intended.
36722         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
36723         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
36724         (MAX): New macro.
36725         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
36726         All uses changed back to re_malloc, etc.  It's now the caller's
36727         responsibility to check for overflow; all callers changed.
36728         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
36729         (re_x2nrealloc): Remove.
36730         (free_state): Remove decl.
36731
36732         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
36733         (re_set_registers, re_exec):
36734         Use K&R-style defn.
36735
36736         2006-01-31  Roland McGrath  <roland@redhat.com>
36737
36738         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
36739         Reported by Mike Frysinger <vapier@gentoo.org>.
36740
36741         2006-01-15  Andreas Jaeger  <aj@suse.de>
36742
36743         [BZ #1950]
36744         * lib/regex_internal.c (re_string_reconstruct): Adjust for
36745         build_wcs_upper_buffer change.
36746         (build_wcs_upper_buffer): Change return type.
36747
36748         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
36749
36750         * lib/regex_internal.h: Include <stdint.h> if available.
36751
36752         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
36753
36754         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
36755
36756         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
36757
36758         * lib/regcomp.c: Adjust for changed secondary hash function.
36759
36760         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
36761
36762         * lib/regex.h: Pretty printing.
36763         Clean up namespace a bit.
36764
36765         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
36766
36767         * lib/regexec.c (update_cur_sifted_state, check_arrival,
36768         check_arrival_add_next_nodes): Avoid using uninitialized variable.
36769
36770         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
36771                     Ulrich Drepper  <drepper@redhat.com>
36772
36773         [BZ #1302]
36774         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
36775         changed.
36776         (bitset_word_t): Renamed from bitset_word.  All uses changed.
36777
36778         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
36779
36780         [BZ #281]
36781         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
36782         * lib/regcomp.c: Remove unnecessary uses of
36783         unsigned RE_TRANSLATE_TYPE.
36784         * lib/regex_internal.h: Likewise.
36785         * lib/regex_internal.c: Likewise.
36786         * lib/regexec.c: Likewise.
36787         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
36788
36789         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
36790
36791         * lib/regexec.c (find_recover_state): Remove unnecessary
36792         initialization.
36793         (transit_state_bkref): Make DFA a const pointer.
36794         (get_subexp): Likewise.
36795         (check_arrival): Likewise.
36796         (update_cur_sifted_state): Likewise.
36797         (re_search_internal): Likewise.
36798         (prune_impossible_nodes): Likewise.
36799         (acquire_init_state_context): Likewise.
36800         (proceed_next_node): Likewise.
36801         (set_regs): Likewise.
36802         (free_fail_stack_return): Likewise.
36803         (check_arrival_expand_ecl): Mark DFA parameter as const.
36804         (check_arrival_expand_ecl_sub): Likewise.
36805         (check_subexp_limits): Likewise.
36806         (sub_epsilon_src_nodes):  Likewise.
36807         (add_epsilon_src_nodes):  Likewise.
36808         (merge_state_array): Likewise.
36809         (update_regs): Likewise.
36810         (build_trtable): Likewise.
36811         (sift_states_backward): Mark MCTX parameter as const.
36812         (build_sifted_states): Likewise.
36813         (update_cur_sifted_state): Likewise.
36814         (sift_states_mkref): Likewise.
36815         (check_arrival_expand_ecl): Mark eclosure as const.
36816         (check_dst_limits_calc_pos_1): Likewise.
36817         * lib/regex_internal.h (re_match_context_t): Make dfa a const
36818         pointer.
36819
36820         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
36821
36822         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
36823         (transit_state_sb): Likewise.
36824         (transit_state_mb): Likewise.
36825         (sift_states_iter_mb): Likewise.
36826         (check_arrival_add_next_nodes): Likewise.
36827         (check_node_accept_bytes): Change first parameter to pointer-to-const.
36828         [_LIBC] (re_search_2_stub): Use mempcpy.
36829
36830         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
36831         mbrtowc for very simple UTF-8 case.
36832
36833         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
36834         a pointer-to-const.
36835         (re_acquire_state_context): Likewise.
36836         * lib/regex_internal.h: Adjust prototypes.
36837
36838         * lib/regex.c: Prevent using C++ compilers.
36839
36840         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
36841         (re_acquire_state_context): Likewise.
36842
36843 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
36844
36845         * modules/regex (Depends-on): Add ssize_t.
36846
36847 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
36848
36849         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
36850         translation table.
36851
36852 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
36853
36854         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
36855
36856 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
36857             Bruno Haible  <bruno@clisp.org>
36858
36859         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
36860         <sys/types.h> and <inttypes.h>.
36861
36862 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36863
36864         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
36865         `__error_t_defined', so argp.h will not typedef the former.
36866
36867 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
36868
36869         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
36870         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
36871         glibc names.  Even if glibc is changed to conform to POSIX, the
36872         traditional names will be available anyway, since regex depends on
36873         the extensions module.  Also, fix a longstanding typo in the
36874         implementation of Spencer ERE test #75 from grep 2.3.  Problems
36875         reported by Emanuele Giaquinta.  Also, change sense of cached
36876         variable, so that the message makes sense.
36877
36878 2006-03-24  Simon Josefsson  <jas@extundo.com>
36879
36880         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
36881         including some doc fixes.
36882         (base64_encode_alloc): Fix +1 bug on allocation failures.
36883
36884 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36885
36886         * lib/base64.c (base64_encode): Do not read past end of array with
36887         unsanitized input on systems with CHAR_BIT > 8.
36888
36889 2006-03-24  Eric Blake  <ebb9@byu.net>
36890
36891         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
36892
36893 2006-03-22  Karl Berry  <karl@gnu.org>
36894
36895         * config/srclist.txt (*setenv.[ch]): get from coreutils.
36896         * config/srclistvars.sh (COREUTILS): new var.
36897
36898 2006-03-17  Jim Meyering  <jim@meyering.net>
36899
36900         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
36901         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
36902
36903 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
36904
36905         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
36906         no longer needs it.  Instead, check that regoff_t is as least
36907         as wide as ptrdiff_t.
36908
36909         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
36910         so that our regex.h stays compatible with the installed regex.
36911         This is helpful for installers who configure --without-included-regex.
36912         Problem reported by Emanuele Giaquinta.
36913
36914 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
36915
36916         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
36917         Typedef to long int, not to off_, as POSIX will likely change
36918         in that direction.
36919
36920 2006-03-15  Eric Blake  <ebb9@byu.net>
36921
36922         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
36923
36924 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
36925
36926         * lib/argp-help.c (validate_uparams): Fix typo
36927         * lib/argp-parse.c (argp_default_options): Consistently begin help
36928         messages with a lowercase letter.
36929
36930 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
36931
36932         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
36933         overrun buffers and shouldn't be used (much as gets shouldn't be
36934         used).
36935         * lib/time_r.c (asctime_r, ctime_r): Likewise.
36936
36937 2006-03-08  Simon Josefsson  <jas@extundo.com>
36938
36939         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
36940         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36941
36942 2006-03-08  Simon Josefsson  <jas@extundo.com>
36943
36944         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
36945         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36946
36947 2006-03-08  Simon Josefsson  <jas@extundo.com>
36948
36949         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
36950         signal that configure disabled the device.
36951
36952 2006-03-08  Simon Josefsson  <jas@extundo.com>
36953
36954         * build-aux/maint.mk: Fix refresh-po, to handle no translated
36955         languages.
36956
36957 2006-03-07  Simon Josefsson  <jas@extundo.com>
36958
36959         * modules/getopt (Depends-on): Add unistd.
36960
36961         * modules/unistd: New file.
36962
36963 2006-03-07  Simon Josefsson  <jas@extundo.com>
36964
36965         * modules/gc-random: New file.
36966
36967 2006-03-07  Simon Josefsson  <jas@extundo.com>
36968
36969         * m4/unistd_h.m4: New file.
36970
36971 2006-03-07  Simon Josefsson  <jas@extundo.com>
36972
36973         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
36974         test to be side-effect free by storing the result in the cache
36975         variable gl_cv_lib_readline, and moving the assignment of
36976         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
36977         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36978
36979 2006-03-07  Simon Josefsson  <jas@extundo.com>
36980
36981         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
36982         error on missing devices (the functions will return an error).
36983
36984         * m4/gc.m4: Move random stuff to gc-random.m4
36985
36986 2006-03-07  Simon Josefsson  <jas@extundo.com>
36987
36988         * lib/unistd_.h: New file.
36989
36990 2006-03-07  Simon Josefsson  <jas@extundo.com>
36991
36992         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
36993
36994 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
36995
36996         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
36997         Problem reported by Juan Manuel Guerrero.
36998
36999 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
37000
37001         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
37002         the unistd module.
37003         * lib/getlogin_r.c: Likewise.
37004         * lib/getlogin_r.h: Likewise.
37005         * lib/glob.c: Likewise.
37006         * lib/pagealign_alloc.c: Likewise.
37007         * lib/unistd_.h: Remove; no longer needed.
37008
37009 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
37010
37011         * MODULES.html.sh (Support for systems lacking POSIX:2001):
37012         Add unistd.
37013         * modules/c-stack (Depends-on): Add unistd.
37014         * modules/getlogin_r: Likewise.
37015         * modules/glob: Likewise.
37016         * modules/pagealign_alloc: Likewise.
37017         * modules/unistd (Files): Remove lib/unistd_.h.
37018         (EXTRA_DIST): Remove.
37019         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
37020         need unistd_.h.
37021         (MOSTLYCLEANFILES): Remove unistd.h-t.
37022
37023 2006-03-03  Simon Josefsson  <jas@extundo.com>
37024
37025         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
37026
37027 2006-03-03  Simon Josefsson  <jas@extundo.com>
37028
37029         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
37030         libidn and bison.
37031
37032 2006-03-03  Simon Josefsson  <jas@extundo.com>
37033
37034         * build-aux/maint.mk: Add indent target.
37035
37036 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
37037
37038         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
37039         our replacement poll.h in any case, to avoid a differing
37040         declaration from a system header.  Seen on AIX.
37041
37042 2006-03-01  Simon Josefsson  <jas@extundo.com>
37043
37044         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
37045         <kasal@ucw.cz>.
37046
37047 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
37048
37049         * modules/gettime (Depends-on): Add extensions module.
37050         * modules/nanosleep (Depends-on): Likewise.
37051         * modules/settime (Depends-on): Likewise.
37052
37053 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
37054
37055         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
37056         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
37057         pedantically.
37058         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
37059         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
37060
37061         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
37062         not "==".  Reported by Ralf Wildenhues.
37063
37064 2006-03-01  Karl Berry  <karl@gnu.org>
37065
37066         * doc/Copyright/request-*: new files, synced from gnuorg.
37067
37068 2006-03-01  Karl Berry  <karl@gnu.org>
37069
37070         * config/srclist.txt (Copyright/*): new entries.
37071
37072 2006-02-28  Simon Josefsson  <jas@extundo.com>
37073
37074         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
37075
37076 2006-02-27  Simon Josefsson  <jas@extundo.com>
37077
37078         * lib/base64.h: Indent #define's.  From Jim Meyering
37079         <jim@meyering.net>.
37080
37081 2006-02-27  Jim Meyering  <jim@meyering.net>
37082
37083         Revert the change of 2006-02-24, so these files can continue
37084         to be sync'd from gettext.
37085         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
37086         of `config.h'.
37087
37088 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
37089
37090         * modules/intprops: New file.
37091         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
37092         Add intprops.
37093         * modules/getloadavg (Files): Remove lib/intprops.h.
37094         (Depends-on): Add intprops.
37095         * modules/human: Likewise.
37096         * modules/inttostr: Likewise.
37097         * modules/openat: Likewise.
37098         * modules/sig2str: Likewise.
37099         * modules/userspec: Likewise.
37100         * modules/utimecmp: Likewise.
37101         * modules/xnanosleep: Likewise.
37102         * modules/xstrtol: Likewise.
37103
37104 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
37105
37106         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
37107         * modules/lock-tests (TESTS): Use $(EXEEXT).
37108         * modules/tls-tests: Likewise.
37109         * modules/argp-tests: Likewise.
37110         (check_PROGRAMS): New var, replacing...
37111         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
37112
37113 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37114
37115         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
37116         `config.h'.
37117
37118 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
37119
37120         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
37121
37122 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37123
37124         Sync from coreutils.
37125         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
37126         gl_CHDIR_SAFER.
37127
37128 2006-02-22  Jim Meyering  <jim@meyering.net>
37129
37130         Sync from coreutils.
37131         * m4/chdir-safer.m4: New file.
37132
37133 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
37134
37135         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
37136         AT_FDCWD exceeds INT_MAX.
37137         * lib/openat.h (AT_FDCWD): Likewise.
37138
37139 2006-02-17  Eric Blake  <address@hidden>
37140
37141         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
37142
37143 2006-02-16  Simon Josefsson  <jas@extundo.com>
37144
37145         * modules/getaddrinfo (Depends-on): Add sys_socket.
37146
37147 2006-02-15  Simon Josefsson  <jas@extundo.com>
37148
37149         * build-aux/maint.mk: Add dsyntax-check rule.
37150
37151 2006-02-15  Eric Blake  <ebb9@byu.net>
37152
37153         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
37154         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
37155         'present but cannot compile' warnings on cygwin.
37156         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
37157         use ws2tcpip.h if sys/socket.h works.
37158         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
37159         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
37160
37161 2006-02-14  Simon Josefsson  <jas@extundo.com>
37162
37163         * modules/maintainer-makefile (Files): Rename.
37164
37165         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
37166         and (the local) Makefile.cfg to maint-cfg.mk.
37167
37168         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
37169         to the latter.
37170
37171         * modules/maintainer-makefile: New module.
37172
37173         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
37174         severaly stripped to make it possible to build it up from scratch
37175         with reliable tests.
37176
37177         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
37178         fixes to permit overriding the default actions when configure and
37179         makefile are not available.
37180
37181 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
37182
37183         Sync from coreutils.
37184         * modules/lstat (Depends-on): Don't depend on xalloc.
37185         (License): Change from GPL to LGPL, since this is now simply a
37186         replacement for a libc function.
37187
37188 2006-02-14  Jim Meyering  <jim@meyering.net>
37189
37190         Sync from coreutils.
37191
37192         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
37193         failure on deficient systems, and simplify gnulib lgpl dependencies.
37194         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
37195         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
37196
37197         * lib/xalloc-die.c: Remove unused definition of N_.
37198
37199 2006-02-14  Jim Meyering  <jim@meyering.net>
37200
37201         Sync from coreutils.
37202         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
37203         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
37204         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
37205         double-quote uses of that variable, to accommodate the rare case in
37206         which getmntent is available in none of the libraries checked.  This
37207         happens at least on FreeBSD 5.0.
37208
37209 2006-02-13  Simon Josefsson  <jas@extundo.com>
37210
37211         * gnulib-tool (Usage): Fix --import, from
37212         karl@freefriends.org (Karl Berry).
37213
37214 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
37215
37216         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
37217
37218 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
37219
37220         * lib/argp-namefrob.h: Restore changes accidentally lost during the
37221         "autoupdate" on 2005-12-12.
37222
37223 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
37224
37225         * modules/closeout (Depends-on): Remove atexit.
37226
37227 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
37228
37229         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
37230         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
37231
37232 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
37233
37234         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
37235         __EXTENSIONS__ if this causes compilation to fail.  Problem
37236         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
37237         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
37238
37239 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
37240
37241         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
37242         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
37243         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
37244         All uses changed.
37245
37246 2006-01-26  Simon Josefsson  <jas@extundo.com>
37247
37248         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
37249         prototype is visible on mingw32.
37250
37251         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
37252         for mingw32.
37253
37254         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
37255         mingw32).
37256
37257 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
37258
37259         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
37260         attempt to open for write; this always fails, at least on POSIX
37261         hosts.  This reinstates the 2006-01-09 change, which was
37262         inadvertently removed.
37263
37264 2006-01-26  Bruno Haible  <bruno@clisp.org>
37265
37266         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
37267         Reported by Paul Eggert.
37268
37269 2006-01-26  Bruno Haible  <bruno@clisp.org>
37270             Paul Eggert  <eggert@cs.ucla.edu>
37271
37272         * lib/stdbool_.h (_Bool)
37273         [(! (defined __cplusplus || defined __BEOS__)
37274           && !defined __GNUC__
37275           && !(defined __HP_cc || defined __xlc__
37276                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
37277                || defined __sgi))]:
37278         #define to signed char in these cases too; this simplifies
37279         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
37280         etc., separately) and makes it more conservative.
37281
37282 2006-01-25  Simon Josefsson  <jas@extundo.com>
37283
37284         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
37285         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
37286         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
37287
37288 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
37289
37290         * lib/argp-namefrob.h: Bugfix. Remove stray #
37291
37292 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
37293
37294         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
37295         so that we test the test.
37296         Check for yet another HP-UX cc bug involving *bool |= bool.
37297
37298 2006-01-25  Karl Berry  <karl@gnu.org>
37299
37300         * config/srclist.txt (vasnprintf.c): sync lost.
37301
37302 2006-01-25  Jim Meyering  <jim@meyering.net>
37303
37304         Sync from the stable (b5) branch of coreutils:
37305
37306         * lib/fts.c (fts_children): Don't let close() clobber errno from
37307         failed fchdir().
37308
37309         * lib/fts.c (fts_stat): When following a symlink-to-directory,
37310         don't necessarily interpret stat-fails+lstat-succeeds as indicating
37311         a dangling symlink.  That can also happen at least for ELOOP.
37312         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
37313         FYI, this bug predates the inclusion of fts.c in coreutils.
37314
37315         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
37316         in their own block, so pre-c99 compilers don't object.
37317
37318         Avoid the double-free (first in fts_read, second in fts_close) that
37319         would occur when an `active' directory is made inaccessible (e.g.,
37320         via chmod a-x) during a traversal.
37321         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
37322         before returning.  Reproduce this failure by
37323         mkdir -p a/b; cd a; chmod a-x . b
37324         Reported by Stavros Passas.
37325
37326 2006-01-25  Jim Meyering  <jim@meyering.net>
37327
37328         * lib/fileblocks.c: Remove more useless parentheses.
37329         * lib/readutmp.h: Likewise.
37330
37331 2006-01-25  Bruno Haible  <bruno@clisp.org>
37332
37333         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
37334         warnings.
37335         Reported by Paul Eggert.
37336
37337 2006-01-25  Bruno Haible  <bruno@clisp.org>
37338
37339         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
37340         rid of a trap command. For Solaris sh.
37341         Reported by Mark D. Baushke <mdb@gnu.org>.
37342
37343 2006-01-24  Simon Josefsson  <jas@extundo.com>
37344
37345         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
37346         Bruno.
37347
37348 2006-01-24  Karl Berry  <karl@gnu.org>
37349
37350         * config/srclist.txt (argp-namefrob.h): sync lost.
37351
37352 2006-01-24  Jim Meyering  <jim@meyering.net>
37353
37354         * modules/openat (Files): Add lib/intprops.h.
37355         From Mark D. Baushke.
37356
37357 2006-01-24  Jim Meyering  <jim@meyering.net>
37358
37359         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
37360         Reported by Mark D. Baushke.
37361
37362 2006-01-24  Jim Meyering  <jim@meyering.net>
37363
37364         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
37365
37366 2006-01-24  Bruno Haible  <bruno@clisp.org>
37367
37368         * modules/strnlen (Maintainer): Change from glibc to all.
37369
37370 2006-01-24  Bruno Haible  <bruno@clisp.org>
37371
37372         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
37373         Patch by Paul Eggert.
37374
37375 2006-01-24  Bruno Haible  <bruno@clisp.org>
37376
37377         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
37378         already has it.
37379         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
37380         2005-11-26.
37381
37382         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
37383         'signed char' to avoid problems with the built-in _Bool type.
37384         Reported by Paul Eggert on 2005-11-26.
37385
37386 2006-01-24  Bruno Haible  <bruno@clisp.org>
37387
37388         * gnulib-tool (func_import): Avoid constructing complicated sed
37389         expressions inside backquote.
37390         Report and solution by Mark D. Baushke <mdb@gnu.org>.
37391
37392 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
37393
37394         These changes imported from libc.
37395         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
37396         test and two separate function calls.
37397         * lib/strndup.c (__strndup): Add libc_hidden_def.
37398
37399 2006-01-23  Simon Josefsson  <jas@extundo.com>
37400
37401         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
37402         Remove the test_*_SOURCES variable: automake infers it by default.
37403         * modules/tls-tests: Likewise.
37404
37405 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
37406
37407         Work around porting bugs reported by Dieter in
37408         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
37409         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
37410         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
37411         Include "getopt.h" first, to check interface.
37412         (getenv): Declare only if defined HAVE_DECL_GETENV &&
37413         !HAVE_DECL_GETENV.
37414         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
37415         (__strndup): Revert to K&R-style function dfns, the glibc style.
37416         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
37417         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
37418         Include strnlen.h first, to get prototype properly.
37419         (strnlen): Renamed from __strnlen.
37420         Remove weak alias.
37421
37422 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
37423
37424         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
37425
37426 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
37427
37428         * config/srclist.txt: Adjust to reflect glibc reorganization.
37429         This affects only comments.
37430
37431 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
37432
37433          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
37434          Reported by Bruce Korb <bkorb@gnu.org>.
37435
37436 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
37437
37438         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
37439         to pacify gcc -Wswitch-default.
37440
37441 2006-01-22  Bruno Haible  <bruno@clisp.org>
37442
37443         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
37444         temporary buffer for sprintf, take into account the precision also
37445         for 'd', 'i', 'u', 'o', 'x', 'X'.
37446
37447 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
37448
37449         * modules/argp-tests: New module
37450         * tests/test-argp.c: New file
37451         * tests/test-argp-2.sh: New file
37452
37453 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
37454
37455         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
37456         (__argp_base_name): Removed
37457         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
37458         typo.
37459         (__argp_base_name): Provide macro definition or extern declaration
37460         depending on the configuration
37461
37462 2006-01-20  Simon Josefsson  <jas@extundo.com>
37463
37464         * modules/inet_ntop (Depends-on): Depend on sys_socket.
37465
37466 2006-01-20  Simon Josefsson  <jas@extundo.com>
37467
37468         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
37469
37470 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
37471
37472         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
37473         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
37474         Suggested by Bruno Haible.
37475
37476 2006-01-20  Karl Berry  <karl@gnu.org>
37477
37478         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
37479         until changes propagate, I guess.
37480
37481 2006-01-19  Simon Josefsson  <jas@extundo.com>
37482
37483         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
37484
37485 2006-01-19  Simon Josefsson  <jas@extundo.com>
37486
37487         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
37488
37489 2006-01-19  Simon Josefsson  <jas@extundo.com>
37490
37491         * gnulib-tool: Set check_PROGRAMS.
37492
37493         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
37494         modules/des-tests, modules/gc-arcfour-tests,
37495         modules/gc-arctwo-tests, modules/gc-des-tests,
37496         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
37497         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
37498         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
37499         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
37500         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
37501         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
37502         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
37503         test_*_SOURCES.
37504
37505 2006-01-18  Simon Josefsson  <jas@extundo.com>
37506
37507         * modules/socklen (Depends-on): Depend on sys_socket.
37508
37509 2006-01-18  Simon Josefsson  <jas@extundo.com>
37510
37511         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
37512         modules/des-tests, modules/gc-arcfour-tests,
37513         modules/gc-arctwo-tests, modules/gc-des-tests,
37514         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
37515         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
37516         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
37517         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
37518         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
37519         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
37520         $(EXEEXT) to automake TESTS variable, for mingw32.
37521
37522 2006-01-17  Simon Josefsson  <jas@extundo.com>
37523
37524         * modules/socklen (Include): Need sys/socket.h.
37525
37526 2006-01-17  Bruno Haible  <bruno@clisp.org>
37527
37528         * modules/ssize_t (Include): Add <sys/types.h>.
37529
37530 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
37531
37532         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
37533         it's not portable and it doesn't work with cross-compiles.
37534         Problem reported by Bruno Haible.  Fix missing-$ typo in
37535         'test "gl_cv_ignore_unused_libraries" ...' that prevented
37536         -zignore from being used with Sun's C compiler.
37537
37538 2006-01-12  Simon Josefsson  <jas@extundo.com>
37539
37540         * lib/base64.c: Fix warning, reported by Bruno Haible
37541         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
37542
37543 2006-01-12  Bruno Haible  <bruno@clisp.org>
37544
37545         * modules/ldd: New file.
37546         * build-aux/ldd.sh.in: New file.
37547         * MODULES.html.sh (Support for building libraries and executables): Add
37548         ldd.
37549
37550 2006-01-12  Bruno Haible  <bruno@clisp.org>
37551
37552         * m4/ldd.m4: New file.
37553
37554 2006-01-12  Bruno Haible  <bruno@clisp.org>
37555
37556         * gnulib-tool (func_import, func_create_testdir): Don't go into an
37557         endless loop while replacing $auxdir with build-aux.
37558
37559 2006-01-11  Simon Josefsson  <jas@extundo.com>
37560
37561         * lib/stdint_.h (SIZE_MAX): Add missing (.
37562
37563 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
37564
37565         Sync from coreutils.
37566         * lib/md5.c: Fix commentary typos.
37567         (alignof, UNALIGNED_P): No need for a GCC-specific version.
37568         * lib/md5.h (__attribute__): Remove; unused.
37569         * lib/sha1.c: Fix commentary to match md5 better.
37570         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
37571         so that we don't need to worry about alignment.  All uses changed.
37572         This merges the 2005-10-28 md5 change into sha1.
37573
37574 2006-01-11  Jim Meyering  <jim@meyering.net>
37575
37576         Sync from coreutils.
37577         * lib/md5.c (OP): Fix spacing.
37578
37579 2006-01-11  Bruno Haible  <bruno@clisp.org>
37580
37581         Ensure automatic ordering between gl_LOCK and gl_ARGP.
37582         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
37583         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
37584
37585 2006-01-11  Bruno Haible  <bruno@clisp.org>
37586
37587         Ensure automatic ordering between gl_LOCK and gl_ARGP.
37588         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
37589         the "early" section as well.
37590
37591 2006-01-11  Bruno Haible  <bruno@clisp.org>
37592
37593         Avoid "ar: no archive members specified" error on MacOS X.
37594         * gnulib-tool (func_modules_add_dummy): New function.
37595         (func_import, func_create_testdir): Invoke it.
37596
37597 2006-01-11  Bruno Haible  <bruno@clisp.org>
37598
37599         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
37600         with $auxdir in AC_CONFIG_FILES statements.
37601
37602 2006-01-11  Bruno Haible  <bruno@clisp.org>
37603
37604         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37605         Initialize also noinst_HEADERS to empty.
37606
37607 2006-01-11  Bruno Haible  <bruno@clisp.org>
37608
37609         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
37610         variables.
37611         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
37612         autoreconf.
37613
37614 2006-01-11  Bruno Haible  <bruno@clisp.org>
37615
37616         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
37617         overridable by the user.
37618         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
37619
37620 2006-01-10  Simon Josefsson  <jas@extundo.com>
37621
37622         * modules/sys_socket: New file.
37623
37624 2006-01-10  Simon Josefsson  <jas@extundo.com>
37625
37626         * m4/sys_socket_h.m4: New file.
37627
37628 2006-01-10  Simon Josefsson  <jas@extundo.com>
37629
37630         * lib/socket_.h: New file.
37631
37632 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
37633
37634         * modules/readutmp (Maintainer): Add myself.
37635
37636 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
37637
37638         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
37639         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
37640         People who are still concerned with buggy memcmp implementations
37641         can invoke gl_FUNC_MEMCMP themselves.
37642
37643 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
37644
37645         * lib/regex_internal.h (BITSET_WORD_BITS):
37646         Work around a bug in 64-bit PGC (before version 6.1-2), where the
37647         preprocessor mishandles large unsigned values as if they were signed.
37648         Problem reported by Claudio Fontana in
37649         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
37650
37651 2006-01-10  Jim Meyering  <jim@meyering.net>
37652
37653         Avoid the double-free (first in fts_read, second in fts_close) that
37654         would occur when an `active' directory is made inaccessible (e.g.,
37655         via chmod a-x) during a traversal.
37656         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
37657         before returning.  Reproduce this failure by
37658         mkdir -p a/b; cd a; chmod a-x . b
37659         Reported by Stavros Passas.
37660
37661         Sync from coreutils.
37662         * lib/sha1.c: Tweak grammar in a comment.
37663
37664 2006-01-10  Jim Meyering  <jim@meyering.net>
37665
37666         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
37667         Patch by Joerg Sonnenberger.
37668
37669 2006-01-10  Bruno Haible  <bruno@clisp.org>
37670
37671         * modules/readutmp: Depend on module free.
37672         * modules/strtok_r: Depend on module restrict.
37673
37674 2006-01-10  Bruno Haible  <bruno@clisp.org>
37675
37676         * modules/gettext (configure.ac): Add an invocation of
37677         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
37678
37679 2006-01-10  Bruno Haible  <bruno@clisp.org>
37680
37681         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
37682         Reported by Werner Lemberg <wl@gnu.org>.
37683
37684 2006-01-10  Bruno Haible  <bruno@clisp.org>
37685
37686         * lib/localcharset.c: Update from GNU gettext.
37687
37688 2006-01-10  Bruno Haible  <bruno@clisp.org>
37689
37690         * lib/argp.h (__const): Remove macro. Use const instead.
37691         * lib/argp-fmtstream.h (__const): Likewise.
37692         * lib/glob_.h (__const): Remove macro.
37693         * lib/glob-libc.h: Use const instead of __const.
37694
37695 2006-01-10  Bruno Haible  <bruno@clisp.org>
37696
37697         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
37698         variable.
37699         Needed to avoid an automake error regarding the 'gettext' module.
37700
37701 2006-01-09  Simon Josefsson  <jas@extundo.com>
37702
37703         * modules/inet_ntop (Depends-on): Add restrict.
37704
37705 2006-01-09  Simon Josefsson  <jas@extundo.com>
37706
37707         * modules/gc-rijndael-tests (License): Put under LGPL.
37708
37709         * modules/gc-des-tests (License): Likewise.
37710
37711         * modules/gc-arcfour-tests (License): Likewise.
37712
37713         * modules/gc-arctwo-tests (License): Likewise.
37714
37715         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
37716
37717         * modules/gc-hmac-sha1-tests (Files): Likewise.
37718
37719         * modules/gc-hmac-md5-tests (License): Likewise.
37720
37721         * modules/gc-sha1-tests (License): Likewise.
37722
37723         * modules/gc-md5-tests (License): Likewise.
37724
37725         * modules/gc-md4-tests (License): Likewise.
37726
37727         * modules/gc-md2-tests (License): Likewise.
37728
37729         * modules/gc-tests (License): Likewise.
37730
37731         * modules/des-tests (License): Likewise.
37732
37733         * modules/md4-tests (License): Likewise.
37734
37735         * modules/md2-tests (License): Likewise.
37736
37737 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
37738
37739         Sync from coreutils:
37740
37741         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
37742         * modules/lib-ignore: New file.
37743         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
37744         chdir-safer.m4, lchmod.m4.
37745         * modules/openat: Add mkdirat.c, openat-priv.h.
37746
37747 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
37748
37749         Sync from coreutils.
37750         * m4/lib-ignore.m4: New file.
37751         * m4/lchmod.m4: New file.
37752
37753 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
37754
37755         Sync from coreutils.
37756         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
37757         for write access: POSIX says that must fail.
37758         * lib/fts.c (diropen): Likewise.
37759         * lib/save-cwd.c (save_cwd): Likewise.
37760         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
37761         well, for minor improvements on hosts that lack O_DIRECTORY.
37762         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
37763         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
37764         Fall back on chown if open failed with EACCES.
37765
37766         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
37767         Report an error at compile-time if only a 1-second nominal clock
37768         resolution is found.
37769
37770         * lib/lchmod.h: New file.
37771         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
37772         (make_dir_parents): Use lchown rather than chown, and
37773         lchmod rather than chmod.
37774
37775         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
37776         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
37777         "proc" reported by n0dalus.
37778
37779         * lib/mountlist.c: Include <limits.h>.
37780         (dev_from_mount_options)
37781         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
37782         New function.  It no longer assumes "dev=" has the System V meaning
37783         on Linux (since it doesn't).  It also parses "dev=" more carefully.
37784         (read_file_system_list)
37785         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
37786         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
37787         dev= in that case.
37788
37789         * lib/posixtm.h (PDS_PRE_2000): New macro.
37790         * lib/posixtm.c (year): Arg is now syntax_bits rather than
37791         allow_century.  All usages changed.  Reject dates outside the range
37792         1969-1999 if PDS_PRE_2000 is used.
37793
37794 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
37795
37796         Sync from coreutils.
37797         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
37798         (Time of day items): Mention the possibility of leap seconds.
37799         Problem reported by Dr. David Alan Gilbert.
37800
37801 2006-01-09  Jim Meyering  <jim@meyering.net>
37802
37803         Sync from coreutils.
37804
37805         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
37806
37807         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
37808
37809         * lib/modechange.c (mode_compile): Reject an invalid mode string
37810         that starts with an octal digit.  From Andreas Gruenbacher.
37811
37812         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
37813         and dup to open_safer and dup_safer, respectively.
37814         (openat_permissive): Fix typo in comment.
37815
37816         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
37817         "gettext.h"; either no longer needed or are guaranteed by openat.h.
37818         (_): Remove; no longer needed.
37819         (openat): Renamed from rpl_openat; no need for rpl_openat
37820         since openat.h renames openat for us.
37821         Replace most of the body with a call to openat_permissive,
37822         to avoid duplicate code.
37823         Port to (probably hypothetical) environments were mode_t is
37824         wider than int.
37825         (openat_permissive): Require mode arg, so that we can check
37826         types better.  Put it just after flags.  Change cwd failure
37827         indicator from pointer-to-bool to pointer-to-errno-value.
37828         All callers changed.
37829         Invoke openat_save_fail and/or openat_restore_fail if
37830         cwd_errno is null, so that openat can call us.
37831         (openat_permissive, fdopendir, fstatat, unlinkat):
37832         Simplify errno handling to avoid some duplicate code,
37833         as it's OK to set errno on success.
37834         * lib/openat.h: Revamp code so that function macros depend on
37835         __OPENAT_PREFIX only, not also on AT_FDCWD.
37836         (openat_ro): Remove.  Caller changed to use openat_permissive.
37837         (openat_permissive): Now a macro, if not a function.
37838         (openat_restore_fail, openat_save_fail): Now always functions,
37839         since mkdirat needs them even if __OPENAT_PREFIX is defined.
37840
37841         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
37842         and openat.c.
37843         * lib/mkdirat.c: Include openat-priv.h.
37844         Remove definitions of macros defined therein.
37845         * lib/openat.c: Likewise.
37846
37847         * lib/mkdirat.c (mkdirat): New file and function.
37848         * lib/openat.h (mkdirat): Declare.
37849
37850         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
37851
37852         * lib/openat.h (openat_permissive): Declare.
37853         (openat_ro): Define.
37854
37855         * lib/openat.c (EXPECTED_ERRNO): New macro.
37856         (openat_permissive): New function -- used in remove.c rewrite.
37857         (all functions): Set errno just before returning, only if there
37858         was an actual failure.
37859         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
37860
37861         Emulate openat-family functions using Linux's procfs, if possible.
37862         Idea and some code based on Ulrich Drepper's glibc changes.
37863
37864         * lib/openat.c: (BUILD_PROC_NAME): New macro.
37865         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
37866         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
37867         before falling back on save_cwd and restore_cwd.
37868         (fdopendir, fstatat, unlinkat): Likewise.
37869
37870         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
37871         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
37872
37873         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
37874         as second argument to va_arg.  Otherwise, some versions of gcc
37875         warn that `if this code is reached, the program will abort'.
37876
37877 2006-01-09  Jim Meyering  <jim@meyering.net>
37878
37879         Sync from coreutils.
37880         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
37881         Require openat-priv.h.
37882
37883 2006-01-09  Bruno Haible  <bruno@clisp.org>
37884
37885         * modules/strnlen (Include): Use strnlen.h.
37886
37887 2006-01-09  Bruno Haible  <bruno@clisp.org>
37888
37889         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
37890
37891 2006-01-09  Bruno Haible  <bruno@clisp.org>
37892
37893         * lib/sysexit_.h (EX_OK): New macro.
37894         Suggested by Martin Lambers <marlam@marlam.de>.
37895
37896 2006-01-09  Bruno Haible  <bruno@clisp.org>
37897
37898         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
37899         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
37900
37901 2006-01-09  Bruno Haible  <bruno@clisp.org>
37902
37903         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
37904         numbers.
37905
37906 2006-01-09  Bruno Haible  <bruno@clisp.org>
37907
37908         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
37909         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
37910         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
37911         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
37912
37913 2006-01-09  Bruno Haible  <bruno@clisp.org>
37914
37915         * build-aux/javacomp.sh.in: New file, moved from lib/.
37916         * modules/javacomp-script (Files): Update.
37917         (configure.ac): Add AC_CONFIG_FILES invocation.
37918         (EXTRA_DIST): Remove variable.
37919
37920         * build-aux/javaexec.sh.in: New file, moved from lib/.
37921         * modules/javaexec (Files): Update.
37922         (configure.ac): Add AC_CONFIG_FILES invocation.
37923         (EXTRA_DIST): Remove javaexec.sh.in.
37924
37925         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
37926         * modules/csharpcomp-script (Files): Update.
37927         (configure.ac): Add AC_CONFIG_FILES invocation.
37928         (EXTRA_DIST): Remove variable.
37929
37930         * build-aux/csharpexec.sh.in: New file, moved from lib/.
37931         * modules/csharpexec (Files): Update.
37932         (configure.ac): Add AC_CONFIG_FILES invocation.
37933         (EXTRA_DIST): Remove csharpexec.sh.in.
37934
37935 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
37936
37937         Sync from coreutils.
37938
37939         Add POSIX ACL support
37940         * lib/acl.h (copy_acl, set_acl): Add declarations.
37941         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
37942         systems other than Linux.
37943         (chmod_or_fchmod): New function: use fchmod when possible,
37944         and chmod otherwise.
37945         (file_has_acl): Add a POSIX ACL implementation, with a
37946         Linux-specific subcase.
37947         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
37948         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
37949         acls are unsupported.
37950         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
37951         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
37952         are unsupported.
37953
37954 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
37955
37956         Sync from coreutils.
37957         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
37958
37959 2006-01-07  Bruno Haible  <bruno@clisp.org>
37960
37961         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
37962         gl_EARLY.
37963
37964 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
37965
37966         * lib/strftime.c (tzname): Don't declare if it is already #defined.
37967         Problem reported for Mingw by Mark Junker.
37968
37969 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
37970
37971         * README: Gnulib normally doesn't generate a tarball.
37972
37973 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
37974
37975         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
37976         long int, not int, for nanosecond counts, so that people who are
37977         used to POSIX struct timespec won't be surprised.  Reported by Jim
37978         Meyering.
37979
37980 2005-12-28  Bruno Haible  <bruno@clisp.org>
37981
37982         * build-aux/config.rpath: Update from GNU gettext.
37983
37984 2005-12-16  Jim Meyering  <jim@meyering.net>
37985
37986         * modules/fprintftime: New module.
37987         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
37988
37989 2005-12-16  Jim Meyering  <jim@meyering.net>
37990
37991         * m4/fprintftime.m4: New file.
37992
37993 2005-12-16  Jim Meyering  <jim@meyering.net>
37994
37995         * lib/fprintftime.c, lib/fprintftime.h: New files.
37996
37997 2005-12-15  Simon Josefsson  <jas@extundo.com>
37998
37999         * modules/socklen (configure.ac): Fix M4 macro name, to align with
38000         new m4/socklen.m4.
38001
38002 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
38003
38004         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
38005         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
38006
38007 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
38008
38009         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
38010         * lib/argp-help.c (fill_in_uparams): Check if the constructed
38011         struct uparams is valid. Fall back to the default values if it is
38012         not.
38013
38014 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
38015
38016         * modules/argp (Files): Add argp-pin.c
38017         (Depends-on): dirname
38018         (lib_SOURCES): Add argp-pin.c
38019
38020 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
38021
38022         * m4/argp.m4:  Check if program_invocation_name and
38023         program_invocation_short_name are declared and define appropriate
38024         macros if they are not.
38025
38026 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
38027
38028         * lib/argp-help.c (__argp_base_name): New function
38029         (__argp_short_program_name): Rewrite using __argp_base_name
38030         * lib/argp-namefrob.h: Define program_invocation_name and
38031         program_invocation_short_name if requested
38032         (__argp_base_name): Add prototype
38033         * lib/argp-parse.c (argp_def): Use gettext wrappers
38034         (argp_default_parser): Use __argp_base_name
38035         * lib/argp-pin.c: New file. Defines program_invocation_name and
38036         program_invocation_short_name on systems that lack them.
38037
38038 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
38039
38040         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
38041         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
38042         porting problem reported by Georg Schwarz in
38043         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
38044
38045 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
38046
38047         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
38048         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
38049         porting problem reported by Georg Schwarz in
38050         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
38051
38052 2005-12-05  Bruno Haible  <bruno@clisp.org>
38053
38054         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
38055         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
38056         Reported by Mark Junker <mjscod@gmx.de>.
38057
38058 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
38059
38060         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
38061         Use implementation from Albert Chin, with some
38062         comments/corrections by Stepan Kasal and myself.
38063
38064 2005-12-02  Bruno Haible  <bruno@clisp.org>
38065
38066         * gnulib-tool (func_import): Accept GPLed build tool modules when
38067         --lgpl is given.
38068         * modules/csharpcomp-script: New file.
38069         * modules/csharpcomp: Depend on it.
38070         * modules/javacomp-script: New file.
38071         * modules/javacomp: Depend on it.
38072         Suggested by Simon Josefsson.
38073
38074 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
38075
38076         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
38077         statement, to work around an HP-UX 10.20 compiler bug reported by
38078         Peter O'Gorman.
38079
38080 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
38081
38082         * modules/savedir (Depends-on): Add openat.
38083
38084 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
38085
38086         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
38087         (uintmax_t) [defined uintmax_t]: Do not declare.
38088         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
38089         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
38090         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
38091         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
38092         sake of portability to weird hosts that C allows (though we don't
38093         know of any practical examples).
38094
38095         * lib/savedir.h (fdsavedir): New decl.
38096         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
38097         contains most of the former guts of savedir.
38098         (savedir): Use savedirstream.
38099         Include "openat.h".
38100
38101 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
38102
38103         * modules/obstack (Files): Add m4/ulonglong.m4.
38104         Problem reported by Davide Angelocola.
38105
38106 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
38107
38108         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
38109         coreutils no longer futzes with rounding modes.
38110
38111 2005-11-14  Jim Meyering  <jim@meyering.net>
38112
38113         * lib/mkstemp-safer.c: Include <config.h>, required for possible
38114         replacement of mkstemp.
38115
38116 2005-11-10  Simon Josefsson  <jas@extundo.com>
38117
38118         * lib/readline.c: Remove EOL.
38119
38120 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
38121
38122         * modules/gethrxtime (Depends-on): Add gettime.
38123
38124 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
38125
38126         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
38127         or gettimeofday; no longer needed.
38128
38129 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
38130
38131         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
38132         time business.
38133         (gethrxtime) [! (HAVE_NANOUPTIME
38134         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
38135         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
38136         our own approximation.
38137
38138 2005-11-08  Eric Blake  <ebb9@byu.net>
38139
38140         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
38141
38142 2005-11-08  Eric Blake  <ebb9@byu.net>
38143
38144         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
38145
38146 2005-11-04  Bruno Haible  <bruno@clisp.org>
38147
38148         * gnulib-tool: Implement --update mode.
38149
38150 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
38151
38152         Fix porting problem reported by Theodoros V. Kalamatianos.
38153         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
38154         Don't assume that futimes failing means we must fail.
38155
38156 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
38157
38158         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
38159         variables to suggest the intended function of the PATH_MAX check.
38160
38161 2005-10-30  Kean Johnston  <jkj@sco.com>
38162
38163         Trivial changes to support SCO systems.
38164         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
38165         as PATH_MAX.
38166         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
38167         where __ptr is null when no I/O is pending.
38168
38169 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
38170
38171         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
38172         leave errno alone.  Problem reported by Dmitry V. Levin.
38173
38174 2005-10-28  Simon Josefsson  <jas@extundo.com>
38175
38176         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
38177         Test more.
38178
38179         * tests/test-gc-md2.c, tests/test-md2.c: New files.
38180
38181         * modules/md2, modules/md2-tests: New files.
38182
38183 2005-10-28  Simon Josefsson  <jas@extundo.com>
38184
38185         * m4/inet_ntop.m4: More tests.
38186
38187         * m4/gc-md2.m4, md2.m4: New file.
38188
38189 2005-10-28  Simon Josefsson  <jas@extundo.com>
38190
38191         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
38192         "restrict" keywords, as per POSIX.  Protect the function
38193         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
38194         Don't use K&R prototypes.  Check the sprintf return values.
38195         Re-define EAFNOSUPPORT if not present.  Indent.
38196
38197         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
38198         suggested by Bruno Haible <bruno@clisp.org>.
38199
38200         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
38201
38202         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
38203
38204         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
38205         libgcrypt).
38206
38207         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
38208
38209         * lib/md2.h, lib/md2.c: New files.
38210
38211 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
38212
38213         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
38214         errno alone.  Problem reported by Frederic Jolliton.
38215
38216 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
38217
38218         * modules/verify (License): Change from GPL to LGPL.  This is a
38219         tiny module and there are apparently near-equivalents that are
38220         under the BSD license.
38221
38222 2005-10-24  Simon Josefsson  <jas@extundo.com>
38223
38224         * modules/sha1: Relicense to LGPL.
38225
38226 2005-10-24  Simon Josefsson  <jas@extundo.com>
38227
38228         * lib/md4.h: Shrink buffer size, now that we changed the type.
38229
38230 2005-10-23  Simon Josefsson  <jas@extundo.com>
38231
38232         * gnulib-tool (func_import): Fix --tests-base.
38233
38234 2005-10-22  Simon Josefsson  <jas@extundo.com>
38235
38236         * modules/arcfour (Depends-on): Need stdint.
38237
38238 2005-10-22  Simon Josefsson  <jas@extundo.com>
38239
38240         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
38241         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
38242
38243 2005-10-22  Simon Josefsson  <jas@extundo.com>
38244
38245         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
38246         suggested by Bruno Haible <bruno@clisp.org>.
38247
38248 2005-10-22  Simon Josefsson  <jas@extundo.com>
38249
38250         * lib/crc.h: Include stddef.h, for size_t.
38251
38252 2005-10-22  Simon Josefsson  <jas@extundo.com>
38253
38254         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
38255         arcfour_context struct (simplify test vector testing in GNU
38256         Shishi).
38257
38258 2005-10-21  Simon Josefsson  <jas@extundo.com>
38259
38260         * modules/des, modules/des-tests: New files.
38261
38262         * modules/gc-des, modules/gc-des-tests: New files.
38263
38264         * tests/test-des.c, tests/test-gc-des.c: New file.
38265
38266 2005-10-21  Simon Josefsson  <jas@extundo.com>
38267
38268         * modules/arctwo, modules/arctwo-tests: New files.
38269
38270         * tests/test-arctwo.c: New file.
38271
38272         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
38273
38274         * tests/test-gc-arctwo.c: New file.
38275
38276 2005-10-21  Simon Josefsson  <jas@extundo.com>
38277
38278         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
38279         Bruno Haible <bruno@clisp.org>.
38280
38281         * m4/gc-des.m4: New file.
38282
38283 2005-10-21  Simon Josefsson  <jas@extundo.com>
38284
38285         * m4/arctwo.m4: New file.
38286
38287         * m4/gc-arctwo.m4: New file.
38288
38289 2005-10-21  Simon Josefsson  <jas@extundo.com>
38290
38291         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
38292         block.
38293
38294 2005-10-21  Simon Josefsson  <jas@extundo.com>
38295
38296         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
38297         <bruno@clisp.org>.
38298
38299         * lib/hmac-sha1.c (hmac_sha1): Likewise.
38300
38301         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
38302         Bruno Haible <bruno@clisp.org>.
38303
38304         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
38305         <bruno@clisp.org>.
38306
38307 2005-10-21  Simon Josefsson  <jas@extundo.com>
38308
38309         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
38310
38311 2005-10-21  Simon Josefsson  <jas@extundo.com>
38312
38313         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
38314
38315 2005-10-21  Simon Josefsson  <jas@extundo.com>
38316
38317         * lib/des.h, lib/des.c: New files.
38318
38319         * lib/gc-gnulib.c: Support DES.c
38320
38321 2005-10-21  Simon Josefsson  <jas@extundo.com>
38322
38323         * lib/arctwo.h, lib/arctwo.c: New files.
38324
38325         * lib/gc-gnulib.c: Support ARCTWO.
38326
38327 2005-10-21  Simon Josefsson  <jas@extundo.com>
38328
38329         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
38330         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38331
38332 2005-10-21  Simon Josefsson  <jas@extundo.com>
38333
38334         * gnulib-tool (func_import, func_create_testdir): Define automake
38335         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
38336         Makefile.am snippet),
38337         suggested by Bruno Haible <bruno@clisp.org>.
38338
38339         * modules/gc (Makefile.am): Use it.
38340
38341 2005-10-21  Bruno Haible  <bruno@clisp.org>
38342
38343         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
38344         patch.
38345
38346 2005-10-19  Simon Josefsson  <jas@extundo.com>
38347
38348         * tests/test-gc-rijndael.c: New file.
38349
38350         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
38351
38352 2005-10-19  Simon Josefsson  <jas@extundo.com>
38353
38354         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
38355         interface too.
38356
38357 2005-10-19  Simon Josefsson  <jas@extundo.com>
38358
38359         * tests/test-gc-arcfour.c: New file.
38360
38361         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
38362
38363 2005-10-19  Simon Josefsson  <jas@extundo.com>
38364
38365         * modules/gc-md4, modules/gc-md4-tests: New file.
38366
38367         * tests/test-gc-md4.c: New file.
38368
38369 2005-10-19  Simon Josefsson  <jas@extundo.com>
38370
38371         * m4/gc-md4.m4: New file.
38372
38373 2005-10-19  Simon Josefsson  <jas@extundo.com>
38374
38375         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
38376         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
38377         <kasal@ucw.cz>.
38378
38379 2005-10-19  Simon Josefsson  <jas@extundo.com>
38380
38381         * m4/gc-arcfour.m4: New file.
38382
38383         * m4/gc-rijndael.m4: New file.
38384
38385 2005-10-19  Simon Josefsson  <jas@extundo.com>
38386
38387         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
38388
38389 2005-10-19  Simon Josefsson  <jas@extundo.com>
38390
38391         * lib/gc-gnulib.c: Support ARCFOUR.
38392
38393 2005-10-19  Simon Josefsson  <jas@extundo.com>
38394
38395         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
38396         support.
38397
38398         * lib/gc.h: Add ECB enum type.
38399
38400         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
38401
38402 2005-10-18  Simon Josefsson  <jas@extundo.com>
38403
38404         * tests/test-md5.c: New file.
38405
38406         * modules/md5-tests: New file.
38407
38408 2005-10-18  Simon Josefsson  <jas@extundo.com>
38409
38410         * tests/test-md4.c: New file.
38411
38412         * modules/md4, modules/md4-tests: New files.
38413
38414 2005-10-18  Simon Josefsson  <jas@extundo.com>
38415
38416         * m4/md4.m4: New file.
38417
38418 2005-10-18  Simon Josefsson  <jas@extundo.com>
38419
38420         * lib/md4.h, lib/md4.c: New files, based on md5.?.
38421
38422 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
38423
38424         * gnulib-tool (func_create_testdir): Omit the second check whether
38425         BUILT_SOURCES in nonempty.
38426
38427 2005-10-17  Simon Josefsson  <jas@extundo.com>
38428
38429         * tests/test-rijndael.c: New file.
38430
38431 2005-10-17  Simon Josefsson  <jas@extundo.com>
38432
38433         * modules/sha1: Depend on stdint instead of md5.
38434
38435         * modules/md5: Depend on stdint, remove uint32_t.
38436
38437 2005-10-17  Simon Josefsson  <jas@extundo.com>
38438
38439         * modules/gc-sha1-tests: New file.
38440
38441         * tests/test-gc-sha1.c: New file.
38442
38443 2005-10-17  Simon Josefsson  <jas@extundo.com>
38444
38445         * m4/md5.m4: Remove call to uint32_t.m4.
38446
38447 2005-10-17  Simon Josefsson  <jas@extundo.com>
38448
38449         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
38450
38451         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
38452         md5.h.
38453
38454         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
38455
38456         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
38457
38458 2005-10-17  Simon Josefsson  <jas@extundo.com>
38459
38460         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
38461
38462 2005-10-17  Simon Josefsson  <jas@extundo.com>
38463
38464         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
38465
38466 2005-10-17  Simon Josefsson  <jas@extundo.com>
38467
38468         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
38469
38470         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
38471
38472 2005-10-17  Bruno Haible  <bruno@clisp.org>
38473
38474         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
38475         that it can also be used in a test.
38476
38477 2005-10-16  Bruno Haible  <bruno@clisp.org>
38478
38479         * gnulib-tool (func_emit_tests_Makefile_am): Also define
38480         TESTS_ENVIRONMENT, so that individual tests can augment it.
38481
38482         * gnulib-tool (func_create_testdir): Use an intermediate target for
38483         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
38484         macros, like $(ALLOCA_H), which cannot be passed through the command
38485         line.
38486
38487 2005-10-15  Simon Josefsson  <jas@extundo.com>
38488
38489         * modules/rijndael-tests: New file.
38490
38491         * modules/rijndael: New file.
38492
38493 2005-10-15  Simon Josefsson  <jas@extundo.com>
38494
38495         * m4/rijndael.m4: New file.
38496
38497 2005-10-15  Simon Josefsson  <jas@extundo.com>
38498
38499         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
38500
38501         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
38502
38503 2005-10-14  Simon Josefsson  <jas@extundo.com>
38504
38505         * tests/test-arcfour.c: New file.
38506
38507         * modules/arcfour, modules/arcfour-tests: New files.
38508
38509 2005-10-14  Simon Josefsson  <jas@extundo.com>
38510
38511         * m4/arcfour.m4: New file.
38512
38513 2005-10-14  Simon Josefsson  <jas@extundo.com>
38514
38515         * lib/arcfour.h, lib/arcfour.c: New files.
38516
38517 2005-10-14  Roland McGrath  <roland@redhat.com>
38518
38519         Import from libc.  [BZ #1331]
38520         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
38521         macro argument.
38522         Reported by Matej Vela <vela@debian.org>.
38523
38524 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
38525
38526         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
38527         include <wchar.h>; no longer needed.
38528
38529 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
38530
38531         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
38532
38533 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
38534         and  Ulrich Drepper  <drepper@redhat.com>
38535
38536         Import from libc.
38537         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
38538         instead of inline stream orientation test and two separate
38539         function calls.  Pay no attention to USE_IN_LIBIO.
38540
38541 2005-10-13  Simon Josefsson  <jas@extundo.com>
38542
38543         * modules/gc-hmac-md5-tests: New file.
38544
38545         * tests/test-gc-hmac-sha1.c: New file.
38546
38547         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
38548
38549         * modules/gc-hmac-md5-tests: New file.
38550
38551         * tests/test-gc-md5.c: New file.
38552
38553         * modules/gc-md5-tests: New file.
38554
38555 2005-10-13  Simon Josefsson  <jas@extundo.com>
38556
38557         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
38558         Move memory allocation outside of loop.
38559
38560 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
38561
38562         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
38563         intermediate directory is in a read-only file system.  Problem
38564         reported by Eric Blake.
38565
38566 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
38567
38568         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
38569
38570 2005-10-12  Simon Josefsson  <jas@extundo.com>
38571
38572         * tests/test-hmac-sha1.c: New file.
38573
38574         * modules/hmac-sha1-tests: New file.
38575
38576         * modules/hmac-sha1: New file.
38577
38578 2005-10-12  Simon Josefsson  <jas@extundo.com>
38579
38580         * modules/gc-sha1: New file.
38581
38582 2005-10-12  Simon Josefsson  <jas@extundo.com>
38583
38584         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
38585
38586         * tests/test-gc-pbkdf2-sha1.c: New file.
38587
38588 2005-10-12  Simon Josefsson  <jas@extundo.com>
38589
38590         * modules/gc-md5, modules/gc-hmac-md5: New files.
38591
38592         * modules/gc (Files): Remove md5, memxor and hmac files.
38593
38594 2005-10-12  Simon Josefsson  <jas@extundo.com>
38595
38596         * m4/gc-pbkdf2-sha1.m4: New file.
38597
38598         * m4/gc-hmac-sha1.m4: New file.
38599
38600         * m4/gc-sha1: New file.
38601
38602         * m4/hmac-sha1.m4: New file.
38603
38604 2005-10-12  Simon Josefsson  <jas@extundo.com>
38605
38606         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
38607
38608         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
38609
38610 2005-10-12  Simon Josefsson  <jas@extundo.com>
38611
38612         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
38613         suggested by Bruno Haible <bruno@clisp.org>.
38614
38615 2005-10-12  Simon Josefsson  <jas@extundo.com>
38616
38617         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
38618
38619 2005-10-12  Simon Josefsson  <jas@extundo.com>
38620
38621         * lib/gc-pbkdf2-sha1.c: New file.
38622
38623         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
38624
38625 2005-10-12  Simon Josefsson  <jas@extundo.com>
38626
38627         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
38628
38629         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
38630
38631 2005-10-12  Simon Josefsson  <jas@extundo.com>
38632
38633         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
38634         GC_USE_HMAC_MD5, respectively.
38635
38636         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
38637         (gc_md5): Fix typo.
38638
38639         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
38640
38641         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
38642
38643         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
38644
38645 2005-10-12  Bruno Haible  <bruno@clisp.org>
38646
38647         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
38648         Reported by Stepan Kasal <kasal@ucw.cz>.
38649
38650 2005-10-11  Simon Josefsson  <jas@extundo.com>
38651
38652         * tests/test-crc.c: New file.
38653
38654         * modules/crc, modules/crc-tests: New files.
38655
38656 2005-10-11  Simon Josefsson  <jas@extundo.com>
38657
38658         * m4/crc.m4: New file.
38659
38660 2005-10-11  Simon Josefsson  <jas@extundo.com>
38661
38662         * lib/gc.h: Add gc_hash and gc_hash_buffer.
38663
38664         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
38665
38666         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
38667
38668 2005-10-11  Simon Josefsson  <jas@extundo.com>
38669
38670         * lib/crc.h, lib/crc.c: New files.
38671
38672         * lib/gc.h (gc_hash_buffer): Add doc.
38673
38674 2005-10-11  Bruno Haible  <bruno@clisp.org>
38675
38676         * modules/c-strcasestr: New file.
38677         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
38678
38679 2005-10-11  Bruno Haible  <bruno@clisp.org>
38680
38681         * modules/c-strcase: New file.
38682         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
38683
38684 2005-10-11  Bruno Haible  <bruno@clisp.org>
38685
38686         * lib/strcasecmp.c: Include limits.h.
38687         (strcasecmp): Avoid integer overflow on exotic platforms.
38688         * lib/strncasecmp.c: Include limits.h.
38689         (strncasecmp): Avoid integer overflow on exotic platforms.
38690         Reported by Paul Eggert.
38691
38692 2005-10-11  Bruno Haible  <bruno@clisp.org>
38693
38694         * lib/c-strcasestr.h: New file, from GNU gettext.
38695         * lib/c-strcasestr.c: New file, from GNU gettext.
38696
38697 2005-10-11  Bruno Haible  <bruno@clisp.org>
38698
38699         * lib/c-strcase.h: New file, from GNU gettext.
38700         * lib/c-strcasecmp.c: New file, from GNU gettext.
38701         * lib/c-strncasecmp.c: New file, from GNU gettext.
38702
38703 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
38704
38705         * modules/mempcpy (License): GPL -> LGPL.
38706         * modules/strchrnul (License): Likewise.
38707         * modules/sysexits (License): Likewise.
38708
38709 2005-10-08  Simon Josefsson  <jas@extundo.com>
38710
38711         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
38712
38713 2005-10-07  Simon Josefsson  <jas@extundo.com>
38714
38715         * m4/memxor.m4: Remove gl_C_RESTRICT call.
38716
38717 2005-10-06  Simon Josefsson  <jas@extundo.com>
38718
38719         * tests/test-hmac-md5.c: New file.
38720
38721         * modules/hmac-md5-tests: New file.
38722
38723         * modules/hmac-md5: New file.
38724
38725 2005-10-06  Simon Josefsson  <jas@extundo.com>
38726
38727         * m4/hmac-md5.m4: New file.
38728
38729         * m4/memxor.m4: Require gl_C_RESTRICT.
38730
38731 2005-10-06  Simon Josefsson  <jas@extundo.com>
38732
38733         * lib/memxor.c (memxor): Avoid casts and warnings.
38734
38735 2005-10-06  Simon Josefsson  <jas@extundo.com>
38736
38737         * lib/hmac-md5.c: New file.
38738
38739         * lib/hmac.h: New file.
38740
38741 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
38742
38743         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
38744         promotes to int, not unsigned int, to catch the AIX 5.3
38745         compiler bug.
38746
38747 2005-10-05  Simon Josefsson  <jas@extundo.com>
38748
38749         * modules/memxor: New file.
38750
38751         * modules/iconv (Files): Move config.rpath to havelib, it is used
38752         there.
38753
38754         * modules/havelib (Files): Add config.rpath.
38755
38756 2005-10-05  Simon Josefsson  <jas@extundo.com>
38757
38758         * m4/memxor.m4: New file.
38759
38760 2005-10-05  Simon Josefsson  <jas@extundo.com>
38761
38762         * lib/memxor.c (memxor): Fix compiler error.
38763
38764         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
38765         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
38766
38767         * lib/memxor.h, lib/memxor.c: New files.
38768
38769         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
38770         we assume all systems have it, suggested by Jim Meyering
38771         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
38772         any systems lack sys/socket.h; mingw32 is known to lack it, but we
38773         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
38774         same reasons.
38775
38776 2005-10-05  Simon Josefsson  <jas@extundo.com>
38777
38778         * config/srclist.txt: Add glibc bug 1423 for md5.h.
38779
38780 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
38781
38782         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
38783         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
38784         needed, since the source code now assumes these .h files.
38785
38786 2005-10-05  Derek Price  <derek@ximbiot.com>
38787
38788         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
38789
38790 2005-10-05  Bruno Haible  <bruno@clisp.org>
38791
38792         * modules/stdint (License): Change to LGPL.
38793
38794 2005-10-04  Simon Josefsson  <jas@extundo.com>
38795
38796         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
38797         D. Baushke" <mdb@gnu.org>.
38798
38799 2005-10-04  Bruno Haible  <bruno@clisp.org>
38800
38801         * lib/verify.h (verify_true): Provide alternative definition for C++.
38802
38803 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
38804
38805         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
38806         (SSIZE_MAX): New macro, if not already defined.
38807         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
38808         than 2 GiB.
38809
38810 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
38811
38812         Sync from coreutils.
38813         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
38814         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
38815         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
38816         ULLONG_MAX doesn't work with 2.7.2.1.
38817
38818 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
38819
38820         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
38821         From Ben Pfaff.
38822
38823         * modules/exclude (Depends-on): Depend on verify.
38824         * modules/strtoimax (Depends-on): Likewise.
38825         * modules/utimecmp (Depends-on): Likewise.
38826
38827 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
38828
38829         * lib/exclude.c: Include verify.h.
38830         (verify): Remove.  All callers changed to use verify.h's version.
38831         * lib/strtoimax.c: Likewise.
38832         * lib/utimecmp.c: Likewis.e
38833
38834         Sync from coreutils.
38835         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
38836         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
38837         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
38838         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
38839         bother returning ENOSYS if settimeofday or stime fails; just let
38840         them return whatever errno they want to return.
38841         * lib/utimens.c: Include unistd.h, for dup2.
38842         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
38843         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
38844
38845 2005-10-02  Jim Meyering  <jim@meyering.net>
38846
38847         Sync from coreutils.
38848         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
38849         from glibc-2.2.5 that fails for read-only files.
38850
38851 2005-10-02  Jim Meyering  <jim@meyering.net>
38852
38853         Sync from coreutils.
38854         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
38855         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
38856         `#if HAVE_CONFIG_H'.
38857         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
38858         Remove AT_FDCWD test.
38859         Do not consume the fd unless successful.
38860         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
38861         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
38862         block, so that we don't even try to compile it if settimeofday is
38863         available.  This works around a compilation failure on OSF1 V5.1,
38864         due to stime requiring a `long int*' while tv_sec is `int'.
38865
38866 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
38867
38868         Sync from coreutils.
38869         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
38870         against `yes', rather than just testing for nonempty.
38871
38872 2005-10-01  Simon Josefsson  <jas@extundo.com>
38873
38874         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
38875         and Darwin.
38876
38877         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
38878         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
38879         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
38880         freeaddrinfo and gai_strerror are declared by the POSIX headers.
38881         Check if struct addrinfo is declared.
38882
38883 2005-10-01  Simon Josefsson  <jas@extundo.com>
38884
38885         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
38886         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
38887         AI_* and EAI_* definitions.  Protect function declarations.
38888
38889 2005-10-01  Jim Meyering  <jim@meyering.net>
38890
38891         Sync from coreutils.
38892
38893         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
38894         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
38895         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
38896         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
38897         in the inet and nsl libraries.  Required on Solaris 5.7.
38898
38899 2005-10-01  Jim Meyering  <jim@meyering.net>
38900
38901         Sync from coreutils.
38902         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
38903         in the inet and nsl libraries.  Required on Solaris 5.7.
38904
38905 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
38906
38907         * lib/getdelim.c (getdelim): Remove unused variables.
38908
38909 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
38910
38911         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
38912         so that the code works even with ancient cpp.  Portability problem
38913         with GCC 2.7.2.1 reported by Thomas M.Ott.
38914
38915 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
38916
38917         * modules/regex (Depends-on): Add strcase.
38918
38919         * modules/gethostname (Licence): Change from GPL to LGPL, since
38920         gethostname.c is a trivial implementation of a standard library
38921         function.
38922         * modules/poll (License): Change from GPL to LGPL, since it's
38923         derived from LGPL code.
38924
38925 2005-09-27  Jim Meyering  <jim@meyering.net>
38926
38927         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
38928         HAVE_CONFIG_H.
38929
38930         * lib/intprops.h (signed_type_or_expr__): Define.
38931         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
38932         for unsigned types.
38933
38934 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
38935
38936         * lib/verify.h (verify_expr): Remove, replacing with:
38937         (verify_true): New macro that returns true instead of void.
38938         (verify_type__): Remove.
38939         (verify): Use verify_true rather than verify_type__.
38940
38941 2005-09-26  Bruno Haible  <bruno@clisp.org>
38942
38943         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
38944         is necessary.
38945         (lib_SOURCES): Remove mbchar.c.
38946         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
38947         (Files): Add m4/mbrtowc.m4.
38948         * modules/mbiter: Likewise.
38949         * modules/mbuiter: Likewise.
38950
38951 2005-09-26  Bruno Haible  <bruno@clisp.org>
38952
38953         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
38954         compile mbchar.c if they are not both present.
38955         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
38956         * m4/mbiter.m4 (gl_MBITER): Likewise.
38957         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
38958         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
38959         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
38960
38961 2005-09-25  Jim Meyering  <jim@meyering.net>
38962
38963         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
38964         also uses socklen_t.
38965
38966 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
38967
38968         * lib/utimens.c (ENOSYS): Define if not already defined.
38969         (futimens): Support having a null PATH if the file descriptor
38970         is nonnegative.
38971
38972         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
38973         Remove.
38974         (__attribute): Define to empty unless GCC 3.1 or later.
38975         This works around a core dump on OpenBSD 3.4, which has GCC
38976         2.95.3, which dumps core when given __attribute__(()).  It also
38977         simplifies other tests, since we really don't want to bother with
38978         worrying about which ancient version of GCC supported what.
38979         Original problem reported by Yoann Vandoorselaere, with part of
38980         the fix suggested by Derek Price.
38981
38982 2005-09-24  Jim Meyering  <jim@meyering.net>
38983
38984         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
38985         so we can once again use a positive bitfield width of 1 -- now we
38986         don't have to explain why we were using a bitfield width of 2.
38987
38988 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
38989
38990         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
38991         and similarly for the other external symbols.  Problem reported
38992         by James Gallager.
38993
38994         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
38995         bug reported by Jim Meyering.
38996
38997         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
38998         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
38999         not needed, since socklen is a prerequisite module.
39000
39001 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
39002
39003         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
39004         Problem reported by Eric Blake.
39005         (getaddrinfo): Initialize se so that it's not garbage.
39006         Redo internal storage allocation so that it doesn't make unportable
39007         assumptions about alignment.
39008         Fix a memory leak.
39009
39010         * lib/utimens.c (futimens): Use futimesat if available.
39011         Prefer it to futimes since it doesn't have the futimes bug.
39012
39013         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
39014         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
39015         Instead, declare a function that returns a pointer to an array,
39016         and use verify_type__ to declare the size of the array.
39017         Problem and germ of a solution reported by Bruno Haible.
39018         (verify_type__): Use 2, not 1, for bitfield size, to avoid
39019         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
39020
39021 2005-09-23  Jim Meyering  <jim@meyering.net>
39022
39023         Sync from coreutils.
39024         Correct build failure (socklen_t not defined) on at least
39025         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
39026         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
39027
39028 2005-09-23  Jim Meyering  <jim@meyering.net>
39029
39030         * modules/getaddrinfo (Depends-on): Add socklen.
39031
39032 2005-09-23  Bruno Haible  <bruno@clisp.org>
39033
39034         * tests/test-verify.c: New file.
39035
39036 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
39037
39038         Sync from coreutils.
39039
39040         * modules/argmatch (Depends-on): Add verify.
39041         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
39042         unistd-safer.
39043         * modules/save-cwd (Depends-on): Likewise.
39044
39045         * modules/openat (Files): Add lib/openat-die.c.
39046         (Depends-on): Remove error, exitfail.
39047         Add dirname.
39048
39049         * modules/verify: New file.
39050         * MODULES.html.sh (Diagnostics <assert.h>): New section,
39051         with "verify" module.
39052
39053 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
39054
39055         Sync from coreutils.
39056
39057         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
39058         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
39059         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
39060         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
39061         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
39062         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
39063         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
39064         Don't bother checking for string.h, stdlib.h, unistd.h.
39065         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
39066         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
39067         module's job.
39068         * m4/jm-macros.m4 (gl_MACROS): Likewise.
39069         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
39070
39071         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
39072         (gl_GETDATE): Use it.
39073
39074         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
39075
39076 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
39077
39078         Sync from coreutils.
39079
39080         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
39081         stat-time.h.
39082         * lib/argmatch.h: Include verify.h
39083         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
39084         (ARGMATCH_ASSERT): Remove; unused.
39085         * lib/canonicalize.c: Assume STDC_HEADERS.
39086         * lib/exclude.c: Include "strcase.h".
39087         * lib/regex_internal.h [!defined _LIBC]: Likewise.
39088         * lib/getusershell.c: Include stdio--.h rather than stdio.h
39089         and stdio-safer.h.
39090         (getusershell): Call fopen, not fopen_safer.
39091         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
39092         Do not include unistd-safer.h.
39093         (save_cwd): Don't call fd_safer; no longer needed
39094         now that we include fcntl--.h.
39095
39096         * lib/getdate.y (relative_time): New type.
39097         (RELATIVE_TIME_0): New constant.
39098         (parser_control): Use relative_time instead of doing it ourselves.
39099         (%union): Add new relative_time rel member.
39100         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
39101         Now typeless.
39102         (relunit, relunit_snumber): Now of type rel.
39103         (zone, rel, relunit, get_date): Adjust to above changes.
39104
39105         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
39106         Do not include unistd-safer.h.
39107         (getloadavg): Don't call fd_safer; no longer needed
39108         now that we include fcntl--.h.
39109
39110         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
39111         (make_dir_parents): Treat ENOSYS like EEXIST.
39112
39113         Improve quality of diagnostics on restore_cwd failure.
39114         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
39115         (make_dir_parents): Last arg is now int * (for errno), not bool *.
39116         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
39117         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
39118         each time through the loop.  Do not diagnose restore_cwd failure;
39119         that is the caller's job (and perhaps the caller does not care).
39120
39121         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
39122         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
39123         If the file already exists but is not a directory, don't bother
39124         to try to make its parents.
39125         Close potential file descriptor leak if we can't chdir("/") (!).
39126         Don't always return true if chdir($PWD) fails; return true only
39127         if the requested action was done successfully (except for the
39128         chdir($PWD)).
39129         Don't log final directory unless we actually made it.
39130         Refactor to avoid duplicate code to fix up permissions.
39131         Don't attempt to fix up parent permissions if chdir($PWD) fails.
39132
39133         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
39134         to make it a bit faster and (I hope) clearer.
39135         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
39136         Fix bug in formats like %2N.
39137
39138         * lib/verify.h: New file.
39139
39140 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
39141
39142         Sync from coreutils.
39143         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
39144
39145 2005-09-22  Jim Meyering  <jim@meyering.net>
39146
39147         Sync from coreutils.
39148
39149         * m4/lstat.m4 (gl_FUNC_LSTAT):
39150         Use AC_LIBSOURCES to require lstat.c and lstat.h.
39151         Remove obsolete comment.
39152         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
39153         * m4/xstrtod.m4: Likewise.
39154
39155         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
39156
39157 2005-09-22  Jim Meyering  <jim@meyering.net>
39158
39159         Sync from coreutils.
39160
39161         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
39162
39163         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
39164         the .tm_year member, since otherwise gcc-4.0 would now warn about
39165         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
39166
39167         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
39168         order to avoid an unsuppressible warning from gcc on 64-bit systems.
39169
39170         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
39171         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
39172         when run in a time zone for which daylight savings time is in effect
39173         for the starting date.
39174
39175         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
39176         stop us from restricting permissions of just-created absolute-named
39177         directories.
39178         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
39179         to restore initial working directory.
39180         * lib/mkdir-p.c (make_dir_parents): New parameter:
39181         different_working_dir, to tell caller if/when we change the working
39182         directory and are unable to return to the initial one.
39183         * lib/mkdir-p.h (make_dir_parents): Update prototype.
39184         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
39185         `return false'.  This fixes a bug introduced on 2004-07-30.
39186
39187         * lib/openat.c (fdopendir): Be sure to close the supplied
39188         file descriptor before returning.  This makes our replacement
39189         implementation a little closer to Solaris's, where fdopendir
39190         ties the file descriptor to the returned DIR* pointer.
39191         * lib/openat.c (unlinkat): New function.
39192         * lib/openat.h (unlinkat): Add prototype.
39193         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
39194         (openat_restore_fail): Rename from openat_restore_die.
39195         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
39196
39197         Provide an alternative to exiting immediately upon save_cwd or
39198         restore_cwd failure.  Now, an application can arrange e.g.,
39199         to perform a longjump in that case.
39200         * lib/openat.c: Include dirname.h.
39201         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
39202         (rpl_openat, fdopendir, fstatat): Call openat_save_die
39203         and openat_restore_die rather than calling error directly.
39204         Don't include "error.h" or "exitfail.h"; they're no longer needed.
39205
39206         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
39207         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
39208         define.
39209
39210         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
39211         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
39212                             int utc, int nanoseconds);
39213         Background:
39214         date should not have to allocate a megabyte of virtual memory to
39215         handle a format argument like +%1048575T.  When implemented with
39216         strftime, it must allocate such a buffer, use strftime to fill it
39217         in, print it, then free it.
39218         With fprintftime, it simply prints everything and exits.
39219         With no need for memory allocation, that's one fewer way to fail.
39220         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
39221         optional field width, not before, so we accept %9:z, not %:9z.
39222         (my_strftime): Be sure to use L_('x') for literals.
39223
39224         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
39225         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
39226         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
39227         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
39228         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
39229         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
39230         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
39231         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
39232         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
39233         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
39234         * lib/xgethostname.c, lib/xreadlink.c:
39235         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
39236
39237         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
39238         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
39239         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
39240         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
39241         and don't include <sys/file.h>).
39242
39243 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
39244
39245         Sync from coreutils.
39246
39247         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
39248         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
39249         [!LDAV_DONE]: Avoid unused variable warning.
39250
39251 2005-09-21  Bruno Haible  <bruno@clisp.org>
39252
39253         * lib/unicodeio.h (unicode_to_mb): New declaration.
39254
39255 2005-09-20  Derek Price  <derek@ximbiot.com>
39256
39257         * lib/getaddrinfo.c: Don't include <netdb.h> included from
39258         getaddrinfo.h.
39259
39260 2005-09-20  Bruno Haible  <bruno@clisp.org>
39261
39262         * gnulib-tool: Remove trailing slashes from the values specified for
39263         --source-base, --m4-base, --tests-base, --aux-dir.
39264         Suggested by Simon Josefsson <jas@extundo.com>.
39265
39266 2005-09-20  Bruno Haible  <bruno@clisp.org>
39267
39268         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
39269         func_modules_to_filelist, func_import, func_create_testdir): Make all
39270         sorting results locale-independent, so that gnulib-cache.m4 doesn't
39271         change when gnulib-tool is invoked in a different locale.
39272
39273 2005-09-19  Simon Josefsson  <jas@extundo.com>
39274
39275         * m4/socklen.m4: Fix typo.
39276
39277 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39278
39279         Use a consistent style for including <config.h>.
39280         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
39281         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
39282         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
39283         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
39284         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
39285         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
39286         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
39287         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
39288         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
39289         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
39290         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
39291         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
39292         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
39293         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
39294         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
39295         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
39296         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
39297         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
39298         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
39299         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
39300         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
39301         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
39302         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
39303         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
39304         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
39305         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
39306         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
39307         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
39308         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
39309         lib/xstrtoumax.c, lib/yesno.c:
39310         Standardize inclusion of config.h.
39311         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
39312         lib/inttostr.h:  Removed inclusion of config.h from header files.
39313         * lib/inttostr.c:  Adjusted in-tree users.
39314         * lib/timespec.h: Remove superfluous warning to include config.h.
39315         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
39316         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
39317         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
39318         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
39319         config.h with HAVE_CONFIG_H.
39320
39321 2005-09-19  Jim Meyering  <jim@meyering.net>
39322
39323         * modules/pathmax (License): Change to LGPL.
39324
39325 2005-09-19  Derek Price  <derek@ximbiot.com>
39326
39327         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
39328
39329 2005-09-19  Bruno Haible  <bruno@clisp.org>
39330
39331         * gnulib-tool (import): Provide default for --tests-base.
39332
39333 2005-09-19  Bruno Haible  <bruno@clisp.org>
39334
39335         * doc/quote.texi: New file, extracted from gnulib.texi.
39336         * doc/ctime.texi: New file, extracted from gnulib.texi.
39337         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
39338         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
39339         * doc/gnulib.texi: Include them.
39340
39341 2005-09-18  Bruno Haible  <bruno@clisp.org>
39342
39343         Portability fix.
39344         * gnulib-tool (func_readlink): New function.
39345         (func_ln_if_changed): Use it.
39346
39347 2005-09-18  Bruno Haible  <bruno@clisp.org>
39348
39349         * gnulib-tool: Support --with-tests also with --import.
39350         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
39351         (func_import): Use variables $testsbase and $inctests. Emit a
39352         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
39353         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
39354         SUBDIRS += $testsdir.
39355         (func_create_testdir): Update.
39356
39357 2005-09-18  Bruno Haible  <bruno@clisp.org>
39358
39359         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
39360         instead of $dry_run.
39361         (func_cp_if_changed, func_mv_if_changed): Remove functions.
39362         (func_ln_if_changed): Don't handle dry-run here.
39363         (func_import): In dry-run mode, detect more precisely which actions
39364         would be performed, and don't use "...ing" verbs.
39365
39366 2005-09-18  Bruno Haible  <bruno@clisp.org>
39367
39368         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
39369         (func_import): Use join on two temporary files instead of three nested
39370         loops, in order to determine which files are new or old.
39371
39372 2005-09-18  Bruno Haible  <bruno@clisp.org>
39373
39374         * gnulib-tool (func_import): Comment out code that spits out the
39375         new files with --dry-run.
39376
39377 2005-09-18  Bruno Haible  <bruno@clisp.org>
39378
39379         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
39380
39381 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
39382
39383         * lib/stat-time.h: New file.
39384         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
39385         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
39386         in a different way.
39387         (timespec_cmp): New function.
39388         * lib/utimecmp.c: Include stat-time.h.
39389         (SYSCALL_RESOLUTION): Depend on whether various struct stat
39390         members exist, not on the obsolescent ST_MTIM_NSEC.
39391         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
39392
39393 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
39394
39395         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
39396
39397 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
39398
39399         * MODULES.html.sh (File system functions): Add stat-time.
39400         * modules/stat-time: New file.
39401         * modules/timespec (Files): Remove m4/st_mtim.m4; this
39402         is now done in a different way, by the stat-time module.
39403         * modules/utimecmp (Depends-on): Add stat-time.
39404
39405 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
39406
39407         * m4/st_mtim.m4: Remove.  Superseded by...
39408         * m4/stat-time.m4: New file.
39409         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
39410         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
39411
39412 2005-09-15  Derek Price  <derek@ximbiot.com>
39413
39414         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
39415
39416 2005-09-15  Derek Price  <derek@ximbiot.com>
39417
39418         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
39419         * lib/regex_internal.c: Ditto, using this...
39420         (__GNUC_PREREQ): ...new macro.
39421         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
39422         using...
39423         (__GNUC_PREREQ): ...this new macro.
39424
39425         * lib/strstr.h: Include string.h. Define strstr as a macro here.
39426
39427 2005-09-15  Derek Price  <derek@ximbiot.com>
39428             Paul Eggert  <eggert@cs.ucla.edu>
39429
39430         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
39431         changes, consolidating in...
39432         * lib/regex_internal.h: ...this file.
39433
39434 2005-09-13  Jim Meyering  <jim@meyering.net>
39435
39436         * lib/canon-host.c: Filter through gnu indent and reword comments
39437         slightly.
39438         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
39439
39440 2005-09-13  Derek Price  <derek@ximbiot.com>
39441
39442         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
39443         failure.
39444         Reported by Jim Meyering  <jim@meyering.net>.
39445
39446 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39447
39448         * lib/base64.c: Typo.
39449         (base64_encode): Put b64str in initialized data section.
39450
39451 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
39452
39453         Merge glibc and coreutils changes into gnulib, plus a few
39454         extra fixes.
39455         * lib/md5.c: Use #error rather than a string.
39456         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
39457         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
39458         (__attribute__): Define to empty for non recent-GCC.
39459         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
39460         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
39461         Renamed from their non-__ counterparts, with new macros replacing
39462         them if not _LIBC.  Add __THROW attribute.
39463         (rol): Remove.
39464         (struct md5_ctx): Align buffer if using GCC.
39465         * lib/sha1.h (struct sha1_ctx): Likewise.
39466         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
39467         The old name was backwards.
39468         (NOTSWAP): Remove; not used.
39469         (rol): New macro, moved here from md5.h.
39470         (sha1_process_block): Remove a FIXME that doesn't make sense.
39471
39472 2005-09-12  Derek Price  <derek@ximbiot.com>
39473
39474         Return usable errors from canon-host.
39475         * lib/canon-host.h: New file.
39476         * lib/canon-host.c (canon_host): Wrap...
39477         (canon_host_r): ...this new function, which now relies exclusively on
39478         getaddrinfo.
39479         (ch_strerror): New function.
39480         (last_cherror): New global.
39481         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
39482         interface.
39483         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
39484         void *.
39485         (freeaddrinfo): Free ai->ai_canonname when set.
39486
39487 2005-09-12  Derek Price  <derek@ximbiot.com>
39488
39489         Make canon-host require getaddrinfo.
39490         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
39491         AC_LIBSOURCE canon-host.h.  Call...
39492         (gl_PREREQ_CANON_HOST): ...this new function, which requires
39493         gl_GETADDRINFO.
39494         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
39495
39496 2005-09-12  Derek Price  <derek@ximbiot.com>
39497
39498         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
39499         LGPL.
39500         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
39501
39502 2005-09-12  Derek Price  <derek@ximbiot.com>
39503
39504         * lib/gai_strerror.c: Include config.h when available.  Include
39505         getaddrinfo.h before other headers to test interface.
39506         Reported by Larry Jones <lawrence.jones@ugs.com>.
39507
39508 2005-09-12  Derek Price  <derek@ximbiot.com>
39509             Paul Eggert  <eggert@cs.ucla.edu>
39510
39511         * modules/glob (Files): Add glob-libc.h.
39512
39513 2005-09-12  Derek Price  <derek@ximbiot.com>
39514             Paul Eggert  <eggert@cs.ucla.edu>
39515
39516         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
39517         glob_.h, glob-libc.h.
39518         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
39519
39520 2005-09-12  Derek Price  <derek@ximbiot.com>
39521             Paul Eggert  <eggert@cs.ucla.edu>
39522
39523         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
39524         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
39525         protecting things that should be done only in gnulib contexts.
39526         * lib/glob_.h: New file, containing only the glob things needed for
39527         gnulib.
39528         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
39529         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
39530         (glob, globfree, glob_pattern_p): Now defined simply in terms of
39531         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
39532         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
39533         and to respect the namespace rules better.
39534
39535 2005-09-08  Simon Josefsson  <jas@extundo.com>
39536
39537         * modules/socklen: New file.
39538
39539 2005-09-08  Simon Josefsson  <jas@extundo.com>
39540
39541         * m4/socklen.m4: New file.
39542
39543 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39544
39545         * modules/utimens (Files): Add m4/utimbuf.m4, since
39546         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
39547         Reported by Sergey Poznyakoff.
39548
39549 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39550
39551         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
39552         definitions, since that's the preferred style in glibc.
39553         Fix a minor spacing issue, and update copyright notice to match
39554         glibc's.
39555
39556 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39557
39558         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
39559
39560 2005-09-06  Simon Josefsson  <jas@extundo.com>
39561
39562         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
39563         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
39564
39565 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
39566
39567         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
39568         warning.
39569
39570 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
39571
39572         * config/srclist.txt: Add glibc bug 1302.
39573
39574 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
39575
39576         Change bitset word type from unsigned int to unsigned long int,
39577         as this has better performance on typical 64-bit hosts.
39578         Port bitset code to hosts with unusual word sizes.
39579         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
39580         (build_collating_symbol):
39581         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
39582         argument is a bitset.  This is merely a style issue, but it makes
39583         it clearer that an entire array is expected.
39584         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
39585         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
39586         Port to the case where bitset_word is not the same as unsigned int.
39587         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
39588         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
39589         Likewise.
39590         * lib/regexec.c (check_dst_limits_calc_pos_1,
39591         check_subexp_matching_top):
39592         (build_trtable, group_nodes_into_DFAstates):
39593         Likewise.
39594         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
39595         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
39596         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
39597         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
39598         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
39599         * lib/regcomp.c (optimize_subexps, lower_subexp):
39600         Work even if bitset_word has holes in its bitwise representation.
39601         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
39602         * lib/regexec.c (check_dst_limits_calc_pos_1,
39603         check_subexp_matching_top):
39604         Likewise.
39605         * lib/regex_internal.c (re_string_reconstruct):
39606         Don't assume UCHAR_MAX == 255.
39607         * lib/regex_internal.h (bitset_set_all): Likewise.
39608         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
39609         All uses changed.
39610         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
39611         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
39612         All uses changed.
39613         (BITSET_WORD_MAX): New macro.
39614         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
39615         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
39616         (bitset_empty, bitset_copy):
39617         Prefer sizeof (bitset) to multiplying it out ourselves.
39618         (bitset_not_merge): Remove; unused.
39619         (bitset_contain): Return bool, not unsigned int with one bit on.
39620         All callers changed.
39621         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
39622         alignment than re_node_set; do this by defining a new internal
39623         type struct dests_alloc and using it to allocate memory.
39624
39625 2005-09-05  Bruno Haible  <bruno@clisp.org>
39626
39627         * gnulib-tool (func_import): Fix comparison in handling of symbolic
39628         links.
39629
39630 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
39631
39632         * modules/size_max (Makefile.am): Add size_max.h
39633
39634 2005-09-04  Derek Price  <derek@ximbiot.com>
39635
39636         * gnulib-tool (func_import): Fix reversed $symbolic logic.
39637
39638 2005-09-03  Simon Josefsson  <jas@extundo.com>
39639
39640         * gnulib-tool: Fix typo.
39641
39642 2005-09-03  Simon Josefsson  <jas@extundo.com>
39643
39644         * config/srclist.txt: Add glibc bug 1293.
39645
39646 2005-09-03  Derek Price  <derek@ximbiot.com>
39647
39648         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
39649         From Larry Jones <lawrence.jones@ugs.com>.
39650
39651 2005-09-02  Simon Josefsson  <jas@extundo.com>
39652
39653         * modules/socklen: New file.
39654
39655 2005-09-02  Simon Josefsson  <jas@extundo.com>
39656
39657         * modules/havelib: New module.
39658
39659         * modules/gettext, modules/iconv, modules/lock, modules/readline:
39660         Use havelib.
39661
39662 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
39663
39664         Check for arithmetic overflow when calculating sizes, to prevent
39665         some buffer-overflow issues.  These patches are conservative, in the
39666         sense that when I couldn't determine whether an overflow was possible,
39667         I inserted a run-time check.
39668         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
39669         macros.
39670         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
39671         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
39672         (re_xnrealloc, re_x2nrealloc): New inline functions.
39673         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
39674         parse_bracket_exp):
39675         (build_equiv_class, build_charclass): Check for arithmetic overflow
39676         in size expression calculations.
39677         * lib/regex_internal.c (re_string_realloc_buffers):
39678         (build_wcs_upper_buffer, re_node_set_add_intersect):
39679         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
39680         (re_dfa_add_node, register_state): Likewise.
39681         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
39682         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
39683         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
39684         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
39685
39686 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
39687
39688         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
39689         m4/ulonglong.m4.  Problem reported by Martin Lambers.
39690
39691 2005-09-02  Bruno Haible  <bruno@clisp.org>
39692
39693         Support for lib vs. lib64 distinction on biarch platforms.
39694         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
39695         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
39696         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
39697
39698 2005-09-02  Bruno Haible  <bruno@clisp.org>
39699
39700         * gnulib-tool (import): In the other first-use case, provide defaults
39701         as well.
39702
39703 2005-09-02  Bruno Haible  <bruno@clisp.org>
39704
39705         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
39706         patches not yet found in the latest gettext release.
39707
39708 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
39709
39710         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
39711         to avoid a collision with bits/local_lim.h in glibc.
39712         All uses changed.  Problem reported by Dmitry V. Levin in
39713         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
39714
39715         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
39716         bugs in int versus size_t comparisons.
39717         (re_string_context_at): Fix bug where the code assumed that
39718         Idx is signed.
39719
39720         Use bool where appropriate.
39721         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
39722         All callers changed.
39723         (calc_eclosure_iter): Likewise, for ROOT arg.
39724         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
39725         (build_charclass_op): Likewise, for NON_MATCH arg.
39726         * lib/regex_internal.c (re_string_allocate, re_string_construct):
39727         (re_string_construct_common): Likewise, for ICASE arg.
39728         * lib/regexec.c (re_search_2_stub, re_search_stub):
39729         Likewise, for RET_LEN arg.
39730         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
39731         (set_regs): Likewise, for FL_BACKTRACK arg.
39732         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
39733         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
39734         (calc_eclosure_iter, parse_bracket_exp):
39735         Use bool for internal variables that are booleans.
39736         * lib/regexec.c (re_search_internal, check_matching,
39737         proceed_next_node):
39738         (set_regs, build_sifted_states, sift_states_bkref):
39739         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
39740         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
39741         (find_collation_sequence_value):
39742         Likewise.
39743         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
39744         (re_node_set_compare):
39745         Return bool, not int. All callers changed.
39746         * lib/regexec.c (check_halt_node_context, check_dst_limits):
39747         (build_trtable, check_node_accept): Likewise.
39748         * lib/regex_internal.h: Include stdbool.h.
39749
39750         Fix bugs uncovered when converting to bool.
39751         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
39752         failure instead of charging ahead blindly.
39753         * lib/regex_internal.c (register_state): Likewise.
39754         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
39755         for freeing internal storage.
39756         (group_nodes_into_DFA_states): Use unsigned int, not int, for
39757         bitset pieces used as boolean, to avoid undefined behavior
39758         on hosts that do int overflow checking.
39759
39760 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
39761
39762         * config/srclist.txt: Add glibc bugs 1285-1287.
39763
39764 2005-09-01  Jim Meyering  <jim@meyering.net>
39765
39766         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
39767         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
39768         Require gl_STAT_MACROS, too.
39769
39770 2005-09-01  Bruno Haible  <bruno@clisp.org>
39771
39772         * gnulib-tool (import): In the first-use case, provide defaults.
39773
39774 2005-09-01  Bruno Haible  <bruno@clisp.org>
39775
39776         * gnulib-tool (func_import): Remove the .tmp files.
39777
39778 2005-09-01  Bruno Haible  <bruno@clisp.org>
39779
39780         * gnulib-tool (func_import): Fix handling of symbolic links.
39781
39782 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39783
39784         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
39785         old glibc regex code mishandles strings longer than 2**31 bytes.
39786         This patch fixes this when the regex code is used in gnulib
39787         (i.e., outside glibc).
39788
39789         This patch should not affect the use of the regex code inside
39790         glibc.  No doubt this problem also needs to be handled for glibc
39791         as well, but the result will be an incompatible change to the
39792         glibc ABI, and the old ABI will have to be supported too.  That
39793         can be the the subject for another patch.
39794
39795         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
39796         governing whether the rest of this patch is active.  By default,
39797         the macro is disabled and the patch has no effect.
39798         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
39799         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
39800         (struct re_pattern_buffer, re_search, re_search_2, re_match):
39801         (re_match_2, re_set_registers): Use the new types.
39802         * lib/regex_internal.h (Idx, re_hashval_t): New types.
39803         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
39804         New macros.
39805         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
39806         (re_string_context_at, bin_tree_t, re_dfastate_t):
39807         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
39808         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
39809         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
39810         (re_string_char_size_at, re_string_wchar_at):
39811         (re_string_elem_size_at):
39812         Use the new types and macros to port to 64-bit hosts.
39813         Use unsigned types for internal values, so that the code
39814         mostly works even for arrays larger than SSIZE_MAX.
39815         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
39816         (search_duplicated_node, calc_eclosure_iter, fetch_number):
39817         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
39818         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
39819         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
39820         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
39821         (calc_inveclosure, parse_dup_op, build_range_exp):
39822         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
39823         (fetch_number, create_token_tree, mark_opt_subexp):
39824         Likewise.
39825         * lib/regex_internal.c (re_string_construct_common,
39826         create_ci_newstate):
39827         (create_cd_newstate, re_string_allocate, re_string_construct):
39828         (re_string_realloc_buffers, build_wcs_upper_buffer):
39829         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
39830         (re_string_reconstruct, re_string_peek_byte_case):
39831         (re_string_fetch_byte_case, re_string_context_at):
39832         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
39833         (re_node_set_init_copy, re_node_set_add_intersect):
39834         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
39835         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
39836         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
39837         (re_acquire_state, re_acquire_state_context, register_state):
39838         Likewise.
39839         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
39840         search_cur_bkref_entry):
39841         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
39842         (re_search_internal, re_search_2_stub, re_search_stub)
39843         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
39844         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
39845         (update_cur_sifted_state, check_dst_limits):
39846         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
39847         (check_subexp_limits, sift_states_bkref, merge_state_array):
39848         (check_subexp_matching_top, get_subexp, get_subexp_sub):
39849         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
39850         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
39851         (expand_bkref_cache, check_node_accept_bytes):
39852         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
39853         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
39854         (acquire_init_state_context, check_halt_node_context):
39855         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
39856         (sift_states_backward, clean_state_log_if_needed):
39857         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
39858         (find_recover_state, transit_state_sb, transit_state_mb):
39859         (transit_state_bkref, build_trtable, match_ctx_clean):
39860         Likewise.
39861         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
39862         to work around an assumption that REG_MISSING is negative.
39863
39864         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
39865         (seek_collating_symbol_entry) [defined _LIBC]:
39866         (lookup_collation_sequence_value) [defined _LIBC]:
39867         (build_range_exp, build_collating_symbol) [defined _LIBC]:
39868         Use prototypes rather than old-style function definitions.
39869         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
39870         (transit_state_sb) [0]:
39871         (find_collation_sequence_value) [defined _LIBC]: Likewise.
39872
39873         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
39874         rm_eo.
39875
39876         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
39877         (optimize_subexps, lower_subexp):
39878         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
39879         since the signed shift might overflow.  Use 1u<<31 instead.
39880         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
39881         Likewise.
39882         * lib/regexec.c (check_dst_limits_calc_pos_1,
39883         check_subexp_matching_top): Likewise.
39884
39885         * lib/regcomp.c (optimize_subexps, lower_subexp):
39886         Use CHAR_BIT rather than 8, for clarity.
39887         * lib/regexec.c (check_dst_limits_calc_pos_1):
39888         (check_subexp_matching_top): Likewise.
39889         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
39890         have to worry about portability issues when shifting it left.
39891         Remove no-longer-needed test for table_size > 0.
39892         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
39893         in a word, as the resulting behavior is undefined.
39894         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
39895         in one case, a <= should have been an <, and in another case the
39896         whole test was missing.
39897         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
39898         the standard name CHAR_BIT.
39899         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
39900         this is not true on one's complement and signed-magnitude hosts.
39901
39902         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
39903         next_last_offset.
39904         (struct re_dfa_t): Remove unused member states_alloc.
39905         * lib/regcomp.c (init_dfa): Don't initialize unused members.
39906
39907 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39908
39909         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
39910         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
39911         and large-file glibc and in 32-bit large-file Solaris.
39912
39913 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39914
39915         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
39916         lengths fit in regoff_t; this isn't true if regoff_t is the same
39917         width as size_t.
39918         * lib/regex.c (re_search_internal): 5th arg is LAST_START
39919         (= START + RANGE) instead of RANGE.  This avoids overflow
39920         problems when regoff_t is the same width as size_t.
39921         All callers changed.
39922         (re_search_2_stub): Check for overflow when adding the
39923         sizes of the two strings.
39924         (re_search_stub): Check for overflow when adding START
39925         to RANGE; if it occurs, substitute the extreme value.
39926
39927 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39928
39929         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
39930
39931 2005-08-31  Jim Meyering  <jim@meyering.net>
39932
39933         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
39934         a pointer-to-const.
39935         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
39936         (register_state): Likewise.
39937         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
39938         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
39939         (group_nodes_into_DFAstates): Likewise.
39940
39941 2005-08-31  Jim Meyering  <jim@meyering.net>
39942
39943         * check-module: Add a FIXME comment.
39944
39945 2005-08-31  Eric Blake  <ebb9@byu.net>
39946
39947         * modules/unistd-safer (Files): Add unistd--.h.
39948         * modules/stdio-safer (Files): Add stdio--.h.
39949
39950 2005-08-31  Derek Price  <derek@ximbiot.com>
39951
39952         * lib/getdelim.c (getdelim): Return EOF on EOF.
39953         Reported by Larry Jones <lawrence.jones@ugs.com>.
39954
39955 2005-08-31  Bruno Haible  <bruno@clisp.org>
39956
39957         Avoid unnecessary diffs in the generated lib/Makefile.am.
39958         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
39959         the generated files.
39960         (func_import): Don't set cmd.
39961
39962 2005-08-31  Bruno Haible  <bruno@clisp.org>
39963
39964         * lib/strstr.c: Include <stddef.h>, for NULL.
39965         * lib/strcasestr.c: Likewise.
39966         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
39967
39968 2005-08-31  Bruno Haible  <bruno@clisp.org>
39969
39970         * gnulib-tool: New option --macro-prefix.
39971         (func_import): Use macro_prefix.
39972         (import): Handle option --macro-prefix.
39973
39974 2005-08-31  Bruno Haible  <bruno@clisp.org>
39975
39976         * gnulib-tool (import): Rename most ac_* variables to cached_*.
39977         Also use new variables cached_lgpl, cached_libtool.
39978
39979 2005-08-31  Bruno Haible  <bruno@clisp.org>
39980
39981         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
39982         always instantiating them.
39983
39984 2005-08-31  Bruno Haible  <bruno@clisp.org>
39985
39986         * gnulib-tool (func_import): Read the previous cached settings
39987         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
39988         earlier added by gnulib but are now dropped. Warn when a gnulib file
39989         overwrites a non-gnulib file.
39990
39991 2005-08-31  Bruno Haible  <bruno@clisp.org>
39992
39993         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
39994         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
39995         projects that don't keep autogenerated files in CVS. Put into
39996         actioncmd only the specified modules, not the transitive closure.
39997
39998 2005-08-31  Bruno Haible  <bruno@clisp.org>
39999
40000         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
40001         Create directories that shall be filled.
40002         (import): Don't look for gl_* macros in configure.ac. Recurse across
40003         all directories containing a gnulib-cache.m4 files, if meaningful.
40004
40005 2005-08-31  Bruno Haible  <bruno@clisp.org>
40006
40007         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
40008         (import): Set seen_libtool when we see gl_LIBTOOL.
40009
40010 2005-08-31  Bruno Haible  <bruno@clisp.org>
40011
40012         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
40013         declaration macro definitions from generated gnulib.m4.
40014
40015 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
40016
40017         * lib/iconvme.h: Add prototype for iconv_alloc.
40018
40019 2005-08-29  Simon Josefsson  <jas@extundo.com>
40020
40021         * lib/iconvme.c: Fix errno.
40022
40023 2005-08-29  Bruno Haible  <bruno@clisp.org>
40024
40025         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
40026         that it works when the directory contains spaces.
40027
40028 2005-08-29  Bruno Haible  <bruno@clisp.org>
40029
40030         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
40031
40032 2005-08-29  Bruno Haible  <bruno@clisp.org>
40033
40034         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
40035         Emit more advice.
40036
40037 2005-08-29  Bruno Haible  <bruno@clisp.org>
40038         and Stepan Kasal  <kasal@ucw.cz>
40039
40040         * check-module: If more parameters are given, check each of them
40041         separately; add more exceptions, as noted by Jim Meyering.
40042         (check_module): New procedure.
40043         (%exempt_header): Now contains all exceptions.
40044
40045 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
40046
40047         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
40048
40049 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
40050
40051         * lib/iconvme.c: Split iconv_string into iconv_alloc.
40052
40053 2005-08-28  Bruno Haible  <bruno@clisp.org>
40054
40055         * m4/gnulib-tool.m4: New file.
40056
40057 2005-08-27  Jim Meyering  <jim@meyering.net>
40058
40059         * modules/unistd-safer (Files): Add pipe-safer.c.
40060         * modules/fcntl-safer (Files): Add creat-safer.c.
40061
40062 2005-08-27  Jim Meyering  <jim@meyering.net>
40063
40064         * m4/stdlib-safer.m4: New file.  From coreutils.
40065         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
40066         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
40067         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
40068         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
40069         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
40070
40071 2005-08-27  Jim Meyering  <jim@meyering.net>
40072
40073         * lib/fopen-safer.c: Merge minor changes from coreutils.
40074         * lib/dup-safer.c: Likewise.
40075         * lib/fd-safer.c: Likewise.
40076
40077         Merge from coreutils.
40078         * lib/stdio--.h: New file.
40079         * lib/stdlib--.h: New file.
40080         * lib/mkstemp-safer.c: New file.
40081
40082         GNU tar needs these.
40083         * lib/pipe-safer.c: New file.
40084         * lib/creat-safer.c: New file.
40085         * lib/fcntl--.h (creat): Define to creat_safer.
40086         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
40087         * lib/unistd--.h (pipe): Define to pipe_safer.
40088         * lib/unistd-safer.h: Declare pipe_safer.
40089
40090 2005-08-26  Simon Josefsson  <jas@extundo.com>
40091
40092         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
40093         Haible <bruno@clisp.org>.
40094
40095 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
40096
40097         * lib/regex_internal.h: Remove all references to
40098         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
40099         or better.
40100         (bitset_not, bitset_merge, bitset_not_merge):
40101         (bitset_mask, re_string_allocate, re_string_construct):
40102         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
40103         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
40104         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
40105         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
40106         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
40107         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
40108         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
40109         (re_acquire_state_context):
40110         Remove unnecessary forward decls.
40111         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
40112         Put __attribute at function definition,
40113         now that the function decl has been removed.
40114         * lib/regex_internal.c (re_string_peek_byte_case):
40115         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
40116         Likewise.
40117
40118 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
40119
40120         * m4/regex.m4: Add AC_PREREQ(2.50).
40121         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
40122
40123 2005-08-25  Simon Josefsson  <jas@extundo.com>
40124
40125         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
40126         __fsetlocking.
40127
40128 2005-08-25  Simon Josefsson  <jas@extundo.com>
40129
40130         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
40131         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
40132         GLIBC specific code.
40133
40134 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
40135
40136         Make regex safe for g++.  This fixes one real bug (an "err"
40137         that should have been "*err").  g++ problem reported by
40138         Sam Steingold.
40139         * lib/regex_internal.h (re_calloc): New macro, consistent with
40140         re_malloc etc.  All callers of calloc changed to use re_calloc.
40141         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
40142         not int.  All callers changed.
40143         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
40144         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
40145         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
40146         (find_recover_state): Change "err" to "*err"; this fixes what
40147         appears to be a real bug.
40148         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
40149         versus int.
40150
40151 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
40152
40153         * modules/regex (Depends-on): Add malloc, since the code
40154         assumes that !malloc(0) means failure.
40155
40156 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
40157
40158         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
40159
40160         alloca modernization/simplification for regex.
40161         * lib/regex.c: Remove portability cruft for alloca.  This no longer
40162         needs to be at the start of the file, and can be moved into
40163         regex_internal.h and simplified.
40164         * lib/regex_internal.h: Include <alloca.h>.
40165         (__libc_use_alloca) [!defined _LIBC]: New macro.
40166         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
40167         now works outside glibc.
40168
40169 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
40170
40171         * config/srclist.txt: Add glibc bugs 1241, 1245.
40172
40173 2005-08-25  Jim Meyering  <jim@meyering.net>
40174
40175         * lib/open-safer.c: Include <config.h>.
40176         Otherwise, we'd lose LARGEFILE support in any file using
40177         e.g. "fcntl--.h"
40178
40179 2005-08-25  Bruno Haible  <bruno@clisp.org>
40180
40181         * m4/minmax.m4: Require autoconf 2.52.
40182         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
40183         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
40184         alternatives of translit over the alphabet.
40185         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
40186
40187 2005-08-24  Simon Josefsson  <jas@extundo.com>
40188
40189         * tests/test-getpass.c: New file.
40190
40191 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
40192
40193         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
40194         for GNU regex features.
40195
40196 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
40197
40198         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
40199         * lib/regex.h (regerror): Likewise.
40200
40201         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
40202         requires this.  (The code never needed it.)
40203
40204         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
40205         All uses of recently-renamed identifiers changed to use the new,
40206         POSIX-compliant names.  The code will build and run just fine
40207         without these changes, but it's better to eat our own dog food
40208         and use the standard-conforming names.
40209
40210         * lib/regex.h: Fix a multitude of POSIX name space violations.
40211         These changes have an effect only for programs that define
40212         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
40213         do not change anything for programs compiled in the normal way.
40214         Also, there is no effect on the ABI.
40215
40216         (_REGEX_SOURCE): New macro.
40217         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
40218         defined and _GNU_SOURCE is not; this fixes a name space violation.
40219
40220         Rename the following macros to obey POSIX requirements.
40221         The old names are still visible as macros if _REGEX_SOURCE is defined.
40222         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
40223         RE_BACKSLASH_ESCAPE_IN_LISTS.
40224         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
40225         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
40226         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
40227         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
40228         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
40229         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
40230         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
40231         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
40232         (REG_INTERVALS): renamed from RE_INTERVALS.
40233         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
40234         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
40235         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
40236         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
40237         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
40238         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
40239         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
40240         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
40241         RE_UNMATCHED_RIGHT_PAREN_ORD.
40242         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
40243         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
40244         (REG_DEBUG): renamed from RE_DEBUG.
40245         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
40246         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
40247         unusual, since we can't clash with the POSIX REG_ICASE.
40248         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
40249         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
40250         (REG_NO_SUB): renamed from RE_NO_SUB.
40251         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
40252         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
40253         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
40254         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
40255         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
40256         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
40257         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
40258         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
40259         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
40260         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
40261         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
40262         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
40263         RE_SYNTAX_POSIX_MINIMAL_BASIC.
40264         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
40265         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
40266         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
40267         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
40268         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
40269         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
40270         (REG_FIXED): Renamed from REGS_FIXED.
40271         (REG_NREGS): Renamed from RE_NREGS.
40272
40273         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
40274         of other REG_* macros, since POSIX says the user is allowed to
40275         #undef these macros selectively.
40276
40277         (reg_errcode_t): Update comment stating what other tables need
40278         to be consistent.
40279
40280         Rename the following enum values to obey POSIX requirements.
40281         The old names are still visible as macros.
40282         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
40283         is not defined, since GNU is supposed to be a superset of POSIX as
40284         much as possible, and since we want reg_errcode_t to be a signed
40285         type for implementation consistency.
40286         (_REG_NOERROR): Renamed from REG_NOERROR.
40287         (_REG_NOMATCH): Renamed from REG_NOMATCH.
40288         (_REG_BADPAT): Renamed from REG_BADPAT.
40289         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
40290         (_REG_ECTYPE): Renamed from REG_ECTYPE.
40291         (_REG_EESCAPE): Renamed from REG_EESCAPE.
40292         (_REG_ESUBREG): Renamed from REG_ESUBREG.
40293         (_REG_EBRACK): Renamed from REG_EBRACK.
40294         (_REG_EPAREN): Renamed from REG_EPAREN.
40295         (_REG_EBRACE): Renamed from REG_EBRACE.
40296         (_REG_BADBR): Renamed from REG_BADBR.
40297         (_REG_ERANGE): Renamed from REG_ERANGE.
40298         (_REG_ESPACE): Renamed from REG_ESPACE.
40299         (_REG_BADRPT): Renamed from REG_BADRPT.
40300         (_REG_EEND): Renamed from REG_EEND.
40301         (_REG_ESIZE): Renamed from REG_ESIZE.
40302         (_REG_ERPAREN): Renamed from REG_ERPAREN.
40303         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
40304         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
40305         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
40306         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
40307
40308         (_REG_RE_NAME, _REG_RM_NAME): New macros.
40309         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
40310         changed.  But support the old name if the new one is not defined
40311         and if _REGEX_SOURCE.
40312
40313         Change the following member names in struct re_pattern_buffer.
40314         The old names are still supported if !_REGEX_SOURCE.
40315         The new names are always supported, regardless of _REGEX_SOURCE.
40316         (re_buffer): Renamed from buffer.
40317         (re_allocated): Renamed from allocated.
40318         (re_used): Renamed from used.
40319         (re_syntax): Renamed from syntax.
40320         (re_fastmap): Renamed from fastmap.
40321         (re_translate): Renamed from translate.
40322         (re_can_be_null): Renamed from can_be_null.
40323         (re_regs_allocated): Renamed from regs_allocated.
40324         (re_fastmap_accurate): Renamed from fastmap_accurate.
40325         (re_no_sub): Renamed from no_sub.
40326         (re_not_bol): Renamed from not_bol.
40327         (re_not_eol): Renamed from not_eol.
40328         (re_newline_anchor): Renamed from newline_anchor.
40329
40330         Change the following member names in struct re_registers.
40331         The old names are still supported if !_REGEX_SOURCE.
40332         The new names are always supported, regardless of _REGEX_SOURCE.
40333         (rm_num_regs): Renamed from num_regs.
40334         (rm_start): Renamed from start.
40335         (rm_end): Renamed from end.
40336
40337         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
40338         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
40339         Prepend __ to parameter names.
40340
40341         Undo yesterday's changes.
40342
40343 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
40344
40345         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
40346         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
40347         lib/regex.c.
40348
40349 2005-08-24  Jim Meyering  <jim@meyering.net>
40350
40351         Sync from coreutils.
40352         * m4/fcntl-safer.m4: New file.
40353
40354         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
40355         and object files for this module.
40356
40357 2005-08-24  Jim Meyering  <jim@meyering.net>
40358
40359         Sync from coreutils.
40360         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
40361
40362 2005-08-24  Jim Meyering  <jim@meyering.net>
40363
40364         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
40365         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
40366
40367 2005-08-24  Jim Meyering  <jim@meyering.net>
40368
40369         * modules/fcntl-safer: New module.
40370         * modules/fts (Depends-on): Add fcntl-safer.
40371         * MODULES.html.sh (File descriptor based Input/Output):
40372         Add fcntl-safer.
40373
40374 2005-08-24  Bruno Haible  <bruno@clisp.org>
40375
40376         Support for unit test modules.
40377         * modules/README: Mention tests modules.
40378         * modules/TEMPLATE-TESTS: New file.
40379         * gnulib-tool: New options --extract-tests-module, --with-tests and
40380         --tests-base (unused for the moment).
40381         (testsbase, inctests): New variables.
40382         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
40383         (func_verify_module): Exclude TEMPLATE-TESTS.
40384         (func_verify_nontests_module, func_verify_tests_module): New functions.
40385         (func_get_dependencies): Add implicit dependency for tests modules.
40386         (func_get_tests_module): New function.
40387         (func_modules_transitive_closure): When --with-tests was specified,
40388         include the unit tests as well, unless explicitly avoided.
40389         (func_emit_lib_Makefile_am): Ignore the tests modules here.
40390         (func_emit_tests_Makefile_am): New function.
40391         (func_create_testdir): When --with-tests was specified, emit a
40392         tests/ directory.
40393         * MODULES.html.sh (Future developments): Update.
40394
40395 2005-08-24  Bruno Haible  <bruno@clisp.org>
40396
40397         * modules/tls-tests: New file.
40398         * tests/test-tls.c: New file, from GNU gettext.
40399
40400 2005-08-24  Bruno Haible  <bruno@clisp.org>
40401
40402         * modules/lock-tests: New file.
40403         * tests/test-lock.c: New file, from GNU gettext.
40404
40405 2005-08-24  Bruno Haible  <bruno@clisp.org>
40406
40407         * lib/lock.h: Add multiple inclusion guard.
40408         * lib/tls.h: Add multiple inclusion guard.
40409
40410 2005-08-24  Bruno Haible  <bruno@clisp.org>
40411
40412         * gnulib-tool: Add support for the --aux-dir option to
40413         --create-testdir, --create-megatestdir, --test, --megatest.
40414         (func_create_testdir, func_create_megatestdir): Optionally emit a
40415         AC_CONFIG_AUX_DIR directive.
40416         (create-testdir, create-megatestdir, test, megatest): Provide a
40417         default value for $auxdir.
40418
40419 2005-08-24  Bruno Haible  <bruno@clisp.org>
40420
40421         * gnulib-tool (import): Use compound statement instead of subshell
40422         where possible.
40423
40424 2005-08-24  Bruno Haible  <bruno@clisp.org>
40425
40426         * gnulib-tool (import): Change --aux-dir default to "build-aux".
40427
40428 2005-08-24  Bruno Haible  <bruno@clisp.org>
40429
40430         * gnulib-tool (func_version): Update.
40431
40432 2005-08-24  Bruno Haible  <bruno@clisp.org>
40433
40434         * gnulib-tool (func_import, func_create_testdir,
40435         func_create_megatestdir): Quote all autoconf macro arguments.
40436
40437 2005-08-24  Bruno Haible  <bruno@clisp.org>
40438
40439         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
40440         option --force, because --force causes the aclocal.m4 of each
40441         subdirectory to be newer than the corresponding config.h.in.
40442
40443 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
40444
40445         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
40446         All contents moved to gl_REGEX.
40447         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
40448         assume that it does.
40449
40450 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
40451
40452         * lib/regex.h (REG_NOSYS)
40453         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
40454         Define, since POSIX requires it as of 2001.
40455         (_REG_ENOSYS)
40456         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
40457         New private symbol, used to keep the enum signed in all cases.
40458         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
40459         Youngman in
40460         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
40461
40462         * lib/regex_internal.c (re_string_skip_chars, register_state):
40463         (calc_state_hash):
40464         Remove forward decls; no longer needed now that we use prototypes.
40465         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
40466         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
40467         (clean_state_log_if_needed): Likewise.
40468
40469 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
40470
40471         * config/srclist.txt: Add glibc bugs 1231-1233.
40472
40473 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
40474
40475         Fix problems reported by Sam Steingold in
40476         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
40477         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
40478         assumed that reg_errcode_t is a signed type, which is not
40479         necessarily true if _XOPEN_SOURCE is not defined.
40480         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
40481         since some compilers warn about it otherwise.
40482
40483 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
40484
40485         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
40486         (init_word_char, create_initial_state, duplicate_node_closure):
40487         (fetch_token, peek_token_bracket, build_range_exp):
40488         (build_collating_symbol): Remove forward decls; no longer needed
40489         now that we use prototypes.
40490
40491         * lib/regcomp.c:
40492         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
40493         (re_compile_fastmap_iter, regcomp, regerror, regfree):
40494         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
40495         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
40496         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
40497         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
40498         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
40499         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
40500         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
40501         (build_range_exp, build_collating_symbol, parse_bracket_exp):
40502         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
40503         (build_charclass, build_charclass_op, fetch_number, create_tree):
40504         (create_token_tree, mark_opt_subexp, duplicate_tree):
40505         Use prototypes rather than old-style definitions.
40506
40507         * lib/regex_internal.c:
40508         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
40509         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
40510         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
40511         (re_string_reconstruct, re_string_peek_byte_case):
40512         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
40513         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
40514         (re_node_set_init_copy, re_node_set_add_intersect):
40515         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
40516         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
40517         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
40518         (re_acquire_state, re_acquire_state_context, register_state):
40519         (create_ci_newstate, create_cd_newstate, free_state):
40520         Likewise.
40521         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
40522         re_search_2):
40523         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
40524         (re_search_internal, prune_impossible_nodes):
40525         (acquire_init_state_context, check_matching, static):
40526         (check_halt_node_context, check_halt_state_context, proceed_next_node):
40527         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
40528         (update_regs, sift_states_backward, build_sifted_states):
40529         (clean_state_log_if_needed, merge_state_array):
40530         (update_cur_sifted_state, add_epsilon_src_nodes):
40531         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
40532         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
40533         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
40534         (find_recover_state, check_subexp_matching_top, transit_state_mb):
40535         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
40536         (check_arrival, check_arrival_add_next_nodes):
40537         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
40538         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
40539         (check_node_accept_bytes, check_node_accept, extend_buffers):
40540         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
40541         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
40542         (sift_ctx_init):
40543         Likewise.
40544
40545         * lib/regex_internal.h:
40546         (re_string_allocate, re_string_construct, re_string_reconstruct):
40547         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
40548         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
40549         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
40550         (re_string_context_at, re_string_peek_byte_case):
40551         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
40552         is defined, since we now use prototypes always.
40553
40554         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
40555         C89 or better.  All uses removed.
40556
40557 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
40558
40559         * config/srclist.txt: Add glibc bugs 1220-1227.
40560
40561 2005-08-20  Jim Meyering  <jim@meyering.net>
40562
40563         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
40564         of unused local, dfa.
40565
40566 2005-08-20  Bruno Haible  <bruno@clisp.org>
40567
40568         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
40569
40570 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40571
40572         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
40573         (re_node_set_insert_last, re_dfa_add_node):
40574         Rename local variables to avoid GCC shadowing warnings.
40575
40576 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40577
40578         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
40579         [defined lint]: Suppress bogus uninitialized-variable warnings.
40580
40581         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
40582         and let the caller return REG_ESPACE if out of space.  This
40583         removes an uninitialied-variable warning with GCC 4.0.1, and also
40584         avoids taking the address of a local variable.  All callers
40585         changed.
40586
40587 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40588
40589         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
40590         $LIBCSRC/posix/regexec.c.
40591         Add glibc bug 1217 for regcomp.c.
40592
40593 2005-08-19  Jim Meyering  <jim@meyering.net>
40594
40595         * lib/regexec.c (proceed_next_node): Redo local variables to
40596         avoid GCC shadowing warnings.
40597
40598 2005-08-18  Bruno Haible  <bruno@clisp.org>
40599
40600         * lib/strstr.c (strstr): Fix return value in multibyte case.
40601         * lib/strcasestr.c (strcasestr): Likewise.
40602
40603 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
40604
40605         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
40606
40607 2005-08-17  Jim Meyering  <jim@meyering.net>
40608
40609         Make the %s format (seconds since the epoch) work for a negative
40610         number and when used with a zero-padded field width, e.g. %015s.
40611
40612         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
40613         label so that it precedes the code to set `digits'.  Otherwise,
40614         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
40615         print `00-22'.  Now, it prints `-0022', as it should.
40616
40617 2005-08-17  Bruno Haible  <bruno@clisp.org>
40618
40619         * modules/strstr (Files): Add m4/mbrtowc.m4.
40620         (Depends-on): Add mbuiter.
40621
40622 2005-08-17  Bruno Haible  <bruno@clisp.org>
40623
40624         * modules/strcasestr: New file.
40625         * MODULES.html.sh (String handling, based on ANSI C 89): Add
40626         strcasestr.
40627
40628 2005-08-17  Bruno Haible  <bruno@clisp.org>
40629
40630         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
40631
40632 2005-08-17  Bruno Haible  <bruno@clisp.org>
40633
40634         * modules/mbuiter: New file.
40635         * MODULES.html.sh (Extended multibyte and wide character utilities):
40636         Add mbuiter.
40637
40638 2005-08-17  Bruno Haible  <bruno@clisp.org>
40639
40640         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
40641         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
40642
40643 2005-08-17  Bruno Haible  <bruno@clisp.org>
40644
40645         * m4/strcasestr.m4: New file.
40646
40647 2005-08-17  Bruno Haible  <bruno@clisp.org>
40648
40649         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
40650         * lib/strstr.c: Completely rewritten, with multibyte locale support.
40651
40652 2005-08-17  Bruno Haible  <bruno@clisp.org>
40653
40654         * lib/strcasestr.h: New file.
40655         * lib/strcasestr.c: New file.
40656
40657 2005-08-17  Bruno Haible  <bruno@clisp.org>
40658
40659         * lib/strcasecmp.c: Use mbuiter.h.
40660
40661 2005-08-17  Bruno Haible  <bruno@clisp.org>
40662
40663         * lib/mbuiter.h: New file.
40664
40665 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
40666
40667         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
40668         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
40669         and gl_GETOPT are both invoked via different paths (as happens
40670         with GNU tar CVS because it uses both argp and getopt), the former
40671         wins.
40672
40673 2005-08-16  Bruno Haible  <bruno@clisp.org>
40674
40675         * modules/tls: New file.
40676         * MODULES.html.sh (Multithreading): Add tls.
40677
40678 2005-08-16  Bruno Haible  <bruno@clisp.org>
40679
40680         * modules/strnlen1: New file.
40681         * MODULES.html.sh (String handling): Add strnlen1.
40682
40683 2005-08-16  Bruno Haible  <bruno@clisp.org>
40684
40685         * modules/strcase (Files): Add m4/mbrtowc.m4.
40686         (Depends-on): Add strnlen1, mbchar.
40687
40688 2005-08-16  Bruno Haible  <bruno@clisp.org>
40689
40690         * modules/mbiter: New file.
40691         * MODULES.html.sh (Extended multibyte and wide character utilities):
40692         Add mbiter.
40693
40694 2005-08-16  Bruno Haible  <bruno@clisp.org>
40695
40696         * modules/mbfile: New file.
40697         * MODULES.html.sh (Extended multibyte and wide character utilities):
40698         Add mbfile.
40699
40700 2005-08-16  Bruno Haible  <bruno@clisp.org>
40701
40702         * modules/mbchar: New file.
40703         * MODULES.html.sh (Extended multibyte and wide character utilities):
40704         New section.
40705
40706 2005-08-16  Bruno Haible  <bruno@clisp.org>
40707
40708         * m4/tls.m4: New file, from GNU gettext.
40709
40710 2005-08-16  Bruno Haible  <bruno@clisp.org>
40711
40712         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
40713         always.
40714         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
40715
40716 2005-08-16  Bruno Haible  <bruno@clisp.org>
40717
40718         * m4/mbiter.m4: New file.
40719
40720 2005-08-16  Bruno Haible  <bruno@clisp.org>
40721
40722         * m4/mbfile.m4: New file.
40723
40724 2005-08-16  Bruno Haible  <bruno@clisp.org>
40725
40726         * m4/mbchar.m4: New file.
40727
40728 2005-08-16  Bruno Haible  <bruno@clisp.org>
40729
40730         * lib/tls.h: New file, from GNU gettext.
40731         * lib/tls.c: New file, from GNU gettext.
40732
40733 2005-08-16  Bruno Haible  <bruno@clisp.org>
40734
40735         * lib/strnlen1.h: New file.
40736         * lib/strnlen1.c: New file.
40737
40738 2005-08-16  Bruno Haible  <bruno@clisp.org>
40739
40740         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
40741         (mbi_init): Update.
40742         (mbi_avail, mbi_advance): Let the iteration end before the terminating
40743         NUL byte, not after it.
40744
40745 2005-08-16  Bruno Haible  <bruno@clisp.org>
40746
40747         * lib/strcase.h (strcasecmp): Add note in comments.
40748         * lib/strncasecmp.c: Use code from strcasecmp.c.
40749         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
40750         (strcasecmp): Work correctly in multibyte locales.
40751
40752 2005-08-16  Bruno Haible  <bruno@clisp.org>
40753
40754         * lib/mbiter.h: New file.
40755
40756 2005-08-16  Bruno Haible  <bruno@clisp.org>
40757
40758         * lib/mbfile.h: New file.
40759
40760 2005-08-16  Bruno Haible  <bruno@clisp.org>
40761
40762         * lib/mbchar.h: New file.
40763         * lib/mbchar.c: New file.
40764
40765 2005-08-16  Bruno Haible  <bruno@clisp.org>
40766
40767         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
40768         the valid ones. Makes the comparison operations transitive:
40769         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
40770         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
40771
40772 2005-08-15  Simon Josefsson  <jas@extundo.com>
40773
40774         * modules/ssize_t (License): Change to 'unlimited'.
40775
40776         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
40777
40778 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
40779
40780         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
40781         Add comments for each pending glibc patch.
40782
40783 2005-08-15  Bruno Haible  <bruno@clisp.org>
40784
40785         * lib/regex.h (__restrict_arr): Don't define to __restrict if
40786         __cplusplus is defined.
40787
40788 2005-08-14  Jim Meyering  <jim@meyering.net>
40789
40790         Sync from coreutils.
40791
40792         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
40793         Use the hash-table-based cycle-detection code not just when
40794         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
40795         Reported by James Youngman in
40796         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
40797         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
40798         FTS_TIGHT_CYCLE_CHECK.
40799         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
40800         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
40801         once again.
40802         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
40803         * lib/fts.c (fd_safer): Remove decl.
40804         Include fcntl--.h rather than unistd-safer.h
40805         (fts_safe_changedir): Don't call fd_safer; no longer needed
40806         now that we include fcntl--.h.
40807
40808 2005-08-12  Simon Josefsson  <jas@extundo.com>
40809
40810         * modules/getndelim2: Use ssize_t module.
40811         * modules/getnline: Likewise.
40812         * modules/safe-read: Likewise.
40813         * modules/xreadlink: Likewise.
40814
40815         * modules/ssize_t: New file.
40816
40817 2005-08-12  Simon Josefsson  <jas@extundo.com>
40818
40819         * m4/readline.m4: Look for termcap, curses or ncurses if required.
40820
40821 2005-08-12  Simon Josefsson  <jas@extundo.com>
40822
40823         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
40824         ssize_t.
40825
40826 2005-08-12  Simon Josefsson  <jas@extundo.com>
40827
40828         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
40829         readline, getdelim and check_version.
40830         (Support for systems lacking ISO C 99: Sizes of integer types):
40831         Add size_max.
40832
40833 2005-08-12  Bruno Haible  <bruno@clisp.org>
40834
40835         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
40836
40837 2005-08-11  Simon Josefsson  <jas@extundo.com>
40838
40839         * modules/readline: New file.
40840
40841         * modules/strnlen (Files): Add strnlen.h.
40842
40843 2005-08-11  Simon Josefsson  <jas@extundo.com>
40844
40845         * m4/readline.m4: New file.
40846
40847 2005-08-11  Simon Josefsson  <jas@extundo.com>
40848
40849         * lib/readline.h, readline.c: New file.
40850
40851 2005-08-11  Simon Josefsson  <jas@extundo.com>
40852
40853         * doc/gnulib.texi (Initial import, Finishing touches): Mention
40854         gl_AVOID.
40855
40856 2005-08-11  Bruno Haible  <bruno@clisp.org>
40857
40858         * lib/strnlen.h (strnlen): Change parameter name to match comment.
40859
40860 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
40861
40862         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
40863
40864 2005-08-10  Simon Josefsson  <jas@extundo.com>
40865
40866         * tests/test-iconvme.c: New file.
40867
40868 2005-08-10  Simon Josefsson  <jas@extundo.com>
40869
40870         * m4/strnlen.m4: New file.
40871
40872         * m4/strndup.m4: Don't check for strnlen declaration, done in
40873         strnlen.m4.
40874
40875 2005-08-10  Simon Josefsson  <jas@extundo.com>
40876
40877         * lib/strndup.c: Use strnlen.h.
40878
40879         * lib/strnlen.h: New file.
40880
40881 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
40882
40883         * README: Typos.
40884
40885 2005-08-02  Simon Josefsson  <jas@extundo.com>
40886
40887         * modules/readline: New file.
40888
40889 2005-08-02  Simon Josefsson  <jas@extundo.com>
40890
40891         * modules/getdelim: New file.
40892
40893         * modules/getline: Rewrite, don't use getndelim2.
40894
40895 2005-08-02  Simon Josefsson  <jas@extundo.com>
40896
40897         * m4/getline.m4: Separate out getdelim stuff into separate module.
40898
40899         * m4/getdelim.m4: New file.
40900
40901 2005-08-02  Simon Josefsson  <jas@extundo.com>
40902
40903         * lib/getline.h, getline.c: Rewrite.
40904
40905         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
40906
40907 2005-07-31  Bruno Haible  <bruno@clisp.org>
40908
40909         * lib/lock.h (gl_lock_initializer): New macro.
40910         (gl_lock_define_initialized): Use it.
40911         (gl_rwlock_initializer): New macro.
40912         (gl_rwlock_define_initialized): Use it.
40913         (gl_recursive_lock_initializer): New macro.
40914         (gl_recursive_lock_define_initialized): Use it.
40915
40916 2005-07-30  Karl Berry  <karl@gnu.org>
40917
40918         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
40919         Report from Ben Pfaff, regarding getopt.
40920
40921 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
40922
40923         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
40924         normal way.
40925         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
40926         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
40927         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
40928         (gl_GETOPT): Use the new macros.  Most of the implementation
40929         is moved to the new macros.  This is for programs like Emacs
40930         that don't want all the functionality of gl_GETOPT.
40931
40932 2005-07-26  Bruno Haible  <bruno@clisp.org>
40933
40934         * m4/lock.m4: Update from GNU gettext.
40935
40936 2005-07-26  Bruno Haible  <bruno@clisp.org>
40937
40938         * lib/lock.h: Update from GNU gettext.
40939         * lib/lock.c: Update from GNU gettext.
40940
40941 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
40942
40943         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
40944         obsolescent AC_TRY_RUN.  Include the default includes files, for
40945         'exit'.
40946
40947 2005-07-24  Bruno Haible  <bruno@clisp.org>
40948
40949         * modules/visibility: New file.
40950         * MODULES.html.sh (Misc): Add visibility.
40951
40952 2005-07-24  Bruno Haible  <bruno@clisp.org>
40953
40954         * m4/visibility.m4: New file.
40955
40956 2005-07-24  Bruno Haible  <bruno@clisp.org>
40957
40958         * doc/visibility.texi: New file.
40959
40960 2005-07-22  Bruno Haible  <bruno@clisp.org>
40961
40962         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
40963         $(ALLOCA_H), redundant through BUILT_SOURCES.
40964         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
40965         redundant through BUILT_SOURCES.
40966         * modules/byteswap (Makefile.am): Remove explicit dependency on
40967         $(BYTESWAP_H), redundant through BUILT_SOURCES.
40968         * modules/fnmatch (Makefile.am): Remove explicit dependency on
40969         $(FNMATCH_H), redundant through BUILT_SOURCES.
40970         * modules/getopt (Makefile.am): Remove explicit dependency on
40971         $(GETOPT_H), redundant through BUILT_SOURCES.
40972         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
40973         redundant through BUILT_SOURCES.
40974         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
40975         redundant through BUILT_SOURCES.
40976         * modules/stdbool (Makefile.am): Remove explicit dependency on
40977         $(STDBOOL_H), redundant through BUILT_SOURCES.
40978         * modules/stdint (Makefile.am): Remove explicit dependency on
40979         $(STDINT_H), redundant through BUILT_SOURCES.
40980         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
40981         Remove explicit dependency on $(SYSEXITS_H).
40982         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
40983
40984 2005-07-18  Simon Josefsson  <jas@extundo.com>
40985
40986         * lib/check-version.c (check_version): Accept identical versions too.
40987
40988 2005-07-18  Bruno Haible  <bruno@clisp.org>
40989
40990         * modules/lock: New file.
40991         * MODULES.html.sh (Multithreading): New section.
40992
40993 2005-07-18  Bruno Haible  <bruno@clisp.org>
40994
40995         * m4/lock.m4: New file, from GNU gettext.
40996
40997 2005-07-18  Bruno Haible  <bruno@clisp.org>
40998
40999         * lib/lock.h: New file, from GNU gettext.
41000         * lib/lock.c: New file, from GNU gettext.
41001
41002 2005-07-18  Bruno Haible  <bruno@clisp.org>
41003
41004         * lib/lock.h (gl_once_t): New type.
41005         (gl_once_define, gl_once): New macros.
41006         * lib/lock.c (fresh_once): New variable.
41007         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
41008         functions.
41009
41010 2005-07-16  Simon Josefsson  <jas@extundo.com>
41011
41012         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
41013         workaround, suggested by Bruno.
41014
41015 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
41016
41017         * modules/xalloc (Depends-on): Add xalloc-die.
41018         * modules/xvasprintf (Depends-on): Add xalloc-die.
41019
41020 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
41021
41022         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
41023         with a minor change.
41024
41025 2005-07-15  Bruno Haible  <bruno@clisp.org>
41026
41027         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
41028         When using lib/poll.c, define poll as rpl_poll.
41029
41030 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
41031
41032         * modules/argp (Depends-on): Remove unlocked-io.
41033
41034 2005-07-14  Derek Price  <derek@ximbiot.com>
41035
41036         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
41037         for glob symlink bug.
41038
41039 2005-07-14  Bruno Haible  <bruno@clisp.org>
41040
41041         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
41042         Instead, test for *_unlocked function declarations directly.
41043
41044 2005-07-11  Simon Josefsson  <jas@extundo.com>
41045
41046         * modules/size_max: New file.
41047
41048         * modules/xsize: Depend on size_max module for size_max.m4.
41049
41050 2005-07-11  Simon Josefsson  <jas@extundo.com>
41051
41052         * lib/size_max.h: New file.
41053
41054 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
41055
41056         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
41057         copyright symbol and the year.
41058         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
41059         (version_etc_va): Use parameterized copyright notice.
41060         Reword to conform to the current GNU coding standards.
41061
41062 2005-07-11  Karl Berry  <karl@gnu.org>
41063
41064         * doc/gnulib.texi (Quoting): new node.
41065         (Initial import): more info, from Patrice.
41066
41067 2005-07-11  Bruno Haible  <bruno@clisp.org>
41068
41069         * gnulib-tool (func_usage): Document option --avoid.
41070         (Command line options): Handle --avoid.
41071         (func_acceptable): New function.
41072         (func_modules_transitive_closure): Use it.
41073
41074 2005-07-11  Bruno Haible  <bruno@clisp.org>
41075
41076         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
41077         Reported by Jim Meyering.
41078
41079 2005-07-10  Bruno Haible  <bruno@clisp.org>
41080
41081         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
41082         Needed when size_t is smaller than 'unsigned int'.
41083         Reported by Paul Eggert.
41084
41085 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41086
41087         * modules/argp (Depends-on): Add unlocked-io
41088
41089 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41090
41091         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
41092         block of defines.
41093
41094 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
41095
41096         * config/srclist.txt: Comment out regcomp.c, since we have a porting
41097         fix now.
41098
41099 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
41100         and Paul Eggert  <eggert@cs.ucla.edu>
41101
41102         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
41103         in wint_t, not wchar_t.  Remove now-unnecessary cast.
41104
41105 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
41106
41107         * modules/regex (Files): Add lib/regex_internal.c,
41108         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
41109         (Depends-on): Add extensions.
41110         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
41111
41112 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
41113
41114         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
41115         pathconf.
41116         * m4/same.m4 (gl_SAME): Likewise.
41117         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
41118
41119         * m4/regex.m4: Adjust to new libc regex implementation.
41120         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
41121         all the .c and .h parts of (the new) regex.
41122         Quote the m4 stuff better.
41123         Check for RE_ICASE bug of old gnulib.
41124         Check for REG_STARTEND of recent libc.
41125         Rename local variables from jm_* to gl_*.
41126         Quote operand of "test -f".
41127         Say "recent enough" version of libc, not "version 2".
41128         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
41129         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
41130         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
41131         Remove check for btowc, isascii.
41132         Require AM_LANGINFO_CODESET.
41133
41134 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
41135
41136         * lib/regex.c, regex.h: Sync from libc.
41137         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
41138         * lib/regexec.c:
41139         New files, synced from libc, except that regex_internal.h
41140         currently has a small porting fix.
41141
41142 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
41143
41144         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
41145         regex_internal.c, regexec.c.
41146         Add regex_internal.h too, but as a comment, since the libc version
41147         is currently broken in gnulib mode.
41148
41149 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
41150
41151         Support programs like Emacs that use gnulib but not gettext.
41152         * MODULES.html.sh (Internationalization functions): Add gettext-h.
41153         * modules/gettext-h: New file.
41154         * modules/gettext (Files): Remove lib/gettext.h.
41155         (Depends-on): Add gettext-h.
41156         (Makefile.am): Remove lib_SOURCES.
41157         * modules/argmatch, modules/c-stack, modules/closeout:
41158         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
41159         * modules/execute, modules/file-type, modules/getaddrinfo:
41160         * modules/getopt, modules/human, modules/javacomp:
41161         * modules/javaexec, modules/mkdir-p, modules/obstack:
41162         * modules/openat, modules/pagealign_alloc, modules/pipe:
41163         * modules/quotearg, modules/regex, modules/rpmatch:
41164         * modules/unicodeio, modules/userspec, modules/version-etc:
41165         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
41166         * modules/xsetenv:
41167         Depend on gettext-h, not gettext.
41168
41169 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
41170
41171         * gnulib-tool (func_import): Add support for 'public domain' license.
41172         * modules/alloca, modules/atexit, modules/memmove:
41173         Now public domain, not GPL.
41174         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
41175         * modules/realloc, modules/strerror, modules/strtod:
41176         Now LGPL, not GPL.
41177
41178 2005-07-05  Bruno Haible  <bruno@clisp.org>
41179
41180         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
41181         autoconf CVS. Needed for mingw.
41182
41183 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
41184
41185         Remove the dependency of the strftime module on the tzset module.
41186         * modules/strftime (Depends-on): Remove dependency on tzset.
41187
41188 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
41189
41190         Remove the dependency of the strftime module on the tzset module.
41191         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
41192         gl_FUNC_TZSET_CLOBBER.
41193
41194 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
41195
41196         Remove the dependency of the strftime module on the tzset module.
41197         * lib/strftime.c (my_strftime)
41198         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
41199         Copy the input structure, to work around some of the bug with
41200         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
41201         Solaris releases, you should also use the tzset module, but we won't
41202         require it as a dependency any more since we don't want LGPLed code
41203         to depend on GPLed code.
41204
41205 2005-07-02  Jim Meyering  <jim@meyering.net>
41206
41207         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
41208         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
41209         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
41210         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
41211
41212 2005-07-02  Jim Meyering  <jim@meyering.net>
41213
41214         * lib/backupfile.c (backup_args): Change a `0' to NULL.
41215
41216 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
41217
41218         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
41219         declares only 'struct timespec;' (!).
41220
41221 2005-07-01  Jim Meyering  <jim@meyering.net>
41222
41223         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
41224         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
41225         * lib/save-cwd.c, tempname.c:
41226         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
41227         and don't include <sys/file.h>).
41228
41229 2005-06-29  Jim Meyering  <jim@meyering.net>
41230
41231         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
41232         type name.  Use the variable name instead.
41233         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
41234         Likewise.
41235
41236 2005-06-28  Simon Josefsson  <jas@extundo.com>
41237
41238         * modules/check-version (Files): Add check-version.m4.
41239
41240 2005-06-28  Simon Josefsson  <jas@extundo.com>
41241
41242         * m4/check-version.m4: New file, suggested by Jim Meyering
41243         <jim@meyering.net>.
41244
41245 2005-06-28  Simon Josefsson  <jas@extundo.com>
41246
41247         * lib/check-version.h, lib/check-version.c: New files.
41248
41249 2005-06-28  Simon Josefsson  <jas@extundo.com>
41250
41251         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
41252         collision with global variable.  Better indentation.  Don't
41253         increment buffer pointer beyond buffer end.  Based on comments
41254         from Paul Eggert <eggert@cs.ucla.edu>.
41255
41256         * lib/base64.h: Indent.
41257
41258 2005-06-28  Simon Josefsson  <jas@extundo.com>
41259
41260         * doc/gnulib.texi (Library version handling): New section.
41261
41262 2005-06-28  Jim Meyering  <jim@meyering.net>
41263
41264         * check-module (find_included_lib_files): Hard-code another
41265         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
41266         but modules/fts-lgpl (correctly) does not list those files.
41267
41268         * modules/canonicalize (Files): Add lib/pathmax.h.
41269
41270 2005-06-25  Simon Josefsson  <jas@extundo.com>
41271
41272         * modules/check-version: New file.
41273
41274 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
41275
41276         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
41277         initializer of struct addrinfo, as an indication that we don't
41278         care how many members the structure has.
41279
41280 2005-06-24  Derek Price  <derek@ximbiot.com>
41281         and Bruno Haible  <bruno@clisp.org>
41282
41283         Remove stat module & update lstat.
41284         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
41285         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
41286         * m4/stat.m4: Remove this file.
41287
41288 2005-06-24  Derek Price  <derek@ximbiot.com>
41289         and Bruno Haible  <bruno@clisp.org>
41290
41291         Remove stat module & update lstat.
41292         * lib/stat.c: Remove this file...
41293         (slash_aware_lstat): ...moving this content and its support...
41294         * lib/lstat.c (rpl_lstat): ...into here.
41295         * lib/lstat.h: New file.
41296
41297 2005-06-24  Derek Price  <derek@ximbiot.com>
41298         and Bruno Haible  <bruno@clisp.org>
41299
41300         Remove stat module & update lstat.
41301         * config/srclist.txt (libc sources): Remove stat.
41302
41303 2005-06-24  Derek Price  <derek@ximbiot.com>
41304         and Bruno Haible  <bruno@clisp.org>
41305
41306         Remove stat module & update lstat.
41307         * MODULES.html.sh (stat): Remove.
41308         * MODULES.html: Regenerated.
41309         * modules/lstat (Description): Correct function name.
41310         (Files): Add "lstat.h".
41311         (Depends-on): Remove stat, add xalloc, stat-macros.
41312         * modules/stat: Remove this file.
41313         (Include): Add "lstat.h", remove <sys/stat.h>.
41314
41315 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
41316
41317         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
41318         (ranged_convert): Don't save conversion in a temporary struct.
41319         This causes a warning with GCC 4.0.0, and anyway in the typical
41320         case it's not worth the extra 100 bytes or so of code.
41321         (ranged_convert, __mktime_internal): When calling a function via a
41322         pointer P, use P () rather than (*P) (), as we now assume C89 or
41323         better.
41324
41325 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
41326
41327         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
41328         "who -r" failed to give output.  Problem reported by Tim Waugh.
41329
41330         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
41331         (xcalloc): Use it to avoid needless tests.
41332         Problem reported by Jim Meyering.
41333
41334 2005-06-20  Derek Price  <derek@ximbiot.com>
41335
41336         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
41337         unnecessary for Autoconfs > 2.59c.
41338
41339 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41340
41341         * lib/argp.h (__option_is_short): Check upper limit of
41342         __key. Isprint() requires its argument to have the value
41343         of an unsigned char or EOF.
41344
41345 2005-06-16  Jim Meyering  <jim@meyering.net>
41346
41347         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
41348         when either N or S is zero.
41349
41350 2005-06-16  Derek Price  <derek@ximbiot.com>
41351
41352         * m4/bison.m4: Declare YACC & YFLAGS precious.
41353
41354 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
41355
41356         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
41357         multibyte string or pattern, fall back on unibyte matching.
41358         Problem reported by James Youngman.
41359
41360 2005-06-08  Bruno Haible  <bruno@clisp.org>
41361
41362         * modules/csharpcomp: New file.
41363         * MODULES.html.sh (C#): Add csharpcomp.
41364
41365 2005-06-08  Bruno Haible  <bruno@clisp.org>
41366
41367         * m4/csharpcomp.m4: New file, from GNU gettext.
41368
41369 2005-06-08  Bruno Haible  <bruno@clisp.org>
41370
41371         * lib/csharpcomp.h: New file, from GNU gettext.
41372         * lib/csharpcomp.c: New file, from GNU gettext.
41373         * lib/csharpcomp.sh.in: New file, from GNU gettext.
41374
41375 2005-06-08  Bruno Haible  <bruno@clisp.org>
41376
41377         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
41378         warning on mingw.
41379
41380 2005-06-07  Derek Price  <derek@ximbiot.com>
41381
41382         Sync from CVS.
41383         * lib/glob_.h: Indent nested #ifdef.
41384
41385 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
41386
41387         Sync from coreutils.
41388         Use "file name" when talking about file names, instead of "filename"
41389         or "path", as per the GNU coding standards.
41390         * lib/mkdir-p.c: Renamed from makepath.c.
41391         (make_dir_parents): Renamed from make_path.  All callers changed.
41392         * lib/mkdir-p.h: Likewise.  All includers changed.
41393         * lib/filenamecat.c: Renamed from path-concat.c.
41394         (file_name_concat): Renamed from path_concat.  All callers changed.
41395         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
41396         * lib/filenamecat.h: Likewise.  All includers changed.
41397         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
41398         in comments or local variable names.
41399         * lib/basename.c: Likewise.
41400         * lib/canonicalize.c, canonicalize.h: Likewise.
41401         * lib/dirname.c, dirname.h: Likewise.
41402         * lib/euidaccess.c: Likewise.
41403         * lib/exclude.c: Likewise
41404         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
41405         * lib/fsusage.c, fsuage.h: Likewise.
41406         * lib/fts.c, fts_.h: Likewise.
41407         * lib/getcwd.c: Likewise.
41408         * lib/getloadavg.c: Likewise.
41409         * lib/mkstemp.c: Likewise.
41410         * lib/mountlist.c, mountlist.h: Likewise.
41411         * lib/openat.c, openat.h: Likewise.
41412         * lib/readlink-stub.c: Likewise.
41413         * lib/readutmp.c, readutmp.h: Likewise.
41414         * lib/rename.c: Likewise.
41415         * lib/rmdir.c: Likewise.
41416         * lib/same.c: Likewise.
41417         * lib/savedir.c: Likewise.
41418         * lib/stripslash.c: Likewise.
41419         * lib/tempname.c: Likewise.
41420         * lib/xreadlink.c: Likewise.
41421         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
41422         All uses changed.
41423         * lib/exclude.h: Likewise.
41424
41425         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
41426         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
41427         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
41428         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
41429         * lib/pathmax.h: Include <limits.h> unconditionally, since other
41430         files have been getting away with it for years (MORE/BSD 4.3
41431         is extinct now).
41432         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
41433         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
41434
41435         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
41436         Define to 256, not 255, as per modern POSIX.
41437
41438 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
41439
41440         Sync from coreutils.
41441         Use "file name" when talking about file names, instead of "filename"
41442         or "path", as per the GNU coding standards.
41443         * MODULES.html.sh: mkdir-p renamed from makepath.
41444         filenamecat renamed from path-concat.
41445         * modules/filenamecat: Renamed from modules/path-concat.
41446         (Files): filenamecat.h and filenamecat.c renamed from
41447         path-concat.h and path-concat.c.
41448         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
41449         (Include): filenamecat.h, not path-concat.h.
41450         * modules/mkdir-p: Renamed from modules/makepath.
41451         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
41452         makepath.c.
41453         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
41454         (Include): mkdir-p.h, not makepath.h.
41455
41456 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
41457
41458         Sync from coreutils.
41459         * m4/mkdir-p.m4: Renamed from makepath.m4.
41460         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
41461         Rename files from makepath.c to mkdir-p.c, and from
41462         makepath.h to mkdir-p.h.
41463         * m4/filenamecat.m4: Renamed from path-concat.m4.
41464         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
41465         Rename files from path-concat.c to filenamecat.c,
41466         and from path-concat.h to filenamecat.h.
41467         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
41468         "file name" in local variables or comments.
41469         * m4/rename.m4: Likewise.
41470
41471 2005-06-01  Bruno Haible  <bruno@clisp.org>
41472
41473         * modules/csharpexec: New file.
41474         * MODULES.html.sh (C#): New section.
41475
41476 2005-06-01  Bruno Haible  <bruno@clisp.org>
41477
41478         * m4/csharp.m4: New file, from GNU gettext.
41479         * m4/csharpexec.m4: New file, from GNU gettext.
41480
41481 2005-06-01  Bruno Haible  <bruno@clisp.org>
41482
41483         * lib/csharpexec.h: New file, from GNU gettext.
41484         * lib/csharpexec.c: New file, from GNU gettext.
41485         * lib/csharpexec.sh.in: New file, from GNU gettext.
41486
41487 2005-05-31  Derek Price  <derek@ximbiot.com>
41488             Paul Eggert  <eggert@cs.ucla.edu>
41489
41490         Sync from cvs.
41491         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
41492
41493 2005-05-31  Derek Price  <derek@ximbiot.com>
41494             Paul Eggert  <eggert@cs.ucla.edu>
41495
41496         Sync from cvs.
41497         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
41498
41499 2005-05-29  Derek Price  <derek@ximbiot.com>
41500
41501         * config/srclist.txt (glob_.h, glob.c): Add these files.
41502
41503 2005-05-29  Derek Price  <derek@ximbiot.com>
41504
41505         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
41506         * modules/glob: New file.
41507         * modules/getlogin_r: Add link to POSIX spec in description.
41508
41509 2005-05-29  Derek Price  <derek@ximbiot.com>
41510             Paul Eggert  <eggert@cs.ucla.edu>
41511
41512         * m4/glob.m4: New file.
41513
41514 2005-05-29  Derek Price  <derek@ximbiot.com>
41515             Paul Eggert  <eggert@cs.ucla.edu>
41516
41517         * lib/glob_.h, lib/glob.c: New files.
41518
41519 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
41520
41521         * modules/fts (Files): Remove m4/inttypes-pri.m4.
41522         * modules/fts-lgpl (Depends-on): Remove gettext.
41523
41524 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
41525
41526         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
41527         and don't require gt_INTTYPES_PRI.
41528
41529 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
41530
41531         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
41532
41533         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
41534         the configuration hassle isn't worth it.
41535         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
41536         (LONGEST_MODIFIER, PRIuMAX): Remove.
41537
41538 2005-05-27  Bruno Haible  <bruno@clisp.org>
41539
41540         * lib/getlogin_r.h: Remove second include of <stddef.h>.
41541
41542 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
41543
41544         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
41545         _POSIX_PTHREAD_SEMANTICS for Solaris.
41546
41547 2005-05-25  Derek Price  <derek@ximbiot.com>
41548
41549         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
41550
41551 2005-05-25  Derek Price  <derek@ximbiot.com>
41552             Paul Eggert  <eggert@cs.ucla.edu>
41553
41554         * modules/getlogin_r, m4/getlogin_r.m4: New files.
41555         * lib/getlogin_r.c, getlogin_r.h: New files.
41556
41557 2005-05-25  Bruno Haible  <bruno@clisp.org>
41558             Derek Price  <derek@ximbiot.com>
41559
41560         * lib/getlogin_r.h: Simplify API documentation.
41561
41562 2005-05-23  Derek Price  <derek@ximbiot.com>
41563
41564         * modules/minmax (Files): Add m4/minmax.m4.
41565         (configure.ac): Add gl_MINMAX.
41566
41567 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
41568
41569         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
41570         so that unistd-safer.h (GPL'ed code) need not be included.
41571
41572 2005-05-22  Bruno Haible  <bruno@clisp.org>
41573
41574         * m4/minmax.m4: New file.
41575         Based on a patch by Derek Price <derek@ximbiot.com>.
41576
41577 2005-05-22  Bruno Haible  <bruno@clisp.org>
41578
41579         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
41580         (INT64_MIN): Fix definition.
41581         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
41582
41583         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
41584         NEED_SIGNED_INT_TYPES.
41585
41586         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
41587         HAVE_SYSTEM_INTTYPES.
41588
41589 2005-05-22  Bruno Haible  <bruno@clisp.org>
41590
41591         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
41592         Also include <sys/param.h> if it defines MIN, MAX.
41593         Based on a patch by Derek Price <derek@ximbiot.com>.
41594
41595 2005-05-21  Jim Meyering  <jim@meyering.net>
41596
41597         * modules/fts (Files): Add m4/inttypes-pri.m4.
41598         (Depends-on): Add lstat and remove gettext.  Alphabetize.
41599
41600 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
41601
41602         New fts module.
41603         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
41604         (setup_dir, free_dir): New functions.
41605         (enter_dir, leave_dir): Define trivial
41606         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
41607         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
41608         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
41609         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
41610         Move to fts-cycle.c.
41611         (fts_open): Use setup_dir.
41612         (fts_close): Use free_dir.
41613         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
41614         This adds a label and some gotos, but the alternatives were messier.
41615         Check for memory allocation failure when entering a dir.
41616         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
41617         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
41618         (FTS): New member fts_cycle, that is a union that contains the
41619         old active_dir_ht and cycle_state.  All uses changed to mention
41620         fts_cycle.ht and fts_cycle.state.
41621         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
41622         fts.c, with the following changes:
41623         (setup_dir, free_dir): New functions.
41624         (enter_dir): Now returns bool.  Return true if successful, false
41625         if memory exhausted.  All callers changed.
41626         Do not bother partly cleaning up on
41627         memory allocation failure; that is free_dir's job.
41628         However, free ad if hash_insert fails, to avoid memory leak.
41629         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
41630         fts->fts_options to see which union member to use.
41631
41632 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
41633
41634         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
41635         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
41636
41637 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
41638
41639         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
41640
41641 2005-05-20  Jim Meyering  <jim@meyering.net>
41642
41643         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
41644         Now a macro, to pacify GCC.
41645
41646 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
41647
41648         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
41649         of -1.
41650
41651 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
41652
41653         * lib/chown.c (rpl_chown): Return -1 on failure.
41654
41655 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
41656
41657         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
41658         Don't check for stddef.h.
41659         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
41660         don't use its results.
41661         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
41662         since we include them unconditionally.  Don't require
41663         AM_STDBOOL_H, since stdbool is a prerequisite.
41664         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
41665         since we assume C89 or better.
41666         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
41667         as we don't use their results.
41668         Don't check for fchdir, memmove, memset, strrchr, as we use
41669         them unconditionally.
41670         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
41671         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
41672
41673 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
41674
41675         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
41676         Include <stddef.h> unconditionally, since we assume C89 now.
41677         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
41678         * lib/fts.c: Include fts_.h first, to check interface.
41679         Do not include intprops.h; no longer needed.
41680         Include cycle-check.h and hash.h, since fts_.h no longer does.
41681         Remove unnecessary casts of closedir to void.
41682         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
41683         decide whether to decrement nlinks.
41684         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
41685         (FTS): Use struct hash_table * instead of Hash_table, so that
41686         we no longer need to include hash.h here.
41687
41688 2005-05-18  Jim Meyering  <jim@meyering.net>
41689
41690         * modules/dirfd (License): Change to LGPL.  Most of the code
41691         is already in the public domain.
41692
41693 2005-05-18  Jim Meyering  <jim@meyering.net>
41694
41695         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
41696         Reported by Yoann Vandoorselaere.
41697
41698 2005-05-17  Jim Meyering  <jim@meyering.net>
41699
41700         * m4/fts.m4: New file, from coreutils.
41701
41702 2005-05-17  Jim Meyering  <jim@meyering.net>
41703
41704         * lib/fts.c, lib/fts_.h: New files, from coreutils.
41705
41706 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
41707
41708         Sync from coreutils.
41709         * m4/unlinkdir.m4: New file.
41710
41711 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
41712
41713         Sync from coreutils.
41714         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
41715         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
41716         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
41717         White space changes only.
41718         * lib/makepath.c (make_path): Port to hosts where leading "//" is
41719         special.
41720         * lib/yesno.c: Include getline.h, not ctype.h.
41721         (yesno): Don't remove leading white space; POSIX doesn't allow it.
41722         Use getline to remove arbitrary restriction on response length.
41723
41724 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
41725
41726         * config/srclist-update: Spell out "Street" in FSF postal
41727         mail address; this is the style the FSF seems to prefer.
41728
41729         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
41730         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
41731         this updates FSF postal mail address.
41732
41733         Sync from coreutils.
41734         * modules/unlinkdir: New file.
41735         * modules/yesno (Depends-on): Add getline.
41736         * MODULES.html.sh (File system functions): Add unlinkdir.
41737
41738 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
41739
41740         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
41741         lib/strsep.h:
41742         Change the initial comment to refer to GPL, not LGPL.
41743         gnulib-tool will change it to LGPL as needed.
41744
41745         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
41746         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
41747         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
41748         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
41749         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
41750         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
41751         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
41752         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
41753         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
41754         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
41755         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
41756         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
41757         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
41758         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
41759         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
41760         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
41761         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
41762         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
41763         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
41764         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
41765         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
41766         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
41767         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
41768         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
41769         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
41770         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
41771         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
41772         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
41773         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
41774         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
41775         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
41776         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
41777         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
41778         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
41779         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
41780         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
41781         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
41782         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
41783         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
41784         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
41785         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
41786         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
41787         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
41788         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
41789         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
41790         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
41791         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
41792         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
41793         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
41794         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
41795         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
41796         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
41797         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
41798         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
41799         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
41800         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
41801         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
41802         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
41803         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
41804         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
41805         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
41806         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
41807         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
41808         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
41809         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
41810         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
41811         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
41812         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
41813         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
41814         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
41815         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
41816         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
41817         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
41818         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
41819         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
41820         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
41821         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
41822         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
41823         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
41824         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
41825         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
41826         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
41827         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
41828         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
41829         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
41830         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
41831         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
41832         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
41833         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
41834         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
41835         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
41836         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
41837         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
41838         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
41839         lib/yesno.c, lib/yesno.h:
41840         Update FSF postal mail address.
41841
41842 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
41843
41844         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
41845         tests/test-memmem.c, tests/test-stpncpy.c:
41846         Update FSF postal mail address.
41847
41848 2005-05-13  Bruno Haible  <bruno@clisp.org>
41849
41850         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
41851         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
41852         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
41853         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
41854         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
41855         Add support for 64-bit integers in the MSVC compiler.
41856
41857 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41858
41859         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
41860
41861 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
41862
41863         * gnulib-tool (func_import): Sort and uniquify recommended includes.
41864
41865 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
41866
41867         * doc/getdate.texi (General date syntax): Don't say that date
41868         date --iso-8601=ns generates acceptable dates; it doesn't yet.
41869         Problem reported by Nic Ferrier.
41870
41871 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41872
41873         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
41874         specified in ai_socktype. Fix invalid ai_protocol
41875         check. ai_protocol is usually set to 0 or depending on
41876         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
41877         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
41878         ai_socktype / ai_protocol in the returned addrinfo structure.
41879
41880 2005-05-10  Simon Josefsson  <jas@extundo.com>
41881
41882         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
41883         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
41884
41885 2005-05-10  Karl Berry  <karl@gnu.org>
41886
41887         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
41888         (from http://www.gnu.org/licenses).
41889         * doc/COPYING.LIB: also rename to COPYING.LESSER.
41890         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
41891         fdl.texi suffices.
41892
41893 2005-05-10  Karl Berry  <karl@gnu.org>
41894
41895         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
41896         (COPYING.DOC): remove.
41897
41898         * config/srclist-update: new FSF address.
41899
41900 2005-05-10  Derek Price  <derek@ximbiot.com>
41901
41902         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
41903         possible.
41904
41905 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41906             Bruno Haible  <bruno@clisp.org>
41907
41908         * modules/inet_ntop: New file.
41909         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41910         inet_ntop.
41911
41912 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41913             Bruno Haible  <bruno@clisp.org>
41914
41915         * m4/inet_ntop.m4: New file.
41916
41917 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41918             Bruno Haible  <bruno@clisp.org>
41919
41920         * lib/inet_ntop.h: New file.
41921         * lib/inet_ntop.c: New file, from glibc with modifications.
41922
41923 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
41924
41925         * modules/time_r (License): Change to LGPL.
41926         * modules/extensions (License): Change to LGPL.  Actually,
41927         the license is more permissive than that, but currently gnulib-tool
41928         doesn't know how to handle more-permissive licenses.
41929
41930         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
41931         Problem reported by Dave Love.
41932
41933 2005-05-08  Jim Meyering  <jim@meyering.net>
41934
41935         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
41936         blank.
41937
41938 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
41939
41940         * modules/argmatch (Depends-on): Add stdbool.
41941         * modules/backupfile (Depends-on): Likewise.
41942         * modules/chdir-long (Depends-on): Likewise.
41943         * modules/closeout (Depends-on): Likewise.
41944         * modules/cycle-check (Depends-on): Likewise.
41945         * modules/dirname (Depends-on): Likewise.
41946         * modules/fnmatch (Depends-on): Likewise.
41947         * modules/fsusage (Depends-on): Likewise.
41948         * modules/fwriteerror (Depends-on): Likewise.
41949         * modules/getcwd (Depends-on): Likewise.
41950         * modules/getloadavg (Depends-on): Likewise.
41951         * modules/hard-locale (Depends-on): Likewise.
41952         * modules/makepath (Depends-on): Likewise.
41953         * modules/mountlist (Depends-on): Likewise.
41954         * modules/nanosleep (Depends-on): Likewise.
41955         * modules/posixtm (Depends-on): Likewise.
41956         * modules/quotearg (Depends-on): Likewise.
41957         * modules/readtokens (Depends-on): Likewise.
41958         * modules/readtokens0 (Depends-on): Likewise.
41959         * modules/readutmp (Depends-on): Likewise.
41960         * modules/save-cwd (Depends-on): Likewise.
41961         * modules/strftime (Depends-on): Likewise.
41962         * modules/userspec (Depends-on): Likewise.
41963         * modules/utimecmp (Depends-on): Likewise.
41964         * modules/xgetcwd (Depends-on): Likewise.
41965         * modules/xnanosleep (Depends-on): Likewise.
41966         * modules/xstrtod (Depends-on): Likewise.
41967         * modules/yesno (Depends-on): Likewise.
41968
41969 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
41970
41971         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
41972         needless checks.
41973
41974 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
41975
41976         Merge from coreutils.  Among other things,
41977         add bulletproofing for cases where stdin, stdout, or stderr are closed.
41978         * lib/fd-safer.c: New file.
41979         * lib/fcntl-safer.h, open-safer.c: Remove.
41980         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
41981         * lib/dup-safer.c: Include unistd-safer.h first.
41982         Don't include errno.h.
41983         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
41984         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
41985         * lib/file-type.c: Rely on file-type.h change.
41986         * lib/getloadavg.c: Include unistd-safer.h.
41987         (getloadavg): Use safer open.
41988         * lib/getusershell.c: Include "stdio-safer.h".
41989         (getusershell): Use safer fopen.
41990         * lib/long-options.c (long_options): Use NULL rather than 0.
41991         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
41992         'free'.
41993         * lib/modechange.c: Likewise.
41994         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
41995         (MODE_DONE): New constant.
41996         (struct mode_change): Remove 'next' member.
41997         (make_node_op_equals): New function; like the old one of the
41998         same name, except it allocates an array.
41999         (mode_compile, mode_create_from_ref): Use it.
42000         (mode_compile): Allocate result as an array, not a linked list.
42001         Parse octal string ourself, so that we catch mistakes like "+0".
42002         (mode_adjust): Arg is an array, not a linked list.
42003         * lib/modechange.c: Include stat-macros.h, xalloc.h.
42004         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
42005         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
42006         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
42007         Remove.  This is now stat-macros.h's job.
42008         (talloc): Remove.  All callers replaced by xalloc, so that
42009         our invokers don't have to worry about reporting memory failures.
42010         (make_node_op_equals): Remove.
42011         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
42012         New constants.
42013         (struct mode_change): Moved here from modechange.h.
42014         (mode_append_entry): Remove.
42015         (mode_compile): Remove MASKED_OPS arg, since it encouraged
42016         apps to have incorrect behavior.  Use simpler algorithm for head
42017         and tail.  Don't futz with umask; that's now the job of mode_adjust.
42018         Detect more invalid usages rather than having somewhat-random behavior.
42019         Don't insert an "a=" action, as that leads to incorrect behavior.
42020         (mode_compile, mode_create_from_ref): Return NULL on error instead
42021         of an enum, since now there's only one way to have an error.  All
42022         callers changed.
42023         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
42024         at the correct time.  Simplify calculation of "+u" and its ilk.
42025         Don't mishandle "+X".
42026         (mode_free): Remove "register" and localize decls.
42027         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
42028         (struct mode_change): Move to modechange.c; callers don't
42029         need to see this stuff.
42030         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
42031         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
42032         (mode_change, mode_adjust): Reflect the new signatures noted above.
42033         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
42034         that might redefine system include files.
42035         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
42036         (my_usleep): Use NULL rather than (void *) 0.
42037         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
42038         Use siginterrupt to specify that system calls should be interrupted.
42039         (rpl_nanosleep): Move initialization of suspended closer to call of
42040         my_usleep.
42041         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
42042         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
42043         (desirable_utmp_entry): New function.
42044         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
42045         using x2nrealloc, to simplify logic.
42046         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
42047         size calculation.  Do not assume utmp file is a regular file.
42048         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
42049         (READ_UTMP_CHECK_PIDS): New constant.
42050         * lib/save-cwd.c: Include unistd-safer.h.
42051         (save_cwd): Use fd_safer.
42052         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
42053         [!_LIBC] Include "stat-macros.h" instead.
42054         * lib/unistd-safer.h (fd_safer): New decl.
42055
42056 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
42057
42058         * modules/getloadavg (Depends-on): Add unistd-safer.
42059         * modules/getusershell (Depends-on): Add stdio-safer.
42060         * modules/lstat (Depends-on): Remove xalloc.
42061         * modules/mkstemp (Depends-on): Add stat-macros.
42062         * modules/modechange (Depends-on): Remove xstrtol.
42063         Add stat-macros, xalloc.
42064         * modules/save-cwd (Depends-on): Add unistd-safer.
42065         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
42066         * modules/unistd-safer (Files): Add lib/fd-safer.c
42067         (Makefile.am): Remove lib_SOURCES.
42068
42069         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
42070         Remove fcntl-safer; unistd-safer supersedes it.
42071
42072 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
42073
42074         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
42075         AC_HEADER_STAT.
42076         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
42077         (gl_PREREQ_CHOWN): Remove.
42078         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
42079         it.  Don't require AC_HEADER_STAT.
42080         (gl_PREREQ_LSTAT): Remove.
42081         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
42082         Don't require AC_HEADER_STAT.
42083         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
42084         (gl_PREREQ_RMDIR): Remove.
42085         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
42086         mention stat-macros.h or AC_HEADER_STAT, since we'll make
42087         the stat-macros module a prerequisite.
42088         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
42089         * m4/filemode.m4 (gl_FILEMODE): Likewise.
42090         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
42091         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
42092         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
42093         variable names.
42094         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
42095         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
42096         variable prefixes.
42097         * m4/fcntl-safer.m4: Remove.
42098         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
42099         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
42100         Invoke gl_PREREQ_FD_SAFER.
42101         (gl_PREREQ_FD_SAFER): New macro.
42102         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
42103         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
42104         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
42105         Remove duplicate call to AC_LIBOBJ(readutmp).
42106         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
42107
42108         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
42109         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
42110
42111 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
42112
42113         * MODULES.html.sh (Misc): Add byteswap.
42114
42115 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
42116
42117         * modules/getcwd (Depends-on): Add extensions.
42118         * modules/openat (Depends-on): Likewise.
42119
42120 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
42121
42122         * modules/byteswap: New file.
42123
42124 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
42125
42126         * m4/byteswap.m4: New file.
42127
42128 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
42129
42130         * lib/byteswap_.h: New file.
42131
42132 2005-04-25  Karl Berry  <karl@gnu.org>
42133
42134         * m4/gettext.m4: Update from GNU gettext 0.14.4.
42135
42136 2005-04-25  Albert Chin  <china@thewrittenword.com>
42137
42138         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
42139         Toolkit C bug.
42140
42141 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
42142
42143         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
42144         (func_ln_if_changed) Remove forcibly for no error message
42145         in case file does not exist.
42146
42147 2005-04-19  Simon Josefsson  <jas@extundo.com>
42148
42149         * gnulib-tool (Options): Make --symlink mean --symbolic.
42150
42151 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
42152
42153         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
42154
42155 2005-04-16  Simon Josefsson  <jas@extundo.com>
42156
42157         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
42158
42159 2005-04-15  Simon Josefsson  <jas@extundo.com>
42160
42161         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
42162
42163 2005-04-15  Simon Josefsson  <jas@extundo.com>
42164
42165         * gnulib-tool: Rename --symlink to --symbolic.
42166
42167 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
42168
42169         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
42170         symbolic links to files instead of copying/moving.  Add --aux-dir,
42171         specifying directory relative --dir where auxiliary build tools
42172         are placed.
42173
42174 2005-04-14  Bruno Haible  <bruno@clisp.org>
42175
42176         * modules/allocsa (License): Change to LGPL.
42177         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
42178
42179 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
42180
42181         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
42182         that "UTC +1 second" continues to work.  Problem reported
42183         by Dmitry V. Levin.
42184         (relunit_snumber): New rule.
42185         (relunit): Use it.
42186
42187 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
42188
42189         * lib/getdate.y (universal_time_zone_table): New constant.
42190         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
42191         universal_time_zone_table.
42192         (lookup_zone): Prefer universal_time_zone_table to
42193         local_time_zone_table, so that "GMT" time stamps are allowed in
42194         London during the summer.  Problem reported by Ian Abbott.
42195
42196 2005-04-12  Jim Meyering  <jim@meyering.net>
42197
42198         * lib/human.c (humblock): Set *options even when returning due to
42199         xstrtoumax conversion failure.  Thanks to a used-uninitialized
42200         warning from gcc-4.
42201
42202 2005-04-09  Jim Meyering  <jim@meyering.net>
42203
42204         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
42205         -Wuninitialized: initialize tm0.tm_year.
42206
42207 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
42208
42209         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
42210         count, since there's no maximum.  All uses changed.
42211         Add member dsts_seen.
42212         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
42213         not being INT_MAX.
42214         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
42215         Use pc_rels_seen to decide whther a date is absolute.
42216
42217         * lib/getdate.y (number): Don't overwrite year.
42218         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
42219         check.
42220
42221 2005-04-02  Simon Josefsson  <jas@extundo.com>
42222
42223         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
42224         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
42225
42226 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
42227
42228         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
42229         where no absolute path name can be longer than PATH_MAX.
42230
42231 2005-03-27  Jim Meyering  <jim@meyering.net>
42232
42233         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
42234
42235 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
42236
42237         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
42238         "one's complement" -> "ones' complement" in comment, as per Knuth.
42239         "value of type" -> "type or expression" in comment.
42240         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
42241
42242 2005-03-26  Jim Meyering  <jim@meyering.net>
42243
42244         Comment nits.
42245         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
42246         Correct typos: s/or/of/.
42247
42248 2005-03-26  Jim Meyering  <jim@meyering.net>
42249
42250         * modules/check-include-files: Move to ../ and rename to...
42251         * check-module: ...this.
42252
42253 2005-03-25  Jim Meyering  <jim@meyering.net>
42254
42255         * modules/xvasprintf (Files): Add xalloc.h.
42256
42257 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
42258
42259         * modules/gettext (Files): config/config.rpath ->
42260         build-aux/config.rpath
42261         * modules/iconv (Files): Likewise.
42262         Problem reported by Oskar Liljeblad.
42263
42264 2005-03-23  Jim Meyering  <jim@meyering.net>
42265
42266         * modules/check-include-files: New script to check for
42267         missing dependencies, multiple includes, etc.
42268
42269         * modules/c-strtold (Depends-on): Add xalloc.
42270         * modules/c-strtod (Depends-on): Add xalloc.
42271         * modules/hash (Depends-on): Add xalloc.
42272         (Files): Remove lib/xalloc.h.
42273
42274         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
42275         * modules/userspec (Files): Add lib/inttostr.h.
42276
42277 2005-03-23  Jim Meyering  <jim@meyering.net>
42278
42279         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
42280
42281 2005-03-22  Jim Meyering  <jim@meyering.net>
42282
42283         * modules/stat-macros: New module.
42284         * modules/canonicalize, modules/euidaccess, modules/file-type,
42285         * modules/filemode, modules/lchown, modules/makepath,
42286         * modules/rmdir, modules/stat: Depend on new stat-macros module
42287         rather than listing lib/stat-macros.h manually.
42288         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
42289
42290 2005-03-22  Jim Meyering  <jim@meyering.net>
42291
42292         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
42293
42294 2005-03-22  Bruno Haible  <bruno@clisp.org>
42295
42296         * config/srclist.txt: Replace target directory 'config' with
42297         'build-aux'.
42298         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
42299         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
42300         ../build-aux/.
42301
42302 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
42303
42304         * modules/chdir-long (Depends-on): Add mempcpy.
42305
42306         * modules/acl, modules/backupfile, modules/c-strtod,
42307         modules/c-strtold, modules/canon-host, modules/canonicalize,
42308         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
42309         modules/exclude, modules/exitfail, modules/file-type,
42310         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
42311         modules/getdate, modules/getline, modules/getpagesize,
42312         modules/getpass, modules/getugroups, modules/group-member,
42313         modules/hard-locale, modules/hash, modules/human, modules/idcache,
42314         modules/inttostr, modules/long-options, modules/makepath,
42315         modules/md5, modules/memcasecmp, modules/memcoll,
42316         modules/modechange, modules/mountlist, modules/path-concat,
42317         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
42318         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
42319         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
42320         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
42321         modules/strftime, modules/strndup, modules/strverscmp,
42322         modules/timespec, modules/unlocked-io, modules/userspec,
42323         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
42324         modules/yesno:
42325         Remove lib_SOURCES line from Makefile.am section, as this is now
42326         done automatically by the corresponding Autoconf macro.
42327
42328 2005-03-21  Jim Meyering  <jim@meyering.net>
42329
42330         Changes imported from coreutils.
42331
42332         * lib/cycle-check.c: Don't include xalloc.h.
42333
42334         * lib/path-concat.c: Don't include assert.h.
42335         (path_concat): Remove assertion that would have triggered
42336         for ABASE starting with more than one slash.
42337         Reported by Andreas Schwab.
42338
42339         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
42340         properly when ABASE is an absolute file name.
42341         Correct the description of this function.
42342         Include <assert.h>.
42343         Add an assertion and a test driver.
42344         This fixes a bug introduced on 2004-07-02.
42345         Andreas Schwab reported the resulting failure of cp --parents:
42346         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
42347
42348 2005-03-21  Jim Meyering  <jim@meyering.net>
42349
42350         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
42351         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
42352
42353 2005-03-21  Jim Meyering  <jim@meyering.net>
42354         and  Paul Eggert  <eggert@cs.ucla.edu>
42355
42356         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
42357         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
42358         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
42359         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
42360         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
42361         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
42362         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
42363         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
42364         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
42365         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
42366         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
42367         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
42368         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
42369         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
42370         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
42371         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
42372         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
42373         for these modules.
42374
42375 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
42376
42377         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
42378         (which shouldn't happen), generate nothing instead of returning 0
42379         immediately, so that nstrftime (NULL, ...) doesn't return 0.
42380
42381 2005-03-16  Bruno Haible  <bruno@clisp.org>
42382
42383         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
42384         HAVE_LONGLONG_64BIT.
42385
42386 2005-03-16  Bruno Haible  <bruno@clisp.org>
42387
42388         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
42389         HAVE_LONGLONG_64BIT.
42390
42391 2005-03-16  Bruno Haible  <bruno@clisp.org>
42392
42393         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
42394         HAVE_LONGLONG_64BIT.
42395
42396 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
42397
42398         * lib/strftime.c (my_strftime): Prepend space to format so that we can
42399         reliably distinguish strftime failure from empty output on POSIX
42400         hosts.
42401
42402 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
42403
42404         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
42405         (iconv_string): Don't guess a size-zero buffer, as that might cause
42406         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
42407         result would be 'too large', where 'too large' is (heuristically)
42408         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
42409         overflow concerns.  This will prevent some unwanted malloc failures
42410         when the inputs are very large.
42411
42412 2005-03-15  Karl Berry  <karl@gnu.org>
42413
42414         * config/srclist.txt (config.rpath): from gettext.
42415         * config/config.rpath: update.
42416
42417 2005-03-15  Bruno Haible  <bruno@clisp.org>
42418
42419         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
42420         to 'negate'.
42421
42422         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
42423         variable.
42424
42425         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
42426         results.
42427
42428 2005-03-14  Simon Josefsson  <jas@extundo.com>
42429
42430         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
42431         <fx@gnu.org>.
42432
42433 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
42434
42435         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
42436         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
42437         intprops.h.
42438         * lib/strtol.c: Likewise.
42439
42440 2005-03-14  Jim Meyering  <jim@meyering.net>
42441
42442         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
42443         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
42444         to be nonzero so that we (and caller) can detect the difference
42445         between a valid zero-length expansion and an error return, even
42446         when the underlying strftime fails before writing anything into
42447         that location.
42448
42449 2005-03-14  Bruno Haible  <bruno@clisp.org>
42450
42451         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
42452         Update from GNU gettext 0.14.3.
42453
42454 2005-03-10  Jim Meyering  <jim@meyering.net>
42455
42456         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
42457
42458 2005-03-10  Jim Meyering  <jim@meyering.net>
42459
42460         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
42461         so that this module works on systems without fchdir.
42462
42463 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
42464
42465         Factor int-properties macros into a single file, except for
42466         glibc-related files.
42467         * lib/intprops.h: New file.
42468         * lib/getloadavg.c: Include it instead of limits.h.
42469         (INT_STRLEN_BOUND): Remove.
42470         * lib/human.c: Include intprops.h.
42471         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
42472         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
42473         302/1000.
42474         * lib/inttostr.h: Include intprops.h instead of limits.h.
42475         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
42476         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
42477         for consistency with intprops.h.
42478         (time_t_is_integer, twos_complement_arithmetic): Use them.
42479         * lib/sig2str.h: Include <signal.h>, intprops.h.
42480         (INT_STRLEN_BOUND): Remove.
42481         * lib/strftime.c (TYPE_SIGNED): Remove.
42482         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
42483         * lib/strtol.c: Adjust comments to match intprops.h.
42484         * lib/userspec.c: Include intprops.h.
42485         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
42486         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
42487         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
42488         instead of rolling our own expressions.
42489         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
42490
42491         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
42492         instead of int.
42493         (my_strftime): Do not mishandle years close to INT_MAX, by doing
42494         the right thing even if adding 1900 would overflow.  Similarly
42495         for tm_mon + 1 and tm_yday + 1.
42496         Make %Y always equivalent to %C%y, and similarly for %G and %g.
42497         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
42498         (DO_SIGNED_NUMBER): New macro.
42499         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
42500
42501 2005-03-07  Bruno Haible  <bruno@clisp.org>
42502
42503         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
42504
42505 2005-03-07  Bruno Haible  <bruno@clisp.org>
42506
42507         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
42508
42509 2005-03-04  Derek R. Price  <derek@ximbiot.com>
42510
42511         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
42512         (func_import): Only replace files via --import when they have actually
42513         changed.
42514
42515 2005-03-03  Derek R. Price  <derek@ximbiot.com>
42516
42517         * m4/mmap-anon.m4: New file.
42518         * m4/pagealign_alloc.m4: New file.
42519
42520 2005-03-03  Derek R. Price  <derek@ximbiot.com>
42521             Bruno Haible  <bruno@clisp.org>
42522
42523         * modules/pagealign_alloc: New file.
42524         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
42525
42526 2005-03-03  Derek R. Price  <derek@ximbiot.com>
42527             Bruno Haible  <bruno@clisp.org>
42528
42529         * lib/pagealign_alloc.h: New file.
42530         * lib/pagealign_alloc.c: New file.
42531
42532 2005-03-03  Bruno Haible  <bruno@clisp.org>
42533
42534         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
42535         Use an all-permissive copyright notice, recommended by RMS.
42536
42537 2005-03-02  Bruno Haible  <bruno@clisp.org>
42538
42539         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
42540         of AIX, the replacement has to be done only after <string.h> is
42541         included, therefore not in config.h. stpncpy.h does the replacement,
42542         and stpncpy.c uses it.
42543
42544 2005-03-02  Bruno Haible  <bruno@clisp.org>
42545
42546         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
42547         stpncpy.c uses it.
42548
42549 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
42550
42551         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
42552         The workaround isn't strictly needed for POSIX conformance, and
42553         it's too much of a pain to configure and maintain.  We'll ask
42554         people to fix their kernels instead.
42555         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
42556         (NANOSLEEP_BUG_WORKAROUND): Remove.
42557         (xnanosleep): Remove the workaround.
42558
42559 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
42560
42561         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
42562         Reported by Derek Price.
42563         (Include): Add "timespec.h".
42564
42565         * modules/xnanosleep (Depends-on): Remove gethrxtime.
42566
42567 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
42568
42569         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
42570         to detect nanosleep bug.
42571
42572 2005-03-01  Bruno Haible  <bruno@clisp.org>
42573
42574         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
42575
42576 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
42577
42578         * modules/gethrxtime: New file.
42579         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
42580         (Depends-on): Add gethrxtime.
42581         (configure.ac): Add gl_XNANOSLEEP.
42582         (Makefile.am): Remove lib_SOURCES line.
42583
42584 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
42585
42586         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
42587         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
42588
42589 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
42590
42591         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
42592         * lib/timespec.h (gettime): Return void, since it always
42593         succeeds now.  All uses changed.
42594         * lib/gettime.c (gettime) Likewise.
42595         [HAVE_NANOTIME]: Prefer nanotime.
42596         Assume gettimeofday succeeds, as POSIX requires.
42597         Assime time () succeeds, since other code already does.
42598         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
42599         (timespec_subtract): Remove.
42600         (NANOSLEEP_BUG_WORKAROUND): New constant.
42601         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
42602         things considerably.  Use it only on GNU/Linux hosts, since the
42603         workaround shouldn't be needed elsewhere.
42604
42605 2005-02-24  Bruno Haible  <bruno@clisp.org>
42606
42607         * modules/gettext (Files): Add m4/glibc2.m4.
42608
42609 2005-02-24  Bruno Haible  <bruno@clisp.org>
42610
42611         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
42612         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
42613         * m4/progtest.m4:
42614         Update from GNU gettext 0.14.2.
42615         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
42616
42617 2005-02-24  Bruno Haible  <bruno@clisp.org>
42618
42619         * lib/localcharset.c: Update from GNU gettext 0.14.2.
42620         * lib/config.charset: Update from GNU gettext 0.14.2.
42621
42622 2005-02-24  Bruno Haible  <bruno@clisp.org>
42623
42624         * lib/gettext.h: Update from GNU gettext 0.14.2.
42625
42626 2005-02-23  Simon Josefsson  <jas@extundo.com>
42627
42628         * m4/iconvme.m4: New file.
42629
42630 2005-02-23  Jim Meyering  <jim@meyering.net>
42631
42632         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
42633         change.
42634         Thanks to Bruno Haible for catching it.
42635
42636 2005-02-22  Simon Josefsson  <jas@extundo.com>
42637
42638         * modules/iconvme: New file.
42639
42640         * MODULES.html.sh: Add iconvme.
42641
42642 2005-02-22  Simon Josefsson  <jas@extundo.com>
42643
42644         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
42645
42646 2005-02-22  Simon Josefsson  <jas@extundo.com>
42647
42648         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
42649
42650 2005-02-22  Jim Meyering  <jim@meyering.net>
42651
42652         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
42653         s/ifndef/ifdef/.
42654
42655 2005-02-20  Neil Conway  <neilc@samurai.com>
42656
42657         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
42658         returned by OSX/Darwin if the specified buffer is not large
42659         enough for the hostname.
42660
42661 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
42662
42663         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
42664         pass it to _help, otherwise the latter coredumps trying to
42665         dereference state.root_argp.
42666
42667 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
42668
42669         * modules/chdir-long (Depends-on): Add memrchr.
42670         * modules/memrchr (Files): Add lib/memrchr.h.
42671         (Include): "memrchr.h".
42672
42673 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
42674
42675         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
42676
42677 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
42678
42679         * lib/memrchr.h: New file.
42680         * lib/chdir-long.c: Include it.
42681         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
42682         Don't bother including stddef.h.
42683
42684 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
42685
42686         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
42687         inclusion.
42688         Include <sys/types.h>, for dev_t.
42689         (ME_DUMMY, ME_REMOTE): Move from here....
42690         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
42691         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
42692         Dmitry V. Levin.
42693         Include mountlist.h first, to test the interface.
42694
42695 2005-01-29  Bruno Haible  <bruno@clisp.org>
42696
42697         * lib/progname.c (program_name): Initialize.
42698         Needed when linking statically on MacOS X.
42699
42700 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
42701
42702         Sync from coreutils.
42703         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
42704         (Depends-on): Add c-strtod.
42705         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
42706
42707 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
42708
42709         Sync from coreutils.
42710         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
42711
42712         Remove files that are specific to coreutils.
42713         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
42714
42715 2005-01-28  Bruno Haible  <bruno@clisp.org>
42716
42717         * modules/javacomp: New file.
42718         * MODULES.html.sh (Java): Add javacomp.
42719
42720 2005-01-28  Bruno Haible  <bruno@clisp.org>
42721
42722         * m4/javacomp.m4: New file, from GNU gettext.
42723
42724 2005-01-28  Bruno Haible  <bruno@clisp.org>
42725
42726         * lib/javacomp.sh.in: New file, from GNU gettext.
42727         * lib/javacomp.h: New file, from GNU gettext.
42728         * lib/javacomp.c: New file, from GNU gettext.
42729
42730 2005-01-26  Simon Josefsson  <jas@extundo.com>
42731
42732         * lib/gai_strerror.c: Use GPL in header.
42733
42734 2005-01-26  Bruno Haible  <bruno@clisp.org>
42735
42736         * modules/javaexec: New file.
42737         * MODULES.html.sh (Java): Add javaexec.
42738
42739 2005-01-26  Bruno Haible  <bruno@clisp.org>
42740
42741         * m4/javaexec.m4: New file, from GNU gettext.
42742
42743 2005-01-26  Bruno Haible  <bruno@clisp.org>
42744
42745         * lib/javaexec.sh.in: New file, from GNU gettext.
42746         * lib/javaexec.h: New file, from GNU gettext.
42747         * lib/javaexec.c: New file, from GNU gettext.
42748
42749 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
42750
42751         * modules/lchown (Depends-on): Remove lchown.h
42752
42753 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
42754
42755         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
42756         must be defined if the header file was not found, in order
42757         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
42758
42759 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
42760
42761         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
42762         initializers for struct pentry_state.
42763         (__argp_error): Check return value of __asprintf
42764         (__argp_failure): Translate error message
42765
42766         * lib/argp-parse.c: Removed braces around the expansion of N_()
42767
42768 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
42769
42770         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
42771         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
42772         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
42773         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
42774         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
42775         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
42776         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
42777         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
42778         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
42779         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
42780         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
42781         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
42782         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
42783         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
42784         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
42785         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
42786         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
42787         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
42788         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
42789         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
42790         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
42791         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
42792         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
42793         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
42794         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
42795         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
42796         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
42797         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
42798         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
42799         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
42800         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
42801         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
42802         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
42803         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
42804         xstrtol.m4, xstrtoumax.m4, yesno.m4:
42805         Use an all-permissive copyright notice, recommended by RMS.
42806
42807 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
42808
42809         * modules/chdir-long (Depends-on): Remove mempcpy.
42810
42811 2005-01-21  Jim Meyering  <jim@meyering.net>
42812
42813         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
42814         same value as for Solaris 9.
42815
42816         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
42817         component length.  This included changing the parameter to be
42818         of type `char *' rather than `char const *'.
42819         * lib/chdir-long.h (chdir_long): Update prototype.
42820
42821         * lib/openat.c (fdopendir, fstatat): New functions.
42822         * lib/openat.h: Include headers required for use of DIR and struct
42823         stat.
42824         [AT_SYMLINK_NOFOLLOW]: Define.
42825         (fdopendir, fstatat): Add prototypes.
42826
42827 2005-01-21  Bruno Haible  <bruno@clisp.org>
42828
42829         * modules/classpath: New file.
42830         * MODULES.html.sh (Java): Add classpath.
42831
42832 2005-01-21  Bruno Haible  <bruno@clisp.org>
42833
42834         * lib/classpath.h: New file, from GNU gettext.
42835         * lib/classpath.c: New file, from GNU gettext.
42836
42837 2005-01-20  Simon Josefsson  <jas@extundo.com>
42838
42839         * modules/version-etc-fsf: New file.
42840
42841 2005-01-20  Simon Josefsson  <jas@extundo.com>
42842
42843         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
42844         * lib/version-etc.c: Remove version_etc_copyright.
42845         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
42846         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
42847
42848 2005-01-20  Simon Josefsson  <jas@extundo.com>
42849
42850         * lib/base64.h (isbase64): Add.
42851
42852         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
42853         using a unsigned prototype, don't inline.
42854         (base64_decode): Use it.
42855
42856 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
42857
42858         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
42859         it.
42860
42861 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
42862
42863         * lib/save-cwd.c (save_cwd): Remove code to support the case
42864         where fchdir is missing or flaky.
42865
42866 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
42867
42868         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
42869
42870 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
42871
42872         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
42873         AC_LIBSOURCES now does this.
42874         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
42875         with new ullong_max module.
42876
42877 2005-01-19  Bruno Haible  <bruno@clisp.org>
42878
42879         * modules/sh-quote: New file.
42880         * MODULES.html.sh (Executing programs): Add sh-quote.
42881
42882 2005-01-19  Bruno Haible  <bruno@clisp.org>
42883
42884         * lib/sh-quote.h: New file, from GNU gettext.
42885         * lib/sh-quote.c: New file, from GNU gettext.
42886
42887 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
42888
42889         Merge from coreutils.
42890         * m4/ullong_max.m4: New file.
42891         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
42892         (gl_MACROS): Assume localeconv exists.
42893
42894 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
42895
42896         Merge changes from coreutils, as described below in several
42897         changelogs dated today.
42898
42899         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
42900         (O_DIRECTORY): Remove; not needed here, since "." must be
42901         a directory.  All uses removed.
42902         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
42903         universal on Suns, and we also need to test for IRIX.
42904         Revamp code to use 'if' rather than '#if'.
42905         Avoid unnecessary comparison of cwd->desc to 0.
42906
42907         * lib/utimens.c (futimens): Robustify the previous patch, by checking
42908         for known valid error numbers rather than observed invalid ones.
42909
42910 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
42911
42912         * modules/ullong_max: New file.
42913
42914         * modules/chdir-long, modules/openat: New files.
42915         * modules/save-cwd (Depends-on): Depend on chdir-long.
42916         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
42917
42918 2005-01-18  Jim Meyering  <jim@meyering.net>
42919
42920         Merge from coreutils.
42921         * m4/chdir-long.m4, m4/openat.m4: New files.
42922         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
42923         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
42924         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
42925         is sane and DOES follow symlinks.  Besides, testing 20 different
42926         systems found no broken chown implementations.
42927         Prompted by a change in rsync's copy of this macro.
42928         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
42929
42930         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
42931
42932         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
42933         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
42934         NULL-means-set-to-current-time semantics.
42935         Remove temporary file immediately, rather than waiting
42936         for configure's at-exit trap code to do it.
42937
42938 2005-01-18  Jim Meyering  <jim@meyering.net>
42939
42940         * lib/version-etc.c (version_etc_copyright): Update copyright date.
42941
42942         * lib/utimens.c (futimens): Account for the fact that futimes
42943         can also fail with errno == ENOSYS or errno == ENOENT.
42944         Patch from Dmitry V. Levin.
42945
42946         Change the name of the robust chdir function from chdir to chdir_long.
42947         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
42948         (restore_cwd): Use chdir_long, not chdir.
42949         * lib/chdir-long.c: Renamed from chdir.c.
42950         * lib/chdir-long.h: Renamed from chdir.h.
42951         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
42952         Hurd.
42953
42954 2005-01-18  Bruno Haible  <bruno@clisp.org>
42955
42956         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
42957         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
42958         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
42959         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
42960         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
42961         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
42962         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
42963         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
42964         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
42965         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
42966         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
42967         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
42968         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
42969         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
42970         Use an all-permissive copyright notice, recommended by RMS.
42971
42972 2005-01-18  Bob Proulx  <bob@proulx.com>
42973
42974         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
42975         simplify offsetof() macro construct to avoid compile failure with
42976         native HP-UX 11.0 ANSI C compiler.
42977
42978 2005-01-17  Bruno Haible  <bruno@clisp.org>
42979
42980         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
42981         redundant because stpncpy.m4 takes care of it.
42982
42983 2005-01-17  Bruno Haible  <bruno@clisp.org>
42984
42985         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
42986
42987 2005-01-17  Bruno Haible  <bruno@clisp.org>
42988
42989         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
42990         used.
42991
42992 2005-01-17  Bruno Haible  <bruno@clisp.org>
42993
42994         * lib/fwriteerror.h (fwriteerror): Change specification to include
42995         fclose.
42996         * lib/fwriteerror.c: Include <stdbool.h>.
42997         (fwriteerror): At the end, close the file stream. Record whether
42998         stdout was already closed.
42999
43000 2005-01-17  Bruno Haible  <bruno@clisp.org>
43001
43002         * lib/execute.c (environ): Declare if needed.
43003         * lib/pipe.c (environ): Likewise.
43004         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
43005
43006 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
43007
43008         * modules/argp: Depend on vsnprintf
43009
43010 2005-01-10  Jim Meyering  <jim@meyering.net>
43011
43012         * modules/closeout (Depends-on): Add atexit.
43013
43014 2005-01-06  Bruno Haible  <bruno@clisp.org>
43015
43016         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
43017
43018 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
43019
43020         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
43021         definitions to be after all include files, to avoid collisions.
43022         Problem reported by Bob Proulx.
43023
43024 2005-01-04  Jim Meyering  <jim@meyering.net>
43025
43026         Changes imported from coreutils.
43027         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
43028         as the mkstemp template, use a temporary directory and an
43029         8.3-friendly template to avoid trouble on systems like DJGPP.
43030         Reported by Juan M. Guerrero via Stepan Kasal.
43031         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
43032         close. Remove the temporary directory right away, rather than waiting
43033         for configure's at-exit trap code to do it.
43034         Suggestion from Stepan Kasal.
43035
43036 2005-01-01  Simon Josefsson  <jas@extundo.com>
43037
43038         * gnulib-tool: Print #include directives when --import'ing.
43039
43040 2004-12-28  Simon Josefsson  <jas@extundo.com>
43041
43042         * tests/test-base64.c: Include required header files.  Remove
43043         unused variables.
43044
43045 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
43046
43047         * modules/error (Depends-on): Remove gettext.
43048
43049 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
43050
43051         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
43052         not needed.  This removes a dependency on the gettext module.
43053         [defined _LIBC]: Do not include <libintl.h>; not needed.
43054
43055 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
43056
43057         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
43058         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
43059
43060 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
43061
43062         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
43063         HAVE_DECL_STRTOLD.
43064
43065 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
43066
43067         * modules/getdate (Depends-on): Remove alloca-opt.
43068
43069 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
43070
43071         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
43072
43073 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
43074
43075         * lib/argp-parse.c: Include <stddef.h>.
43076         (alignof, alignto): New macros.
43077         (parser_init): Don't assume that void * is aligned sufficiently
43078         for struct option.
43079
43080         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
43081         need to extend the stack.
43082         (YYINITDEPTH): New macro, so that the initial stack isn't overly
43083         large.
43084
43085 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
43086
43087         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
43088
43089 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
43090
43091         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
43092         (2004-10-24) change.  Apparently this was a false alarm.
43093
43094         * modules/getdate: Depend on alloca-opt, not alloca.
43095
43096 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
43097
43098         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
43099         Remove now-obsolete comment about AIX.
43100         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
43101         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
43102         (YYMAXDEPTH): New macro.
43103
43104 2004-12-18  Simon Josefsson  <jas@extundo.com>
43105
43106         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
43107
43108 2004-12-18  Bruno Haible  <bruno@clisp.org>
43109
43110         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
43111
43112 2004-12-18  Bruno Haible  <bruno@clisp.org>
43113
43114         * lib/fatal-signal.c (fatal_signals): Make non-const.
43115         (init_fatal_signals): New function.
43116         (uninstall_handlers, install_handlers): Ignore signals that were set to
43117         SIG_IGN.
43118         (at_fatal_signal): Call init_fatal_signals.
43119         (init_fatal_signal_set): Likewise. Ignore signals that were set to
43120         SIG_IGN.
43121         Reported by Paul Eggert.
43122
43123 2004-12-18  Bruno Haible  <bruno@clisp.org>
43124
43125         * doc/alloca.texi: New file.
43126         * doc/alloca-opt.texi: New file.
43127
43128 2004-12-17  Jim Meyering  <jim@meyering.net>
43129
43130         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
43131         Otherwise, install-sh could exit with improper exit status when
43132         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
43133
43134 2004-12-16  Simon Josefsson  <jas@extundo.com>
43135
43136         * tests/test-base64.c: Add license.
43137
43138 2004-12-15  Stepan Kasal  <address@hidden>
43139
43140         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
43141
43142 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
43143
43144         * modules/getcwd (Files): Add m4/d-ino.m4.
43145         Suggested by Mark D. Baushke.
43146
43147 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
43148
43149         * lib/getdate.y (textint): New member "negative".
43150         (time_zone_hhmm): New function.
43151         Expect 14 shift-reduce conflicts, not 13.
43152         (o_colon_minutes): New rule.
43153         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
43154         (yylex): Set the "negative" member of signed numbers.
43155
43156 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
43157
43158         * doc/getdate.texi (Time of day items, Time zone items):
43159         Describe new formats +00:00, UTC+00:00.
43160
43161 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
43162
43163         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
43164         spurious "-l"s.  Problem reported by Stepan Kasal.
43165
43166 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
43167
43168         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
43169         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
43170
43171 2004-12-04  Simon Josefsson  <jas@extundo.com>
43172
43173         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
43174         Vandoorselaere <yoann@prelude-ids.org>.
43175
43176 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
43177
43178         Changes imported from coreutils.
43179         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
43180         exist.
43181         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
43182
43183 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
43184
43185         Changes imported from coreutils.
43186         * lib/hard-locale.c: Assume <locale.h> exists.
43187         Include "strdup.h".
43188         (GLIBC_VERSION): New macro.
43189         (hard_locale): Assume setlocale exists.
43190         Rewrite to avoid #ifdef.
43191         Use strdup rather than malloc + strcpy.
43192         * lib/human.c: Assume <locale.h> exists.
43193         (human_readable): Assume localeconv exists.
43194
43195 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
43196
43197         * modules/hard-locale (Depends-on): Add strdup.
43198
43199 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
43200
43201         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
43202         convert T2, not T.  (Imported from libc.)
43203
43204 2004-11-30  Simon Josefsson  <jas@extundo.com>
43205
43206         * modules/restrict (License): Change to LGPL.
43207
43208 2004-11-30  Simon Josefsson  <jas@extundo.com>
43209
43210         * m4/restrict.m4: Add copyright and copying conditions.
43211
43212 2004-11-30  Simon Josefsson  <jas@extundo.com>
43213
43214         * m4/base64.m4: New file.
43215
43216 2004-11-30  Simon Josefsson  <jas@extundo.com>
43217
43218         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
43219         base64.
43220
43221         * tests/test-base64.c: New file.
43222
43223         * modules/base64: New file.
43224
43225 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
43226
43227         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
43228         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
43229
43230         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
43231
43232 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
43233
43234         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
43235         (__getcwd.c): Don't restore errno; glibc doesn't.
43236         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
43237         first, falling back to our code only if its results look suspicious.
43238         Ensure that the resulting buffer is only as large as necessary.
43239
43240         * lib/readutmp.c: Include readutmp.h first.
43241         Include <errno.h>, since readutmp.h no longer does that.
43242         * lib/readutmp.h: Don't include <errno.h>,
43243         <sys/param.h>, <time.h>; not needed to establish interface.
43244         (errno): Remove decl.
43245         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
43246         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
43247         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
43248
43249 2004-11-28  Simon Josefsson  <jas@extundo.com>
43250
43251         * lib/base64.h, base64.c: New file.
43252
43253 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
43254
43255         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
43256
43257 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
43258
43259         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
43260         (Depends-on): Remove pathmax, same.  Add mempcpy.
43261         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
43262         (Makefile.am): Append getcwd.h to lib_SOURCES.
43263         (Include): Add getcwd.h.
43264         (Maintainer): Change from Jim Meyering to "all, glibc",
43265         since getdate now uses intended-for-glibc code.
43266         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
43267         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
43268
43269 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
43270
43271         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
43272         HP's ANSI C compiler.
43273         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
43274         Declaring int functions causes warnings on some modern systems and
43275         shouldn't be needed to compile on ancient ones.
43276         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
43277         defined.
43278
43279         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
43280         with the following changes.
43281         (__set_errno): Parenthesize properly.
43282         Include <stdbool.h>.
43283         (MIN, MAX, MATCHING_INO): New macros.
43284         (__getcwd): Define with prototype, not K&R form.
43285         Use heuristics to allocate default buffer on stack if possible.
43286         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
43287         behavior, and to avoid the PATH_MAX limit when computing
43288         ../../../../...
43289         Use MATCHING_INO to compare inode number to file.
43290         Check for arithmetic overflow in size calculations.
43291         Fix bug in reallocation of dot array that caused getcwd to fail
43292         on directories nested deeper than 75.
43293         Be more careful about saving errno on error.
43294         Do not use realloc; use only free+malloc, as this is a bit
43295         more flexible and avoids a needless copy operation.
43296         Do not inspect st_dev and st_ino for symbolic links; POSIX
43297         doesn't specify the latter.
43298         Check for closedir errors.
43299         Avoid needless casts.
43300         Use "#ifdef weak_alias" around weak_alias, to be like other
43301         glibc code.
43302         The following changes to getcwd.c have effect only when used in
43303         gnulib; they have no effect inside glibc proper.
43304         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
43305         as alloca isn't used.
43306         (alloca, __alloca): Likewise.
43307         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
43308         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
43309         unconditionally, as gnulib assumes C89 or better.
43310         Do not include <sys/param.h>.
43311         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
43312         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
43313         better.
43314         (NULL) [!defined NULL]: Remove; we assume C89 or better.
43315         Include <dirent.h> in a way that is compatible with modern Autoconf.
43316         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
43317         New macros, if not already defined.
43318         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
43319         Use "_LIBC", not "defined _LIBC", for consistency.
43320         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
43321         a mempcpy module.
43322         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
43323         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
43324         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
43325         credit only to Jim Meyering and adjust the copyright dates.
43326         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
43327         <stdlib.h>, <unistd.h>, "pathmax.h".
43328         Instead, include "xgetcwd.h" (first) and "getcwd.h".
43329         (INITIAL_BUFFER_SIZE): Remove.
43330         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
43331
43332 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
43333
43334         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
43335         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
43336         Use the _ONCE methods, for efficiency.
43337         Check for fcntl.h.  In test program, include <errno.h>
43338         and <fcntl.h> if available.  Remove old K&R cruft from
43339         test program.  Check for common errors in GNU/Linux,
43340         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
43341         don't do AC_LIBOBJ, as that's getcwd.m4's job.
43342         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
43343         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
43344         name accordingly.
43345         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
43346         accommodate new getcwd.c.
43347         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
43348         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
43349         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
43350         that's all we need now.
43351
43352 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
43353
43354         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
43355         argp-parse.c depends on getopt internals, that means we should
43356         always use our getopt, to be on the safe side.
43357         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
43358         order not to spoil the result of an eventual previous invocation
43359         of gl_GETOPT_SUBSTITUTE.
43360
43361 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
43362
43363         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
43364         redefinition warnings. To avoid them, include the defines
43365         in `#if !defined __need_getopt ... #endif'. The only place
43366         where __getopt_argv_const is used is in definitions
43367         of getopt_long and getopt_long_only below, which are as well
43368         protected by `#ifndef __need_getopt'.
43369         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
43370         __need_getopt after including <stdio.h> and <unistd.h> These
43371         headers might have defined it.
43372
43373 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
43374
43375         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
43376
43377 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
43378
43379         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
43380         (futimens): New function, which uses futimes if available.
43381         (futimens, utimens): Support timespec==NULL, with same semantics
43382         as utime and utimens.
43383         * lib/utimens.h (futimens): New decl.
43384
43385 2004-11-23  Jim Meyering  <jim@meyering.net>
43386
43387         * lib/getopt_.h: Remove trailing blanks.
43388
43389 2004-11-23  Jim Meyering  <jim@meyering.net>
43390
43391         * lib/__fpending.c: Add comment.
43392
43393 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
43394
43395         * modules/canonicalize (Depends-on): Add xreadlink.
43396         Problem reported by James Youngman.
43397
43398 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
43399
43400         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
43401         New macros.
43402         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
43403         optopt): Use them instead of invoking ## directly; otherwise, the
43404         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
43405
43406 2004-11-19  Bruno Haible  <bruno@clisp.org>
43407
43408         * lib/strtok_r.c: Move comments from here...
43409         * lib/strtok_r.h: ... to here.
43410
43411 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
43412
43413         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
43414         implementations that mishandle size_t overflow.
43415
43416 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
43417
43418         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
43419         might fail.  Problem reported by Yoann Vandoorselaere.
43420         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
43421         implementations that mishandle size_t overflow.
43422
43423 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
43424
43425         * modules/canon-host (Depends-on): Add strdup.
43426
43427 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
43428
43429         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
43430
43431 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
43432
43433         * lib/canon-host.c: Include "strdup.h".
43434         (canon_host): Use getaddrinfo if available, so that IPv6 works.
43435         Use strdup instead of malloc/strcpy to duplicate strings.
43436
43437         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
43438         (human_space_before_unit): New constant.
43439         * lib/human.c (human_readable): Support it.
43440
43441         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
43442         (xgetcwd): Set errno correctly when failing.
43443         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
43444         the failure is actually due to a PATH_MAX problem.
43445
43446         Further getopt changes to make it more likely that glibc will
43447         buy the changes back.
43448         * lib/getopt.c (POSIXLY_CORRECT): New constant.
43449         (getopt): Use it, so to preserve glibc semantic
43450         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
43451         when compiling for libc.
43452         * lib/getopt_.h (__getopt_argv_const): Bring it back.
43453         (getopt_long, getopt_long_only): Use it.
43454
43455         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
43456         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
43457         (getopt): Argv is now char * const *, as per standard.
43458         (_getopt_internal_r, _getopt_internal): Argv is now char **,
43459         not char *__getopt_argv_const *.
43460         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
43461         _getopt_long_only_r): Likewise.
43462         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
43463         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
43464         _getopt_long_r, _getopt_long_only_r): Likewise.
43465         * lib/getopt_.h (__getopt_argv_const): Remove.
43466         (getopt): Argv is now char * const *, as per standard.
43467
43468         * lib/getdate.y (tORDINAL): New token.
43469         (day, relunit): Allow it for relative times.
43470         (relative_time_table): Use tORDINAL for ordinals.
43471
43472 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
43473
43474         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
43475         Document that "second" isn't allowed as an ordinal number.
43476
43477 2004-11-16  Jim Meyering  <jim@meyering.net>
43478
43479         * modules/closeout (Depends-on): Add fpending.
43480
43481 2004-11-15  Jim Meyering  <jim@meyering.net>
43482
43483         * lib/closeout.c: Include "__fpending.h" once again.
43484         Include <stdbool.h>.
43485         (close_stdout): Don't fail just because stdout was closed initially,
43486         since some programs don't write to stdout in the normal course of
43487         operation (other than --version and --help), and we don't want this
43488         function to make e.g. `touch file >&-' fail.
43489         But do fail if it was closed and someone has tried to write to it.
43490         E.g., `printf foo >&-' must fail.
43491
43492 2004-11-13  Jim Meyering  <jim@meyering.net>
43493
43494         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
43495
43496 2004-11-12  Simon Josefsson  <jas@extundo.com>
43497
43498         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
43499         small doc fix is still pending.
43500
43501 2004-11-11  Simon Josefsson  <jas@extundo.com>
43502
43503         * modules/strtok_r: New file.
43504
43505         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
43506         strtok_r.
43507
43508 2004-11-11  Simon Josefsson  <jas@extundo.com>
43509
43510         * m4/strtok_r.m4: New file.
43511
43512         * m4/getopt.m4: Replace opterr.
43513
43514 2004-11-11  Simon Josefsson  <jas@extundo.com>
43515
43516         * lib/strtok_r.h, strtok_r.c: New file.
43517
43518 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
43519
43520         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
43521         of replacing opterr, getopt, etc.  This should handle the
43522         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
43523
43524 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
43525
43526         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
43527         we can stop lying to compilers about the constness of argv when we
43528         are compiled outside glibc.
43529         (getopt, getopt_long, getopt_long_only): Use it.
43530         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
43531         _getopt_internal, getopt): Likewise.
43532         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
43533         _getopt_long_only_r): Likewise.
43534         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
43535         _getopt_long_r, _getopt_long_only_r): Likewise.
43536
43537         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
43538         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
43539         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
43540         the other external symbols.
43541         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
43542         declaration, since the above renaming now works around collisions.
43543
43544 2004-11-11  Jim Meyering  <jim@meyering.net>
43545
43546         * lib/linebreak.c: Remove trailing blanks.
43547         * lib/alloca_.h: Likewise.
43548         * lib/acosl.c: Likewise.
43549         * lib/euidaccess.c: Likewise.
43550         * lib/allocsa.h: Likewise.
43551
43552 2004-11-10  Simon Josefsson  <jas@extundo.com>
43553
43554         * m4/getaddrinfo.m4: New file.
43555
43556 2004-11-10  Simon Josefsson  <jas@extundo.com>
43557
43558         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
43559
43560 2004-11-10  Simon Josefsson  <jas@extundo.com>
43561
43562         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
43563         getaddrinfo.
43564
43565         * modules/getaddrinfo: New file.
43566
43567 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
43568
43569         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
43570
43571 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
43572
43573         * lib/mktime.c (SHR): New macro, which is a portable
43574         substitute for >> that should work even on Crays.
43575         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
43576         Problem reported by Mark D. Baushke in
43577         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
43578         * lib/getdate.y (SHR): Likewise.
43579         (tm_diff): Use it.
43580         * lib/strftime.c (SHR): Likewise.
43581         (tm_diff): Use it.
43582         * lib/quotearg.c (struct quoting_options): Use unsigned int for
43583         quote_these_too, so that right shifts are well defined.  All uses
43584         changed.
43585
43586 2004-11-10  Jim Meyering  <jim@meyering.net>
43587
43588         Ensure that no close failure goes unreported.
43589         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
43590         return early when it seems there's nothing to flush.
43591         Don't include __fpending.h.
43592
43593 2004-11-10  Jim Meyering  <jim@meyering.net>
43594
43595         * modules/closeout (Depends-on): Remove fpending.
43596
43597 2004-11-10  Jim Meyering  <jim@meyering.net>
43598
43599         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
43600
43601 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
43602
43603         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
43604         gl_FUNC_STRFTIME.
43605         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
43606         and AC_REQUIRE when possible, to avoid duplicate checks.
43607         Check for <wchar.h>.
43608
43609 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
43610
43611         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
43612
43613 2004-11-09  Bruno Haible  <bruno@clisp.org>
43614
43615         * m4/sockpfaf.m4: New file.
43616
43617 2004-11-05  Bruno Haible  <bruno@clisp.org>
43618
43619         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
43620         Reported by Mark D. Baushke <mdb@cvshome.org>.
43621
43622 2004-11-04  Bruno Haible  <bruno@clisp.org>
43623
43624         2004-09-11  Bruno Haible  <bruno@clisp.org>
43625                 * allocsa.valgrind: New file.
43626         2004-02-06  Bruno Haible  <bruno@clisp.org>
43627                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
43628                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
43629                 Reported by Christopher Seip <chris.seip@hp.com>.
43630
43631 2004-11-04  Bruno Haible  <bruno@clisp.org>
43632
43633         * modules/allocsa (Files): Add lib/allocsa.valgrind.
43634         (Makefile.am): Distribute it.
43635
43636 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
43637
43638         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
43639         with errno == ERANGE if the buffer is too small.
43640         Problem reported by Mark D. Baushke.
43641
43642 2004-11-03  Albert Chin  <china@thewrittenword.com>
43643             Paul Eggert  <eggert@cs.ucla.edu>
43644
43645         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
43646         equivalent, substitute $ac_type for equivalent type rather than
43647         blindly using uint32_t *always* which won't work if uint32_t is not
43648         available.  Define _UINT32_T to work around typedef of uint32_t if
43649         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
43650         2.5.1.
43651
43652 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
43653
43654         * m4/jm-macros.m4: Sync from coreutils.
43655         (gl_MACROS): Check for mbrlen, for pathchk.
43656         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
43657
43658 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
43659
43660         * lib/xreadlink.c (MAXSIZE): New macro.
43661         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
43662         size does not exceed MAXSIZE.  Avoid cast.
43663         As suggested by Mark D. Baushke in
43664         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
43665         if readlink fails with buffer size just under MAXSIZE, try again
43666         with MAXSIZE.
43667
43668 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
43669
43670         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
43671
43672 2004-11-02  Derek R. Price  <derek@ximbiot.com>
43673         and  Paul Eggert  <eggert@cs.ucla.edu>
43674
43675         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
43676         (get_date): Overparenthesize to avoid GCC warning.
43677
43678 2004-11-02  Bruno Haible  <bruno@clisp.org>
43679
43680         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
43681         returns void.
43682
43683 2004-11-02  Bruno Haible  <bruno@clisp.org>
43684
43685         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
43686         function returns void.
43687
43688 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
43689
43690         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
43691         fflush_unlocked, flockfile, funlockfile, funlockfile,
43692         fputs_unlocked, putc_unlocked.
43693
43694 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
43695
43696         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
43697         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
43698         already declared.
43699
43700 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
43701
43702         * modules/getdate (Files): Add doc/getdate.texi.
43703         (Depends-on): Add setenv, xalloc.
43704
43705 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
43706
43707         * lib/getdate.y: Add support for TZ="foo" within a date string.
43708         Fix some bugs near time_t boundaries.  Reject dates with
43709         out-of-range components, e.g., "Sept 31".
43710         Include <stdlib.h>, "setenv.h", "xalloc.h".
43711         (ISDIGIT_LOCALE): Remove; unused.
43712         Note that the TZ and time functions used here are not reentrant.
43713         (mktime_ok, get_tz): New functions.
43714         (TZBUFSIZE): New constant.
43715         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
43716         This requires that we sometimes generate our own TZ="XXX..." setting.
43717
43718 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
43719
43720         * doc/getdate.texi: New file, from coreutils with modifications for
43721         the new TZ parsing.
43722
43723 2004-10-27  Derek R. Price  <derek@ximbiot.com>
43724
43725         * lib/mktime.c (not_equal_tm): Remove redundant check.
43726
43727 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
43728
43729         * modules/regex (lib_SOURCES): Add regex.c.
43730         Reported by James Youngman in
43731         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
43732
43733 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
43734
43735         * lib/getdate.y: Use Bison 1.875 features, and some minor
43736         code cleanups.  This change does not affect semantics.
43737         Don't include <stdlib.h>; no longer needed.
43738         Don't include unlocked-io.h; only the "#if TEST" code uses
43739         stdio, and performance isn't crucial there.
43740         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
43741         Bison 1.875 features as described below.
43742         All uses of "PC." replaced by "pc->".
43743         (YYSTYPE): Add a forward declaration.
43744         (yylex, yyerror): Use full prototypes in forward decls.
43745         Use "%pure-parser" rather than obsolescent "%pure_parser".
43746         Use %parse-param and %lex-param instead of obsolescent
43747         YYPARSE_PARAM and YYLEX_PARAM.
43748         (meridian_table, month_and_day_table, time_units_table,
43749         relative_time_table, time_zone_table, military_table,
43750         lookup_zone, lookup_word, get_date):
43751         Use NULL instead of 0 where appropriate.
43752         (to_hour): Avoid abort (), to avoid a dependency on
43753         stdlib.h.
43754         (yyerror, yylex): Now accepts parser_control * arg.
43755         (main) [TEST]: Use '\0' rather than 0 for char.
43756
43757 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
43758
43759         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
43760
43761 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
43762
43763         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
43764         It's now the caller's responsibility to handle the case where
43765         !HAVE_GETPAGESIZE && !defined getpagesize.
43766
43767         * lib/mktime.c (leapyear): Arg is long int, not int.
43768
43769 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
43770
43771         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
43772
43773 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
43774
43775         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
43776         missing.  Problem reported by James Youngman.
43777
43778 2004-10-16  Simon Josefsson  <jas@extundo.com>
43779
43780         * gnulib-tool: Fix comments.  Fix parse problem.
43781         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
43782
43783 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
43784
43785         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
43786         implementation of getopt_long.  Problem reported by Alexander Taler in:
43787         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
43788
43789 2004-10-15  Bruno Haible  <bruno@clisp.org>
43790
43791         * gnulib-tool: Untabify. Initialize supplied_libname.
43792         (func_usage): More homogenous output.
43793         (func_modules_transitive_closure, func_modules_to_filelist,
43794         func_emit_lib_Makefile_am): New functions.
43795         (func_import): New function, extracted from big case statement. Use
43796         func_get_license, func_modules_transitive_closure,
43797         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
43798         opt_lgpl. Don't use test -a, as it's not portable.
43799         (func_create_testdir): Use func_modules_transitive_closure,
43800         func_modules_to_filelist, func_emit_lib_Makefile_am.
43801
43802 2004-10-15  Bruno Haible  <bruno@clisp.org>
43803
43804         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
43805
43806 2004-10-15  Bruno Haible  <bruno@clisp.org>
43807
43808         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
43809         the portions belonging to each module.
43810         Suggested by Derek Robert Price <derek@ximbiot.com>.
43811
43812 2004-10-12  Simon Josefsson  <jas@extundo.com>
43813
43814         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
43815         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
43816         to real functions.
43817
43818 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
43819
43820         * modules/vsnprintf: New file.
43821
43822 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
43823
43824         * m4/vsnprintf.m4: New file.
43825
43826 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
43827
43828         * lib/vsnprintf.h: New file.
43829         * lib/vsnprintf.c: New file.
43830
43831 2004-10-11  Bruno Haible  <bruno@clisp.org>
43832
43833         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
43834         vsnprintf.
43835
43836 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
43837
43838         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
43839
43840 2004-10-07  Bruno Haible  <bruno@clisp.org>
43841
43842         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
43843         fits into the provided buffer.
43844
43845 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
43846
43847         * lib/diacrit.c, diacrit.h: Add GPL notice.
43848
43849         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
43850         notice.
43851         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
43852         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
43853         This avoids a potential constant-folding bug.
43854
43855 2004-10-05  Bruno Haible  <bruno@clisp.org>
43856
43857         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
43858         for the declaration of strsep.
43859
43860 2004-10-05  Bruno Haible  <bruno@clisp.org>
43861
43862         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
43863
43864 2004-10-04  Simon Josefsson  <jas@extundo.com>
43865
43866         * modules/memmem: New file.
43867         * tests/test-memmem.c: New file.
43868         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
43869
43870 2004-10-04  Simon Josefsson  <jas@extundo.com>
43871
43872         * m4/memmem.m4: New file.
43873
43874 2004-10-04  Simon Josefsson  <jas@extundo.com>
43875
43876         * lib/memmem.h: New file.
43877         * lib/memmem.c: New file, taken from glibc.
43878
43879 2004-10-04  Simon Josefsson  <jas@extundo.com>
43880
43881         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
43882         '#ifdef USE_UNLOCKED_IO'.
43883
43884 2004-10-04  Simon Josefsson  <jas@extundo.com>
43885
43886         * config/srclist.txt: Add memmem from glibc.
43887
43888 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
43889
43890         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
43891
43892         * modules/argmatch, modules/argp, modules/closeout, modules/error,
43893         modules/exclude, modules/getdate, modules/getline,
43894         modules/getndelim2, modules/getpass, modules/getpass-gnu,
43895         modules/getusershell, modules/linebuffer, modules/md5,
43896         modules/mountlist, modules/posixtm, modules/readtokens,
43897         modules/readutmp, modules/regex, modules/sha1,
43898         modules/version-etc, modules/yesno:
43899         Remove dependency on unlocked-io.
43900
43901 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
43902
43903         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
43904
43905         * m4/unlocked-io.m4: Add copyright notice.
43906         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
43907
43908 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
43909
43910         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
43911         * lib/xmalloc.c (xmemdup): Likewise.
43912         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
43913         XFREE): Remove these long-obsolescent macros.
43914         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
43915         * lib/xstrdup.c: Remove.
43916
43917         * lib/regex.c (re_comp): Cast gettext return value to char *,
43918         Problem reported by Martin Neitzel via Mark D. Baushke.
43919
43920 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
43921
43922         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
43923         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
43924         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
43925         regex.c, sha1.c, version-etc.c, yesno.c:
43926         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
43927         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
43928         the includer's responsibility.
43929
43930         Sync from coreutils.
43931
43932         * lib/modechange.c (mode_compile): Don't decrement a pointer that
43933         points to the start of a string, as the C Standard says the
43934         resulting behavior is undefined.
43935
43936         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
43937         simple -> simple_backups, numbered_existing ->
43938         numbered_existing_backups, numbered -> numbered_backups
43939         to avoid shadowing problems.  All uses changed.
43940         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
43941         * lib/backupfile.c (check_extension, numbered_backup):
43942         Rename locals to avoid shadowing 'basename'.
43943         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
43944         once.
43945
43946         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
43947         * lib/.cvsignore: Add getopt.h.
43948
43949 2004-10-04  Bruno Haible  <bruno@clisp.org>
43950
43951         * modules/README: New file.
43952         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
43953         not a module.
43954
43955 2004-10-02  Jim Meyering  <jim@meyering.net>
43956
43957         * lib/dirfd.h, getpagesize.h: Add copyright notice.
43958
43959 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
43960
43961         * modules/strsep: New file.
43962
43963 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
43964
43965         * m4/strsep.m4: New file.
43966
43967 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
43968
43969         * lib/strsep.h: New file.
43970         * lib/strsep.c: New file.
43971
43972 2004-10-01  Simon Josefsson  <jas@extundo.com>
43973
43974         * lib/snprintf.c (snprintf): Handle size==0.
43975
43976 2004-10-01  Simon Josefsson  <jas@extundo.com>
43977             Bruno Haible  <bruno@clisp.org>
43978
43979         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
43980         (snprintf): Declare 'args'.
43981
43982 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
43983
43984         * lib/snprintf.c: Remove comments as to why each header is needed.
43985
43986 2004-10-01  Bruno Haible  <bruno@clisp.org>
43987
43988         * MODULES.html.sh: Add strsep.
43989
43990 2004-09-30  Simon Josefsson  <jas@extundo.com>
43991
43992         * modules/snprintf: New file.
43993
43994 2004-09-30  Simon Josefsson  <jas@extundo.com>
43995
43996         * m4/snprintf.m4: New file.
43997
43998 2004-09-30  Simon Josefsson  <jas@extundo.com>
43999
44000         * lib/snprintf.h, lib/snprintf.c: New files.
44001
44002 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44003
44004         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
44005         (hol_entry_help): Never translate an empty string.
44006         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
44007         * lib/argp.h (OPTION_NO_TRANS): New option.
44008
44009 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
44010
44011         * modules/argp (Maintainer): Replace Simon Josefsson
44012         by Sergey Poznyakoff.
44013
44014 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
44015
44016         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
44017         changes merged back into glibc.
44018
44019 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
44020
44021         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
44022
44023 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
44024
44025         * lib/xvasprintf.c: Include xalloc.h.
44026         (xvasprintf): Use xalloc_die, not xmalloc_die.
44027
44028 2004-09-29  Bruno Haible  <bruno@clisp.org>
44029
44030         * modules/alloca-opt: New file, derived from modules/alloca.
44031         * modules/allocsa: Depend on alloca-opt instead of alloca.
44032         * modules/setenv: Likewise.
44033         * modules/vasnprintf: Likewise.
44034         * MODULES.html.sh: Add alloca-opt.
44035
44036 2004-09-28  Simon Josefsson  <jas@extundo.com>
44037
44038         * gnulib-tool: New parameter --lgpl, to asseert that modules are
44039         LGPL, and to replace license template from GPL to LGPL.
44040
44041 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
44042
44043         * modules/dummy: Change license to LGPL.
44044
44045 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
44046
44047         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
44048
44049 2004-09-24  Simon Josefsson  <jas@extundo.com>
44050
44051         * modules/minmax (License): Change from GPL to LGPL.
44052
44053 2004-09-23  Simon Josefsson  <jas@extundo.com>
44054
44055         * gnulib-tool (--import): Typo.
44056
44057 2004-09-23  Simon Josefsson  <jas@extundo.com>
44058
44059         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
44060
44061 2004-09-22  Bruno Haible  <bruno@clisp.org>
44062
44063         * modules/*: Add 'License' field.
44064         * gnulib-tool: Accept --extract-license option.
44065         (func_get_license): New function.
44066
44067 2004-09-21  Bruno Haible  <bruno@clisp.org>
44068
44069         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
44070         Reported by Simon Josefsson.
44071
44072 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
44073
44074         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
44075         gl_AC_TYPE_LONG_LONG.
44076
44077 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
44078
44079         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
44080
44081 2004-09-18  Simon Josefsson  <jas@extundo.com>
44082         and  Paul Eggert  <eggert@cs.ucla.edu>
44083
44084         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
44085         calls with autoreconf.  Define GL_LIB.
44086
44087 2004-09-14  Karl Berry  <karl@gnu.org>
44088
44089         * config/srclist.txt: unsync setenv.c, sigh.
44090
44091 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
44092
44093         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
44094         Problem reported by Bruno Haible in:
44095         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
44096
44097 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
44098
44099         * config/srclist.txt: Comment out argp-pvh.c.
44100
44101 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
44102
44103         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
44104         in case some system header has #define'd it.  Problem reported by
44105         Soeren D. Schulze in
44106         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
44107
44108 2004-09-09  Karl Berry  <karl@gnu.org>
44109
44110         * regex.[ch]: delete from the root.  These were supposed to be
44111                 synced with emacs cvs, but this has not happened for about
44112                 a year, and anyway nothing else uses emacs regex.[ch].
44113                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
44114                 lib/regex[.ch] is untouched.
44115
44116 2004-09-09  Bruno Haible  <bruno@clisp.org>
44117
44118         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
44119
44120 2004-09-09  Bruno Haible  <bruno@clisp.org>
44121
44122         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
44123         modifications.
44124         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
44125
44126 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
44127
44128         * modules/xvasprintf: New file.
44129         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
44130
44131 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
44132
44133         * lib/xvasprintf.h: New file.
44134         * lib/xvasprintf.c: New file.
44135         * lib/xasprintf.c: New file.
44136
44137 2004-09-08  Bruno Haible  <bruno@clisp.org>
44138
44139         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
44140
44141 2004-09-08  Bruno Haible  <bruno@clisp.org>
44142
44143         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
44144         length is > INT_MAX.
44145         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
44146         more.
44147
44148 2004-09-08  Bruno Haible  <bruno@clisp.org>
44149
44150         * lib/stdint_.h: New file, taken from GNU clisp.
44151
44152 2004-09-08  Bruno Haible  <bruno@clisp.org>
44153             Oskar Liljeblad  <oskar@osk.mine.nu>
44154
44155         * modules/stdint: New file.
44156         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
44157
44158 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44159
44160         Import from coreutils.
44161         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
44162         strings on unbounded length.  alloca's performance benefits aren't
44163         that important here.
44164         (V_STRDUP): Remove.
44165         (parse_with_separator): New function, with most of the internals
44166         of the old parse_user_spec.  Allow user to omit both user and group,
44167         for compatibility with FreeBSD.
44168         Clone only the user name, not the entire spec.
44169         Do not set *uid, *gid unless entirely successful.
44170         Avoid memory leak in some failing cases.
44171         Fix regression for USER.GROUP reported by Dmitry V. Levin in
44172         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
44173         (parse_user_spec): Rewrite to use parse_with_separator.
44174
44175 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44176
44177         * modules/userspec: Don't depend on alloca.
44178
44179 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44180
44181         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
44182
44183 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44184
44185         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
44186         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
44187         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
44188
44189 2004-08-16  Simon Josefsson  <jas@extundo.com>
44190
44191         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
44192         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
44193         Add --dry-run for --import.
44194         Let user provided command line parameters override configure.ac
44195         settings.
44196
44197 2004-08-12  Simon Josefsson  <jas@extundo.com>
44198
44199         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
44200         as discussed with Paul Eggert in threads rooted at
44201         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
44202         and
44203         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
44204         Before, the test was empty, and relied on ELIDE_CODE in source
44205         code.)
44206         (gl_PREREQ_GETOPT): New macro.
44207         (gl_GETOPT): Use them.
44208
44209 2004-08-12  Simon Josefsson  <jas@extundo.com>
44210
44211         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
44212         * lib/getopt_.h: Renamed from getopt.h.
44213
44214 2004-08-12  Simon Josefsson  <jas@extundo.com>
44215
44216         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
44217         Change default library name from libfoo to libgnu.
44218         Now, if you have a configure.ac that says:
44219                 gl_SOURCE_BASE(gl)
44220                 gl_M4_BASE(gl/m4)
44221                 gl_MODULES(error getopt etcetera)
44222                 gl_INIT
44223         you can import all you need by running:
44224                 ../gnulib/gnulib-tool --import
44225
44226         * modules/getopt (Files): Rename getopt.h to getopt_.h.
44227         (Makefile.am): Rewrite, use logic from argz.
44228         (Include): Use <getopt.h> instead of "getopt.h".
44229
44230 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
44231
44232         * modules/argp (Files): Add m4/unlocked-io.m4.
44233         (Depends-on): Add extensions.
44234
44235 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
44236
44237         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
44238         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
44239         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
44240         Check for program_invocation_name, program_invocation_short_name,
44241         flockfile, funlockfile, features.h, _getopt_long_only_r.
44242
44243 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
44244
44245         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
44246         its complicated substitute.
44247         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
44248         and program_invocation_name.
44249         (__argp_basename) [!_LIBC]: Remove; the only use was
44250         replaced by its body.
44251         (__argp_short_program_name): Change condition from
44252         !defined __argp_short_program_name to
44253         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
44254         to match argp-namefrob.h.
44255         (__argp_failure): Don't assume strerror_r returns char *.
44256         * lib/argp-parse.c (N_): Define unconditionally.
44257         (argp_default_options): Fill out initializers with 0 to avoid
44258         gcc warnings.
44259
44260 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
44261
44262         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
44263         getopt1.c.
44264
44265 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
44266
44267         Merge from coreutils.
44268
44269         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
44270
44271         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
44272         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
44273
44274 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
44275
44276         Merge from coreutils.
44277
44278         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
44279         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
44280         for Reliant Unix 5.43.
44281
44282         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
44283         (union fooround): Use uintmax_t, not long int.
44284         The rest is a merge from libc:
44285         [defined _LIBC]: Include <shlib-compat.h>.
44286         (_obstack) [defined _LIBC]: Remove after 2.3.4.
44287
44288         * lib/settime.c (settime): Recode to avoid warning with
44289         Sun Forte C 6U2.
44290
44291         * lib/strverscmp.c: Convert to UTF-8.
44292
44293 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
44294
44295         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
44296         m4/uintmax_t.m4.
44297
44298 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44299
44300         * modules/xalloc-die: New file.
44301         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
44302
44303         * modules/md5 (Files): Add m4/uint32_t.m4.
44304         * modules/sha1: Renamed from modules/sha.
44305         (Files):
44306         Rename lib/sha.h to lib/sha1.h.
44307         Rename lib/sha.c to lib/sha1.c.
44308         Rename m4/sha.m4 to m4/sha1.m4.
44309         (lib_SOURCES): Likewise.
44310         (configure.ac): Rename gl_SHA to gl_SHA1.
44311         (Include): sha.h -> sha1.h.
44312
44313 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44314
44315         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
44316         * m4/sha1.m4: Renamed from sha.m4.
44317         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
44318
44319 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44320
44321         * lib/obstack.h (obstack_empty_p):
44322         Don't assume that chunk->contents is suitably aligned.
44323         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
44324         Likewise. Problem reported by Benno in
44325         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
44326
44327         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
44328         readable.  This could be improved further but it'd take some work.
44329
44330 2004-08-08  Simon Josefsson  <jas@extundo.com>
44331
44332         * modules/xgethostname (Depends-on): Remove exit and error (not
44333         used).
44334
44335         * modules/getpass-gnu: Add getpass.h.
44336         (Depends-on): Add stdbool.
44337         * modules/getpass: Add getpass.h.
44338
44339 2004-08-08  Simon Josefsson  <jas@extundo.com>
44340
44341         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
44342         Check getpass declaration.
44343
44344 2004-08-08  Simon Josefsson  <jas@extundo.com>
44345
44346         * lib/xgethostname.c: Don't include error.h (not used).
44347
44348         * lib/getpass.h: Add.
44349         * lib/getpass.c: Include getpass.h first.
44350
44351 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
44352
44353         * lib/xalloc-die.c: New file.
44354         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
44355         All uses removed.
44356         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
44357         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
44358         xalloc-die.c.
44359         (_, N_, xalloc_die): Move to xalloc-die.c.
44360         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
44361         so that we needn't mess with xalloc_msg_memory_exhausted.
44362
44363         * lib/sha1.h: Renamed from sha.h.
44364         (SHA1_H): Renamed from _SHA_H.
44365         (sha1_ctx): Renamed from sha_ctx.
44366         (sha1_init_ctx): Renamed from sha_init_ctx.
44367         (sha1_process_block): Renamed from sha_process_block.
44368         (sha1_process_bytes): Renamed from sha_process_bytes.
44369         (sha1_finish_ctx): Renamed from sha_finish_ctx.
44370         (sha1_read_ctx): Renamed from sha_read_ctx.
44371         (sha1_stream): Renamed from sha_stream.
44372         (sha1_buffer): Renamed from sha_buffer.
44373         * lib/sha1.c: Likewise; renamed from sha.c.
44374         Do not include <sys/types.h>.
44375         Include <stddef.h> rather than <stdlib.h>.
44376
44377 2004-08-08  Bruno Haible  <bruno@clisp.org>
44378
44379         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
44380         FILESYSTEM_PREFIX_LEN.
44381         * lib/progreloc.c: Likewise.
44382         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
44383
44384 2004-08-06  Simon Josefsson  <jas@extundo.com>
44385
44386         * modules/progname (Depends-on): Don't depend on stdbool.
44387
44388 2004-08-06  Simon Josefsson  <jas@extundo.com>
44389
44390         * modules/getsubopt: New file.
44391         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44392         getsubopt.
44393
44394 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
44395
44396         More merge from coreutils.
44397
44398         * m4/utimens.m4, m4/utimecmp.m4: New files.
44399         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
44400         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
44401         prereq.m4, sha.m4: Import changes from coreutils.
44402
44403 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
44404
44405         More merge from coreutils.
44406         * modules/raise, modules/readtokens0, modules/utimens:
44407         * modules/utimecmp, module/xnanosleep: New files.
44408         * modules/strftime: Add lib/strftime.h.
44409         Change include from <time.h> to "strftime.h".
44410         * modules/yesno: Add lib/yesno.h.
44411         * modules/backupfile: Remove lib/addext.c.
44412         * modules/euidaccess: Add stat-macros.h.
44413         * modules/canonicalize, modules/euidaccess,
44414         modules/filemode, modules/lchown, modules/makepath,
44415         modules/rmdir, modules/stat: Likewise.
44416
44417 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
44418
44419         Merge from tar.
44420         * lib/argp-help.c (make_hol, hol_append): Don't assume that
44421         SIZE_MAX is a valid preprocessor constant.
44422         (__argp_basename): Change from "#ifndef _LIBC"
44423         to "#ifndef __argp_short_program_name", so that
44424         we don't compile these functions for tar.
44425
44426         More merges from coreutils.
44427         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
44428         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
44429         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
44430         * lib/addext.c: Remove; no longer needed.
44431         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
44432         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
44433         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
44434         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
44435         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
44436         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
44437         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
44438         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
44439         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
44440         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
44441         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
44442         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
44443         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
44444         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
44445         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
44446         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
44447         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
44448         Import changes from coreutils.
44449
44450 2004-08-05  Simon Josefsson  <jas@extundo.com>
44451
44452         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
44453
44454 2004-08-05  Simon Josefsson  <jas@extundo.com>
44455
44456         * m4/getsubopt.m4: New file.
44457
44458 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
44459
44460         Merge from coreutils.
44461
44462         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
44463         * m4/getcwd-path-max.m4: New files.
44464
44465         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
44466         FILESYSTEM_PREFIX_LEN ->
44467         FILE_SYSTEM_PREFIX_LEN.
44468         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
44469         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
44470         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
44471         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
44472
44473         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
44474         prerequisite modules now handle the DOS stuff.
44475         Don't check for unistd.h.
44476
44477 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
44478
44479         Merge from coreutils.
44480
44481         * lib/.gdb-history: Remove; this doesn't belong here.
44482
44483         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
44484         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
44485         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
44486         * lib/getcwd.c: New files.
44487
44488         * lib/dirname.h: Include <stdbool.h>.
44489         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
44490         for consistency with POSIX terminology.  All uses changed.
44491         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
44492         (strip_trailing_slashes): Use bool for booleans.
44493         * lib/stripslash.c (strip_trailing_slashes): Likewise.
44494
44495         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
44496         sometimes returns a positive errno value even when it succeeds.
44497         (print_errno_message) [!LIBC]: Fall back on strerror if
44498         __strerror_r fails.
44499
44500         * lib/path-concat.c (mempcpy): Don't define if a system header defines
44501         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
44502         (longest_relative_suffix): New function.
44503         (path_concat): Use it.  Assume first argument is not NULL.
44504         Port to DOS.  Omit redundant separators.
44505         Report an error instead of returning NULL.
44506         Use mempcpy instead of memcpy.
44507         (xpath_concat): Remove: not declared or used.
44508
44509         * lib/same.h: Include <stdbool.h>
44510         (same_name): Return bool, not int.
44511         * lib/same.c (same_name): Likewise.
44512         (errno): Don't declare; we assume C89 or better now.
44513
44514         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
44515         if not already defined.
44516
44517         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
44518         * lib/dup-safer.c (errno): Likewise.
44519
44520 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
44521
44522         Merge from coreutils.
44523         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
44524         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
44525         * modules/path-concat: Don't depend on strdup.
44526
44527 2004-08-03  Simon Josefsson  <jas@extundo.com>
44528
44529         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
44530         * lib/progname.h: Don't include stdbool.h.
44531
44532 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
44533
44534         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
44535         * MODULES.html.sh (func_all_modules): Remove fatal.
44536
44537 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
44538
44539         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
44540
44541 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
44542
44543         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
44544         working.
44545
44546 2004-08-02  Simon Josefsson  <jas@extundo.com>
44547
44548         * lib/getsubopt.h: New file, with comments from Bruno Haible.
44549         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
44550         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
44551
44552 2004-08-01  Simon Josefsson  <jas@extundo.com>
44553
44554         * lib/xgetdomainname.c: Include stdlib.h, for free().
44555
44556 2004-07-19  Bruno Haible  <bruno@clisp.org>
44557
44558         * MODULES.html.sh (func_all_modules): Add dummy.
44559
44560 2004-07-16  Simon Josefsson  <jas@extundo.com>
44561
44562         * modules/dummy: New file.
44563
44564 2004-07-16  Simon Josefsson  <jas@extundo.com>
44565
44566         * lib/dummy.c: New file.
44567
44568 2004-07-16  Bruno Haible  <bruno@clisp.org>
44569
44570         * lib/backupfile.h: Add extern "C" for C++.
44571         * lib/closeout.h: Likewise.
44572         * lib/copy-file.h: Likewise.
44573         * lib/findprog.h: Likewise.
44574         * lib/full-write.h: Likewise.
44575         * lib/pathname.h: Likewise.
44576         * lib/progname.h: Likewise.
44577         * lib/stpcpy.h: Likewise.
44578         * lib/stpncpy.h: Likewise.
44579         * lib/strcase.h: Likewise.
44580         * lib/strstr.h: Likewise.
44581         * lib/xalloc.h: Likewise.
44582
44583         * lib/mbswidth.h: Add extern "C" for C++.
44584         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
44585
44586 2004-07-13  Robert Millan  <robertmh@gnu.org>
44587
44588         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
44589
44590 2004-07-09  Simon Josefsson  <jas@extundo.com>
44591
44592         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
44593         failed without this.)
44594
44595 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
44596
44597         * modules/chown (Files): Add lib/fchown-stub.c, since
44598         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
44599
44600 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
44601
44602         * lib/fchown-stub.c: New file.
44603
44604 2004-06-24  Jim Meyering  <jim@meyering.net>
44605
44606         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
44607
44608 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
44609
44610         * modules/argz: Omit "#include".
44611
44612         * MODULES.html.sh (func_all_modules): Add calloc, to match
44613         2004-06-01 addition of calloc module.
44614
44615 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
44616
44617         * m4/argz.m4: New file, which is autoupdated from libtool.
44618
44619 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
44620
44621         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
44622         libtool.
44623
44624 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
44625
44626         * config/srclist-update: Don't insist on "USA." before the
44627         close-comment, as libtool omits the period and puts the */ on a
44628         separate line.
44629         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
44630         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
44631
44632 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
44633
44634         * modules/argz: New file.
44635         * MODULES.html.sh (func_all_modules): Add argz.
44636
44637 2004-06-12  Jim Meyering  <jim@meyering.net>
44638         and  Paul Eggert  <eggert@cs.ucla.edu>
44639
44640         * modules/hash (Files): Add lib/xalloc.h.
44641         * modules/pipe (Depends-on): Add wait-process.
44642         * modules/stat (Depends-on): Add xalloc.
44643         * modules/userspec (Files): Add lib/userspec.h.
44644         * modules/xstrto
44645
44646         Upgrade from gettext-0.13.
44647         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
44648         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
44649         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
44650
44651 2004-06-10  Jim Meyering  <jim@meyering.net>
44652
44653         * lib/calloc.c: New file.
44654
44655 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
44656
44657         * lib/getdate.y (yylex): Allow space between sign and number.
44658         Problem reported by Dan Jacobson.
44659
44660 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
44661
44662         Merge from coreutils CVS.
44663
44664         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
44665         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
44666         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
44667         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
44668         xstrtol.m4: Fix copyright date and/or serial number.
44669
44670         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
44671         See if we need an fchown replacement.
44672         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
44673         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
44674         and use the replacement function if we detect either defect.
44675
44676         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
44677         gl_UTIMECMP.
44678
44679 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
44680         and  Jim Meyering  <jim@meyering.net>
44681
44682         Merge from coreutils CVS.
44683
44684         * lib/stat-macros.h: New file, with contents from file-type.h
44685         and coreutils' system.h.
44686         * lib/file-type.c: Include "stat-macros.h".
44687         * lib/file-type.h (file_type): Move all macro definitions to new file,
44688         stat-macros.h.
44689
44690         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
44691         Wrap old code with this conditional.
44692         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
44693         function that does not dereference symlinks.
44694         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
44695
44696         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
44697         dependency problems.
44698         (xreadlink): Accept new arg SIZE, for efficiency.
44699         All decls and uses changed.
44700         * lib/xreadlink.h: Include <stddef.h>, for size_t.
44701
44702         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
44703         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
44704
44705         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
44706         sysexits.h.
44707
44708 2004-06-01  Jim Meyering  <jim@meyering.net>
44709
44710         * m4/calloc.m4: New file.
44711
44712 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
44713
44714         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
44715         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
44716         Also, fix a typo in a diagnostic.
44717
44718 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
44719
44720         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
44721         or AC_FUNC_REALLOC.
44722
44723 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
44724
44725         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
44726         macros to be defined.
44727         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
44728         the allocator returns NULL because the requested size is zero.
44729
44730 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
44731
44732         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
44733         var.  Add comment explaining why libc still defines it.  This
44734         merges the following patch from glibc:
44735         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
44736
44737 2004-05-20  Andreas Schwab  <schwab@suse.de>
44738
44739         * m4/free.m4: Replace free if it not known to work, not the other
44740         way round.
44741
44742 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
44743
44744         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
44745         present in glibc since revision 1.1 of this file.
44746         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
44747         obstack_alignment_mask, obstack_alloc, obstack_base,
44748         obstack_blank, obstack_blank_fast, obstack_chunk_size,
44749         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
44750         obstack_grow0, obstack_init, obstack_int_grow,
44751         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
44752         obstack_next_free, obstack_object_size, obstack_ptr_grow,
44753         obstack_ptr_grow_fast, obstack_room): Remove declarations of
44754         nonexistent functions.
44755
44756 2004-05-18  Karl Berry  <karl@gnu.org>
44757
44758         * config/srclist.txt: break link for vasnprintf.c.
44759
44760 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
44761
44762         Port obstack to the AS/400, where pointers are 16 bytes wide and
44763         you cannot cast an integer to a valid pointer.  This patch is
44764         currently waiting to be integrated into glibc; see
44765         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
44766
44767         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
44768         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
44769         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
44770         (struct obstack): temp member is now a union of a pointer and
44771         an integer, instead of an integer.  All integer uses changed.
44772         This does not affect the physical layout of struct obstack,
44773         except on hosts (like the AS/400) where the size or alignment of
44774         void * is greater than that of ptrdiff_t.
44775         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
44776         __STDC__)]: Store temporary in pointer member of union, not
44777         integer member.
44778         * lib/obstack.c: Include <stddef.h>, for offsetof.
44779         (struct fooalign): Remove; it doesn't need a name.
44780         (union fooround): Change double to long double, and add void *.
44781         (DEFAULT_ALIGNMENT): Use offsetof to compute.
44782         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
44783         not a macro.  Hence the values are always int; so remove all
44784         casts-to-int in uses.
44785
44786 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
44787
44788         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
44789         we can get this patch merged into glibc.
44790
44791 2004-05-17  Derek R. Price  <derek@ximbiot.com>
44792             Paul Eggert  <eggert@cs.ucla.edu>
44793
44794         * m4/argp: Depend on alloca.
44795
44796 2004-05-17  Derek R. Price  <derek@ximbiot.com>
44797             Paul Eggert  <eggert@cs.ucla.edu>
44798
44799         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
44800         freecoding.
44801
44802 2004-05-17  Bruno Haible  <bruno@clisp.org>
44803
44804         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
44805         precision that consists of a '.' followed by an empty digit string.
44806         Patch by Tor Lillqvist <tml@iki.fi>.
44807
44808 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
44809
44810         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
44811         for backward compatibility with older code.  We need our own
44812         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
44813         it under some other name, and our alloca.h will define it.
44814
44815 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
44816             Derek Price  <derek@ximbiot.com>
44817
44818         * lib/alloca.c: Include <alloca.h>, to get our interface.
44819         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
44820         include <alloca.h> first.  Use C89 prototype for alloca; this
44821         requires including <stddef.h> for size_t.  Use extern "C" if C++.
44822         Use #elif for simplicity, since we can assume C89 now.
44823         Don't try to source the system alloca.h since it will not be found
44824         and to prevent recursively including its replacement.
44825         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
44826         * lib/regex.c: Likewise.
44827
44828 2004-05-16  Derek Price  <derek@ximbiot.com>
44829             Paul Eggert  <eggert@cs.ucla.edu>
44830
44831         getline cleanup.  This changes the getndelim2 API: both order of
44832         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
44833         no delimiter).
44834
44835         * lib/getline.c: Don't include stddef.h or stdio.h, since our
44836         interface does that.
44837         (getline): Always use getdelim, so that we don't have two
44838         copies of this code.
44839         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
44840         if available.
44841         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
44842         (GETNDELIM2_MAXIMUM): New macro.
44843         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
44844         instead of the old practice of delim2==0.  All callers changed.
44845         Return -1 on overflow, instead of returning junk.
44846         Do not set *linesize unless allocation succeeds.
44847         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
44848         that we include sys/types.h.
44849         * lib/getnline.h: Likewise.
44850         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
44851         (getndelim2): Reorder arguments.
44852         * lib/getnline.c (getnline, getndelim):
44853         Don't discard the NMAX argument.
44854         (getnline): Invoke getndelim, to avoid code duplication.
44855         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
44856         of (size_t) -1 by callers of the getnline family.
44857
44858 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
44859
44860         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
44861         Check for gettimeofday.
44862         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
44863         Check for settimeofday, stime.
44864
44865 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
44866
44867         * lib/nanosleep.c (suspended): Change its type from int to
44868         sig_atomic_t volatile.
44869         (first_call): Make it private to rpl_nanosleep, and have it
44870         be zero initially as that's a bit faster.
44871         (my_usleep): Round up fractional times instead of truncating them,
44872         as this is the usual meaning for 'sleep'.
44873
44874         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
44875         doesn't work.
44876         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
44877         (ENOSYS): Define if not defined.
44878         (settime): Fall back on stime if it exists and settimeofday fails.
44879         But don't bother with fallbacks if a method fails with errno == EPERM.
44880
44881 2004-05-11  Jim Meyering  <jim@meyering.net>
44882
44883         Prior to this change, the save_cwd caller required read access to the
44884         current directory on most systems (ones with the fchdir function).
44885
44886         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
44887         fails, try write-only, and finally, resort to using xgetcwd.
44888
44889 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
44890
44891         * lib/obstack.c, obstack.h: Import changes from libc.
44892
44893 2004-04-28  Bruno Haible  <bruno@clisp.org>
44894
44895         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
44896         also implicitly appends .exe to executables.
44897         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
44898         accepts Windows pathnames.
44899         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
44900         Treat Cygwin like Windows, since it now accepts Windows pathnames.
44901         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
44902         Treat Cygwin like Windows, since it now accepts Windows pathnames.
44903         Reported by Derek Robert Price <derek@ximbiot.com>.
44904
44905 2004-04-21  Karl Berry  <karl@gnu.org>
44906
44907         * config/srclist.txt (localcharset.c): break sync.
44908
44909 2004-04-20  Paul Eggert  <eggert@twinsun.com>
44910
44911         * m4/host-os.m4: Add a copyright notice.
44912
44913 2004-04-20  Jim Meyering  <jim@meyering.net>
44914
44915         Change UTILS_ to gl_ in AC_DEFINE'd names.
44916         Change utils_- and jm_-prefixed variables, too.
44917         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
44918         UTILS_FUNC_MKDIR_TRAILING_SLASH.
44919         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
44920
44921         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
44922         Don't emit trailing blanks.
44923         Also rename jm_-prefixed variables to have gl_ prefix.
44924
44925         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
44926         Also rename jm_-prefixed variables to have gl_ prefix.
44927
44928         * m4/jm-macros.m4: Reflect the renamings.
44929         * m4/prereq.m4: Likewise.
44930
44931 2004-04-20  Jim Meyering  <jim@meyering.net>
44932
44933         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
44934         memory.
44935
44936 2004-04-20  Jim Meyering  <jim@meyering.net>
44937             Bruno Haible  <bruno@clisp.org>
44938
44939         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
44940         memory when realloc fails.
44941
44942 2004-04-19  Jim Meyering  <jim@meyering.net>
44943
44944         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
44945         now that readutmp.c may call `free (0)'.
44946
44947 2004-04-19  Bruno Haible  <bruno@clisp.org>
44948
44949         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
44950         * m4/inttypes_h.m4: Likewise.
44951         * m4/stdint_h.m4: Likewise.
44952         * m4/intmax_t.m4: Likewise.
44953         * m4/uintmax_t.m4: Likewise.
44954
44955 2004-04-18  Jim Meyering  <jim@meyering.net>
44956
44957         * m4/prereq.m4: Don't forbid jm_ prefix.
44958
44959         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
44960         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
44961         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
44962         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
44963         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
44964         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
44965         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
44966         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
44967         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
44968         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
44969         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
44970         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
44971         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
44972         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
44973         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
44974         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
44975         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
44976         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
44977         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
44978
44979 2004-04-18  Jim Meyering  <jim@meyering.net>
44980
44981         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
44982         failure, don't leak memory and do call END_UTMP_ENT.
44983
44984 2004-04-16  Jim Meyering  <jim@meyering.net>
44985
44986         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
44987         coreutils' stat program.
44988         (gl_PREREQ): Don't require jm_PREREQ_STAT.
44989
44990 2004-04-11  Paul Eggert  <eggert@twinsun.com>
44991
44992         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
44993         C89.
44994         (CHAR_BIT): Remove, since we assume C89.
44995         Include <stdint.h> if available, as per current Autoconf CVS advice.
44996
44997 2004-03-31  Jim Meyering  <jim@meyering.net>
44998
44999         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
45000         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
45001         * m4/xalloc.m4: Likewise.
45002
45003 2004-03-30  Paul Eggert  <eggert@twinsun.com>
45004
45005         Merge from coreutils.
45006
45007         * m4/inttostr.m4: New file.
45008         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
45009         Require AM_STDBOOL_H and gl_TIMESPEC instead.
45010         Require gl_CLOCK_TIME.
45011         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
45012
45013 2004-03-30  Paul Eggert  <eggert@twinsun.com>
45014
45015         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
45016         not bool, to be more consistent with Unix conventions.
45017         Suggested by Bruno Haible.
45018
45019         Merge from coreutils.
45020
45021         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
45022         * lib/umaxtostr.c: New files.
45023
45024         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
45025         the usual <time.h> dance.
45026         (get_date): Change signature to support fractional time stamps.
45027         All callers changed.
45028         * lib/getdate.y: Include "getdate.h" first, as we can now
45029         assume C89 and don't need to worry about 'const'.
45030         Similarly, include "unlocked-io.h" near start, not in middle.
45031         Include <limits.h>.
45032         (textint.value): Use long int rather than int.
45033         (textint.digits): Use size_t rather than int.
45034         (BILLION, LOG10_BILLION): New constants.
45035         (parser_control): New member rel_ns.  Members day_ordinal,
45036         time_zone, month, day, hour, minutes, rel_year, rel_month,
45037         rel_day, rel_hour, rel_minutes, rel_seconds
45038         are now long int, not int.  Member seconds is now struct timespec,
45039         not int.  New member timespec_seen.  Members dates_seen, days_seen,
45040         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
45041         not int.
45042         (%union.intval): Now long int, not int.
45043         New member timespec.
45044         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
45045         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
45046         (spec): Now is a timespec or an item list.
45047         (timespec, items): New nonterminals.
45048         (time, rel, relunit, number, get_date):
45049         Add support for fractional seconds.
45050         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
45051         (gmtime, localtime, mktime): Remove decls; not needed with C89.
45052         (to_hour): First arg is now long int, not int.
45053         (to_year): Returns long int, not int.
45054         Don't treat year -70 like 70.
45055         (tm_diff): Returns long int, not int.
45056         (lookup_word): Use bool instead of int when appropriate.
45057         (yylex): Use size_t for count, not int.
45058         Detect overflow when parsing large integer constants.
45059         Add support for fractions.
45060         (get_date): Make pointers 'const' if possible.
45061         Use more-portable code to detect integer overflow.
45062         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
45063         Don't use ctime; it's not reliable if the year has >4 digits.
45064
45065         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
45066         This is for compatibility with BSD.
45067
45068         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
45069         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
45070         From coreutils' system.h.
45071
45072         * lib/userspec.c: Don't include "posixver.h".
45073         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
45074         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
45075         compatible extension.  Simplify code by removing a boolean int
45076         that was always nonzero if a string was nonnull.
45077
45078 2004-03-30  Jim Meyering  <jim@meyering.net>
45079
45080         Merge from coreutils.
45081
45082         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
45083         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
45084         on some systems one must include <grp.h> before it.
45085         Reported by Christian Krackowizer.
45086
45087 2004-03-30  Jim Meyering  <jim@meyering.net>
45088
45089         Merge from coreutils.
45090
45091         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
45092
45093         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
45094         an empty input stream.
45095
45096         * lib/readtokens.c: Include <stdbool.h>.
45097         (readtoken): Use `size_t' rather than int/long.
45098         All callers adjusted.
45099         Use `bool' rather than `int' where appropriate.
45100         Use memset rather than an explicit loop.
45101         Use x2nrealloc rather than xrealloc.
45102         Allow the use of `\0' as a delimiter.
45103         (readtokens): Likewise.
45104         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
45105
45106 2004-03-30  Jim Meyering  <jim@meyering.net>
45107
45108         * m4/realloc.m4: Remove file, since now it does no more than
45109         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
45110         the `configure.ac' section of module/realloc.
45111         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
45112
45113 2004-03-30  Bruno Haible  <bruno@clisp.org>
45114
45115         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
45116         nonnull.
45117
45118 2004-03-29  Paul Eggert  <eggert@twinsun.com>
45119
45120         Merge changes to getloadavg.c from coreutils and Emacs.
45121
45122         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
45123         Define to an expression, not to the empty string.
45124         Include cloexec.h and xalloc.h.
45125         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
45126         Use set_cloexec_flag rather than rolling our own.
45127         * lib/cloexec.c, lib/cloexec.h: New files.
45128
45129 2004-03-29  Paul Eggert  <eggert@twinsun.com>
45130
45131         * m4/cloexec.m4: New file.
45132
45133 2004-03-18  Paul Eggert  <eggert@twinsun.com>
45134
45135         * lib/getopt.h: Sync with libc CVS.
45136
45137 2004-03-18  Paul Eggert  <eggert@twinsun.com>
45138             Bruno Haible  <bruno@clisp.org>
45139
45140         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
45141         mbswidth.
45142
45143 2004-03-18  Paul Eggert  <eggert@twinsun.com>
45144             Bruno Haible  <bruno@clisp.org>
45145
45146         * lib/mbswidth.h: Include <wchar.h> only if
45147         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
45148         <wchar.h>.
45149         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
45150
45151 2004-03-09  Paul Eggert  <eggert@twinsun.com>
45152
45153         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
45154         Sync with libc CVS.
45155         * lib/getopt_int.h: New file, also synced from libc.
45156
45157 2004-03-09  Paul Eggert  <eggert@twinsun.com>
45158
45159         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
45160         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
45161         Bring back getopt.c, getopt.h, getopt1.c.
45162
45163 2004-03-07  Paul Eggert  <eggert@twinsun.com>
45164
45165         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
45166         All uses changed.  Check for sa_sigaction member; this fixes
45167         a bug first reported by Jason Andrade in
45168         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
45169
45170 2004-03-07  Paul Eggert  <eggert@twinsun.com>
45171
45172         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
45173         '#if' expressions.  Unlike the code it replaces, it does not
45174         depend on (defined _SC_PAGESIZE).  However, it does depend on
45175         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
45176         first reported by Jason Andrade in
45177         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
45178
45179 2004-02-25  Simon Josefsson  <jas@extundo.com>
45180
45181         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
45182
45183 2004-02-25  Simon Josefsson  <jas@extundo.com>
45184
45185         * lib/strdup.h: New file.
45186         * lib/strdup.c: Include it.
45187         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
45188         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
45189
45190 2004-02-23  Karl Berry  <karl@gnu.org>
45191
45192         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
45193         (from fencepost.gnu.org:/gd/gnuorg).
45194
45195 2004-02-23  Karl Berry  <karl@gnu.org>
45196
45197         * config/srclistvars.sh (GNUORG) [karl]: redefine.
45198         * config/srclist.txt: add maintain/standards documents.
45199
45200 2004-02-18  Bruno Haible  <bruno@clisp.org>
45201
45202         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
45203         Reported by Derek Robert Price <derek@ximbiot.com>.
45204
45205 2004-02-16  Karl Berry  <karl@gnu.org>
45206
45207         * config/mkinstalldirs, install-sh: update from automake.
45208
45209 2004-02-06  Karl Berry  <karl@gnu.org>
45210
45211         * m4/po.m4: update from gettext 0.14.1.
45212
45213 2004-02-06  Karl Berry  <karl@gnu.org>
45214
45215         * lib/config.charset: update from gettext 0.14.1.
45216
45217 2004-02-05  Paul Eggert  <eggert@twinsun.com>
45218
45219         Add comments and code, prompted by suggestions from Bruno Haible
45220         for sh-quote.
45221         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
45222         describing the enum quoting_style values.
45223         * lib/quotearg.c (quotearg_alloc): New function.
45224         (quotearg_buffer_restyled): Treat lone { and } as special.
45225         Treat = as special.  Work around bug with older shells
45226         that "see" a '\' that is really the 2nd byte of a multibyte char.
45227         Quote empty string with shell_quoting_style.
45228
45229 2004-02-03  Bruno Haible  <bruno@clisp.org>
45230
45231         * m4/pipe.m4: New file, from GNU gettext.
45232
45233 2004-02-03  Bruno Haible  <bruno@clisp.org>
45234
45235         * lib/pipe.h: New file, from GNU gettext.
45236         * lib/pipe.c: New file, from GNU gettext.
45237
45238 2004-01-27  Bruno Haible  <bruno@clisp.org>
45239
45240         * m4/execute.m4: New file, from GNU gettext.
45241
45242 2004-01-27  Bruno Haible  <bruno@clisp.org>
45243
45244         * lib/execute.h: New file, from GNU gettext.
45245         * lib/execute.c: New file, from GNU gettext.
45246         * lib/w32spawn.h: New file, from GNU gettext.
45247
45248 2004-01-24  Paul Eggert  <eggert@twinsun.com>
45249
45250         Merge from diffutils.
45251
45252         * lib/file-type.c (file_type): Add typed memory objects.
45253         * lib/file-type.h (S_TYPEISTMO): New macro.
45254
45255         * lib/c-stack.h (c_stack_action): Remove argv argument.
45256         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
45257         (die): Don't calculate message unless segv_action returns.
45258         (get_stack_location, min_address_from_argv, max_address_from_argv,
45259         volatile stack_base, volatile_stack_size): Remove.
45260         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
45261         that every segmentation violation is a stack overflow.  (Ouch!)
45262         See Debian bug 136249 (still outstanding) for more info about why
45263         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
45264
45265 2004-01-24  Paul Eggert  <eggert@twinsun.com>
45266
45267         Exit-status fix from coreutils.
45268
45269         Use exit_failure consistently in place of EXIT_FAILURE,
45270         so that program exit statuses are consistent on failure.
45271
45272         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
45273         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
45274         * lib/argmatch.h: Comment fix to match the above.
45275         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
45276         Now a macro referring to exit_failure, instead of a separate
45277         variable.  Include "exitfail.h" to get it.
45278         * lib/xstrtol.h: Include "exitfail.h".
45279         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
45280
45281         * lib/long-options.c (parse_long_options): Use prototype
45282         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
45283         for clarity.
45284
45285 2004-01-21  Jim Meyering  <jim@meyering.net>
45286
45287         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
45288         so as not to conflict with a different-sized __mktime_internal
45289         function in GNU libc.
45290         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
45291         Problem building statically-linked `ls' reported by Michael Brunnbauer.
45292
45293 2004-01-20  Karl Berry  <karl@gnu.org>
45294
45295         * config/config.guess: update from config.
45296
45297         * config/srclistvars.sh: GNUWWWLICENSES for karl.
45298
45299 2004-01-20  Bruno Haible  <bruno@clisp.org>
45300
45301         Safer stack allocation.
45302         * lib/setenv.c: Include allocsa.h.
45303         (alloca): Remove fallback definition.
45304         (freea): Remove macro.
45305         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
45306         instead of freea.
45307
45308 2004-01-20  Bruno Haible  <bruno@clisp.org>
45309
45310         * m4/eealloc.m4: New file, from GNU gettext.
45311
45312 2004-01-20  Bruno Haible  <bruno@clisp.org>
45313
45314         * m4/allocsa.m4: New file, from GNU gettext.
45315
45316 2004-01-20  Bruno Haible  <bruno@clisp.org>
45317
45318         * lib/xallocsa.h: New file, from GNU gettext.
45319         * lib/xallocsa.c: New file, from GNU gettext.
45320
45321 2004-01-20  Bruno Haible  <bruno@clisp.org>
45322
45323         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
45324
45325 2004-01-20  Bruno Haible  <bruno@clisp.org>
45326
45327         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
45328         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
45329         specially.
45330
45331 2004-01-20  Bruno Haible  <bruno@clisp.org>
45332
45333         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
45334         patch.
45335
45336 2004-01-20  Bruno Haible  <bruno@clisp.org>
45337
45338         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
45339
45340 2004-01-20  Bruno Haible  <bruno@clisp.org>
45341
45342         * lib/eealloc.h: New file.
45343
45344 2004-01-20  Bruno Haible  <bruno@clisp.org>
45345
45346         * lib/binary-io.h: Avoid warnings on Cygwin.
45347
45348 2004-01-20  Bruno Haible  <bruno@clisp.org>
45349
45350         * lib/allocsa.h: New file, from GNU gettext.
45351         * lib/allocsa.c: New file, from GNU gettext.
45352
45353 2004-01-18  Karl Berry  <karl@gnu.org>
45354
45355         * doc/gpl.texi, doc/lgpl.texi: new files.
45356
45357 2004-01-18  Karl Berry  <karl@gnu.org>
45358
45359         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
45360         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
45361
45362 2004-01-15  Paul Eggert  <eggert@twinsun.com>
45363
45364         Merge from coreutils.
45365
45366         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
45367         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
45368         (gl_DEFAULT_POSIX2_VERSION): Move
45369         the documentation from 'configure' into 'config.hin',
45370         so that 'configure --help' isn't burdened by it and
45371         we don't have to worry about its formatting there.
45372         Reword the documentation so that it's more succinct
45373         and can be run together into a single paragraph.
45374         * m4/same.m4 (gl_SAME): Check for pathconf.
45375
45376 2004-01-15  Paul Eggert  <eggert@twinsun.com>
45377
45378         Merge from coreutils.
45379
45380         * lib/posixver.c: Include posixver.h.
45381
45382         * lib/same.c: Include <stdbool.h>, <limits.h>.
45383         (_POSIX_NAME_MAX): Define if not defined.
45384         (MIN): New macro.
45385         (same_name): If file names are silently truncated, report
45386         that the file names are the same if they are the same after
45387         the silent truncation.
45388
45389         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
45390         conversion function.
45391         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
45392         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
45393         longer needed.
45394
45395 2004-01-15  Jim Meyering  <jim@meyering.net>
45396
45397         Merge from coreutils.
45398
45399         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
45400         if no library is required.
45401         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
45402         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
45403         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
45404         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
45405         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
45406         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
45407         value, $ac_cv_search_crypt, if it's "none required".
45408         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
45409         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
45410         not gl_FUNC_GETLOADAVG.
45411         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
45412         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
45413
45414 2004-01-15  Jim Meyering  <jim@meyering.net>
45415
45416         Merge from coreutils.
45417
45418         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
45419         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
45420         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
45421
45422         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
45423         optional configure-time default.
45424
45425         * lib/version-etc.c (version_etc_copyright): Update copyright date.
45426
45427         * lib/xreadlink.c (xreadlink): Correct outdated comment.
45428
45429 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
45430
45431         Merge from coreutils.
45432
45433         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
45434         value, $ac_cv_search_nanosleep, if it's "none required".
45435
45436 2004-01-14  Paul Eggert  <eggert@twinsun.com>
45437
45438         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
45439         with like-named macro in fnmatch.c.
45440         (EXT): Use an internal constant instead.
45441
45442         Merge fnmatch patches from glibc.
45443         * lib/fnmatch.c (mbsinit): Remove define.
45444         Add libc_hidden_ver (__fnmatch, fnmatch).
45445         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
45446         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
45447
45448 2004-01-14  Karl Berry  <karl@gnu.org>
45449
45450         * config/install-sh: update from automake.
45451
45452 2004-01-13  Karl Berry  <karl@gnu.org>
45453
45454         * config/install-sh: update from automake.
45455
45456 2004-01-09  Karl Berry  <karl@gnu.org>
45457
45458         * config/install-sh: update from automake.
45459
45460 2004-01-05  Karl Berry  <karl@gnu.org>
45461
45462         * config/config.{sub,guess}: update from config.
45463
45464 2003-12-31  Karl Berry  <karl@gnu.org>
45465
45466         * config/depcomp: update from automake.
45467
45468 2003-12-14  Karl Berry  <karl@gnu.org>
45469
45470         * lib/config.charset: update from gettext-runtime.
45471
45472 2003-12-03  Paul Eggert  <eggert@twinsun.com>
45473
45474         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
45475         Bug reported by Alfred M. Szmidt.
45476
45477 2003-12-03  Bruno Haible  <bruno@clisp.org>
45478
45479         * m4/gettext.m4: Upgrade from gettext-0.13.
45480         * m4/po.m4: Upgrade from gettext-0.13.
45481         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
45482         * m4/intmax.m4: New file, from gettext-0.13.
45483         * m4/printf-posix.m4: New file, from gettext-0.13.
45484
45485 2003-11-29  Karl Berry  <karl@gnu.org>
45486
45487         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
45488
45489 2003-11-25  Paul Eggert  <eggert@twinsun.com>
45490             Bruno Haible  <bruno@clisp.org>
45491
45492         * lib/printf-parse.h: Don't include sys/types.h.
45493         (ARG_NONE): New macro.
45494         (char_directive): Change type of *arg_index fields to size_t.
45495         * lib/printf-parse.c: Don't include sys/types.h.
45496         (SSIZE_MAX): Remove macro.
45497         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
45498         Remove unnecessary overflow check.
45499         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
45500         fields.
45501
45502 2003-11-25  Bruno Haible  <bruno@clisp.org>
45503
45504         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
45505
45506 2003-11-25  Bruno Haible  <bruno@clisp.org>
45507
45508         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
45509         gt_TYPE_SSIZE_T.
45510
45511 2003-11-24  Paul Eggert  <eggert@twinsun.com>
45512
45513         * modules/alloca: Remove dependency on xalloc.
45514
45515 2003-11-24  Paul Eggert  <eggert@twinsun.com>
45516
45517         * lib/alloca.c: Remove dependency on xalloc module.
45518         (xalloc_die): Remove.
45519         (memory_full) [!defined emacs]: New macro.
45520         [!defined emacs]: Don't include xalloc.h.
45521         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
45522         address arithmetic overflows.  Change datatypes a bit to avoid
45523         unnecessary casts.
45524
45525 2003-11-22  Jim Meyering  <jim@meyering.net>
45526
45527         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
45528         s/size/size_t/.
45529
45530 2003-11-21  Karl Berry  <karl@gnu.org>
45531
45532         * config/config.{sub,guess}: update from config.
45533
45534 2003-11-18  Karl Berry  <karl@gnu.org>
45535
45536         * config/config.{sub,guess}: update from config.
45537
45538         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
45539
45540 2003-11-17  Paul Eggert  <eggert@twinsun.com>
45541
45542         * README: Mention that S+T cannot overflow if S is the size of
45543         an existing object and T is sufficiently small.
45544
45545 2003-11-17  Jim Meyering  <jim@meyering.net>
45546
45547         On systems without utime and without a utimes function capable of
45548         dealing with a NULL struct utimbuf* argument, this utime replacement
45549         could -- in unusual circumstances -- leak a file descriptor.
45550         * lib/utime.c: Include <unistd.h> and <errno.h>.
45551         (utime_null): Be sure to close `fd' and to preserve errno.
45552         Reported by Geoff Collyer via Arnold Robbins.
45553
45554 2003-11-17  Bruno Haible  <bruno@clisp.org>
45555
45556         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
45557         (Depends-on): Add xsize.
45558
45559 2003-11-17  Bruno Haible  <bruno@clisp.org>
45560
45561         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
45562
45563 2003-11-17  Bruno Haible  <bruno@clisp.org>
45564
45565         * lib/vasnprintf.c (alloca): Remove fallback definition.
45566         (freea): Remove definition.
45567         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
45568         Reported by Paul Eggert.
45569
45570 2003-11-16  Paul Eggert  <eggert@twinsun.com>
45571             Bruno Haible  <bruno@clisp.org>
45572
45573         Protect against address arithmetic overflow.
45574         * lib/printf-args.h: Include stddef.h.
45575         (arguments): Change type of field 'count' to size_t.
45576         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
45577         'unsigned int' where appropriate.
45578         * lib/printf-parse.h: Include sys/types.h.
45579         (char_directive): Change type of *arg_index fields to ssize_t.
45580         (char_directives): Change type of fields 'count', max_*_length to
45581         size_t.
45582         * lib/printf-parse.c: Include sys/types.h and xsize.h.
45583         (SSIZE_MAX): Define fallback value.
45584         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
45585         instead of 'int' where appropriate. Check a_allocated, d_allocated
45586         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
45587         * lib/vasnprintf.c: Include xsize.h.
45588         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
45589         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
45590         overflow. Avoid wraparound when converting a width or precision from
45591         decimal to binary.
45592
45593 2003-11-16  Bruno Haible  <bruno@clisp.org>
45594
45595         Update from GNU gettext.
45596         * lib/printf-parse.c: Generalize to it can be compiled for wide
45597         strings.
45598         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
45599         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
45600         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
45601         SNPRINTF): New macros.
45602         Don't include <alloca.h> if the file is used inside libintl.
45603         (local_wcslen): New function, for Solaris 2.5.1.
45604         (VASNPRINTF): Use it instead of wcslen.
45605
45606 2003-11-16  Bruno Haible  <bruno@clisp.org>
45607
45608         * lib/xsize.h (xmax): New function.
45609         (xsum, xsum3, xsum4): Declare as "pure" functions.
45610
45611 2003-11-12  Paul Eggert  <eggert@twinsun.com>
45612
45613         * modules/xalloc (Files): Undo latest change, since xalloc.h
45614         no longer needs SIZE_MAX or PTRDIFF_MAX.
45615
45616 2003-11-12  Paul Eggert  <eggert@twinsun.com>
45617
45618         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
45619         gl_PTRDIFF_MAX.
45620
45621 2003-11-12  Paul Eggert  <eggert@twinsun.com>
45622
45623         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
45624         "return", to pacify some unknown compiler.  Problem reported
45625         by Joerg Schilling.
45626
45627 2003-11-12  Paul Eggert  <eggert@twinsun.com>
45628
45629         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
45630         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
45631         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
45632         heuristic is just as accurate as far as we know, and it removes a
45633         dependency on size_max.m4 and ptrdiff_max.m4.
45634
45635 2003-11-11  Bruno Haible  <bruno@clisp.org>
45636
45637         * modules/xsize (Files): Add m4/size_max.m4.
45638         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
45639
45640 2003-11-11  Bruno Haible  <bruno@clisp.org>
45641
45642         * m4/size_max.m4: New file.
45643         * m4/ptrdiff_max.m4: New file.
45644         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
45645         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
45646         (gl_XALLOC): Invoke it.
45647
45648 2003-11-11  Bruno Haible  <bruno@clisp.org>
45649
45650         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
45651         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
45652         defined.
45653
45654 2003-11-10  Paul Eggert  <eggert@twinsun.com>
45655
45656         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
45657         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
45658         rejected some allocations of exactly SIZE_MAX - 2 bytes.
45659         From Bruno Haible.
45660         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
45661         not (size_t) -1, since it's defined here.
45662
45663 2003-11-09  Karl Berry  <karl@gnu.org>
45664
45665         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
45666
45667 2003-11-06  Paul Eggert  <eggert@twinsun.com>
45668
45669         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
45670         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
45671         Reject sizes of exactly SIZE_MAX bytes.
45672         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
45673         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
45674
45675 2003-11-05  Bruno Haible  <bruno@clisp.org>
45676
45677         * lib/xsize.h: Include limits.h, to avoid a possible collision with
45678         SIZE_MAX defined in <limits.h> on Solaris.
45679
45680 2003-11-04  Jim Meyering  <jim@meyering.net>
45681
45682         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
45683         variable names, rather than @VAR@.
45684         * modules/poll: Likewise.
45685
45686 2003-11-04  Bruno Haible  <bruno@clisp.org>
45687
45688         * modules/xsize: New file.
45689         * modules/linebreak: Depend on xsize.
45690         * MODULES.html.sh (func_all_modules): Add xsize.
45691
45692 2003-11-04  Bruno Haible  <bruno@clisp.org>
45693
45694         * m4/xsize.m4: New file.
45695
45696 2003-11-04  Bruno Haible  <bruno@clisp.org>
45697
45698         * lib/xsize.h: New file.
45699         * lib/linebreak.c: Include xsize.h.
45700         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
45701         argument for overflow.
45702         Suggested by Paul Eggert.
45703
45704 2003-11-03  Karl Berry  <karl@gnu.org>
45705
45706         * config/config.{guess,sub}: update from config.
45707
45708 2003-11-03  Jim Meyering  <jim@meyering.net>
45709
45710         * modules/userspec (lib_SOURCES): Add userspec.h.
45711         (Include): Add "userspec.h".
45712         Improve description.
45713
45714 2003-11-03  Jim Meyering  <jim@meyering.net>
45715
45716         * lib/userspec.c: Include "userspec.h".
45717         * lib/userspec.h: New file.
45718
45719 2003-11-03  Bruno Haible  <bruno@clisp.org>
45720
45721         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
45722
45723 2003-11-03  Bruno Haible  <bruno@clisp.org>
45724
45725         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
45726         available, to avoid (extremely rare) race condition.
45727         Suggested by Paul Eggert.
45728
45729 2003-11-02  Karl Berry  <karl@gnu.org>
45730
45731         * config/srclist.txt (vasprintf.c): sync broken, sigh.
45732
45733 2003-10-31  Paul Eggert  <eggert@twinsun.com>
45734
45735         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
45736         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
45737         (read_filesystem_list): Set and use me_type_malloced.
45738         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
45739         whatever the type happens to be), for brevity and consistency.
45740         Check for size calculation overflow on Alphas running OSF/1.
45741
45742 2003-10-31  Jim Meyering  <jim@meyering.net>
45743
45744         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
45745
45746         * lib/linebuffer.c: Include <string.h> for declaration of memset.
45747
45748 2003-10-30  Paul Eggert  <eggert@twinsun.com>
45749             Bruno Haible  <bruno@clisp.org>
45750
45751         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
45752         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
45753
45754 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
45755
45756         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
45757         netbsd*-gnu*.  Suggested by Robert Millan.
45758
45759 2003-10-29  Paul Eggert  <eggert@twinsun.com>
45760
45761         * modules/group-member: Depend on stdbool.
45762
45763 2003-10-29  Paul Eggert  <eggert@twinsun.com>
45764
45765         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
45766
45767 2003-10-29  Paul Eggert  <eggert@twinsun.com>
45768
45769         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
45770         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
45771         after the 'gnu' in these cases.  This fixes some bugs in the
45772         previous change, and is based on suggestions by Robert Millan.
45773
45774 2003-10-29  Paul Eggert  <eggert@twinsun.com>
45775
45776         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
45777         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
45778         no longer needed.
45779         * lib/quotearg.c (quotearg_n_options): Use it.
45780         * lib/group-member.c: Include <stdbool.h>.
45781         (free_group_info): Arg is now const *; don't free arg.
45782         (get_group_info): Now returns bool and accepts struct group_info *,
45783         rather than returning a malloc'ed struct group_info *.
45784         All uses changed.  Check for overflow in internal size calculation.
45785
45786         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
45787         rather than xmalloc/xrealloc.
45788         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
45789         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
45790         conformance bug: the old code used a pointer after freeing the
45791         storage that it addressed.
45792         * lib/hash.c (hash_initialize): Simplify the code by using
45793         xalloc_oversized rather than doing it by hand.
45794         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
45795         the buffer preserved.  Use free and xmalloc instead.
45796         * lib/quotearg.c (quotearg_n_options): Likewise.
45797         Use a simpler test for size overflow.  Don't use xalloc_oversized
45798         because unsigned int might be wider than size_t (!); this suggests
45799         that we should switch from unsigned int to size_t for slot numbers.
45800
45801 2003-10-28  Paul Eggert  <eggert@twinsun.com>
45802
45803         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
45804         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
45805         NetBSD kernels.  Requested by Richard Stallman.
45806
45807 2003-10-27  Paul Eggert  <eggert@twinsun.com>
45808
45809         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
45810         to allocate the returned structure.  Do not allocate a subarray,
45811         as x2nrealloc will do that.
45812         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
45813         instead of xnrealloc.
45814         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
45815
45816 2003-10-27  Bruno Haible  <bruno@clisp.org>
45817
45818         * lib/stdbool_.h: Better support for BeOS.
45819
45820 2003-10-26  Paul Eggert  <eggert@twinsun.com>
45821
45822         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
45823         now uses inline.
45824
45825 2003-10-26  Paul Eggert  <eggert@twinsun.com>
45826
45827         * lib/xalloc.h (xalloc_oversized): New static inline function, for
45828         callers that want to do their own size-overflow checking.  Include
45829         <stdbool.h>, since xalloc_oversized returns bool.
45830         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
45831         to use xalloc_oversized.
45832
45833         Add two functions x2realloc, x2nrealloc, for programs that grow
45834         arrays dynamically by doubling their sizes.
45835         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
45836         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
45837         New functions.
45838
45839         Port to C99 semantics for 'inline' of external functions.
45840         Bug reported by Bruno Haible.
45841         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
45842         with the old contents of xnmalloc.
45843         (xnmalloc, xmalloc): Use it.
45844         (xnrealloc_inline): New static inline function,
45845         with the old contents of xnrealloc.
45846         (xnrealloc, xrealloc): Use it.
45847
45848         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
45849         that.
45850
45851 2003-10-26  Karl Berry  <karl@gnu.org>
45852
45853         * config/srclist.txt (COPYING.DOC): no longer available from
45854         /gd/gnuorg; don't know where the ultimate source is.
45855
45856 2003-10-25  Paul Eggert  <eggert@twinsun.com>
45857
45858         Fix several address-calculation bugs in the hash modules,
45859         plus some minor code cleanup.
45860
45861         * lib/hash.h: Include <stdbool.h>, for bool.
45862         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
45863         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
45864         hash_get_n_entries, hash_get_max_bucket_length,
45865         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
45866         hash_rehash): Use size_t rather than unsigned.
45867         * lib/hash.c (struct hash_table, hash_get_n_buckets,
45868         hash_get_n_buckets_used, hash_get_n_entries,
45869         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
45870         hash_get_entries, hash_do_for_each, hash_string, is_prime,
45871         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
45872         Likewise.
45873         (SIZE_MAX): Define if not defined.
45874         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
45875         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
45876         hash_print):
45877         Use const * when possible.
45878         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
45879         (check_tuning): Fix bug: if tuning parameters were very close to
45880         0 or 1, rounding errors could have caused subscript violations.
45881         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
45882         (hash_initialize): Add 'fail:' label
45883         to free table and return NULL, and use it to simplify code.
45884         Use calloc rather than clearing the storage ourself.
45885         (hash_initialize, hash_rehash): Check for arithmetic overflow in
45886         buffer size calculations.
45887         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
45888         Include <stddef.h>, for size_t.
45889         * lib/hash-pjw.c (hash_pjw): Likewise.
45890         Switch to method described by Bruno Haible.
45891         Include <limits.h>, for CHAR_BIT.
45892         (SIZE_BITS): New macro.
45893
45894 2003-10-23  Paul Eggert  <eggert@twinsun.com>
45895
45896         * m4/getline.m4 (AM_FUNC_GETLINE):
45897         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
45898         hosts.  Problem reported by Derek Robert Price in
45899         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
45900         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
45901         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
45902
45903 2003-10-21  Paul Eggert  <eggert@twinsun.com>
45904
45905         * lib/getndelim2.c (getndelim2): When size calculation overflows,
45906         ceiling the allocation at NMAX bytes rather than silently
45907         discarding input bytes before NMAX is reached.  This makes
45908         a difference only if NMAX exceeds SIZE_MAX / 2.
45909
45910         * lib/obstack.c: Merge from glibc.
45911         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
45912         Add libc_hidden_def (_obstack_newchunk).
45913         (_obstack_free) [! defined _LIBC]: Remove.
45914         [defined _LIBC]: Make a strong alias from obstack_free, rather than
45915         a clone of the function body.
45916         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
45917         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
45918
45919         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
45920         glibc.
45921         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
45922         arg to memcpy.
45923
45924         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
45925         (obstack_ptr_grow_fast, obstack_int_grow_fast):
45926         Don't use lvalue casts, as GCC plans to remove support for them
45927         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
45928         was also present in the non-GCC version, indicating that this
45929         code had always been buggy and had never been widely used.
45930         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
45931         Use the fast variant of each macro, rather than copying the
45932         definiens of the fast variant; that way, we'll be more likely to
45933         catch future bugs in the fast variants.
45934
45935 2003-10-20  Bruno Haible  <bruno@clisp.org>
45936
45937         * modules/wait-process: New file.
45938         * MODULES.html.sh (func_all_modules): Add wait-process.
45939
45940 2003-10-20  Bruno Haible  <bruno@clisp.org>
45941
45942         * m4/wait-process.m4: New file.
45943
45944 2003-10-20  Bruno Haible  <bruno@clisp.org>
45945
45946         * lib/wait-process.h: New file, from GNU gettext.
45947         * lib/wait-process.c: New file, from GNU gettext.
45948
45949 2003-10-19  Jim Meyering  <jim@meyering.net>
45950
45951         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
45952         HPUX 10.20.
45953
45954 2003-10-18  Karl Berry  <karl@gnu.org>
45955
45956         * config/config.guess: update from config.
45957
45958 2003-10-16  Paul Eggert  <eggert@twinsun.com>
45959
45960         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
45961         (getgroups): First arg is int, not size_t.
45962         Don't let 'free' mangle errno.
45963
45964 2003-10-16  Paul Eggert  <eggert@twinsun.com>
45965
45966         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
45967
45968 2003-10-16  Karl Berry  <karl@gnu.org>
45969
45970         * config/config.{guess,sub}: update from config.
45971
45972 2003-10-16  Jim Meyering  <jim@meyering.net>
45973
45974         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
45975         memcpy.
45976
45977 2003-10-15  Paul Eggert  <eggert@twinsun.com>
45978
45979         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
45980         (SIZE_MAX): Remove.
45981         (new_exclude, add_exclude_file): Initial size no longer needs to
45982         be a power of 2.
45983         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
45984         our own address arithmetic overflow checking.
45985
45986         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
45987         (fnmatch): Do not alloca more than 2000 wide characters;
45988         instead, use malloc for large buffers.
45989         Check for address arithmetic overflow, and return -1
45990         with errno set to ENOMEM in that case.
45991         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
45992         (NEW_PATTERN): Do not alloca more than 8000 bytes;
45993         instead, return -1.  Check for address arithmetic overflow.
45994
45995 2003-10-14  Paul Eggert  <eggert@twinsun.com>
45996
45997         Handle invalid suffixes and overflow independently, so that
45998         callers can treat them independently as needed.  Fix some bugs in
45999         suffix handling, e.g., "100k@" was not diagnosed as an invalid
46000         suffix for a human-readable blocksize.  The major caller-visible
46001         change is the addition of a new
46002         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
46003         that both overflow and suffix chars were found.
46004
46005         * lib/human.c (humblock): Don't check separately for invalid suffix
46006         char; that is xstrtoumax's job (now that its bug is fixed).
46007         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
46008         INTMAX_MAX]: New macros.
46009         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
46010         TYPE_MAXIMUM): New macros.
46011         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
46012         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
46013         if overflow occurs, as it's what __strtol does and it's more useful
46014         in practice.
46015         (__xstrtol): If __strtol reports some error other than ERANGE,
46016         reflect it to the caller as LONGINT_INVALID.  If it reports
46017         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
46018         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
46019         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
46020         value.
46021         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
46022         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
46023         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
46024         [defined UINTMAX_MAX]: New macros.
46025
46026 2003-10-14  Bruno Haible  <bruno@clisp.org>
46027
46028         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
46029
46030 2003-10-14  Bruno Haible  <bruno@clisp.org>
46031
46032         * m4/sig_atomic_t: New file, from GNU gettext.
46033         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
46034
46035 2003-10-14  Bruno Haible  <bruno@clisp.org>
46036
46037         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
46038         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
46039         Also use volatile where needed.
46040
46041 2003-10-12  Paul Eggert  <eggert@twinsun.com>
46042
46043         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
46044         Change maintainer from Bruno Haible to 'all'.
46045
46046 2003-10-12  Paul Eggert  <eggert@twinsun.com>
46047
46048         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
46049
46050 2003-10-12  Paul Eggert  <eggert@twinsun.com>
46051
46052         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
46053         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
46054         and define in terms of the other primitives.
46055         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
46056         (SIZE_MAX): Define if not already defined.
46057         (array_size_overflow): New function.
46058         (xalloc_die): Abort instead of exiting if 'error' returns.
46059         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
46060         (xmalloc, xrealloc): Use them.
46061         (xcalloc): Check for address arithmetic overflow.
46062         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
46063         a bit faster than strcpy.
46064
46065 2003-10-10  Simon Josefsson  <jas@extundo.com>
46066
46067         * modules/argp (Depends-on): Add restrict and strcase.
46068
46069 2003-10-10  Simon Josefsson  <jas@extundo.com>
46070
46071         * m4/argp.m4: Add AC_C_INLINE.
46072
46073 2003-10-08  Paul Eggert  <eggert@twinsun.com>
46074
46075         Merge getpass from libc, plus a few fixes.
46076
46077         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
46078         Include <stdbool.h>.
46079         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
46080         __fsetlocking to empty.
46081         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
46082         do include <bits/libc-lock.h>.
46083         Do not include <fcntl.h>; not needed.
46084         [_LIBC]: Include <wchar.h>.
46085         (NOTCANCEL_MODE): New macro.
46086         (flockfile, funlockfile) [_LIBC]: New macros.
46087         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
46088         [!_LIBC]: New macros.
46089         (call_fclose): New function.
46090         (getpass): Use it.  Save tty stream separately; this simplifies the
46091         code and makes it more reliable if stdin happens to equal stdout.
46092         Invoke __fsetlocking on tty.
46093         Handle thread cancellation if needed.
46094         Namespace cleanup (use __tcgetattr, __getline).
46095         Use bool for Booleans.
46096         [USE_IN_LIBIO]: Handle wide streams.
46097         [!_LIBC]: Unconditionally do the fseek, since we don't know what
46098         stream might go where.
46099
46100         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
46101         doesn't have to include <stdio.h> before us.
46102         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
46103         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
46104         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
46105         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
46106         if not declared, so that we can use getpass.c code from libc without
46107         rewriting it.
46108         (flockfile, ftrylockfile, funlockfile): New macros.
46109
46110 2003-10-08  Paul Eggert  <eggert@twinsun.com>
46111
46112         * modules/getpass: Depend on stdbool.
46113
46114 2003-10-08  Paul Eggert  <eggert@twinsun.com>
46115
46116         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
46117
46118 2003-10-07  Karl Berry  <karl@gnu.org>
46119
46120         * config/config.{guess,sub}: update from config.
46121
46122 2003-10-06  Jim Meyering  <jim@meyering.net>
46123             Bruno Haible  <bruno@clisp.org>
46124
46125         This lets translators provide better translations for the
46126         "Written by ..." part of --version output.
46127         * lib/version-etc.h: Include stdarg.h.
46128         (version_etc_copyright): Declare as readonly.
46129         (version_etc): Make this function variadic with a NULL-terminated list
46130         of author name strings.
46131         (version_etc_va): New declaration.
46132         * lib/version-etc.c: Include stdarg.h, stdlib.h.
46133         (version_etc_copyright): Declare as readonly.
46134         (version_etc_va): New function. Provide a different translatable string
46135         for each possible number of authors < 10. Abbreviate when there are 10
46136         authors or more.
46137         (version_etc): Make this function variadic. Call version_etc_va.
46138         Suggestion from Gary V. Vaughan.
46139
46140         * lib/long-options.h (parse_long_options): Change prototype: the
46141         authors string is moved to the end and becomes variadic.
46142         * lib/long-options.c: Include stdarg.h.
46143         (parse_long_options): Make this function variadic, too.
46144         Call version_etc_va, not version_etc.
46145
46146 2003-10-06  Bruno Haible  <bruno@clisp.org>
46147
46148         * modules/version-etc-2: Remove file.
46149         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
46150
46151 2003-10-06  Bruno Haible  <bruno@clisp.org>
46152
46153         * modules/fatal-signal: New file.
46154         * MODULES.html.sh (func_all_modules): Add fatal-signal.
46155
46156 2003-10-06  Bruno Haible  <bruno@clisp.org>
46157
46158         * m4/fatal-signal.m4: New file.
46159         * m4/signalblocking.m4: New file, from GNU gettext.
46160
46161 2003-10-06  Bruno Haible  <bruno@clisp.org>
46162
46163         * lib/version-etc-2.h: Remove file.
46164         * lib/version-etc-2.c: Remove file.
46165
46166 2003-10-06  Bruno Haible  <bruno@clisp.org>
46167
46168         * lib/fatal-signal.h: New file, from GNU gettext.
46169         * lib/fatal-signal.c: New file, from GNU gettext.
46170
46171 2003-10-05  Paul Eggert  <eggert@twinsun.com>
46172
46173         * README: Rework advice for preventing empty .o files.
46174         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
46175         not <sys/types.h>.
46176
46177 2003-10-04  Karl Berry  <karl@gnu.org>
46178
46179         * lib/argp*: update from libc.
46180
46181 2003-10-04  Karl Berry  <karl@gnu.org>
46182
46183         * config/config.{guess,sub}: update from config.
46184
46185 2003-10-02  Bruno Haible  <bruno@clisp.org>
46186
46187         * modules/lchown (Include): Add lchown.h.
46188         * modules/time_r (Include): Use "..." syntax.
46189         * modules/xgetdomainname (Include): Add xgetdomainname.h.
46190
46191 2003-10-01  Simon Josefsson  <jas@extundo.com>
46192
46193         * MODULES.html.sh (func_all_modules): Move gethostname from section
46194         'based on' to section 'lacking' POSIX:2001.
46195
46196 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
46197
46198         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
46199         to output mode on the same stream.
46200
46201 2003-09-29  Paul Eggert  <eggert@twinsun.com>
46202
46203         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
46204         Fix arg typo in previous patch.
46205
46206 2003-09-28  Jim Meyering  <jim@meyering.net>
46207
46208         * lib/error.c: Correct cpp indentation.
46209
46210 2003-09-27  Paul Eggert  <eggert@twinsun.com>
46211
46212         * modules/free: New file.
46213
46214 2003-09-27  Paul Eggert  <eggert@twinsun.com>
46215
46216         * m4/free.m4: New file.
46217
46218 2003-09-27  Paul Eggert  <eggert@twinsun.com>
46219
46220         * lib/minmax.h (MIN, MAX)
46221         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
46222         Omit the special code that used __typeof__, since we worry that
46223         it could be more trouble than it's worth.  See:
46224         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
46225         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
46226
46227         * lib/free.c: New file.
46228
46229 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
46230
46231         Trivial fixes to Makefile.am parts of module listings.
46232         * modules/strstr: Append strstr.h to lib_SOURCES.
46233         * modules/strcase: Likewise, for strcase.h.
46234
46235 2003-09-27  Karl Berry  <karl@gnu.org>
46236
46237         * config/mkinstalldirs: update from automake.
46238
46239 2003-09-26  Paul Eggert  <eggert@twinsun.com>
46240
46241         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
46242         (error_tail): Do not loop, reallocating temporary buffer, since
46243         the output cannot contain more wide characters than the input
46244         contains bytes, the size must be big enough already.  This avoids
46245         one potential size overflow calculation.  Check for size overflow
46246         when calculating temporary buffer size.  Free temporary buffer
46247         when done, if it was allocated with malloc; this plugs a memory
46248         leak.  Remove casts from void * to pointers, that are no longer
46249         needed now that we're assuming C89 or better.
46250
46251         Merge error changes from glibc.
46252
46253         * lib/error.c, error.h: Update copyright notice header to match glibc.
46254         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
46255         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
46256         Disable cancellation while printing error.
46257         * lib/error.h: Prepend __ to parameter names.
46258
46259 2003-09-26  Jim Meyering  <jim@meyering.net>
46260
46261         * lib/error.c (error_tail): Move some declarations
46262         into inner scope where the local variables are used.
46263
46264 2003-09-26  Bruno Haible  <bruno@clisp.org>
46265
46266         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
46267         stpncpy().
46268         Don't define stpncpy through config.h; it's now done through stpncpy.h.
46269
46270 2003-09-26  Bruno Haible  <bruno@clisp.org>
46271
46272         * lib/stpncpy.h (gnu_stpncpy): New declaration.
46273         (stpncpy): Define as alias for gnu_stpncpy.
46274         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
46275
46276 2003-09-25  Simon Josefsson  <jas@extundo.com>
46277
46278         * lib/xgetdomainname.h: New file.
46279         * lib/xgetdomainname.c: New file.
46280
46281 2003-09-25  Simon Josefsson  <jas@extundo.com>
46282             Bruno Haible  <bruno@clisp.org>
46283
46284         * modules/getdomainname: New file.
46285         * modules/xgetdomainname: New file.
46286         * MODULES.html.sh (func_all_modules): Add getdomainname,
46287         xgetdomainname.
46288
46289 2003-09-25  Simon Josefsson  <jas@extundo.com>
46290             Bruno Haible  <bruno@clisp.org>
46291
46292         * m4/getdomainname.m4: New file.
46293
46294 2003-09-25  Simon Josefsson  <jas@extundo.com>
46295             Bruno Haible  <bruno@clisp.org>
46296
46297         * lib/getdomainname.h: New file.
46298         * lib/getdomainname.c: New file.
46299
46300 2003-09-25  Karl Berry  <karl@gnu.org>
46301
46302         * lib/argp-fmtstream.c, argp-help.c: update from libc.
46303
46304 2003-09-25  Karl Berry  <karl@gnu.org>
46305
46306         * config/install-sh: update from automake.
46307
46308 2003-09-25  Bruno Haible  <bruno@clisp.org>
46309
46310         * modules/version-etc-2: New file, from modules/version-etc with
46311         modifications.
46312         * MODULES.html.sh (func_all_modules): Add version-etc-2.
46313
46314 2003-09-25  Bruno Haible  <bruno@clisp.org>
46315
46316         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
46317         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
46318
46319 2003-09-24  Simon Josefsson  <jas@extundo.com>
46320
46321         * modules/xgethostname: Add xgethostname.h.
46322
46323 2003-09-24  Paul Eggert  <eggert@twinsun.com>
46324
46325         * lib/linebuffer.c (freebuffer): Don't free the argument, just
46326         the buffer associated with the argument.  Bug reported by
46327         Simon Josefsson.
46328
46329 2003-09-24  Paul Eggert  <eggert@twinsun.com>
46330
46331         * README: Document assumptions that 'int' is at least 32 bits
46332         wide, that integer arithmetic is 2's complement without overflow,
46333         that there are no holes in integer values, that adding sizes of
46334         two nonoverlapping objects can't overflow, and that all-bits-zero
46335         yields scalar zero.  Fix spelling and capitalization typos.
46336
46337 2003-09-19  Karl Berry  <karl@gnu.org>
46338
46339         * lib/argp.h: update from libc.
46340
46341 2003-09-17  Paul Eggert  <eggert@twinsun.com>
46342
46343         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
46344         to avoid spurious warnings like "AC_RUN_IFELSE was called before
46345         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
46346
46347 2003-09-17  Paul Eggert  <eggert@twinsun.com>
46348
46349         * gnulib-tool: Use "test -h", not "test -L", for portability
46350         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
46351         (tags_regexp): Remove, since \| doesn't conform to POSIX.
46352         (sed_extract_prog): Issue s commands one-by-one, rather than
46353         using \| in one s command.
46354
46355 2003-09-16  Paul Eggert  <eggert@twinsun.com>
46356
46357         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
46358         input error, instead of returning NULL the next time we are called
46359         (and therefore losing track of errno).
46360
46361 2003-09-16  Bruno Haible  <bruno@clisp.org>
46362
46363         * gnulib-tool (func_create_testdir): Warn about duplicated
46364         dependencies.
46365
46366 2003-09-15  Paul Eggert  <eggert@twinsun.com>
46367
46368         * modules/argmatch, modules/fatal, modules/obstack,
46369         modules/xalloc, modules/xgethostname: Sort dependencies by
46370         importance, not alphabetically.
46371
46372 2003-09-15  Paul Eggert  <eggert@twinsun.com>
46373
46374         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
46375         fails, so that the caller gets the proper errno.
46376
46377         * lib/readutmp.c (read_utmp): Likewise.
46378         Check for fstat error.  Close stream and free storage
46379         when failing.
46380
46381 2003-09-14  Karl Berry  <karl@gnu.org>
46382
46383         * config/srclist.txt (strdup.c): disable for c89 changes.
46384
46385 2003-09-14  Jim Meyering  <jim@meyering.net>
46386
46387         * lib/getloadavg.c: Correct cpp indentation.
46388         * lib/strdup.c: Likewise.
46389         * lib/vasnprintf.c: Likewise.
46390
46391 2003-09-14  Bruno Haible  <bruno@clisp.org>
46392
46393         * modules/fwriteerror: New file.
46394         * MODULES.html.sh (func_all_modules): Add fwriteerror.
46395
46396 2003-09-14  Bruno Haible  <bruno@clisp.org>
46397
46398         * lib/fwriteerror.h: New file.
46399         * lib/fwriteerror.c: New file.
46400
46401 2003-09-12  Paul Eggert  <eggert@twinsun.com>
46402
46403         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
46404         modules/xgethostname, modules/xalloc: Depend on exit.
46405
46406 2003-09-12  Paul Eggert  <eggert@twinsun.com>
46407
46408         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
46409
46410         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
46411         and AC_MINIX, too, so that their extensions are available.
46412
46413         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
46414         This macro has been superseded by gl_BACKUPFILE.
46415
46416         More patches to assume C89 or better.
46417
46418         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
46419
46420         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
46421         unconditionally.
46422         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
46423         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
46424         Include <string.h>, <stdlib.h> unconditionally.
46425         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
46426         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
46427         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
46428         headers or for string.h.
46429         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
46430         or strtoul.
46431
46432         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
46433         headers.
46434         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
46435         * m4/userspec.m4 (gl_USERSPEC): Likewise.
46436         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
46437         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
46438         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46439         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
46440         memcpy, memset.
46441         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
46442         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
46443         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
46444         strtol.
46445         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
46446         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
46447         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
46448         strtoul.
46449
46450 2003-09-12  Paul Eggert  <eggert@twinsun.com>
46451
46452         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
46453         * lib/obstack.c [!defined _LIBC]: Likewise.
46454         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
46455         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
46456         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
46457
46458         More changes to assume C89 or better.
46459
46460         * lib/error.c (error_tail): Assume vprintf.
46461
46462         * lib/argmatch.c (getenv): Remove decl.
46463         * lib/progreloc.c (get_full_program_name): Define via prototype.
46464         * lib/setenv.c (clearenv): Likewise.
46465         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
46466         needed.
46467         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
46468         (malloc, memcpy): Remove decls.
46469         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
46470         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
46471         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
46472         (memcpy): Remove macro.
46473         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
46474         (__P): Remove.  All uses removed.
46475         (PTR): Remove.  All uses changed to void *.
46476         (CHAR_BIT, NULL): Remove.
46477         (spaces, zeros, memset_space, memset_zero)
46478         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
46479         Remove.
46480         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
46481         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
46482         Define with prototype.
46483         Remove now-unnecessary prototype decl.
46484         (extra_args_spec): Assume ANSI C.  All uses changed.
46485         (extra_args_spec_iso): Remove.
46486         (my_strftime, emacs_strftimeu): Define via prototype.
46487         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
46488         unconditionally.
46489         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
46490         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
46491         (strtoul, strtol): Remove decls.
46492         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
46493         LONG_MAX): Remove.
46494         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
46495         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
46496         (LOCALE_PARAM_PROTO): New macro.
46497         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
46498         (INTERNAL (strtol), strtol): Define with a prototype.
46499         (PARAMS): Remove.  All uses removed.
46500         * lib/tempname.c: Include <string.h> unconditionally.
46501         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
46502         * lib/xgethostname.c (main): Define with a prototype.
46503         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
46504         Include <stdlib.h> unconditionally.
46505         (calloc, malloc, realloc, free): Remove decls.
46506         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
46507         Include <stdlib.h> unconditionally.  Sort include file names.
46508         (strtod): Remove.
46509         (xstrtod): Define with a prototype.
46510         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
46511         (strtol, strtoul): Remove decls.
46512
46513 2003-09-11  Paul Eggert  <eggert@twinsun.com>
46514
46515         More patches to assume C89 or better.
46516         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
46517         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
46518         string.h, memchr, STDC_HEADERS.
46519
46520 2003-09-11  Paul Eggert  <eggert@twinsun.com>
46521
46522         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
46523         Include <stdlib.h>, <string.h> unconditionally.
46524         Remove now-unnecessary cast to char *.
46525         * lib/strnlen.c: Include <string.h> unconditionally.
46526         * lib/yesno.c (yesno): Define with a prototype.
46527
46528 2003-09-11  Bruno Haible  <bruno@clisp.org>
46529
46530         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
46531
46532 2003-09-10  Jim Meyering  <jim@meyering.net>
46533
46534         * lib/error.c: Correct indentation of cpp directives.
46535
46536 2003-09-10  Bruno Haible  <bruno@clisp.org>
46537
46538         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
46539         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
46540         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
46541         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
46542         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
46543         <stdlib.h> and <string.h> checks.
46544         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
46545         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
46546
46547 2003-09-10  Bruno Haible  <bruno@clisp.org>
46548
46549         * lib/strcspn.c: Include <string.h> unconditionally.
46550         * lib/strpbrk.c: Include <string.h> unconditionally.
46551         * lib/strstr.c: Include <string.h> unconditionally.
46552         * lib/unicodeio.c: Include <string.h> unconditionally.
46553         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
46554         * lib/unsetenv.c: Likewise.
46555         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
46556         * lib/yesno.c: Include <stdlib.h> unconditionally.
46557         (rpmatch): Add prototype.
46558
46559 2003-09-09  Paul Eggert  <eggert@twinsun.com>
46560
46561         More patches to assume C89 or better.
46562         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
46563         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
46564         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
46565         or for string.h.
46566         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
46567         stdlib.h.
46568         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
46569         C headers.
46570         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
46571         string.h.
46572         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
46573         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
46574         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
46575         or for string.h.
46576         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
46577         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
46578         C headers.
46579         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
46580         memcpy.
46581         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
46582         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
46583         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
46584         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
46585         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
46586         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
46587         string.h, free.
46588         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
46589         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
46590         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
46591         C headers, or for string.h.
46592         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
46593         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
46594         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
46595         headers, memory.h, stdlib.h, string.h, strings.h.
46596         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
46597         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
46598         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
46599         strchr.
46600         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
46601         headers, memory.h, string.h.
46602         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
46603         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
46604         free.
46605         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
46606         headers.
46607         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
46608         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
46609         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
46610         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
46611         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
46612
46613 2003-09-09  Paul Eggert  <eggert@twinsun.com>
46614
46615         More K&R removal.
46616
46617         * lib/acosl.c (main): Use a prototype.
46618         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
46619         tanl.c: Likewise.
46620
46621         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
46622
46623         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
46624         (getopt, etopt_long, getopt_long_only, _getopt_internal)
46625         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
46626         with a prototype.
46627         * lib/getopt.c (const): Remove macro.
46628         Include <string.h> unconditionally.
46629         (my_index): Remove; all uses changed to strchr.
46630         (strlen): Remove decl.
46631         (exchange): Remove forward decl; no longer needed.
46632         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
46633         Define with prototype.
46634         * lib/getopt1.c (const): Remove macro.
46635         (getopt_long, getopt_long_only, main): Define with prototype.
46636
46637         * lib/getugroups.c: Include <string.h> unconditionally.
46638
46639         * lib/getusershell.c: Include <stdlib.h> unconditionally.
46640         (getusershell, setusershell, endusershell, readname, main):
46641         Define with prototypes.
46642
46643         * lib/group-member.c: Include group-member.h first.
46644         Include <stdlib.h> unconditionally.
46645
46646         * lib/hard-locale.c: Include hard-locale.h first.
46647         Include <stdlib.h>, <string.h> unconditionally.
46648
46649         * lib/hash.c (free, malloc): Remove decls.
46650         Include <stdlib.h> unconditionally.
46651
46652         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
46653         (getenv): Do not declare.
46654
46655         * lib/idcache.c: Include <string.h> unconditionally.
46656
46657         * lib/long-options.c: Include long-options.h first, to test interface.
46658         Include <stdlib.h> unconditionally.
46659
46660         * lib/makepath.c: Include makepath.h first, to test interface.
46661         Include <stdlib.h> and <string.h> unconditionally.
46662
46663         * lib/linebuffer.c: Include <stdlib.h>.
46664         (free): Remove decl.
46665
46666         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
46667         stddef.h. rpl_malloc returns void *, not char *.
46668         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
46669         prototype.
46670
46671         * lib/md5.h: Include <limits.h> unconditionally.
46672         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
46673         (__P): Remove; all uses removed.
46674         * lib/md5.c: Include "md5.h" first.
46675         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
46676         md5_buffer, md5_process_bytes, md5_process_block):
46677         Define with prototypes.
46678         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
46679         * lib/sha.c: Include "sha.h" first.
46680         Include <stdlib.h>, <string.h> unconditionally.
46681
46682         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
46683         * lib/memcmp.c (__ptr_t): Likewise.
46684         * lib/memrchr.c (__ptr_t): Likewise.
46685         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
46686         Include <string.h> unconditionally.
46687         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
46688         * lib/memchr.c: Include <stdlib.h> unconditionally.
46689         * lib/memchr.c (LONG_MAX): Remove.
46690         * lib/memrchr.c (LONG_MAX): Likewise.
46691         * lib/memchr.c (__memchr): Define via a prototype.
46692         * lib/memrchr.c (__memrchr): Likewise.
46693         * lib/memcmp.c (__P): Remove, and remove all uses.
46694         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
46695         Remove forward decls; no longer needed.
46696         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
46697         Use types required by C89 in prototype.
46698
46699         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
46700         * lib/savedir.c: Likewise.
46701         * lib/mkdir.c (free): Remove decl.
46702         * lib/rmdir.c (rmdir): Define with a prototype.
46703         * lib/savedir.c: Include savedir.h first, to test interface.
46704
46705         * lib/mktime.c (STDC_HEADERS): Remove.
46706         Include <stdlib.h>, <string.h> unconditionally.
46707
46708         * lib/modechange.c: Include <stdlib.h> unconditionally.
46709         (malloc): Remove decl.
46710
46711         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
46712         (free): Remove decl.
46713
46714         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
46715         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
46716         (This type really should be intptr_t, but that's a C99ism.)
46717         (_obstack_memcpy): Remove: all uses changed to memcpy.
46718         Include <string.h> unconditionally.
46719         (struct obstack): Assume __STDC__ for types of members
46720         chunkfun, freefun, extra_arg.
46721         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
46722         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
46723         obstack_begin, obstack_specify_allocation,
46724         obstack_specify_allocation_with_arg, obstack_chunkfun,
46725         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
46726         Remove unprototyped decls and the macros that use them.
46727         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
46728         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
46729         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
46730         (defined __STDC__ && __STDC__)]:
46731         Remove nonprototyped code.
46732         Include <stdlib.h> unconditionally.
46733         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
46734         _obstack_allocated_p, _obstack_free, obstack_free,
46735         _obstack_memory_used, print_and_abort):
46736         Define using prototypes.
46737         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
46738         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
46739         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
46740         obstack_next_free, obstack_object_size, obstack_room) [0]:
46741         Remove unused, unprototyped code.
46742
46743         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
46744
46745         * lib/physmem.c (physmem_total, physmem_available, main): Define
46746         with prototypes.
46747
46748         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
46749         (main): Define with a prototype.
46750
46751         * lib/posixver.c (getenv): Remove decl.
46752
46753         * lib/putenv.c (malloc): Returns void *, not char *.
46754         Include <string.h> unconditionally.
46755         (strchr, memcpy, NULL): Do not define.
46756
46757         * lib/readtokens.c: Include readtokens.h first, to test interface.
46758         Include <stdlib.h>, <string.h> unconditionally.
46759         (init_tokenbuffer): Define with a prototype.
46760
46761         * lib/regex.c (PARAMS): Remove.  All uses removed.
46762         All uses of _RE_ARGS removed, too.
46763         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
46764         unconditionally.
46765         (bzero): Assume memset exists.
46766         (memcmp, memcpy, NULL): Remove.
46767         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
46768         char, or assignments to local vars of type signed char.
46769         (init_syntax_once, PREFIX(extract_number_and_incr),
46770         PREFIX(print_partial_compiled_pattern),
46771         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
46772         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
46773         PREFIX(regex_grow_registers), PREFIX(regex_compile),
46774         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
46775         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
46776         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
46777         wcs_compile_range, byte_compile_range, truncate_wchar,
46778         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
46779         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
46780         count_mbs_length, wcs_re_match_2_internal,
46781         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
46782         PREFIX(alt_match_null_string_p),
46783         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
46784         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
46785         regfree, PREFIX(extract_number)): Define with prototype.  Remove
46786         now-unnecessary declaration, if any.
46787         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
46788         regcomp, regexec):
46789         Remove now-unnecessary casts among pointer types.
46790         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
46791
46792         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
46793         (free): Remove decl.
46794
46795         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
46796
46797         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
46798         (free): Remove decl.
46799
46800         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
46801         * lib/xgetcwd.c: Likewise.
46802
46803         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
46804         (free): Remove decl.
46805
46806         * lib/strchrnul.c (strchrnul): Define with a prototype.
46807         Fix bug: c_in was not converted to char before searching.
46808
46809         The following changes are not K&R related:
46810
46811         * lib/group-member.h: Include <sys/types.h>, so that this file is
46812         self-contained.
46813         * lib/makepath.h: Likewise.
46814
46815         * lib/getusershell.c (readname, default_index, line_size, readname):
46816         Use size_t, not int, for sizes.
46817         (readname): If the size overflows, report an error instead of
46818         looping forever.
46819
46820 2003-09-09  Paul Eggert  <eggert@twinsun.com>
46821
46822         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
46823         libc.
46824
46825 2003-09-09  Paul Eggert  <eggert@twinsun.com>
46826
46827         * README: New section: portability guidelines.
46828
46829 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
46830
46831         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
46832         C89 spec.
46833
46834 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
46835
46836         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
46837
46838 2003-09-08  Paul Eggert  <eggert@twinsun.com>
46839
46840         Assume C89 or better; remove K&R cruft.
46841         A few of these changes were first proposed by Derek Robert Price
46842         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
46843
46844         * lib/addext.c: Include <string.h> unconditionally.
46845         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
46846         Don't declare getenv or malloc.
46847
46848         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
46849         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
46850         (NULL): Remove.
46851         (find_stack_direction, alloca): Use prototypes.
46852
46853         * lib/atexit.c (atexit): Define using a prototype.
46854
46855         * lib/basename.c, dirname.c, stripslash.c:
46856         Include <string.h> unconditionally.
46857
46858         * lib/bcopy.c: Include <stddef.h>.
46859         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
46860
46861         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
46862
46863         * lib/error.h (error, error_at_line, error_print_progname)
46864         [! (defined (__STDC__) && __STDC__)]: Remove decls.
46865         * lib/error.c: Include error.h first, to check interface.
46866         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
46867         (VA_START): Remove; all uses changeed to va_start.
46868         (exit, strerror): Remove decls.
46869         (error_print_progname): Prototype uncondionally.
46870         Don't include <errno.h>; no longer needed.
46871         (private_strerror): Remove.
46872         (error_tail): Always define.
46873         (error, error_at_line): Assume C89 or better; always use prototypes.
46874         * lib/fatal.c: Include "fatal.h" first, to test interface.
46875         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
46876         (VA_START): Remove; all uses changed to va_start.
46877         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
46878         this case.
46879         (exit): Remove decl.
46880         (fatal): Prototype unconditionally.  Assume va_start works.
46881         Abort at end, to pacify gcc.
46882
46883         * lib/euidaccess.c (main): Define with a prototype.
46884
46885         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
46886
46887         * lib/exitfail.c: Include <stdlib.h> unconditionally.
46888
46889         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
46890         prototypes.
46891         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
46892         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
46893         (getenv): Remove decl.
46894         (fnmatch): Define using a prototype.
46895         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
46896         (FCT): Define using a prototype.
46897
46898         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
46899
46900         * lib/gethostname.c: Include <stddef.h>.
46901         (gethostname): Define with prototype.  Length is size_t, not int.
46902
46903 2003-09-08  Paul Eggert  <eggert@twinsun.com>
46904
46905         Assume C89 or better; remove K&R cruft.
46906         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
46907         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
46908         string.h, getenv, malloc.
46909         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
46910         headers.
46911         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
46912         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
46913         do not check for strerror.
46914         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
46915         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
46916         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
46917         do not check for doprnt or vprintf.
46918         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
46919         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
46920
46921 2003-09-08  Paul Eggert  <eggert@twinsun.com>
46922
46923         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
46924         getversion.c should have been removed then, but was accidentally
46925         preserved.
46926
46927         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
46928         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
46929
46930 2003-09-08  Karl Berry  <karl@gnu.org>
46931
46932         * config/config.sub, config.guess, srclistvars.sh: update from savannah
46933                 config, forget about prep.
46934
46935         * config/depcomp, missing: update from automake.
46936
46937 2003-09-07  Paul Eggert  <eggert@twinsun.com>
46938
46939         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
46940         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
46941
46942 2003-09-07  Paul Eggert  <eggert@twinsun.com>
46943
46944         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
46945         copy_tm_result.  Bug reported by Simon Josefsson in
46946         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
46947
46948 2003-09-06  Paul Eggert  <eggert@twinsun.com>
46949
46950         * m4/time_r.m4: New file.
46951         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
46952         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
46953         is. Check for timegm declaration.
46954         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
46955         Do not check for gmtime_r.
46956         Replace mktime if __mktime_internal does not exist and if mktime
46957         hasn't been replaced already.
46958
46959 2003-09-06  Paul Eggert  <eggert@twinsun.com>
46960
46961         * lib/time_r.c, lib/time_r.h: New files.
46962
46963         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
46964         __localtime_r.
46965         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
46966         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
46967
46968         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
46969         __gmtime_r.
46970         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
46971         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
46972         Include <time_r.h>.
46973
46974         * lib/timegm.c: Switch to glibc implementation, with the following
46975         changes:
46976         [defined HAVE_CONFIG_H]: Include <config.h>.
46977         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
46978         (__mktime_internal) [!defined _LIBC]: New decl.
46979         (__gmtime_r) [!defined _LIBC]: New macro and function.
46980         (timegm): Use a prototype, since gnulib assumes C89.
46981         Do not bother declaring tmp to be const, as it's not really usefu.
46982         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
46983         (timegm): Declare only if HAVE_DECL_TIMEGM.
46984
46985 2003-09-06  Paul Eggert  <eggert@twinsun.com>
46986
46987         * MODULES.html.sh (func_all_modules): Add time_r.
46988         * modules/time_r: New file.
46989         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
46990         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
46991
46992 2003-09-03  Paul Eggert  <eggert@twinsun.com>
46993
46994         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
46995         Bug reported by Lute Kamstra in
46996         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
46997
46998         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
46999         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
47000         course with correspondingly smaller numbers for tomorrow and
47001         yesterday.  From Tadayoshi Funaba.  Originally installed into
47002         sh-utils on 1999-08-07, but the patch got lost (I guess during the
47003         coreutils merge?).
47004
47005 2003-08-31  Simon Josefsson  <jas@extundo.com>
47006
47007         * modules/timegm: New file.
47008         * MODULES.html.sh (func_all_modules): Add timegm.
47009
47010 2003-08-31  Simon Josefsson  <jas@extundo.com>
47011
47012         * m4/timegm.m4: New file.
47013
47014 2003-08-31  Simon Josefsson  <jas@extundo.com>
47015
47016         * lib/timegm.h: New file.
47017         * lib/timegm.c: New file.  Based on
47018         wget-1.8.2/src/http.c:mktime_from_utc.
47019
47020 2003-08-31  Karl Berry  <karl@gnu.org>
47021
47022         * lib/argp.h: update from libc.
47023
47024 2003-08-28  Bruno Haible  <bruno@clisp.org>
47025
47026         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
47027         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
47028         followed by '#define fnmatch fnmatch_posix' gives an error.
47029
47030 2003-08-28  Bruno Haible  <bruno@clisp.org>
47031
47032         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
47033         warning on QNX, which defines O_BINARY to 000000.
47034
47035 2003-08-27  Jim Meyering  <jim@meyering.net>
47036
47037         * m4/mkstemp.m4: Require that the system mkstemp be able to create
47038         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
47039         would fail after 32.  Reported by Danny Levinson.  Details here:
47040         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
47041
47042 2003-08-24  Bruno Haible  <bruno@clisp.org>
47043
47044         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
47045         MSVC7 <stdio.h> is included later.
47046
47047 2003-08-22  Simon Josefsson  <jas@extundo.com>
47048
47049         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
47050
47051 2003-08-20  Karl Berry  <karl@gnu.org>
47052
47053         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
47054
47055 2003-08-20  Bruno Haible  <bruno@clisp.org>
47056
47057         * modules/progname: New file.
47058         * MODULES.html.sh (func_all_modules): Add progname.
47059
47060 2003-08-20  Bruno Haible  <bruno@clisp.org>
47061
47062         * lib/progname.h: New file, from GNU gettext.
47063         * lib/progname.c: New file, from GNU gettext.
47064         * lib/progreloc.c: New file, from GNU gettext.
47065
47066 2003-08-19  Jim Meyering  <jim@meyering.net>
47067
47068         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
47069         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
47070
47071 2003-08-19  Bruno Haible  <bruno@clisp.org>
47072
47073         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
47074         more.
47075
47076 2003-08-19  Bruno Haible  <bruno@clisp.org>
47077
47078         * lib/xstrdup.c: Assume <string.h> exists.
47079
47080 2003-08-18  Paul Eggert  <eggert@twinsun.com>
47081
47082         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
47083         in makefile rules.
47084
47085 2003-08-18  Jim Meyering  <jim@meyering.net>
47086
47087         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
47088         * m4/lib-ld.m4: Likewise.
47089
47090 2003-08-18  Jim Meyering  <jim@meyering.net>
47091
47092         * lib/setenv.h: Indent nested cpp directive.
47093         * lib/vasnprintf.c: Remove trailing blanks.
47094
47095 2003-08-17  Simon Josefsson  <jas@extundo.com>
47096
47097         * modules/xstrndup: New file.
47098         * MODULES.html.sh (func_all_modules): Add xstrndup.
47099
47100 2003-08-17  Simon Josefsson  <jas@extundo.com>
47101
47102         * modules/argp: Fix autoconf macro name. Add more dependencies.
47103
47104 2003-08-17  Simon Josefsson  <jas@extundo.com>
47105
47106         * m4/xstrndup.m4: New file.
47107
47108 2003-08-17  Simon Josefsson  <jas@extundo.com>
47109
47110         * m4/argp.m4: New file.
47111
47112 2003-08-17  Simon Josefsson  <jas@extundo.com>
47113             Bruno Haible  <bruno@clisp.org>
47114
47115         * lib/xstrndup.h: New file.
47116         * lib/xstrndup.c: New file.
47117
47118 2003-08-17  Bruno Haible  <bruno@clisp.org>
47119
47120         * modules/strndup (Files, Include): Add lib/strndup.h.
47121
47122 2003-08-17  Bruno Haible  <bruno@clisp.org>
47123
47124         * modules/euidaccess (Files): Add lib/euidaccess.h.
47125
47126 2003-08-17  Bruno Haible  <bruno@clisp.org>
47127
47128         * lib/strndup.h: New file.
47129
47130 2003-08-17  Bruno Haible  <bruno@clisp.org>
47131
47132         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
47133         like AC_GNU_SOURCE.
47134         * modules/extensions (configure.ac): Comment out the invocation of
47135         gl_USE_SYSTEM_EXTENSIONS.
47136
47137 2003-08-16  Paul Eggert  <eggert@twinsun.com>
47138
47139         Merges from coreutils, etc.
47140         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
47141         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
47142         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
47143         fixing a typo.
47144         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
47145         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
47146
47147 2003-08-16  Paul Eggert  <eggert@twinsun.com>
47148
47149         Document merge from coreutils.
47150         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
47151         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
47152         * modules/utime: Add m4/utimes-null.m4.
47153
47154 2003-08-16  Paul Eggert  <eggert@twinsun.com>
47155
47156         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
47157         space, undoing this 2003-08-12 change:
47158         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
47159
47160 2003-08-16  Paul Eggert  <eggert@twinsun.com>
47161
47162         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
47163         strtoul.c from libc, undoing this 2003-08-12 change:
47164         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
47165
47166 2003-08-16  Jim Meyering  <jim@meyering.net>
47167
47168         Merges from coreutils.
47169         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
47170         prefix.  Adjust cache variables similarly.  Create 500 rather than
47171         just 300 files, to exercise bug on Darwin6.5, too.
47172         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
47173         $missing_dir.
47174         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
47175         AM_SYS_POSIX_TERMIOS.
47176         Reported by mkc@mathdogs.com.
47177         Also change use of $am_cv_sys_posix_termios
47178         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
47179         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
47180         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
47181         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
47182         in /proc/mounts until it finds one with matching device number.  This
47183         is unnecessary when the FILE argument *is* a mount point.  No stat call
47184         is necessary in that case.  So, disable the statvfs-testing code on
47185         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
47186         as RedHat bug# 84846.
47187         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
47188         to 1MB, so as not to render systems with no stack size limit (e.g.,
47189         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
47190         Include <unistd.h>.  On some systems,
47191         it is required for the definition of _SC_PAGESIZE.
47192
47193 2003-08-16  Jim Meyering  <jim@meyering.net>
47194
47195         Merge from coreutils.
47196         * lib/xstrtoimax.c: #else #if -> #elif.
47197         * lib/xstrtoumax.c: Likewise.
47198
47199 2003-08-16  Jim Meyering  <jim@meyering.net>
47200
47201         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
47202         * m4/utimes.m4: Removed.
47203         * m4/utimes-null.m4: Renamed from utimes.m4.
47204
47205         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
47206         to 1MB, so as not to render systems with no stack size limit (e.g.,
47207         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
47208         Include <unistd.h>.  On some systems,
47209         it is required for the definition of _SC_PAGESIZE.
47210
47211 2003-08-16  Jim Meyering  <jim@meyering.net>
47212         and Paul Eggert  <eggert@cs.ucla.edu>
47213
47214         Merges from coreutils, etc.
47215
47216         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
47217         using the latest version from cvs.  This avoids problems with #line
47218         directives using a vendor (Sun) compiler.
47219         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
47220         Don't set GETGROUPS_LIB here; now it's
47221         done via getgroups.m4's wrapper function.
47222         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
47223         rather than just in sh-util/configure.in, so that the
47224         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
47225         same.
47226         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
47227         AC_FUNC_GETLOADAVG where to find getloadavg.c.
47228         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
47229         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
47230         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
47231         Remove code that is now done by the newly-required macros.
47232         Append $(EXEEXT) to DF_PROG.
47233         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
47234         Do not invoke or require the following here,
47235         since prereq.m4 or some gnulib .m4 now does this for us:
47236         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
47237         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
47238         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
47239         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
47240         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
47241         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
47242         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
47243         AC_FUNC_OBSTACK.
47244         Do not replace the following functions, as this is now the job
47245         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
47246         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
47247         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
47248         atexit getpass, strdup, getpagesize.
47249         Replace 'raise'.
47250         Do not check for the following functions, as this is now the job
47251         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
47252         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
47253         setregid.
47254         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
47255         Check for sys/sysctl.h.
47256         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
47257         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
47258         of checking for ssize_t ourselves.
47259
47260         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
47261         Require every macro that gnulib/modules/* suggests for us.
47262         (jm_PREREQ_ADDEXT): New macro.
47263         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
47264         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
47265
47266         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
47267         (gl_PHYSMEM): Use it.
47268         Also check for `table' function.
47269         Check for new headers and functions.
47270         Add check for sys/sysmp.h.
47271         With suggestions from Kaveh Ghazi.
47272         Ignore headers that are present but cannot be compiled.  This
47273         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
47274         C 5.4.
47275
47276 2003-08-15  Paul Eggert  <eggert@twinsun.com>
47277
47278         Document merge from coreutils.
47279         * modules/userspec: Depend on posixver.
47280         * modules/strftime: Depend on tzset.
47281
47282 2003-08-15  Paul Eggert  <eggert@twinsun.com>
47283
47284         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
47285         rather than tab, after '#' in shell-script copyright notices.
47286         Suggested by Bruno Haible.
47287
47288 2003-08-15  Paul Eggert  <eggert@twinsun.com>
47289
47290         * config/srclist-update: Use three spaces, rather than tab, after '#'
47291         in shell-script copyright notices.  Suggested by Bruno Haible.
47292         Remove unnecessary parenthesization in regular expression.
47293
47294 2003-08-15  Jim Meyering  <jim@meyering.net>
47295
47296         Merge from coreutils.
47297         * lib/xgethostname.c: Include <stdlib.h>.
47298         (xghostname): Don't exit for anything other than memory-related
47299         failure; just return NULL.
47300         * lib/userspec.c: Include "posixver.h".
47301         (parse_user_spec): Accept `.' as a separator only
47302         in pre-POSIX-200112 mode.
47303         * lib/strtoimax.c: Use #elif rather than #else #if.
47304         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
47305         Remove function, now that we can rely on a working tzset function.
47306         [!_LIBC]: Ensure that the required autoconf test has been run.
47307         [!defined _NL_CURRENT && HAVE_STRFTIME]:
47308         Use underlying_strftime for %r.
47309         * lib/sha.c: Merge in some clean-up and optimization changes from
47310         glibc.
47311         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
47312         Ensure that it is a multiple of 64.
47313         Rearrange loop exit tests so as to avoid performing an
47314         additional fread after encountering an error or EOF.
47315         * lib/realloc.c: Update copyright date.
47316
47317 2003-08-15  Jim Meyering  <jim@meyering.net>
47318         and Paul Eggert  <eggert@twinsun.com>
47319
47320         Merge from coreutils.
47321         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
47322         member but strut utmpx does not.  Needed for AIX 4.3.3.
47323         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
47324
47325 2003-08-15  Jim Meyering  <jim@meyering.net>
47326         and Paul Eggert  <eggert@cs.ucla.edu>
47327
47328         Merges from coreutils, etc.
47329         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
47330         Require gl_FUNC_TZSET_CLOBBER.
47331         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
47332         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
47333         members.
47334
47335 2003-08-14  Paul Eggert  <eggert@twinsun.com>
47336
47337         Help the merge from coreutils.
47338         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
47339         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
47340         * m4/tzset.m4: Use it too.
47341
47342 2003-08-14  Paul Eggert  <eggert@twinsun.com>
47343
47344         * modules/tzset: New file.
47345
47346 2003-08-14  Jim Meyering  <jim@meyering.net>
47347
47348         Merges from coreutils.
47349         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
47350         variable names, rather than @FNMATCH_H@.
47351         * modules/alloca: Likewise for $(ALLOCA_H).
47352
47353         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
47354         the three copies of the literal target, `fnmatch.h'.
47355         * modules/alloca (alloca.h): Likewise.
47356
47357 2003-08-14  Jim Meyering  <jim@meyering.net>
47358
47359         Merge from coreutils.
47360         * m4/tzset.m4: New file.
47361         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
47362         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
47363         otherwise, AIX 5.1 systems would end up using the latter.
47364         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
47365         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
47366         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
47367         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
47368
47369 2003-08-14  Jim Meyering  <jim@meyering.net>
47370
47371         Merge from coreutils.
47372         * lib/obstack.h: Whitespace changes.
47373         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
47374         and xcalloc return values.
47375         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
47376         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
47377         hang on OSF/1 5.1 for DIR on both local and remote file systems.
47378         Reported by (and fix confirmed by) Nelson H. F. Beebe.
47379         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
47380         error from mntctl.
47381         Use mntctl's return value to drive the entry-processing loop, since
47382         we can't rely on the value of the vmt_length member in the last
47383         entry.  On some systems doing so could result in exhausting
47384         virtual memory.  Based in part on a patch from Mike Jetzer.
47385
47386 2003-08-14  Jim Meyering  <jim@meyering.net>
47387         and Paul Eggert  <eggert@twinsun.com>
47388
47389         Merges from coreutils, plus other fixes.
47390         * lib/physmem.c: Merge in portability changes from gcc/libiberty
47391         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
47392         for credits and details.  Thanks to Kaveh Ghazi for helping
47393         to keep these files in sync.
47394         (ARRAY_SIZE): Define it.
47395         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
47396         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
47397         (memcasecmp): Don't assume size_t fits in unsigned int.
47398         Remove casts and duplicate code.
47399         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
47400         (memcpy): Remove definition.
47401         Merge in some clean-up and optimization changes from glibc.
47402         [BLOCKSIZE]: Move definition to top of file.
47403         Ensure that it is a multiple of 64.
47404         Rearrange loop exit tests so as to avoid performing an
47405         additional fread after encountering an error or EOF.
47406         * lib/md5.h (md5_uintptr): Define.
47407         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
47408         return to the initial working directory.  Preserve errno
47409         for caller.
47410         * lib/idcache.c: Include "xalloc.h".
47411         (xmalloc, xrealloc): Remove decls.
47412         (getuser): Remove casts no longer required in C89.
47413         * lib/human.c: Include stdio.h, for sprintf.
47414         * lib/group-member.c: Include "xalloc.h".
47415         (xmalloc, xrealloc): Remove decls.
47416         (get_group_info): Remove casts no longer required in C89.
47417         * lib/getusershell.c (readname): Remove casts no longer required in
47418         C89.
47419         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
47420         * lib/getline.c: Whitespace fix, from coreutils.
47421
47422 2003-08-13  Paul Eggert  <eggert@twinsun.com>
47423
47424         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
47425         Check for isascii.
47426
47427         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
47428         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
47429         Undo previous (whitespace-only) change.
47430
47431 2003-08-13  Paul Eggert  <eggert@twinsun.com>
47432
47433         * lib/exclude.c: Include <ctype.h>
47434         (IN_CTYPE_DOMAIN): New macro.
47435         (is_space): New fn.
47436         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
47437         and empty lines.
47438
47439         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
47440         Undo previous (whitespace-only) change.
47441
47442 2003-08-13  Paul Eggert  <eggert@twinsun.com>
47443
47444         * config/srclist-update: Change update back to the old behavior,
47445         leaving whitespace alone.  Use one 'sed' command rather than a
47446         pipeline.
47447         (fixlicense): Now a variable, not a function.
47448         (remove_trailing_blanks): Remove.
47449         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
47450         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
47451         Undo previous (whitespace-only) change.
47452
47453 2003-08-12  Paul Eggert  <eggert@twinsun.com>
47454
47455         Merge from coreutils.
47456         * modules/euidaccess: Add lib_SOURCES, include for new
47457         file euidaccess.h
47458
47459 2003-08-12  Paul Eggert  <eggert@twinsun.com>
47460
47461         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
47462         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
47463         Normalize leading white space and remove trailing white space.
47464
47465         Merge from coreutils
47466         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
47467
47468         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
47469         0.12.1.  These files are now being upgraded automatically by
47470         ../config/srclist-update.
47471
47472 2003-08-12  Paul Eggert  <eggert@twinsun.com>
47473
47474         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
47475         Normalize leading white space and remove trailing white space.
47476         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
47477         notice, as per ../config/srclist-update.
47478
47479         Merge from coreutils.
47480         * lib/euidaccess.h: New file.
47481         * lib/euidaccess.c: Include it.
47482         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
47483         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
47484         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
47485
47486 2003-08-12  Paul Eggert  <eggert@twinsun.com>
47487
47488         * config/srclist-update: Add copyright notice.
47489         (remove_id_lines, remove_trailing_blanks): New constants.
47490         (fixfile): Use them to normalize spacing a bit in copied files.
47491         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
47492         Normalize leading white space and remove trailing white space.
47493
47494         * config/texinfo.tex: Sync with texinfo.
47495
47496         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
47497         strtoul.c from libc, to merge coreutils whitespace changes.
47498
47499         * config/srclist.txt: Get the following m4 files from gettext:
47500         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
47501         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
47502         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
47503         wint_t.m4.
47504
47505 2003-08-12  Karl Berry  <karl@gnu.org>
47506
47507         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
47508         been made.
47509
47510 2003-08-11  Paul Eggert  <eggert@twinsun.com>
47511
47512         * modules/gnu-source, m4/gnu-source.m4:
47513         Remove; we're assuming Autoconf 2.54 or later now.
47514         Suggested by Bruno Haible.
47515         * MODULES.html.sh (func_all_modules): Remove gnu-source.
47516
47517 2003-08-11  Bruno Haible  <bruno@clisp.org>
47518
47519         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
47520
47521 2003-08-11  Bruno Haible  <bruno@clisp.org>
47522
47523         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
47524         (vasnprintf): Use it instead of wcslen.
47525
47526 2003-08-11  Bruno Haible  <bruno@clisp.org>
47527
47528         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
47529         value to ensure that _Bool promotes to int. Use #define for _Bool when
47530         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
47531
47532 2003-08-10  Karl Berry  <karl@gnu.org>
47533
47534         * lib/regex.h: update from libc (whitespace fix).
47535
47536 2003-08-09  Paul Eggert  <eggert@twinsun.com>
47537
47538         Merge some files from coreutils.  These changes were
47539         originally made by Jim Meyering.
47540         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
47541         many older Unixes require this.
47542         * lib/alloca.c (alloca): Remove cast to argument of free;
47543         no longer needed in C89.
47544         * lib/alloca_.h, regex.h: Fix white space to match
47545         what GNU indent does.
47546
47547 2003-08-09  Paul Eggert  <eggert@twinsun.com>
47548
47549         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
47550         apparently Emacs's Unicode mode got confused before my 2003-08-05
47551         checkin.
47552
47553 2003-08-08  Paul Eggert  <eggert@twinsun.com>
47554
47555         * m4/extensions.m4: New file.
47556         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
47557         Require gl_USE_SYSTEM_EXTENSIONS.
47558         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
47559         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
47560
47561 2003-08-08  Paul Eggert  <eggert@twinsun.com>
47562
47563         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
47564         * modules/extensions, modules/gnu-source: New files.
47565         * modules/timespec, modules/unlocked-io: Depend on extensions.
47566
47567 2003-08-07  Paul Eggert  <eggert@twinsun.com>
47568
47569         * modules/restrict: New file.
47570         * MODULES.html.sh (func_all_modules): Add restrict.
47571         * modules/regex: Depend on restrict.
47572
47573 2003-08-07  Paul Eggert  <eggert@twinsun.com>
47574
47575         * m4/restrict.m4: New file.
47576         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
47577
47578 2003-08-07  Bruno Haible  <bruno@clisp.org>
47579
47580         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
47581         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
47582
47583 2003-08-07  Bruno Haible  <bruno@clisp.org>
47584
47585         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
47586         makes the module 'getndelim2' compatible with the module 'getline'.
47587
47588 2003-08-05  Paul Eggert  <eggert@twinsun.com>
47589
47590         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
47591         byte with "\201" to avoid glitches when editing that source file
47592         with multi-gnome-terminal.
47593
47594 2003-08-05  Paul Eggert  <eggert@twinsun.com>
47595
47596         * lib/bumpalloc.h: Remove.
47597
47598 2003-08-05  Paul Eggert  <eggert@twinsun.com>
47599
47600         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
47601         * modules/bumpalloc: Remove.
47602
47603 2003-08-04  Paul Eggert  <eggert@twinsun.com>
47604
47605         * lib/getloadavg.c: Change copyright notice and spacing to conform to
47606         GNU coding style.
47607
47608         Merge from coreutils.
47609         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
47610         1. From glibc.
47611         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
47612         from Karl Berry, implemented by Jim Meyering.
47613         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
47614         from Dmitry V. Levin.
47615         Remove anachronistic cast of xrealloc.
47616         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
47617         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
47618         type. Otherwise, it wouldn't compile with at least /bin/cc on
47619         ymp-cray-unicos9.0.2.X.
47620         Combine two mostly-identical uses of alloca into one.
47621         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
47622
47623 2003-08-04  Dave Love  <d.love@dl.ac.uk>
47624
47625         [From Emacs.]
47626
47627         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
47628         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
47629         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
47630         obsolete NLIST_NAME_UNION.
47631         [__GNU__]: Undef BSD and FSCALE.
47632         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
47633
47634 2003-08-03  Paul Eggert  <eggert@twinsun.com>
47635
47636         * lib/stdbool_.h (_Bool): Make it signed char, instead of
47637         an enum type, so that it's guaranteed to promote to int.  See:
47638         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
47639
47640 2003-08-03  Karl Berry  <karl@gnu.org>
47641
47642         * config/depcomp: update from automake.
47643
47644 2003-07-31  Paul Eggert  <eggert@twinsun.com>
47645
47646         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
47647         (strerror): Don't assume that a printable int fits in 14 bytes.
47648
47649 2003-07-31  Bruno Haible  <bruno@clisp.org>
47650
47651         * modules/getpass-gnu: New file.
47652         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
47653
47654 2003-07-31  Bruno Haible  <bruno@clisp.org>
47655
47656         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
47657
47658 2003-07-24  Karl Berry  <karl@gnu.org>
47659
47660         * config/missing: update from automake.
47661
47662 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
47663             Bruno Haible  <bruno@clisp.org>
47664
47665         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
47666         * lib/getline.c (getline, getdelim): Likewise.
47667         Remove _GNU_SOURCE define; now it's defined in config.h through
47668         m4/getline.m4.
47669
47670 2003-07-23  Karl Berry  <karl@gnu.org>
47671
47672         * config/config.sub: update from prep.
47673
47674 2003-07-22  Paul Eggert  <eggert@twinsun.com>
47675
47676         * modules/xalloc (Depends-on): Add exitfail.
47677         * modules/xmemcoll: Likewise.
47678
47679 2003-07-22  Paul Eggert  <eggert@twinsun.com>
47680
47681         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
47682         over-parenthesization in macros.
47683
47684         Sync with coreutils.
47685
47686         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
47687         required by C99.
47688
47689         Use `exit_failure' for xalloc and xmemcoll instead of their own
47690         private exit-failure variables.
47691         * lib/xalloc.h (xalloc_exit_failure): Remove.
47692         * lib/xmalloc.c: Likewise.  Include exitfail.h.
47693         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
47694         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
47695         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
47696         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
47697
47698 2003-07-20  Jim Meyering  <jim@meyering.net>
47699
47700         * modules/closeout (Depends-on): Add exitfail.
47701         Suggestion from Bruno Haible.
47702
47703 2003-07-19  Karl Berry  <karl@gnu.org>
47704
47705         * config/config.sub: update from prep.
47706
47707 2003-07-18  Paul Eggert  <eggert@twinsun.com>
47708
47709         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
47710         Remove.
47711         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
47712         to test that it can stand by itself.  Include "exitfail.h".
47713         Clients should set exit_failure instead.
47714         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
47715
47716 2003-07-18  Bruno Haible  <bruno@clisp.org>
47717
47718         * modules/getndelim2: New file.
47719         * modules/getline: Share files with module getndelim2.
47720         * modules/getnline: Depend on getndelim2 instead of sharing files with
47721         it. Add getnline.c to lib_SOURCES.
47722         * MODULES.html.sh (func_all_modules): Add getndelim2.
47723
47724 2003-07-18  Bruno Haible  <bruno@clisp.org>
47725
47726         * m4/getndelim2.m4: New file.
47727         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
47728         invoke gl_PREREQ_GETNDELIM2.
47729         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
47730         gl_PREREQ_GETNDELIM2.
47731         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
47732         gl_GETNDELIM2.
47733
47734 2003-07-18  Bruno Haible  <bruno@clisp.org>
47735
47736         * lib/getndelim2.h: New file.
47737         * lib/getndelim2.c: Make into a module of its own. Include config.h,
47738         getndelim2.h.
47739         (getndelim2): Make non-static. Change return type to ssize_t.
47740         * lib/getline.h: Change argument names.
47741         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
47742         * lib/getnline.c: Include getndelim2.h.
47743
47744 2003-07-18  Andreas Schwab  <schwab@suse.de>
47745
47746         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
47747
47748 2003-07-17  Karl Berry  <karl@gnu.org>
47749
47750         * config/config.sub: update from prep.
47751
47752 2003-07-17  Bruno Haible  <bruno@clisp.org>
47753
47754         * modules/getnline: New file.
47755         * modules/getline: Add lib/getndelim2.c to source file list.
47756         * MODULES.html.sh (func_all_modules): Add getnline.
47757
47758 2003-07-17  Bruno Haible  <bruno@clisp.org>
47759
47760         * m4/getnline.m4: New file.
47761
47762 2003-07-17  Bruno Haible  <bruno@clisp.org>
47763
47764         * m4/Makefile.am.in: Remove file.
47765         * m4/Makefile.am: Remove file.
47766         * m4/Makefile.in: Remove file.
47767
47768 2003-07-17  Bruno Haible  <bruno@clisp.org>
47769
47770         * lib/getnline.h: New file.
47771         * lib/getnline.c: New file.
47772         * lib/getndelim2.c: New file, extracted from getline.c.
47773         (getndelim2): Renamed from getdelim2, with added nmax argument.
47774         * lib/getline.c: Include getndelim2.c.
47775         (getdelim2): Moved out to getndelim2.c.
47776         (getline, getdelim): Update.
47777
47778 2003-07-17  Bruno Haible  <bruno@clisp.org>
47779
47780         * lib/Makefile.am: Remove file.
47781         * lib/Makefile.in: Remove file.
47782
47783 2003-07-17  Bruno Haible  <bruno@clisp.org>
47784
47785         * configure.in: Remove file.
47786         * Makefile.in: Remove file.
47787
47788 2003-07-17  Bruno Haible  <bruno@clisp.org>
47789
47790         * MODULES.html.sh: Put the </BODY> right before </HTML>.
47791
47792 2003-07-16  Karl Berry  <karl@gnu.org>
47793
47794         * config/srclist-update: was running fixlicense twice, which caused
47795                 texinfo.tex to be nullified for some reason.  Simplify,
47796                 $gplsrc is no longer needed as far as I can see?
47797
47798 2003-07-16  Jim Meyering  <jim@meyering.net>
47799
47800         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
47801
47802 2003-07-15  Paul Eggert  <eggert@twinsun.com>
47803
47804         * config/srclist.txt: Get the following files from gettext-runtime/intl
47805         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
47806         ref-del.sin.  From Bruno Haible.
47807         * config/srclist-update (fixfile): Change grep pattern again, since the
47808         previous fix didn't work (there was another trailing $).  Use
47809         '[$]' to escape the $s.
47810
47811 2003-07-15  Karl Berry  <karl@gnu.org>
47812
47813         * lib/vasnprintf.c: update from gettext.
47814
47815 2003-07-15  Karl Berry  <karl@gnu.org>
47816
47817         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
47818         gets expanded when surrounded by '$'.
47819
47820 2003-07-15  Jim Meyering  <jim@meyering.net>
47821
47822         * modules/save-cwd: Don't depend on error.  From Derek Price.
47823
47824 2003-07-15  Jim Meyering  <jim@meyering.net>
47825
47826         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
47827
47828 2003-07-14  Simon Josefsson  <jas@extundo.com>
47829
47830         * modules/mempcpy: New file.
47831         * MODULES.html.sh (func_all_modules): Add mempcpy.
47832
47833 2003-07-14  Simon Josefsson  <jas@extundo.com>
47834
47835         * m4/mempcpy.m4: New file.
47836
47837 2003-07-14  Simon Josefsson  <jas@extundo.com>
47838
47839         * lib/mempcpy.h: New file.
47840         * lib/mempcpy.c: New file.
47841
47842 2003-07-14  Paul Eggert  <eggert@twinsun.com>
47843
47844         * modules/getdate, modules/posixtm: Depend on mktime.
47845
47846 2003-07-14  Paul Eggert  <eggert@twinsun.com>
47847
47848         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
47849         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
47850         unicodeio.c, unicodeio.h, unlocked-io.h:
47851         Switch from LGPL to GPL.
47852
47853 2003-07-14  Paul Eggert  <eggert@twinsun.com>
47854
47855         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
47856         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
47857         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
47858         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
47859         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
47860         updated automatically by ../config/srclist-update.  This changes
47861         their license from LPGL to GPL.
47862
47863 2003-07-14  Paul Eggert  <eggert@twinsun.com>
47864
47865         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
47866         assumed to refer to the root of the most recent stable gettext version.
47867         * config/srclistvars.sh: Add defaults for eggert.
47868         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
47869         Match "This program" as well as "The program".  This is needed
47870         for gettext.
47871
47872 2003-07-14  Jim Meyering  <jim@meyering.net>
47873
47874         Don't emit diagnostics.  Let callers do that.
47875         * lib/save-cwd.c: Don't include "error.h".
47876         (save_cwd): Don't call error.  Ensure that errno is valid
47877         when returning nonzero.
47878
47879         * lib/save-cwd.h (restore_cwd): Update prototype.
47880         * lib/save-cwd.c (restore_cwd): Remove two parameters.
47881         Simplify.  Don't call error upon failure.  Let callers do that.
47882         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
47883         when auditing is enabled.  But don't bother updating the #if.
47884
47885 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
47886
47887         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
47888         it breaks C++ compilation.
47889         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
47890
47891 2003-07-10  Simon Josefsson  <jas@extundo.com>
47892
47893         * modules/strchrnul (Makefile.am): Add strchrnul.h.
47894
47895 2003-07-10  Jim Meyering  <jim@meyering.net>
47896
47897         * m4/clock_time.m4: Remove trailing blank.
47898         * m4/intmax_t.m4: Likewise.
47899
47900 2003-07-10  Jim Meyering  <jim@meyering.net>
47901
47902         * lib/vasnprintf.c: Remove trailing blanks.
47903         Make cpp indentation consistent.
47904
47905 2003-07-09  Paul Eggert  <eggert@twinsun.com>
47906
47907         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
47908         posixver.c, strftime.c, strnlen.c, strverscmp.c:
47909         Switch from LGPL to GPL.
47910
47911 2003-07-09  Paul Eggert  <eggert@twinsun.com>
47912
47913         * config/srclist.txt: Sort sublists.  Add
47914         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
47915         that differ from gnulib for one reason or another; we'd like this list
47916         to be smaller but for now let's document what we have.
47917
47918 2003-07-08  Paul Eggert  <eggert@twinsun.com>
47919
47920         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
47921         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
47922         and sweeter "eval x=$x".
47923         * config/srclist.txt: Get lib/argp* from glibc.
47924
47925 2003-07-07  Paul Eggert  <eggert@twinsun.com>
47926
47927         * lib/mktime.c: Fix some boundary cases and remove need for floating
47928         point.
47929
47930         Issue a compile-time diagnostic if time_t is floating point, or if
47931         two's complement arithmetic is not in effect, or if arithmetic
47932         right shift does not propagate the sign.  These assumptions were
47933         all in the original code but they weren't checked.
47934
47935         (TIME_T_MIDPOINT, verify): New macros.
47936         (__isleap): Remove; it has integer overflow problems.
47937         (leapyear): New function, without those problems.
47938         (ydhms_tm_diff): Remove; splitting into two parts.
47939         (ydhms_diff): New function, containing the arithmetic part of
47940         the old ydhms_tm_diff function.  Issue a compile-time
47941         diagnostic if we are not using C99 integer division.
47942         Avoid casts when possible.
47943         (guess_time_tm): New function, containing the checking part of
47944         the old ydhms_tm_diff function.  Return the new value, rather than
47945         the difference between it and the old.  Accept a new argument T
47946         so that *T specifies the old value.  Check for overflow in the result.
47947
47948         (__mktime_internal): Use a time_t offset, not a long int offset.
47949         This undoes the 2003-06-04 change, which is no longer needed now
47950         that we have better overflow checking.
47951         (localtime_offset): Likewise.
47952
47953         (__mktime_internal): Avoid harmful overflow on hosts where time_t
47954         and long are 64-bit but int is only 32-bit.
47955         (ydhms_diff): Use long int to store year1 and yday1.
47956         Issue a compile-time diagnostic if long int is not wide enough.
47957
47958         (__mktime_internal): Use long int to store adjusted year and yday.
47959         Use plain C rather than preprocessor commands, if that doesn't
47960         affect efficiency.
47961         Check for overflow (and try to repair) after each probe
47962         rather than checking only at the very end.  This avoids some bugs
47963         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
47964         does not equal GMT offset at maximum time).
47965         Use integer to check for overflow rather than floating point; this
47966         is more portable to non-IEEE hosts, and is a tad faster.
47967         When we detect that we are oscillating between two values,
47968         don't check whether tm_isdst has the requested value, since
47969         we already know the answer.  When tm_isdst has the wrong value,
47970         use a different heuristic to find the right one, based on the
47971         extreme values actually observed in practice in tz2003a,
47972         rather than the (overly optimistic) "previous 3 calendar quarters".
47973
47974         (not_equal_tm, print_tm, check_result): Use "const T" rather than
47975         "T const" to accommodate glibc style.
47976         (check_result): Use less-confusing report format.  "long" -> "long int.
47977         (main): Likewise.
47978         Don't loop if the iteration overflows time_t.
47979         Allow a negative step in the iteration.
47980
47981 2003-07-06  Karl Berry  <karl@gnu.org>
47982
47983         * config/depcomp: update from automake.
47984         * config/config.sub: update from prep.
47985
47986 2003-07-03  Karl Berry  <karl@gnu.org>
47987
47988         * config/config.guess: update from prep.
47989
47990 2003-07-01  Paul Eggert  <eggert@twinsun.com>
47991
47992         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
47993         xreadlink.c now includes it unconditionally.
47994
47995 2003-07-01  Paul Eggert  <eggert@twinsun.com>
47996
47997         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
47998         having it depend on HAVE_SYS_TYPES_H.
47999
48000 2003-07-01  Bruno Haible  <bruno@clisp.org>
48001
48002         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
48003         <sys/types.h> should be sufficient.
48004         Reported by Paul Eggert.
48005
48006 2003-06-26  Karl Berry  <karl@gnu.org>
48007
48008         * config/depcomp: update from automake.
48009
48010 2003-06-26  Bruno Haible  <bruno@clisp.org>
48011
48012         * modules/human: Depend on module stdbool.
48013
48014 2003-06-25  Bruno Haible  <bruno@clisp.org>
48015
48016         * modules/readlink: New file.
48017         * modules/xreadlink: Depend on it.
48018         * MODULES.html.sh (func_all_modules): Add readlink.
48019
48020 2003-06-25  Bruno Haible  <bruno@clisp.org>
48021
48022         * m4/readlink.m4: New file.
48023
48024 2003-06-25  Bruno Haible  <bruno@clisp.org>
48025
48026         * lib/readlink.c: New file.
48027
48028 2003-06-22  Karl Berry  <karl@gnu.org>
48029
48030         * config/srclist.txt: update mkinstalldirs from automake.
48031         * config/mkinstalldirs: update.
48032
48033 2003-06-22  Bruno Haible  <bruno@clisp.org>
48034
48035         Portability to mingw32.
48036         * m4/ssize_t.m4: New file, from GNU gettext.
48037         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
48038         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
48039
48040 2003-06-22  Bruno Haible  <bruno@clisp.org>
48041
48042         * modules/safe-read: Add m4/ssize_t.m4.
48043         * modules/xreadlink: Add m4/ssize_t.m4.
48044
48045 2003-06-20  Bruno Haible  <bruno@clisp.org>
48046
48047         Assume C89, so PARAMS isn't needed.
48048         * lib/unicodeio.h (PARAMS): Remove.
48049         * lib/unicodeio.c: Don't use PARAMS.
48050
48051 2003-06-18  Karl Berry  <karl@gnu.org>
48052
48053         * config/config.{guess,sub}: update from prep.
48054
48055 2003-06-18  Jim Meyering  <jim@meyering.net>
48056
48057         Merge changes from coreutils.
48058         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
48059         Remove explicit declarations of xmalloc and realloc.
48060         Include xalloc.h.
48061         (read_utmp): Remove anachronistic cast of xmalloc.
48062
48063 2003-06-17  Paul Eggert  <eggert@twinsun.com>
48064
48065         Assume C89, so PARAMS isn't needed.
48066         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
48067         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
48068         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
48069         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
48070         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
48071         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
48072         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
48073         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
48074         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
48075         lib/xstrtod.h, lib/xstrtol.h: Likewise.
48076         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
48077         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
48078         no longer needed. Anyway, config.h should always be included before any
48079         other file.
48080
48081 2003-06-11  Simon Josefsson  <jas@extundo.com>
48082
48083         * modules/sysexits: New file.
48084         * MODULES.html.sh (func_all_modules): Add sysexits.
48085
48086 2003-06-11  Simon Josefsson  <jas@extundo.com>
48087
48088         * lib/sysexit_.h: New file.
48089
48090 2003-06-11  Derek Price  <derek@ximbiot.com>
48091
48092         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
48093         necessary.
48094
48095 2003-06-11  Bruno Haible  <bruno@clisp.org>
48096
48097         * m4/sysexits.m4: New file.
48098
48099 2003-06-10  Simon Josefsson  <jas@extundo.com>
48100
48101         * lib/argp.h: New file, from glibc.
48102         * lib/argp-ba.c: New file, from glibc.
48103         * lib/argp-eexst.c: New file, from glibc.
48104         * lib/argp-fmtstream.c: New file, from glibc.
48105         * lib/argp-fmtstream.h: New file, from glibc.
48106         * lib/argp-fs-xinl.c: New file, from glibc.
48107         * lib/argp-help.c: New file, from glibc.
48108         * lib/argp-namefrob.h: New file, from glibc.
48109         * lib/argp-parse.c: New file, from glibc.
48110         * lib/argp-pv.c: New file, from glibc.
48111         * lib/argp-pvh.c: New file, from glibc.
48112         * lib/argp-xinl.c: New file, from glibc.
48113
48114 2003-06-10  Simon Josefsson  <jas@extundo.com>
48115
48116         * modules/strchrnul: New file.
48117
48118 2003-06-10  Simon Josefsson  <jas@extundo.com>
48119
48120         * modules/argp: New file.
48121
48122 2003-06-10  Simon Josefsson  <jas@extundo.com>
48123
48124         * m4/strchrnul.m4: New file.
48125
48126 2003-06-10  Simon Josefsson  <jas@extundo.com>
48127
48128         * lib/strchrnul.h: New file.
48129         * lib/strchrnul.c: New file.
48130
48131 2003-06-10  Bruno Haible  <bruno@clisp.org>
48132
48133         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
48134
48135 2003-06-07  Karl Berry  <karl@gnu.org>
48136
48137         * config/config.{guess,sub}: update from prep.
48138
48139 2003-06-07  Jim Meyering  <jim@meyering.net>
48140
48141         * modules/strtod: Use $(...) notation, not @...@ for
48142         AC_REPLACE'd variables.
48143         * modules/localcharset: Likewise.
48144
48145 2003-06-07  Jim Meyering  <jim@meyering.net>
48146
48147         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
48148         in place of my name in the copyright comment.
48149         Remove definition and uses of __P.
48150
48151         From coreutils.
48152         * lib/stat.c: Don't declare xmalloc explicitly.
48153         Instead, include "xalloc.h".
48154         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
48155         xrealloc, and xcalloc return values.
48156         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
48157         Improve comment.
48158         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
48159
48160 2003-06-07  Bruno Haible  <bruno@clisp.org>
48161
48162         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
48163         avoid AC_CONFIG_LINKS.
48164         * modules/fnmatch (Makefile.am): Use explicit creation rule for
48165         fnmatch.h, to avoid AC_CONFIG_LINKS.
48166         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
48167
48168 2003-06-07  Bruno Haible  <bruno@clisp.org>
48169
48170         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
48171         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
48172         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
48173         directory.
48174         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
48175         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
48176         directory.
48177
48178 2003-06-06  Jim Meyering  <jim@meyering.net>
48179
48180         Merge from coreutils.
48181         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
48182         Consolidate declarations and initializations of *_base* locals.
48183
48184         Merge from coreutils.
48185         This avoids a core dump on systems without GNU putenv,
48186         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
48187         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
48188         (unsetenv): New static function, from GNU libc.
48189         (rpl_putenv): Use it.
48190
48191         * lib/modechange.c: Remove trailing blanks.
48192
48193         Merge from coreutils.
48194         * lib/fsusage.c: Remove declaration of statfs.
48195         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
48196
48197         * lib/posixtm.c: Include <stdbool.h> unconditionally.
48198
48199 2003-06-06  Jim Meyering  <jim@meyering.net>
48200
48201         * lib/stdbool_.h: Renamed from stdbool.h.in.
48202
48203 2003-06-06  Jim Meyering  <jim@meyering.net>
48204             Bruno Haible  <bruno@clisp.org>
48205
48206         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
48207         Adjust Makefile.am snippet not to redirect directly to target.
48208         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
48209
48210 2003-06-05  Paul Eggert  <eggert@twinsun.com>
48211
48212         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
48213         mismatch, look in future quarters as well as past.  This fixes a
48214         bug when processing fall-backwards gaps immediately after a long
48215         period of daylight-saving time.
48216
48217         * lib/mktime.c: Assume freestanding C89 or better.
48218         (HAVE_LIMITS_H): Remove.  Assume it's 1.
48219         (__P): Remove; not used.
48220         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
48221         (mktime, not_equal_tm, print_tm, check_result,
48222         main): Use prototypes.  Use const * where appropriate.
48223         (main): Fix typo in testing code that uncovered by above changes.
48224         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
48225
48226 2003-06-04  Paul Eggert  <eggert@twinsun.com>
48227
48228         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
48229         locale.h, localeconv.  This merges changes from coreutils.
48230
48231         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
48232         It can be removed after the next Autoconf is released.
48233         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
48234         needed.
48235
48236 2003-06-04  Paul Eggert  <eggert@twinsun.com>
48237
48238         * lib/mktime.c: Fix Debian bug 177940
48239         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
48240         (localtime_offset): Now long int, not time_t, because we want it
48241         to be guaranteed to be signed.  All uses changed.
48242         (__mktime_internal): If overflow would occur when adding offset,
48243         don't add it.
48244
48245         Merge 'human' changes from coreutils.  Rewrite to support
48246         locale-specific notations like thousands separators.
48247         * lib/human.c: Simplify authorship notice.
48248         Include human.h immediately after config.h.
48249         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
48250         <limits.h>: Do not include, since human.h does.
48251         (SIZE_MAX, UINTMAX_MAX): New macros.
48252         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
48253         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
48254         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
48255         (power_letter): Renamed from suffixes.
48256         (generate_suffix_backwards): Remove.
48257         (adjust_value): Now takes int style (because of human.h changes)
48258         and long double value (for greater precision on some platforms).
48259         (group_number): New function.
48260         (human_readable): Use it.  Use integer options, not enum.
48261         Put the options before the sizes in the arg list.
48262         Support all the new options.
48263         The old human_readable function has been removed;
48264         use inttostr.h instead.
48265         (human_readable, default_block_size, humblock):
48266         Use uintmax_t, not int, for block sizes.
48267         (human_readable_inexact, block_size_types): Remove.
48268         (block_size_opts): New constant.
48269         (human_options): Renamed from human_block_size, with new signature
48270         that allows block sizes up to UINTMAX_MAX.  All callers changed.
48271         * lib/human.h: Add copyright and authorship notice.
48272         Include <limits.h> and <stdbool.h> unconditionally.
48273         (PARAMS): Remove.  All uses removed.
48274         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
48275         (enum human_inexact_style): Remove tag; now a nameless enum.
48276         (human_floor, human_ceiling, human_round_to_even): Now have
48277         values 2, 0, 1 rather than -1, 1, 0.
48278         (human_group_digits, human_suppress_point_zero, human_autoscale,
48279         human_base_1024, human_SI, human_B): New constants.
48280         (human_readable_inexact, human_block_size): Remove.
48281         (human_readable): Size args are now uintmax_t, not int.
48282         (human_options): New decl.
48283
48284         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
48285         unnecessary now that we assume C89 or better.  This change
48286         imported from coreutils.
48287
48288         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
48289         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
48290         in the 2003-05-30 sync from glibc.
48291
48292         .h files should stand alone, but we shouldn't include <sys/types.h>
48293         if we can get away with just <stddef.h>.
48294
48295         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
48296         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
48297         rather than <sys/types.h>, as we merely need size_t.
48298         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
48299         to get size_t.
48300         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
48301         Include <stdio.h>, to get FILE.
48302         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
48303         memcasecmp.h has included <stddef.h> and all we need is size_t.
48304         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
48305         our interface, instead of including <sys/types.h>
48306
48307 2003-06-04  Paul Eggert  <eggert@twinsun.com>
48308
48309         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
48310         now, as glibc mktime is buggy on non-glibc systems.
48311
48312 2003-06-03  Karl Berry  <karl@gnu.org>
48313
48314         * config/config.sub: update from prep.
48315
48316 2003-06-02  Paul Eggert  <eggert@twinsun.com>
48317
48318         [from coreutils]
48319         Fix some minor time-related bugs with POSIX time arguments.
48320         Some valid time stamps were being rejected (notably -1, and
48321         time stamps before 1900 on 64-bit hosts).  And some invalid
48322         time stamps were being accepted, e.g. September 31.
48323
48324         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
48325         that we can return (time_t) -1 successfully.
48326         * lib/posixtm.c: Likewise.
48327         [HAVE_STDBOOL_H]: Include <stdbool.h>.
48328         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
48329         (t): Remove static var.
48330         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
48331         of static var.  All uses changed.
48332         (year): Do not reject years before 1900; they can occur with
48333         64-bit time_t.
48334         (posix_time_parse): Do not check for out-of-range components;
48335         that is now the caller's responsibility, since our checks were
48336         only approximations.
48337         (posixtime): Use mktime to check for out-of-range components,
48338         since it knows them exactly.
48339         If mktime returns (time_t) -1, check whether an error actually occurred
48340         by invoking localtime on -1.
48341         (main) [TEST_POSIXTIME]: Check for input data errors, and report
48342         posixtime failures better.
48343         Improve the test data (in comments only).
48344
48345 2003-06-02  Karl Berry  <karl@gnu.org>
48346
48347         * config/mkinstalldirs (version): new variable.
48348         (--version): new option.
48349         (usage): improve message.
48350
48351 2003-05-30  Karl Berry  <karl@gnu.org>
48352
48353         * lib/mktime.c: update from libc.
48354
48355 2003-05-30  Bruno Haible  <bruno@clisp.org>
48356
48357         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
48358         * config/config.rpath: Upgrade to gettext-0.12.1.
48359
48360 2003-05-30  Bruno Haible  <bruno@clisp.org>
48361
48362         * m4/gettext.m4: Upgrade to gettext-0.12.1.
48363         * m4/nls.m4: New file, from gettext-0.12.1.
48364         * m4/po.m4: New file, from gettext-0.12.1.
48365         * m4/progtest.m4: Upgrade to gettext-0.12.1.
48366
48367 2003-05-30  Bruno Haible  <bruno@clisp.org>
48368
48369         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
48370         * lib/localcharset.h: Likewise.
48371         * lib/localcharset.c: Likewise.
48372
48373 2003-05-29  Karl Berry  <karl@gnu.org>
48374
48375         * config/config.rpath: update from gettext.
48376
48377 2003-05-28  Paul Eggert  <eggert@twinsun.com>
48378
48379         Assume the headers required for C89 freestanding compilers.
48380         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
48381         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
48382         * m4/human.m4 (gl_HUMAN): Likewise.
48383         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
48384         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
48385         * m4/userspec.m4 (gl_USERSPEC): Likewise.
48386         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
48387         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
48388         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
48389
48390 2003-05-28  Paul Eggert  <eggert@twinsun.com>
48391
48392         Assume the headers required for C89 freestanding compilers.
48393         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
48394         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
48395         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
48396         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
48397         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
48398         define, since <limits.h> is guaranteed to do that.
48399         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
48400         * lib/exclude.c: Include <stdbool.h> unconditionally.
48401         * lib/tempname.c: Include <stddef.h> unconditionally.
48402         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
48403         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
48404         <stddef.h> does that.
48405         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
48406         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
48407         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
48408         needed.
48409         * lib/xstrtol.c: Likewise.
48410         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
48411         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
48412
48413         * lib/addext.c (addext): Use assignment rather than cast, to avoid
48414         warnings on some platforms.
48415
48416         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
48417         arbitrarily.
48418
48419 2003-05-26  Jim Meyering  <jim@meyering.net>
48420
48421         Merge in a change from coreutils:
48422         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
48423         that is guaranteed to be `no'.  Use `no_such_member' to indicate
48424         that condition, rather than `-1' which is slightly misleading.
48425         Change the name of the cache variable to have the gl_ prefix.
48426         Prompted by a patch from Richard Dawe for DJGPP.
48427
48428 2003-05-24  Karl Berry  <karl@gnu.org>
48429
48430         * config/config.guess: update from prep.
48431
48432 2003-05-22  Karl Berry  <karl@gnu.org>
48433
48434         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
48435
48436 2003-05-20  Karl Berry  <karl@gnu.org>
48437
48438         * config/config.guess: update from prep.
48439
48440 2003-05-18  Karl Berry  <karl@gnu.org>
48441
48442         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
48443         might actually be set by the user.
48444
48445         * config/depcomp, install-sh, mdate-sh: update from automake.
48446
48447 2003-05-17  Bruno Haible  <bruno@clisp.org>
48448
48449         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
48450         invalid expansion for AC_EGREP_CPP.
48451         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
48452         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
48453         Suggested by Akim Demaille <akim@epita.fr> in
48454         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
48455
48456 2003-05-12  Jim Meyering  <jim@meyering.net>
48457
48458         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
48459         the space-padded-by-default conversion specifiers, %e, %k, %l.
48460
48461 2003-05-12  Bruno Haible  <bruno@clisp.org>
48462
48463         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
48464         the string is longer than 4 KB.
48465
48466 2003-05-11  Karl Berry  <karl@gnu.org>
48467
48468         * config/config.{guess,sub}: update from prep.
48469
48470 2003-05-09  Bruno Haible  <bruno@clisp.org>
48471
48472         * modules/error: Add m4/strerror_r.m4 to file list.
48473
48474 2003-05-03  Bruno Haible  <bruno@clisp.org>
48475
48476         Upgrade to Unicode-4.0.
48477         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
48478         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
48479         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
48480         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
48481         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
48482         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
48483         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
48484         Change width of U+E0100..U+E01EF from 1 to 0.
48485
48486 2003-04-25  Jim Meyering  <jim@meyering.net>
48487
48488         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
48489         of type size_t, not int.
48490
48491 2003-04-25  Bruno Haible  <bruno@clisp.org>
48492
48493         * lib/copy-file.c: Include <stddef.h>, for size_t.
48494
48495 2003-04-21  Paul Eggert  <eggert@twinsun.com>
48496
48497         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
48498         code which expansion is under static control.  Patch imported from
48499         Akim Demaille's patch to Bison; see
48500         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
48501
48502 2003-04-14  Bruno Haible  <bruno@clisp.org>
48503
48504         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
48505
48506 2003-04-11  Jim Meyering  <jim@meyering.net>
48507
48508         Merge changes from Coreutils.
48509
48510         2003-03-22  Jim Meyering  <jim@meyering.net>
48511
48512         * lib/strftime.c (widen): Cast alloca return value to proper type.
48513
48514         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
48515
48516         From GNU libc.
48517         * lib/strftime.c (my_strftime): Handle very large width
48518         specifications for numeric values correctly.  Improve checks for
48519         overflow.
48520
48521         2003-01-19  Jim Meyering  <jim@meyering.net>
48522
48523         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
48524         definitions.
48525         (nl_get_alt_digit) [! defined my_strftime]: Define.
48526         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
48527         _nl_get_alt_digit and _nl_get_walt_digit.
48528
48529         * lib/strftime.c (my_strftime): Merge in locale-related changes from
48530         libc. These changes have no effect outside of _LIBC.
48531
48532 2003-04-10  Bruno Haible  <bruno@clisp.org>
48533
48534         * modules/findprog: New file.
48535         * MODULES.html.sh (func_all_modules): Add it.
48536
48537 2003-04-10  Bruno Haible  <bruno@clisp.org>
48538
48539         * m4/findprog.m4: New file.
48540         * m4/eaccess.m4: New file.
48541
48542 2003-04-10  Bruno Haible  <bruno@clisp.org>
48543
48544         * lib/findprog.h: New file, from GNU gettext.
48545         * lib/findprog.c: New file, from GNU gettext.
48546
48547 2003-04-05  Jim Meyering  <jim@meyering.net>
48548
48549         Merge changes from Coreutils.
48550
48551         * lib/exclude.h (PARAMS): Remove definition and uses.
48552         * lib/exclude.c: Remove uses of `PARAMS'.
48553
48554         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
48555         Add test-cases for DOS filenames. Declare program_name.
48556         (main): Set up program_name.  Patch by Rich Dawe.
48557
48558         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
48559         error from mntctl.
48560         Use mntctl's return value to drive the entry-processing loop, since
48561         we can't rely on the value of the vmt_length member in the last
48562         entry.  On some systems doing so could result in exhausting
48563         virtual memory.  Based in part on a patch from Mike Jetzer.
48564
48565 2003-04-04  Bruno Haible  <bruno@clisp.org>
48566
48567         * modules/linebreak: New file.
48568         * MODULES.html.sh (func_all_modules): Add it.
48569
48570 2003-04-04  Bruno Haible  <bruno@clisp.org>
48571
48572         * m4/linebreak.m4: New file.
48573
48574 2003-04-04  Bruno Haible  <bruno@clisp.org>
48575
48576         * lib/linebreak.h: New file, from GNU gettext.
48577         * lib/linebreak.c: New file, from GNU gettext with slight
48578         modifications.
48579         * lib/lbrkprop.h: New file, from GNU gettext.
48580
48581 2003-04-03  Bruno Haible  <bruno@clisp.org>
48582
48583         * modules/utf8-ucs4: New file.
48584         * modules/utf16-ucs4: New file.
48585         * modules/ucs4-utf8: New file.
48586         * modules/ucs4-utf16: New file.
48587         * MODULES.html.sh (func_all_modules): Add them.
48588
48589 2003-04-03  Bruno Haible  <bruno@clisp.org>
48590
48591         * m4/utf-ucs4.m4: New file.
48592         * m4/ucs4-utf.m4: New file.
48593
48594 2003-04-03  Bruno Haible  <bruno@clisp.org>
48595
48596         * lib/utf8-ucs4.h: New file, from GNU gettext.
48597         * lib/utf16-ucs4.h: New file, from GNU gettext.
48598         * lib/ucs4-utf8.h: New file, from GNU gettext.
48599         * lib/ucs4-utf16.h: New file, from GNU gettext.
48600
48601 2003-04-02  Bruno Haible  <bruno@clisp.org>
48602
48603         * modules/binary-io: New file.
48604         * MODULES.html.sh (func_all_modules): Add it.
48605
48606 2003-04-02  Bruno Haible  <bruno@clisp.org>
48607
48608         * lib/binary-io.h: New file, from GNU gettext.
48609
48610 2003-04-01  Bruno Haible  <bruno@clisp.org>
48611
48612         * modules/pathname: New file.
48613         * MODULES.html.sh (func_all_modules): Add it.
48614
48615 2003-04-01  Bruno Haible  <bruno@clisp.org>
48616
48617         * lib/pathname.h: New file, from GNU gettext.
48618         * lib/concatpath.c: New file, from GNU gettext.
48619
48620 2003-03-30  Bruno Haible  <bruno@clisp.org>
48621
48622         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
48623
48624 2003-03-30  Bruno Haible  <bruno@clisp.org>
48625
48626         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
48627         function chown() doesn't exist.
48628
48629 2003-03-28  Bruno Haible  <bruno@clisp.org>
48630
48631         * modules/copy-file: New file.
48632         * MODULES.html.sh (func_all_modules): Add it.
48633
48634 2003-03-28  Bruno Haible  <bruno@clisp.org>
48635
48636         * m4/copy-file.m4: New file.
48637
48638 2003-03-28  Bruno Haible  <bruno@clisp.org>
48639
48640         * lib/copy-file.h: New file, from GNU gettext.
48641         * lib/copy-file.c: New file, from GNU gettext.
48642
48643 2003-03-18  Jim Meyering  <jim@meyering.net>
48644
48645         * lib/quote.c (quote_n): Fix typo in comment.
48646
48647 2003-03-18  Bruno Haible  <bruno@clisp.org>
48648
48649         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
48650         checking.
48651         * m4/onceonly_2_57.m4: Likewise.
48652
48653 2003-03-17  Bruno Haible  <bruno@clisp.org>
48654
48655         * m4/onceonly.m4: Require autoconf 2.54 or newer.
48656         (m4_quote): Remove macro.
48657         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
48658
48659 2003-03-14  Jim Meyering  <jim@meyering.net>
48660
48661         Merge changes from Coreutils.
48662         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
48663         to be const, in order to avoid warnings.
48664         (obstack_room): Likewise.
48665         (obstack_empty_p): Likewise.
48666
48667 2003-03-14  Bruno Haible  <bruno@clisp.org>
48668
48669         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
48670         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
48671
48672 2003-03-13  Paul Eggert  <eggert@twinsun.com>
48673
48674         Merge changes from Bison.
48675         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
48676         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
48677         when compiling Bison 1.875's `bitset bset = obstack_alloc
48678         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
48679         * lib/hash.c: Include <stdbool.h> unconditionally.
48680
48681 2003-03-13  Paul Eggert  <eggert@twinsun.com>
48682
48683         * m4/onceonly.m4 (m4_quote): New macro.
48684         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
48685         Quote AC_FOREACH variable-expansions properly.
48686
48687 2003-03-13  Paul Eggert  <eggert@twinsun.com>
48688
48689         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
48690
48691 2003-03-09  Paul Eggert  <eggert@twinsun.com>
48692
48693         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
48694         Reported by Bruce Becker; see:
48695         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
48696
48697 2003-03-03  Paul Eggert  <eggert@twinsun.com>
48698             Bruno Haible  <bruno@clisp.org>
48699
48700         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
48701         Reported by John Hughes, see
48702         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
48703
48704 2003-02-20  Bruno Haible  <bruno@clisp.org>
48705
48706         * MODULES.html.sh (func_all_modules): Add poll.
48707
48708 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
48709
48710         * modules/poll: New file.
48711
48712 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
48713
48714         * lib/poll_.h: New file.
48715         * lib/poll.c: New file.
48716
48717 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
48718
48719         * m4/poll.m4: New file.
48720
48721 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
48722
48723         * modules/mathl: New file.
48724
48725 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
48726
48727         * lib/mathl.h: New file.
48728         * lib/acosl.c: New file.
48729         * lib/asinl.c: New file.
48730         * lib/atanl.c: New file.
48731         * lib/ceill.c: New file.
48732         * lib/cosl.c: New file.
48733         * lib/expl.c: New file.
48734         * lib/floorl.c: New file.
48735         * lib/frexpl.c: New file.
48736         * lib/ldexpl.c: New file.
48737         * lib/logl.c: New file.
48738         * lib/sincosl.c: New file.
48739         * lib/sinl.c: New file.
48740         * lib/sqrtl.c: New file.
48741         * lib/tanl.c: New file.
48742         * lib/trigl.c: New file.
48743         * lib/trigl.h: New file.
48744
48745 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
48746
48747         * m4/mathl.m4: New file.
48748
48749 2003-02-18  Bruno Haible  <bruno@clisp.org>
48750
48751         * MODULES.html.sh (func_all_modules): Add mathl.
48752
48753 2003-02-17  Bruno Haible  <bruno@clisp.org>
48754
48755         * modules/mkdtemp: New module.
48756         * MODULES.html.sh (func_all_modules): Add it.
48757
48758 2003-02-17  Bruno Haible  <bruno@clisp.org>
48759
48760         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
48761
48762 2003-02-17  Bruno Haible  <bruno@clisp.org>
48763
48764         * lib/mkdtemp.h: New file, from GNU gettext.
48765         * lib/mkdtemp.c: New file, from GNU gettext.
48766
48767 2003-02-02  Jim Meyering  <jim@meyering.net>
48768
48769         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
48770         e.g. glibc-2.2.93.
48771
48772 2003-01-31  Bruno Haible  <bruno@clisp.org>
48773
48774         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
48775         'rpl_rename'.
48776         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
48777         'rpl_strnlen'.
48778         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
48779         'rpl_strtod'.
48780         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
48781         'rpl_utime'.
48782
48783 2003-01-31  Bruno Haible  <bruno@clisp.org>
48784
48785         * lib/rename.c: #undef rename before defining rpl_rename.
48786         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
48787
48788 2003-01-30  Bruno Haible  <bruno@clisp.org>
48789
48790         * modules/vasnprintf, modules/vasprintf: New modules.
48791         * MODULES.html.sh (func_all_modules): Add them.
48792
48793 2003-01-30  Bruno Haible  <bruno@clisp.org>
48794
48795         * m4/signed.m4: New file, from GNU gettext.
48796         * m4/longdouble.m4: New file, from GNU gettext.
48797         * m4/wchar_t.m4: New file, from GNU gettext.
48798         * m4/wint_t.m4: New file, from GNU gettext.
48799         * m4/vasnprintf.m4: New file.
48800         * m4/vasprintf.m4: New file.
48801
48802 2003-01-30  Bruno Haible  <bruno@clisp.org>
48803
48804         * lib/printf-args.h: New file, from GNU gettext.
48805         * lib/printf-args.c: New file, from GNU gettext.
48806         * lib/printf-parse.h: New file, from GNU gettext.
48807         * lib/printf-parse.c: New file, from GNU gettext.
48808         * lib/vasnprintf.h: New file, from GNU gettext.
48809         * lib/vasnprintf.c: New file, from GNU gettext.
48810         * lib/asnprintf.c: New file, from GNU gettext.
48811         * lib/vasprintf.h: New file, from GNU gettext with modifications.
48812         * lib/vasprintf.c: New file, from GNU gettext.
48813         * lib/asprintf.c: New file, from GNU gettext.
48814
48815 2003-01-29  Bruno Haible  <bruno@clisp.org>
48816
48817         * modules/stpncpy: New module.
48818         * MODULES.html.sh (func_all_modules): Add it.
48819
48820 2003-01-29  Bruno Haible  <bruno@clisp.org>
48821
48822         * m4/stpncpy.m4: New file.
48823
48824 2003-01-29  Bruno Haible  <bruno@clisp.org>
48825
48826         * lib/stpncpy.h: New file, from GNU gettext with modifications.
48827         * lib/stpncpy.c: New file, from GNU gettext with modifications.
48828
48829 2003-01-28  Bruno Haible  <bruno@clisp.org>
48830
48831         * modules/c-ctype: New module.
48832         * MODULES.html.sh (func_all_modules): Add it.
48833
48834 2003-01-28  Bruno Haible  <bruno@clisp.org>
48835
48836         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
48837         Paul Eggert.
48838         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
48839         Paul Eggert.
48840
48841 2003-01-27  Bruno Haible  <bruno@clisp.org>
48842
48843         * modules/xsetenv: New module.
48844         * MODULES.html.sh (func_all_modules): Add it.
48845
48846 2003-01-27  Bruno Haible  <bruno@clisp.org>
48847
48848         * lib/xsetenv.h: New file, from GNU gettext.
48849         * lib/xsetenv.c: New file, from GNU gettext.
48850
48851 2003-01-23  Jim Meyering  <jim@meyering.net>
48852
48853         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
48854         from working on systems without dirfd (at least Irix and OSF1/Tru64).
48855
48856 2003-01-23  Bruno Haible  <bruno@clisp.org>
48857
48858         * modules/minmax: New module.
48859         * MODULES.html.sh (func_all_modules): Add it.
48860
48861 2003-01-23  Bruno Haible  <bruno@clisp.org>
48862
48863         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
48864         Eggert.
48865
48866 2003-01-22  Bruno Haible  <bruno@clisp.org>
48867
48868         * modules/exit: New module.
48869         * MODULES.html.sh (func_all_modules): Add it.
48870
48871 2003-01-22  Bruno Haible  <bruno@clisp.org>
48872
48873         * lib/exit.h: New file, from GNU gettext.
48874
48875 2003-01-19  Bruno Haible  <bruno@clisp.org>
48876
48877         * gnulib-tool: Recognize option --extract-maintainer.
48878         (func_get_maintainer): New function.
48879         * modules/*: Add Maintainer entry.
48880
48881 2003-01-16  Jim Meyering  <jim@meyering.net>
48882
48883         * m4/regex.m4: The `regex' struct is both input and output.
48884         Initialize it before each use.  Patch by Tim Waugh.
48885
48886 2003-01-16  Bruno Haible  <bruno@clisp.org>
48887
48888         * MODULES.html.sh: Add a table of contents. Add the module name as
48889         leftmost column. Add hyperlinks.
48890
48891 2003-01-15  Bruno Haible  <bruno@clisp.org>
48892
48893         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
48894
48895 2003-01-15  Bruno Haible  <bruno@clisp.org>
48896
48897         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
48898         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
48899         suffix.
48900
48901 2003-01-15  Bruno Haible  <bruno@clisp.org>
48902
48903         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
48904
48905 2003-01-15  Bruno Haible  <bruno@clisp.org>
48906
48907         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
48908         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
48909
48910 2003-01-14  Jim Meyering  <jim@meyering.net>
48911
48912         * lib/same.c (same_name): Tweak a comment.
48913
48914 2003-01-14  Bruno Haible  <bruno@clisp.org>
48915
48916         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
48917         when a string comparison is sufficient.
48918
48919 2003-01-14  Bruno Haible  <bruno@clisp.org>
48920
48921         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
48922         'unsigned int'.
48923
48924 2003-01-14  Bruno Haible  <bruno@clisp.org>
48925
48926         * lib/hash-pjw.c: Add comment about low quality of this function.
48927
48928 2003-01-13  Bruno Haible  <bruno@clisp.org>
48929
48930         * modules/stpcpy: Distribute lib/stpcpy.h.
48931         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
48932
48933 2003-01-13  Bruno Haible  <bruno@clisp.org>
48934
48935         * modules/*: Add a description.
48936         * modules/strpbrk: Fix Makefile.am snippet.
48937         * modules/strtoimax: Fix dependencies.
48938         * modules/strtoumax: Likewise.
48939
48940 2003-01-13  Bruno Haible  <bruno@clisp.org>
48941
48942         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
48943         * modules/alloca (Makefile.am): All object files depend on alloca.h.
48944         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
48945
48946 2003-01-13  Bruno Haible  <bruno@clisp.org>
48947
48948         * gnulib-tool (func_create_testdir): Store config/* files in the main
48949         directory.
48950         * config.rpath: Move to ...
48951         * config/config.rpath: ... here.
48952         * modules/gettext: Contains config/config.rpath, not config.rpath.
48953         * modules/iconv: Likewise.
48954
48955 2003-01-12  Paul Eggert  <eggert@twinsun.com>
48956
48957         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
48958         to avoid collisions with libcurses and libreadline.
48959
48960         * m4/getstr.m4: Remove.
48961         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
48962
48963 2003-01-12  Paul Eggert  <eggert@twinsun.com>
48964
48965         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
48966         to avoid collisions with libcurses and libreadline.
48967
48968         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
48969         * lib/getstr.h, getstr.c: Remove.
48970         * lib/getline.c: Include "getline.h", to check interface.
48971         Move body of old getstr.c here: this defines MIN_CHUNK and
48972         declares getdelim2, which is renamed from getstr.
48973         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
48974
48975         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
48976         All uses changed.
48977         * lib/linebuffer.h: Likewise.
48978         (readline): Remove backward-compatibility macro.
48979
48980 2003-01-12  Paul Eggert  <eggert@twinsun.com>
48981
48982         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
48983         to avoid collisions with libcurses and libreadline.
48984         * getstr: Remove.
48985         * MODULES.html.sh: Remove getstr.
48986         * modules/getline: Depend on unlocked-io, not getstr.
48987
48988 2003-01-12  Jim Meyering  <jim@meyering.net>
48989
48990         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
48991
48992 2003-01-10  Bruno Haible  <bruno@clisp.org>
48993
48994         * modules/alloca: Change Makefile.am requirements. Simplify Include
48995         requirements. Add lib/alloca_.h to file list.
48996
48997 2003-01-10  Bruno Haible  <bruno@clisp.org>
48998
48999         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
49000
49001 2003-01-10  Bruno Haible  <bruno@clisp.org>
49002
49003         * lib/alloca_.h: New file.
49004         * lib/getdate.y: Unconditionally include alloca.h.
49005         * lib/makepath.c: Likewise.
49006         * lib/setenv.c: Likewise.
49007         * lib/userspec.c: Likewise.
49008
49009 2003-01-09  Karl Berry  <karl@gnu.org>
49010
49011         * MODULES.html.sh: include `dirname $0` in PATH, to find
49012         gnulib-tool.
49013
49014 2003-01-09  Bruno Haible  <bruno@clisp.org>
49015
49016         * modules/stdbool: Change configure.ac, Makefile.am requirements.
49017         Simplify Include requirements. Add lib/stdbool.h.in to file list.
49018
49019 2003-01-09  Bruno Haible  <bruno@clisp.org>
49020
49021         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
49022
49023 2003-01-09  Bruno Haible  <bruno@clisp.org>
49024
49025         * lib/stdbool.h.in: New file.
49026
49027 2003-01-09  Bruno Haible  <bruno@clisp.org>
49028
49029         * gnulib-tool (func_all_modules): Ignore files ending in ~.
49030         * MODULES.html.sh: Likewise.
49031
49032 2003-01-08  Jim Meyering  <jim@meyering.net>
49033
49034         * lib/full-write.c: Undefine and define-away `const' after inclusion
49035         of errno.h, not before.  Suggestion from Bruno Haible.
49036
49037 2003-01-08  Bruno Haible  <bruno@clisp.org>
49038
49039         * modules/full-read: Depend on full-write.
49040
49041 2003-01-08  Bruno Haible  <bruno@clisp.org>
49042
49043         * lib/safe-read.c: Include specification header first, to ensure its
49044         selfcontainedness.
49045         * lib/full-write.c: Likewise.
49046
49047 2003-01-07  Jim Meyering  <jim@meyering.net>
49048
49049         * lib/full-write.c: Rework so that it may serve to define full_read,
49050         too.
49051         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
49052
49053 2003-01-07  Bruno Haible  <bruno@clisp.org>
49054
49055         * lib/strtoimax.c: Include <stdint.h> as an alternative to
49056         <inttypes.h>.
49057         * lib/xstrtol.h: Likewise.
49058         * lib/xstrtoimax.c: Likewise.
49059         * lib/xstrtoumax.c: Likewise.
49060         * lib/human.h: Likewise.
49061
49062         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
49063         on systems that have <inttypes.h> but not <stdint.h>.
49064
49065 2003-01-07  Bruno Haible  <bruno@clisp.org>
49066
49067         * MODULES.html.sh: Add copyright notice.
49068         (missed_files): Omit CVS directory entries.
49069         (func_module): Make it work with sed-3.02.
49070         * MODULES.txt: Remove file.
49071
49072 2003-01-06  Jim Meyering  <jim@meyering.net>
49073
49074         * lib/version-etc.c: Update year in translatable copyright string.
49075
49076 2003-01-03  Karl Berry  <karl@gnu.org>
49077
49078         * config/config.{guess,sub}: update from prep.
49079
49080 2003-01-02  Karl Berry  <karl@gnu.org>
49081
49082         * doc/COPYING.DOC: belatedly updated to 1.2.
49083
49084 2003-01-01  Karl Berry  <karl@gnu.org>
49085
49086         * gnulib-tool (func_verify_module): report module name $module in
49087         error message, not $1.
49088         * gnulib-tool (create-testdir): don't complain if destdir couldn't
49089         be created, only if it doesn't exist.
49090         * gnulib-tool (last_checkin_date): don't expand the $Date here.
49091
49092 2002-12-31  Paul Eggert  <eggert@twinsun.com>
49093
49094         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
49095
49096 2002-12-31  Paul Eggert  <eggert@twinsun.com>
49097
49098         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
49099         memcmp if strcoll doesn't work.
49100
49101 2002-12-31  Bruno Haible  <bruno@clisp.org>
49102
49103         * lib/utime.c (utime_null): No need to call ftruncate if the file was
49104         nonempty.
49105
49106 2002-12-31  Bruno Haible  <bruno@clisp.org>
49107
49108         * lib/memcoll.c (STRCOLL): New macro.
49109         (memcoll): Use it.
49110
49111 2002-12-31  Bruno Haible  <bruno@clisp.org>
49112
49113         * lib/localcharset.h: New file.
49114         * lib/localcharset.c: Include it.
49115         * lib/unicodeio.c: Likewise.
49116
49117 2002-12-31  Bruno Haible  <bruno@clisp.org>
49118
49119         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
49120         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
49121
49122 2002-12-31  Bruno Haible  <bruno@clisp.org>
49123
49124         * lib/getline.h: Include <stddef.h>, for size_t.
49125
49126         * lib/unicodeio.h: Include <stddef.h>, for size_t.
49127         * lib/unicodeio.c: Don't include <stddef.h>.
49128
49129 2002-12-31  Bruno Haible  <bruno@clisp.org>
49130
49131         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
49132         HAVE_TM_ZONE.
49133
49134 2002-12-24  Karl Berry  <karl@gnu.org>
49135
49136         * config/config.guess: update from prep.
49137
49138 2002-12-24  Bruno Haible  <bruno@clisp.org>
49139
49140         General infrasructure.
49141         * m4/README: Rewritten.
49142         * m4/onceonly.m4: New file.
49143         * m4/onceonly_2_57.m4: New file.
49144
49145         Module atexit.
49146         * m4/atexit.m4: New file.
49147
49148         Module strtod.
49149         * m4/strtod.m4: New file.
49150
49151         Module strtol.
49152         * m4/strtol.m4: New file.
49153
49154         Module strtoul.
49155         * m4/strtoul.m4: New file.
49156
49157         Module memchr.
49158         * m4/memchr.m4: New file.
49159
49160         Module memcmp.
49161         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
49162         (jm_FUNC_MEMCMP): Invoke it.
49163
49164         Module memcpy.
49165         * m4/memcpy.m4: New file.
49166
49167         Module memmove.
49168         * m4/memmove.m4: New file.
49169
49170         Module memset.
49171         * m4/memset.m4: New file.
49172
49173         Module strcspn.
49174         * m4/strcspn.m4: New file.
49175
49176         Module strpbrk.
49177         * m4/strpbrk.m4: New file.
49178
49179         Module strstr.
49180         * m4/strstr.m4: New file.
49181
49182         Module strerror.
49183         * m4/strerror.m4: New file.
49184
49185         Module mktime.
49186         * m4/mktime.m4: Renamed from jm-mktime.m4.
49187         (gl_PREREQ_MKTIME): New macro.
49188         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
49189
49190         Module malloc.
49191         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
49192         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
49193         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
49194
49195         Module realloc.
49196         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
49197         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
49198         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
49199
49200         Module strftime.
49201         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
49202         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
49203         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
49204         gl_TM_GMTOFF.
49205         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
49206
49207         Module xalloc.
49208         * m4/xalloc.m4: New file.
49209
49210         Module alloca.
49211         * m4/alloca.m4: New file.
49212
49213         Module putenv.
49214         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
49215         (jm_FUNC_PUTENV): Invoke it.
49216
49217         Module setenv.
49218         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
49219         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
49220         when invoked twice.
49221         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
49222         gt_FUNC_SETENV.
49223
49224         Module memrchr.
49225         * m4/memrchr.m4: New file.
49226
49227         Module stpcpy.
49228         * m4/stpcpy.m4: New file.
49229
49230         Module strcase.
49231         * m4/strcase.m4: New file.
49232
49233         Module strdup.
49234         * m4/strdup.m4: New file.
49235
49236         Module strnlen.
49237         * m4/strnlen.m4: New file.
49238
49239         Module strndup.
49240         * m4/strndup.m4: New file.
49241
49242         Module xstrtod.
49243         * m4/xstrtod.m4: New file.
49244
49245         Module xstrtol.
49246         * m4/xstrtol.m4: New file.
49247
49248         Module getdate.
49249         * m4/getdate.m4: New file.
49250
49251         Module unlocked-io.
49252         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
49253         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
49254         * m4/jm-glibc-io.m4n: Remove file.
49255
49256         Module long-options.
49257         * m4/long-options.m4: New file.
49258
49259         Module md5.
49260         * m4/md5.m4: New file.
49261
49262         Module sha.
49263         * m4/sha.m4: New file.
49264
49265         Module getstr.
49266         * m4/getstr.m4: New file.
49267
49268         Module getline.
49269         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
49270         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
49271         <sys/types.h>, for size_t. Use the function name gnu_getline, not
49272         simply getline. Infoke gl_PREREQ_GETLINE.
49273
49274         Module obstack.
49275         * m4/obstack.m4: New file.
49276
49277         Module hash.
49278         * m4/hash.m4: New file.
49279
49280         Module readtokens.
49281         * m4/readtokens.m4: New file.
49282
49283         Module strverscmp.
49284         * m4/strverscmp.m4: New file.
49285
49286         Module stdbool.
49287         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
49288         OSF/1.
49289
49290         Module strtoll.
49291         * m4/strtoll.m4: New file.
49292
49293         Module strtoull.
49294         * m4/strtoull.m4: New file.
49295
49296         Module strtoimax.
49297         * m4/strtoimax.m4: New file.
49298
49299         Module strtoumax.
49300         * m4/strtoumax.m4: New file.
49301
49302         Module xstrtoimax.
49303         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
49304         jm_AC_PREREQ_XSTRTOIMAX.
49305         Moved the strtol prerequisites to strtol.m4.
49306         Moved the strtoll prerequisites to strtoll.m4.
49307         Moved the strtoimax prerequisites to strtoimax.m4.
49308
49309         Module xstrtoumax.
49310         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
49311         jm_AC_PREREQ_XSTRTOUMAX.
49312         Moved the strtoul prerequisites to strtoul.m4.
49313         Moved the strtoull prerequisites to strtoull.m4.
49314         Moved the strtoumax prerequisites to strtoumax.m4.
49315
49316         Module chown.
49317         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
49318         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
49319
49320         Module dup2.
49321         * m4/dup2.m4: New file.
49322
49323         Module ftruncate.
49324         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
49325         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
49326
49327         Module getgroups.
49328         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
49329         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
49330
49331         Module gettimeofday.
49332         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
49333         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
49334         gl_PREREQ_GETTIMEOFDAY.
49335
49336         Module mkdir.
49337         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
49338         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
49339
49340         Module mkstemp.
49341         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
49342         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
49343         jm_AC_TYPE_UINTMAX_T.
49344         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
49345
49346         Module stat.
49347         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
49348         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
49349
49350         Module lstat.
49351         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
49352         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
49353
49354         Module timespec.
49355         * m4/timespec.m4 (gl_TIMESPEC): New macro.
49356         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
49357         * m4/st_mtim.m4: Indentation.
49358
49359         Module nanosleep.
49360         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
49361         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
49362         gl_PREREQ_NANOSLEEP.
49363
49364         Module regex.
49365         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
49366         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
49367         (gl_REGEX): New macro.
49368
49369         Module rename.
49370         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
49371         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
49372
49373         Module rmdir.
49374         * m4/rmdir.m4: New file.
49375
49376         Module utime.
49377         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
49378         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
49379         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
49380
49381         Module dirname.
49382         * m4/dirname.m4: New file.
49383
49384         Module getopt.
49385         * m4/getopt.m4: New file.
49386
49387         Module unistd-safer.
49388         * m4/unistd-safer.m4: New file.
49389
49390         Module fnmatch.
49391         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
49392         declaration.
49393         (gl_PREREQ_FNMATCH_EXTRA): New macro.
49394         (gl_FUNC_FNMATCH_POSIX): New macro.
49395         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
49396         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
49397         simply fnmatch.
49398
49399         Module exclude.
49400         * m4/exclude.m4: New file.
49401
49402         Module human.
49403         * m4/human.m4: New file.
49404
49405         Module acl.
49406         * m4/acl.m4: Nop.
49407
49408         Module backupfile.
49409         * m4/backupfile.m4: New file.
49410         * m4/d-ino.m4: Indentation.
49411
49412         Module fsusage.
49413         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
49414         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
49415         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
49416
49417         Module dirfd.
49418         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
49419         requirements.
49420
49421         Module euidaccess.
49422         * m4/euidaccess.m4: New file.
49423
49424         Module file-type.
49425         * m4/file-type.m4: New file.
49426
49427         Module fileblocks.
49428         * m4/fileblocks.m4: New file.
49429
49430         Module filemode.
49431         * m4/filemode.m4: New file.
49432
49433         Module isdir.
49434         * m4/isdir.m4: New file.
49435
49436         Module lchown.
49437         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
49438         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
49439
49440         Module makepath.
49441         * m4/makepath.m4: New file.
49442
49443         Module modechange.
49444         * m4/modechange.m4: New file.
49445
49446         Module mountlist.
49447         * m4/mountlist.m4: New file.
49448         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
49449         Indentation.
49450
49451         Module path-concat.
49452         * m4/path-concat.m4: New file.
49453
49454         Module pathmax.
49455         * m4/pathmax.m4: New file.
49456
49457         Module same.
49458         * m4/same.m4: New file.
49459
49460         Module save-cwd.
49461         * m4/save-cwd.m4: New file.
49462
49463         Module savedir.
49464         * m4/savedir.m4: New file.
49465
49466         Module xgetcwd.
49467         * m4/xgetcwd.m4: New file.
49468         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
49469
49470         Module xreadlink.
49471         * m4/xreadlink.m4: New file.
49472
49473         Module safe-read.
49474         * m4/safe-read.m4: New file.
49475
49476         Module safe-write.
49477         * m4/safe-write.m4: New file.
49478
49479         Module closeout.
49480         * m4/closeout.m4: New file.
49481
49482         Module stdio-safer.
49483         * m4/stdio-safer.m4: New file.
49484
49485         Module getpass.
49486         * m4/getpass.m4: New file.
49487
49488         Module getugroups.
49489         * m4/getugroups.m4: New file.
49490
49491         Module group-member.
49492         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
49493         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
49494
49495         Module idcache.
49496         * m4/idcache.m4: New file.
49497
49498         Module userspec.
49499         * m4/userspec.m4: New file.
49500
49501         Module gettime.
49502         * m4/clock_time.m4: New file.
49503         * m4/gettime.m4: New file.
49504
49505         Module settime.
49506         * m4/settime.m4: New file.
49507
49508         Module posixtm.
49509         * m4/posixtm.m4: New file.
49510
49511         Module gethostname.
49512         * m4/gethostname.m4: New file.
49513
49514         Module canon-host.
49515         * m4/canon-host.m4: New file.
49516
49517         Module gettext.
49518         * m4/codeset.m4: New file, from gettext-0.11.5.
49519         * m4/gettext.m4: New file, from gettext-0.11.5.
49520         * m4/glibc21.m4: New file, from gettext-0.11.5.
49521         * m4/iconv.m4: New file, from gettext-0.11.5.
49522         * m4/intdiv0.m4: New file, from gettext-0.11.5.
49523         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
49524         * m4/inttypes.m4: New file, from gettext-0.11.5.
49525         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
49526         * m4/isc-posix.m4: New file, from gettext-0.11.5.
49527         * m4/lcmessage.m4: New file, from gettext-0.11.5.
49528         * m4/lib-ld.m4: New file, from gettext-0.11.5.
49529         * m4/lib-link.m4: New file, from gettext-0.11.5.
49530         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
49531         * m4/progtest.m4: New file, from gettext-0.11.5.
49532         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
49533         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
49534         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
49535
49536         Module localcharset.
49537         * m4/localcharset.m4: New file.
49538
49539         Module hard-locale.
49540         * m4/hard-locale.m4: New file.
49541
49542         Module mbswidth.
49543         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
49544         onceonly macros.
49545         * m4/mbrtowc.m4: Add comment.
49546
49547         Module memcasecmp.
49548         * m4/memcasecmp.m4: New file.
49549
49550         Module memcoll.
49551         * m4/memcoll.m4: New file.
49552
49553         Module unicodeio.
49554         * m4/unicodeio.m4: New file.
49555
49556         Module rpmatch.
49557         * m4/rpmatch.m4: New file.
49558
49559         Module yesno.
49560         * m4/yesno.m4: New file.
49561
49562         Module exitfail.
49563         * m4/exitfail.m4: New file.
49564
49565         Module c-stack.
49566         * m4/c-stack.m4 (gl_C_STACK): New macro.
49567         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
49568
49569         Module error.
49570         * m4/error.m4 (gl_ERROR): New macro.
49571         (jm_PREREQ_ERROR): Use onceonly macros.
49572
49573         Module fatal.
49574         * m4/fatal.m4: New file.
49575
49576         Module getloadavg.
49577         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
49578         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
49579
49580         Module getpagesize.
49581         * m4/getpagesize.m4: New file.
49582
49583         Module getusershell.
49584         * m4/getusershell.m4: New file.
49585
49586         Module physmem.
49587         * m4/physmem.m4: New file.
49588
49589         Module posixver.
49590         * m4/posixver.m4: New file.
49591
49592         Module quotearg.
49593         * m4/quotearg.m4: New file.
49594
49595         Module quote.
49596         * m4/quote.m4: New file.
49597
49598         Module readutmp.
49599         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
49600
49601         Module sig2str.
49602         * m4/sig2str.m4: New file.
49603
49604         Other.
49605         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
49606         ulonglong.m4.
49607         * m4/intmax_t.m4: New file.
49608         * m4/d-type.m4: Indentation.
49609         * m4/jm-macros.m4: Update.
49610         * m4/prereq.m4 (jm_PREREQ): Update.
49611         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
49612         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
49613         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
49614         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
49615         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
49616         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
49617         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
49618         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
49619         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
49620         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
49621         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
49622         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
49623         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
49624         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
49625         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
49626         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
49627         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
49628         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
49629         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
49630
49631 2002-12-24  Bruno Haible  <bruno@clisp.org>
49632
49633         * MODULES.txt: Update according to m4/ changes.
49634
49635         Module gettext.
49636         * config.rpath: New file, from gettext-0.11.5.
49637
49638         * modules/*: New module descriptions.
49639         * gnulib-tool: New file.
49640         * MODULES.html.sh: New file.
49641
49642 2002-12-21  Karl Berry  <karl@gnu.org>
49643
49644         * doc/fdl.texi: update to version 1.2.
49645
49646 2002-12-19  Karl Berry  <karl@gnu.org>
49647
49648         * config/config.guess: update from prep.
49649
49650 2002-12-18  Bruno Haible  <bruno@clisp.org>
49651
49652         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
49653         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
49654
49655 2002-12-17  Bruno Haible  <bruno@clisp.org>
49656
49657         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
49658         stdlib.h, string.h.
49659
49660 2002-12-17  Bruno Haible  <bruno@clisp.org>
49661
49662         * lib/canon-host.c (strdup): Remove unused declaration.
49663
49664         * lib/fsusage.c: Include full_read.h.
49665         (get_fs_usage): Use full_read instead of safe_read.
49666
49667         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
49668
49669 2002-12-12  Karl Berry  <karl@gnu.org>
49670
49671         * config/config.guess: update from prep.
49672
49673 2002-12-11  Bruno Haible  <bruno@clisp.org>
49674
49675         * m4/setenv.m4: New file, from gettext-0.11.5.
49676
49677 2002-12-11  Bruno Haible  <bruno@clisp.org>
49678
49679         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
49680         not unsetenv().
49681         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
49682         modifications:
49683
49684         2002-12-11  Bruno Haible  <bruno@clisp.org>
49685
49686                 * setenv.c (alloca): Fall back to malloc.
49687                 (freea): New macro.
49688                 (setenv): Use freea() to free memory allocated with alloca().
49689
49690         2002-11-13  Bruno Haible  <bruno@clisp.org>
49691
49692                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
49693                 function declarations.
49694                 * unsetenv.c (unsetenv): Likewise.
49695
49696         2002-03-04  Bruno Haible  <bruno@clisp.org>
49697
49698                 Portability to AIX 4.3.3.
49699                 * unsetenv.c: New file, extracted from setenv.c.
49700                 * setenv.c: Move the unsetenv() function to unsetenv.c.
49701
49702         2001-12-20  Bruno Haible  <bruno@clisp.org>
49703
49704                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
49705                 use malloc instead. For SunOS 4.
49706
49707         2001-12-11  Bruno Haible  <bruno@clisp.org>
49708
49709                 * setenv.c: Declare alloca.
49710                 (compar_fn_t): New typedef.
49711                 (KNOWN_VALUE, STORE_VALUE): Use it.
49712
49713         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
49714         setenv.h.
49715
49716 2002-12-10  Paul Eggert  <eggert@twinsun.com>
49717
49718         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
49719         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
49720         Choose values that are less likely to collide with system fnmatch
49721         options.
49722         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
49723         defined (e.g., a pure POSIX system).
49724         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
49725         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
49726
49727 2002-12-06  Paul Eggert  <eggert@twinsun.com>
49728
49729         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
49730         a pain in practice to deal with generated m4 files.  This change
49731         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
49732
49733         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
49734         and jm-glibc-io.m4, as they are no longer a special case.
49735         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
49736         kludge and the auto-generation stuff.  Check only whether the
49737         functions are declared, not whether they exist, since older hosts
49738         that don't declare the functions can't use the optimization anyway.
49739
49740 2002-12-06  Jim Meyering  <jim@meyering.net>
49741
49742         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
49743
49744         Merge in changes from libc's misc/error.c, in preparation
49745         for the merge of gnulib's changes back into libc.
49746
49747         * lib/error.c (_): Define only if not already defined.
49748         Move definition to follow all #include directives.
49749         Include unlocked-io.h only if !_LIBC.
49750         [_LIBC]: Include <libio/libioP.h>.
49751         [USE_IN_LIBIO]: Include <libio/iolibio.h>
49752         (fflush): Tweak definition to use INTUSE.
49753         (putc): Define.
49754
49755 2002-12-05  Paul Eggert  <eggert@twinsun.com>
49756
49757         * lib/alloca.c [defined emacs]: Include "lisp.h".
49758         (xalloc_die) [defined emacs]: New macro.
49759         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
49760         [! defined emacs]: Include <xalloc.h>.
49761         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
49762         (pointer): Typedef to POINTER_TYPE *.
49763         (malloc): Remove decl; we now always use xmalloc.
49764         (alloca): Use old-style definition, since Emacs needs this.
49765         Check for arithmetic overflow when computing combined size.
49766
49767 2002-12-04  Paul Eggert  <eggert@twinsun.com>
49768
49769         Do not generate unlocked-io.h automatically, since it's easier to
49770         maintain it by hand.
49771
49772         * lib/unlocked-io.h: New file, from GNU diffutils,
49773         but with proper copyright notice and attribution.
49774         * lib/gen-uio: Remove.
49775         * lib/Makefile.am: Add copyright notice.
49776         (libfetish_a_SOURCES): Add unlocked-io.h.
49777         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
49778         (DISTCLEANFILES, io_functions): Remove macros.
49779         (EXTRA_DIST): Remove gen_uio.
49780         (unlocked-io.h): Remove rule.
49781
49782 2002-12-04  Jim Meyering  <jim@meyering.net>
49783
49784         Reflect the fact that stat.c and lstat.c are no longer generated.
49785         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
49786         (DISTCLEANFILES): Likewise.
49787         (EXTRA_DIST): Likewise.
49788         (all_local): Don't depend on stat.c or lstat.c.
49789         (stat.c, lstat.c): Remove rules.
49790         (EXTRA_DIST): Remove xstat.in.
49791
49792         * lib/xstat.in: Remove file.  Contents moved into stat.c.
49793         * lib/stat.c: New file.  Contents mostly from xstat.in.
49794         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
49795         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
49796
49797         * lib/safe-read.c: Rework so that it may serve to define safe_write,
49798         too.
49799         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
49800
49801 2002-12-03  Jim Meyering  <jim@meyering.net>
49802
49803         * lib/safe-read.c, safe-write.c: Change variable names and comments,
49804         but not semantics, to minimize the differences between these two files.
49805         (safe_read): Change comment to mention SAFE_READ_ERROR.
49806
49807         * lib/safe-read.c (IS_EINTR): Define.
49808         (safe_read): Use IS_EINTR in place of in-function cpp directives.
49809
49810 2002-12-02  Jim Meyering  <jim@meyering.net>
49811
49812         * lib/safe-read.c (EINTR): Define.
49813         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
49814         (INT_MAX): Provide fallback.
49815         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
49816
49817         * lib/safe-read.h (SAFE_READ_ERROR): Define.
49818
49819 2002-12-02  Bruno Haible  <bruno@clisp.org>
49820
49821         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
49822         Define, taken from safe-read.c.
49823         (INT_MAX): Provide fallback.
49824         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
49825         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
49826
49827         * lib/safe-read.c (EINTR): Remove definition.
49828         (safe_read): Don't use EINTR if it is absent.
49829
49830 2002-12-01  Jim Meyering  <jim@meyering.net>
49831
49832         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
49833         zero.
49834         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
49835
49836 2002-11-27  Paul Eggert  <eggert@twinsun.com>
49837
49838         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
49839         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
49840         with `if (! (value < limit)) abort ();', for readability.
49841
49842 2002-11-26  Karl Berry  <karl@gnu.org>
49843
49844         * lib/strdup.c: copy from libc again, with jim's ok.
49845         * lib/.cppi-disable: re-add strdup.c
49846
49847 2002-11-25  Karl Berry  <karl@gnu.org>
49848
49849         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
49850         instead of "strtol.c".
49851
49852 2002-11-25  Karl Berry  <karl@gnu.org>
49853
49854         * config/install-sh: update from automake for variable quoting, $0 in
49855         error msgs, etc.
49856
49857         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
49858         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
49859         entry.
49860
49861 2002-11-25  Jim Meyering  <jim@meyering.net>
49862
49863         * lib/mktime.c: Sync from libc, now that it has the latest fix.
49864
49865 2002-11-24  Karl Berry  <karl@gnu.org>
49866
49867         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
49868         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
49869
49870 2002-11-24  Jim Meyering  <jim@meyering.net>
49871
49872         Update from coreutils:
49873
49874         * lib/mktime.c: Merge in changes from libc.
49875
49876         Avoid a link-time failure on some Linux systems.
49877         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
49878         (otherwise).
49879         (__mon_yday): Declare with the STATIC attribute.
49880         (__mktime_internal): Likewise.
49881         Based on a report from Greg Schafer.
49882
49883 2002-11-23  Jim Meyering  <jim@meyering.net>
49884
49885         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
49886         Use `unsigned', not `int', as type of index.
49887
49888         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
49889
49890         * lib/fsusage.c: Remove unneeded parentheses around operands of
49891         `defined'.
49892
49893 2002-11-22  Paul Eggert  <eggert@twinsun.com>
49894
49895         * lib/quotearg.h: Allow multiple inclusion by surrounding with
49896         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
49897         so that we can be included first.
49898         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
49899         * lib/quotearg.c: Include quotearg.h immediately after config.h.
49900         No need to include stddef.h or sys/types.h any more.
49901         Surround local include files with "", not "<>".
49902         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
49903         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
49904         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
49905         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
49906         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
49907         (ISPRINT): Remove; no longer needed now that we assume C89.
49908
49909         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
49910         Preserve errno.
49911
49912         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
49913         quotearg_char): Use SIZE_MAX rather than
49914         (size_t) -1 when we are talking about "infinity".
49915
49916         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
49917
49918 2002-11-22  Paul Eggert  <eggert@twinsun.com>
49919
49920         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
49921         hint that one should use `if (! x) abort ();' rather than `assert
49922         (x);', and anyway it's one less thing to worry about configuring.
49923         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
49924         hash_rehash, hash_insert): Use abort rather than assert.
49925
49926 2002-11-22  Bruno Haible  <bruno@clisp.org>
49927
49928         * lib/safe-read.h: Assume C89. Add comments.
49929         (safe_read): Change return type to size_t.
49930         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
49931         byte counts > SSIZE_MAX correctly.
49932         * lib/safe-write.h: New file.
49933         * lib/safe-write.c: New file.
49934         * lib/full-read.h: New file.
49935         * lib/full-read.c: New file.
49936         * lib/full-write.h: Assume C89. Add comments.
49937         * lib/full-write.c: Include safe-write.h.
49938         (full_write): Rewritten to use safe_write.
49939         Suggested by Jim Meyering and Paul Eggert.
49940
49941 2002-11-21  Jim Meyering  <jim@meyering.net>
49942
49943         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
49944
49945         Merge in changes from the coreutils.
49946
49947         2002-09-25  Paul Eggert  <eggert@twinsun.com>
49948         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
49949         <stdint.h>.
49950         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
49951         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
49952         int.  Work more efficiently if X is the same width as uintmax_t.
49953         Do not compare X to -1, to avoid bogus compiler warning.
49954         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
49955         Don't assume that f_frsize and f_bsize are the same type.
49956
49957         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
49958         warning on FreeBSD.
49959
49960         * lib/makepath.c (make_path): Restore umask *before* creating the final
49961         component.
49962         (make_path): Minor reformatting.
49963
49964         * lib/xmalloc.c: Adjust to work with new autoconf macros,
49965         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
49966         HAVE_MALLOC/HAVE_REALLOC.
49967
49968         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
49969         dummy ones.  At least on GNU/Linux systems, `auto' means something
49970         else.
49971         From Michael Stone.
49972
49973 2002-11-21  Bruno Haible  <bruno@clisp.org>
49974
49975         Remove case insensitive option matching.
49976         * lib/argmatch.h (argcasematch): Remove declaration.
49977         (ARGCASEMATCH): Remove macro.
49978         (__xargmatch_internal): Remove case_sensitive argument.
49979         (XARGMATCH): Update.
49980         (XARGCASEMATCH): Remove macro.
49981         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
49982         case_sensitive argument.
49983         (argcasematch): Remove function.
49984         (__xargmatch_internal): Remove case_sensitive argument.
49985         (main): Use XARGMATCH instead of XARGCASEMATCH.
49986
49987         * lib/xmalloc.c: Change compile-time error message. Add comment about
49988         required autoconf version.
49989
49990 2002-11-20  Paul Eggert  <eggert@twinsun.com>
49991
49992         Merge argmatch cleanups from Bison.  Assume C89.
49993
49994         * lib/argmatch.c: Include config.h here, not in argmatch.h.
49995         Include stdlib.h, for EXIT_FAILURE.
49996         Always include <string.h>, since we assume C89.
49997         (EXIT_FAILURE): Remove pre-C89 bug workaround.
49998         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
49999         Include <stddef.h> instead, since it's all we need for size_t.
50000         (PARAMS): Remove.  All uses removed.
50001         (ARRAY_CARDINALITY): Do not bother to #undef.
50002         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
50003         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
50004         Remove unnecessary parentheses.
50005         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
50006         Insert necessary parentheses.
50007         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
50008         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
50009
50010 2002-11-19  Bruno Haible  <bruno@clisp.org>
50011
50012         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
50013         * lib/mbswidth.h: Include <stddef.h>, for size_t.
50014
50015         * lib/mbswidth.h (PARAMS): Remove macro.
50016         (mbswidth, mbsnwidth): Use ANSI C function declarations.
50017         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
50018
50019         * lib/gcd.h (PARAMS): Remove macro.
50020         (gcd): Use ANSI C function declarations.
50021         * lib/gcd.c (gcd): Likewise.
50022
50023 2002-11-15  Bruno Haible  <bruno@clisp.org>
50024
50025         * lib/strcspn.c: Include <stddef.h>.
50026         (strcspn): Use ANSI C function declaration. Change return type to
50027         size_t. Use NULL.
50028         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
50029         (strpbrk): Use NULL.
50030         * lib/strpbrk.h (PARAMS): Remove macro.
50031         (strpbrk): Use ANSI C function declaration.
50032         * lib/strstr.c: Don't include <sys/types.h>.
50033         * lib/strstr.h (PARAMS): Remove macro.
50034         (strstr): Use ANSI C function declarations.
50035
50036 2002-11-14  Karl Berry  <karl@gnu.org>
50037
50038         * config/mkinstalldirs: `do' on separate line, instead of
50039         `for var; do'.
50040
50041 2002-11-06  Bruno Haible  <bruno@clisp.org>
50042
50043         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
50044         * lib/gcd.c (gcd): Likewise.
50045
50046 2002-11-05  Bruno Haible  <bruno@clisp.org>
50047
50048         * lib/gcd.h: New file, from gettext-0.11.5.
50049         * lib/gcd.c: New file, from gettext-0.11.5.
50050
50051 2002-11-05  Bruno Haible  <bruno@clisp.org>
50052
50053         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
50054         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
50055         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
50056         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
50057
50058         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
50059         <libintl.h>.
50060         * lib/makepath.c: Include gettext.h instead of <locale.h> and
50061         <libintl.h>.
50062
50063         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
50064         * lib/human.c: Include gettext.h instead of <libintl.h>.
50065         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
50066         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
50067         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
50068         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
50069         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
50070         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
50071         (textdomain): Remove definition.
50072         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
50073
50074         * lib/long-options.c: Remove include of <libintl.h> and definition of
50075         _.
50076         * lib/same.c: Remove include of <libintl.h> and definition of _.
50077
50078 2002-11-04  Owen Taylor  <otaylor@redhat.com>
50079
50080         * lib/config.charset: A few additions for Solaris.
50081
50082 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
50083
50084         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
50085         * lib/localcharset.c (locale_charset): Declare as extern "C".
50086
50087 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
50088
50089         * lib/config.charset: msdos in uk_UA uses CP1125.
50090
50091 2002-11-04  Bruno Haible  <bruno@clisp.org>
50092
50093         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
50094         * lib/strcase.h: New file, from GNU gettext-0.11.5.
50095         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
50096         * lib/strstr.h: New file, from GNU gettext-0.11.5.
50097         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
50098
50099 2002-11-04  Bruno Haible  <bruno@clisp.org>
50100
50101         * lib/localcharset.c (locale_charset): Don't return an empty string.
50102
50103 2002-11-04  Bruno Haible  <bruno@clisp.org>
50104
50105         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
50106         aliases.
50107
50108 2002-11-04  Bruno Haible  <bruno@clisp.org>
50109
50110         * lib/config.charset: Update for newest glibc. Add canonical names
50111         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
50112
50113 2002-11-04  Bruno Haible  <bruno@clisp.org>
50114
50115         * lib/config.charset: Add support for NetBSD.
50116
50117 2002-11-04  Bruno Haible  <bruno@clisp.org>
50118
50119         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
50120
50121 2002-11-01  Bruno Haible  <bruno@clisp.org>
50122
50123         * configure.in: Add AC_CONFIG_AUX_DIR call.
50124         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
50125         test/Makefile.
50126         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
50127
50128 2002-09-28  Karl Berry  <karl@gnu.org>
50129
50130         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
50131         installed automake until the next release, since changes have been
50132         made.
50133
50134 2002-09-25  Karl Berry  <karl@gnu.org>
50135
50136         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
50137         * lib/getopt*: copy from libc/posix.
50138         * lib/gettext.h: copy from gettext.
50139         * lib/.cppi-disable: add strdup.c, gettext.h.
50140
50141 2002-09-25  Karl Berry  <karl@gnu.org>
50142
50143         * config/srclist.txt: enable gettext.h check.
50144         * config/config.{guess,sub}: update from prep.
50145         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
50146                 from automake 1.6.3.
50147         See srclist*.
50148
50149 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
50150
50151         * regex.c (PATFETCH): Remove the translating fetch.
50152         (PATFETCH_RAW): Rename to PATFETCH.
50153         (set_image_of_range): New fun.
50154         (SET_RANGE_TABLE_WORK_AREA): Use it.
50155         (regex_compile): Don't translate the pattern chars so eagerly.
50156         Only do it when inserting an `exactn' bytecode or when handling
50157         a char-range.
50158         (mutually_exclusive_p): Avoid empty statement.
50159
50160 2002-07-06  Jim Meyering  <meyering@lucent.com>
50161
50162         * m4/README: Don't mention Makefile.am.in.
50163         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
50164
50165 2002-07-01  Jim Meyering  <meyering@lucent.com>
50166
50167         * lib/c-stack.c: Include sys/time.h.
50168         From Volker Borchert.
50169
50170 2002-06-26  Paul Eggert  <eggert@twinsun.com>
50171
50172         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
50173
50174 2002-06-26  Paul Eggert  <eggert@twinsun.com>
50175
50176         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
50177         New macro.  Use it uniformly instead of
50178         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
50179         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
50180         reported by Vin Shelton.
50181
50182 2002-06-22  Paul Eggert  <eggert@twinsun.com>
50183
50184         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
50185         Do not assume SA_SIGINFO behavior.
50186         Bug reported by Jim Meyering on NetBSD 1.5.2.
50187
50188 2002-06-22  Jim Meyering  <meyering@lucent.com>
50189
50190         * m4/c-stack.m4: New file, from diffutils-2.8.2.
50191         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
50192
50193         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
50194         now that configure.ac uses AC_GNU_SOURCE.
50195         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
50196         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
50197
50198         Update to latest tools.  Suggestions from Paul Eggert.
50199         * m4/stdbool.m4: New file, from diffutils-2.8.2.
50200         * m4/gnu-source.m4: Update from diffutils-2.8.2.
50201         * m4/fnmatch.m4: Likewise.
50202         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
50203         to AC_HEADER_STDBOOL
50204
50205 2002-06-22  Jim Meyering  <meyering@lucent.com>
50206
50207         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
50208         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
50209
50210 2002-06-22  Jim Meyering  <meyering@lucent.com>
50211
50212         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
50213
50214         * lib/exitfail.c, exitfail.h: Likewise.
50215         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
50216
50217         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
50218         of fnmatch.h.
50219         (EXTRA_DIST): Add fnmatch_loop.c.
50220         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
50221
50222         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
50223         * lib/fnmatch.c: Update from diffutils-2.8.2.
50224         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
50225         * lib/fnmatch.h: Remove file.
50226
50227 2002-06-21  Jim Meyering  <meyering@lucent.com>
50228
50229         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
50230         * m4/mbrtowc.m4: Likewise.
50231
50232         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
50233         * m4/mbswidth.m4: Reflect name change:
50234         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
50235         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
50236
50237         * m4/lib-link.m4: Update from gettext-0.11.2.
50238         * m4/gettext.m4: Likewise.
50239
50240         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
50241         From Alfred M. Szmidt.
50242
50243 2002-06-18  Paul Eggert  <eggert@twinsun.com>
50244
50245         * lib/file-type.h: Report an error if neither S_ISREG nor
50246         S_IFREG is defined, instead of using a test specific to glibc
50247         2.2.  This should be safe, since POSIX requires S_ISREG and
50248         Unix Version 7 had S_IFREG.  We don't need to check for
50249         <sys/types.h> since we don't use any symbols that it defines.
50250
50251 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
50252
50253         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
50254         $@-t, so that each temporary file name is unique and valid in the first
50255         8 characters, for operation under DOS.
50256
50257 2002-06-15  Paul Eggert  <eggert@twinsun.com>
50258
50259         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
50260
50261 2002-06-15  Jim Meyering  <meyering@lucent.com>
50262
50263         Work even with DJGPP 2.03, which lacks support for symlinks.
50264         From Richard Dawe.
50265         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
50266         is defined.
50267         * lib/lchown.c (S_ISLNK): Likewise.
50268
50269 2002-06-15  Jim Meyering  <meyering@lucent.com>
50270
50271         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
50272         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
50273         have been included before this file.
50274
50275 2002-06-14  Jim Meyering  <meyering@lucent.com>
50276
50277         * lib/file-type.h: Use the version from diffutils-2.8.2.
50278         * lib/file-type.c: Likewise.
50279
50280 2002-06-07  Jim Meyering  <meyering@lucent.com>
50281
50282         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
50283         They're needed at least for NetBSD 1.5.2.
50284         ($statxfs_includes): Include those same headers.
50285         ($statxfs_includes): Include sys/vfs.h if available.
50286         ($statxfs_includes): Likewise for sys/statvfs.h.
50287         Check for the following members in both structs statfs and statvfs:
50288         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
50289
50290 2002-06-01  Jim Meyering  <meyering@lucent.com>
50291
50292         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
50293         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
50294
50295 2002-05-28  Jim Meyering  <meyering@lucent.com>
50296
50297         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
50298         Reported by Volker Borchert.
50299
50300 2002-05-27  Jim Meyering  <meyering@lucent.com>
50301
50302         Fix a problem seen only on nonconforming systems whereby ls.c's
50303         use of localtime, and then of gettimeofday would cause trouble:
50304         the localtime call used to initialize rpl_gettimeofday's save
50305         mechanism would clobber ls's current local time information so
50306         that in any long listing the first file would always be listed
50307         with date 1970-01-01.  Analysis by Volker Borchert.
50308
50309         * lib/gettimeofday.c (localtime): Undefine.
50310         (rpl_localtime): New function.
50311
50312 2002-05-27  Jim Meyering  <meyering@lucent.com>
50313
50314         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
50315         localtime.
50316
50317         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
50318         use the replacement function; it wouldn't resolve at link time.
50319         Reported by Volker Borchert.
50320
50321 2002-05-22  Jim Meyering  <meyering@lucent.com>
50322
50323         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
50324         file-type.h.
50325         * lib/file-type.h: New file.
50326         * lib/file-type.c (file_type): New file/function.  Extracted from
50327         diffutils.
50328
50329 2002-04-30  Jim Meyering  <meyering@lucent.com>
50330
50331         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
50332
50333 2002-04-29  Paul Eggert  <eggert@twinsun.com>
50334
50335         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
50336
50337 2002-04-29  Paul Eggert  <eggert@twinsun.com>
50338
50339         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
50340         Do not check for alloca.h (no longer used) or stdbool.h (was never
50341         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
50342
50343 2002-04-29  Paul Eggert  <eggert@twinsun.com>
50344
50345         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
50346
50347 2002-04-29  Jim Meyering  <meyering@lucent.com>
50348
50349         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
50350         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
50351         Use AC_FUNC_STRNLEN here instead.
50352
50353         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
50354         With autoconf-2.53a, it's part of AC_PROG_CC.
50355
50356 2002-04-28  Paul Eggert  <eggert@twinsun.com>
50357
50358         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
50359         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
50360
50361 2002-04-28  Paul Eggert  <eggert@twinsun.com>
50362
50363         * lib/sig2str.h, lib/sig2str.c: New files.
50364         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
50365
50366 2002-04-28  Paul Eggert  <eggert@twinsun.com>
50367
50368         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
50369         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
50370         of 127, since 64 is the largest conceivable number for ancient
50371         nonstandard hosts.
50372         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
50373
50374 2002-04-28  Jim Meyering  <meyering@lucent.com>
50375
50376         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
50377
50378 2002-04-24  Jim Meyering  <meyering@lucent.com>
50379
50380         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
50381         (jm_PREREQ): Use it.
50382
50383         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
50384         mach/mach.h fcntl.h.
50385         Check for this function: setlocale.
50386
50387 2002-04-24  Jim Meyering  <meyering@lucent.com>
50388
50389         * lib/gettext.h: New file, from Gettext.
50390         * lib/Makefile.am (INCLUDES): Remove -I../intl.
50391         (libfetish_a_SOURCES): Add gettext.h.
50392
50393 2002-04-16  Jim Meyering  <meyering@lucent.com>
50394
50395         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
50396         ut_pid, ut_id, ut_exit.
50397
50398 2002-04-16  Jim Meyering  <meyering@lucent.com>
50399
50400         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
50401         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
50402         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
50403
50404 2002-04-12  Jim Meyering  <meyering@lucent.com>
50405
50406         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
50407         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
50408         existence of the getmntinfo function.  Needed for Darwin 5.3.
50409
50410         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
50411         This is necessary at least on Darwin 5.3.
50412
50413         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
50414         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
50415         strnlen.o in the library, and that makes some versions of ranlib
50416         object.
50417
50418 2002-04-12  Jim Meyering  <meyering@lucent.com>
50419
50420         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
50421
50422 2002-04-09  Jim Meyering  <meyering@lucent.com>
50423
50424         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
50425         to be more precise.  Rather than saying we're checking whether the
50426         function `works', say what we're testing.
50427         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
50428         Reported by Bruno Haible.
50429
50430 2002-03-10  Jim Meyering  <meyering@lucent.com>
50431
50432         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
50433         Suggestion from Santiago Vila.
50434
50435 2002-03-08  Jim Meyering  <meyering@lucent.com>
50436
50437         * lib/rename.c: Mention that this wrapper is needed also on
50438         mips-dec-ultrix4.4 systems.
50439
50440 2002-03-02  Jim Meyering  <meyering@lucent.com>
50441
50442         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
50443         not HAVE_CLOCK_SETTIME.
50444
50445 2002-02-27  Paul Eggert  <eggert@twinsun.com>
50446
50447         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
50448         Check for clock_settime.
50449
50450 2002-02-27  Paul Eggert  <eggert@twinsun.com>
50451
50452         * lib/nanosleep.h: Rename to....
50453         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
50454
50455         * lib/gettime.c: New file.
50456         * lib/settime.c: New file.
50457         * lib/stime.c: Remove.
50458
50459         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
50460         timespec.h.  Remove nanosleep.h.
50461
50462 2002-02-25  Paul Eggert  <eggert@twinsun.com>
50463
50464         * m4/acl.m4: New file.
50465         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
50466         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
50467
50468 2002-02-25  Paul Eggert  <eggert@twinsun.com>
50469
50470         * lib/acl.c, lib/acl.h: New files.
50471         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
50472
50473 2002-02-24  Jim Meyering  <meyering@lucent.com>
50474
50475         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
50476         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
50477         cause trouble.  Reported by Nelson Beebe.
50478
50479 2002-02-23  Paul Eggert  <eggert@twinsun.com>
50480
50481         * lib/path-concat.c (xpath_concat): Reorder code to pacify
50482         compilers that don't know that xalloc_die never returns.
50483
50484 2002-02-20  Jim Meyering  <meyering@lucent.com>
50485
50486         * lib/getdate.c: Regenerate using bison-1.33.
50487
50488 2002-02-17  Jim Meyering  <meyering@lucent.com>
50489
50490         * config/config.guess (main): Don't use `head -1'; it's no longer
50491         portable. Use `sed 1q' instead.
50492
50493 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
50494
50495         * m4/codeset.m4: Upgrade to gettext-0.11.
50496         * m4/gettext.m4: Upgrade to gettext-0.11.
50497         * m4/glibc21.m4: Upgrade to gettext-0.11.
50498         * m4/iconv.m4: Upgrade to gettext-0.11.
50499         * m4/isc-posix.m4: Upgrade to gettext-0.11.
50500         * m4/lcmessage.m4: Upgrade to gettext-0.11.
50501         * m4/lib-ld.m4: New file, from gettext-0.11.
50502         * m4/lib-link.m4: New file, from gettext-0.11.
50503         * m4/lib-prefix.m4: New file, from gettext-0.11.
50504         * m4/progtest.m4: Upgrade to gettext-0.11.
50505
50506 2002-02-15  Paul Eggert  <eggert@twinsun.com>
50507
50508         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
50509         (jm_PREREQ): Use it.
50510
50511 2002-02-15  Paul Eggert  <eggert@twinsun.com>
50512
50513         * lib/posixver.c, lib/posixver.h: New files.
50514         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
50515
50516 2002-02-02  Paul Eggert  <eggert@twinsun.com>
50517             Bruno Haible  <bruno@clisp.org>
50518
50519         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
50520         (fwrite_success_callback): New declaration.
50521         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
50522         print_unicode_char. Call failure callback instead of error.
50523         (fwrite_success_callback): New function.
50524         (exit_failure_callback): New function.
50525         (fallback_failure_callback): New function.
50526         (print_unicode_char): Call unicode_to_mb.
50527
50528 2002-01-26  Jim Meyering  <meyering@lucent.com>
50529
50530         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
50531         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
50532
50533 2002-01-26  Jim Meyering  <meyering@lucent.com>
50534
50535         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
50536
50537 2002-01-22  Paul Eggert  <eggert@twinsun.com>
50538
50539         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
50540
50541 2002-01-22  Jim Meyering  <meyering@lucent.com>
50542
50543         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
50544         Otherwise, some versions of automake would omit the rule that makes
50545         Makefile from Makefile.in.
50546
50547 2002-01-21  Paul Eggert  <eggert@twinsun.com>
50548
50549         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
50550         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
50551         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
50552         (memcoll): Set errno to zero if there is no error.
50553
50554         * lib/quotearg.c (quotearg_buffer_restyled):
50555         Fix bug with quoting buffers containing NUL when backslashing escapes.
50556         This bug was exposed by the other changes in this patch.
50557         (quotearg_n_options): New arg ARGSIZE.
50558         All callers changed.
50559         (quoting_options_from_style): New function.
50560         (quotearg_n_style): Use it.
50561         (quotearg_n_style_mem): New function.
50562
50563         * lib/quotearg.h (quotearg_n_style_mem): New function.
50564
50565 2002-01-19  Jim Meyering  <meyering@lucent.com>
50566
50567         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
50568         Remove useless quotes: DF_PROG="df".
50569         * m4/strnlen.m4: New file.
50570
50571 2002-01-16  Paul Eggert  <eggert@twinsun.com>
50572
50573         * lib/backupfile.c (ISDIGIT): Comment fix.
50574         * lib/getdate.y (ISDIGIT): Likewise.
50575         * lib/posixtm.c (ISDIGIT, year): Likewise.
50576         * lib/strverscmp.c (ISDIGIT): Likewise.
50577         * lib/userspec.c (ISDIGIT): Likewise.
50578
50579 2002-01-16  Jim Meyering  <meyering@lucent.com>
50580
50581         * lib/getdate.y: Add three semicolons, each just before a closing
50582         brace. Bison (as of version 1.31) no longer papers over that mistake.
50583
50584 2002-01-05  Jim Meyering  <meyering@lucent.com>
50585
50586         * lib/version-etc.c (version_etc_copyright): Update copyright year.
50587
50588 2001-12-19  Paul Eggert  <eggert@twinsun.com>
50589
50590         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
50591         not silently exit merely because the output buffer happens to
50592         have nothing pending.
50593
50594 2001-12-18  Paul Eggert  <eggert@twinsun.com>
50595
50596         See the big note in ../ChangeLog.
50597         * lib/human.c (suffixes): Prefer K to k for 1024.
50598         (generate_suffix_backwards): New function.
50599         (human_readable_inexact): Use it.
50600         * lib/xstrtol.c (__xstrtol): If there is no number but there
50601         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
50602         Accept 'K' as well as 'k'.
50603
50604 2001-12-15  Jim Meyering  <meyering@lucent.com>
50605
50606         * lib/regex.h (__restrict_arr): Update from libc.
50607
50608         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
50609         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
50610         (STREQ): Define.
50611
50612 2001-12-14  Jim Meyering  <meyering@lucent.com>
50613
50614         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
50615         Suggestion from Bruno Haible.
50616
50617 2001-12-10  Jim Meyering  <meyering@lucent.com>
50618
50619         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
50620         xrealloc, Instead, include "xalloc.h".
50621         (initbuffer): Don't cast xmalloc return value to char*.
50622         (readline): Reword comment.
50623         Don't cast xrealloc return value to char*
50624         Return NULL, not 0.
50625
50626 2001-12-09  Jim Meyering  <meyering@lucent.com>
50627
50628         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
50629         about `signed and unsigned type in conditional expression'.
50630         * lib/posixtm.c (posix_time_parse): Likewise.
50631
50632         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
50633
50634         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
50635         to avoid a pedantic warning.
50636
50637         * lib/getstr.c: Don't include assert.h.
50638         (getstr): Remove warning-evoking assertions.
50639         Return -1 if offset parameter is out of bounds.
50640         Change the type of a local from int to size_t.
50641
50642         * lib/strftime.c (my_strftime_localtime_r): Include this function
50643         definition in the `#if ! HAVE_TM_GMTOFF' block.
50644
50645         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
50646         Include xalloc.h instead.
50647
50648 2001-12-02  Jim Meyering  <meyering@lucent.com>
50649
50650         * lib/tempname.c: Don't declare getenv, thus reverting the change of
50651         2001-11-18.  It's no longer necessary, now that stdlib.h is always
50652         included.
50653
50654         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
50655         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
50656
50657 2001-11-30  Akim Demaille  <akim@epita.fr>
50658
50659         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
50660         before being defined.
50661
50662 2001-11-27  Paul Eggert  <eggert@twinsun.com>
50663
50664         * lib/quotearg.h (quotearg_n, quotearg_n_style):
50665         First arg is int, not unsigned.
50666         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
50667         (SIZE_MAX, UINT_MAX): New macros.
50668         (quotearg_n_options): Abort if N is negative.
50669         Avoid overflow check on hosts where size_t is 64 bits and int
50670         is 32 bits, as overflow is impossible there.
50671         Fix off-by-one typo that caused unnecessary reallocation.
50672
50673 2001-11-27  Jim Meyering  <meyering@lucent.com>
50674
50675         * lib/tempname.c: Merge with version from libc.
50676         * lib/regex.c: Likewise.
50677
50678         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
50679         systems for which STDC_HEADERS is 0, it was not included, resulting in
50680         a warning about an integer-to-pointer conversion problem with getenv.
50681         Reported by Volker Borchert.
50682
50683 2001-11-26  Jim Meyering  <meyering@lucent.com>
50684
50685         * lib/gtod.h: Remove file.
50686         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
50687         * lib/gettimeofday.c: Don't include gtod.h.
50688         (GTOD_init): Remove function.
50689         (rpl_gettimeofday): Do its job here instead, rather than aborting.
50690         Suggestion from Volker Borchert.
50691
50692 2001-11-23  Jim Meyering  <meyering@lucent.com>
50693
50694         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
50695         it.
50696         * lib/hash.c (struct hash_table): Define it here instead.
50697
50698 2001-11-22  Jim Meyering  <meyering@lucent.com>
50699
50700         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
50701
50702 2001-11-20  Jim Meyering  <meyering@lucent.com>
50703
50704         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
50705         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
50706
50707 2001-11-19  Jim Meyering  <meyering@lucent.com>
50708
50709         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
50710         directory.  Use "conftestXXXXXX" as the template.
50711         Suggestion from Paul Eggert.
50712
50713         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
50714         immediately, so the test doesn't mistakenly hit the max-open-files
50715         limit.
50716
50717 2001-11-18  Paul Eggert  <eggert@twinsun.com>
50718
50719         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
50720         (TEMPORARIES): New macro.
50721         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
50722         removes an artificial limitation (e.g. HP-UX 10.20, where
50723         TMP_MAX is 17576).
50724
50725 2001-11-18  Jim Meyering  <meyering@lucent.com>
50726
50727         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
50728
50729 2001-11-18  Jim Meyering  <meyering@lucent.com>
50730
50731         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
50732         on SunOS 4.
50733
50734         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
50735         files will be created before anything else.
50736
50737 2001-11-17  Paul Eggert  <eggert@twinsun.com>
50738
50739         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
50740         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
50741
50742 2001-11-17  Jim Meyering  <meyering@lucent.com>
50743
50744         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
50745         Prompted by a report from Bob Proulx.
50746
50747         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
50748         Instead, require UTILS_FUNC_MKSTEMP.
50749
50750 2001-11-17  Jim Meyering  <meyering@lucent.com>
50751
50752         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
50753         Now, that's done as part of AC_FUNC_STRTOD.
50754
50755 2001-11-17  Jim Meyering  <meyering@lucent.com>
50756
50757         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
50758         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
50759         rather than group writable.  Patch by Juan F. Codagnone.
50760
50761         * lib/readtokens.c: Remove explicit declarations of xmalloc and
50762         xrealloc, Instead, include "xalloc.h".
50763
50764         * lib/mountlist.c: Include unlocked-io.h after all system headers.
50765         Remove explicit declarations of xmalloc, xrealloc,
50766         and xstrdup.  Instead, include "xalloc.h".
50767
50768         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
50769         unlocked-io.h.
50770         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
50771         Likewise.
50772         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
50773
50774         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
50775         Reported by Padraig Brady.
50776
50777         * lib/mkstemp.c: #undef mkstemp.
50778         Include config.h.
50779         (rpl_mkstemp): Rename from mkstemp.
50780         Protoize.
50781
50782 2001-11-16  Jim Meyering  <meyering@lucent.com>
50783
50784         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
50785         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
50786         determine the amount of total physical memory, use pstat_getstatic.
50787         HPUX-11 doesn't define _SC_PHYS_PAGES.
50788         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
50789         If sysconf couldn't be used to determine the amount of available
50790         physical memory, use both pstat_getstatic and pstat_getdynamic.
50791         Based on a patch from Bob Proulx.
50792
50793 2001-11-10  Jim Meyering  <meyering@lucent.com>
50794
50795         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
50796         (jm_PREREQ): Use it.
50797
50798 2001-11-09  Jim Meyering  <meyering@lucent.com>
50799
50800         * m4/jm-macros.m4: Require autoconf-2.52f.
50801         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
50802         Use these AC_-prefixed names, not the AM_-prefixed ones.
50803
50804         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
50805
50806 2001-11-05  Jim Meyering  <meyering@lucent.com>
50807
50808         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
50809
50810 2001-11-04  Jim Meyering  <meyering@lucent.com>
50811
50812         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
50813         $DEFS.
50814
50815 2001-11-03  Jim Meyering  <meyering@lucent.com>
50816
50817         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
50818         of AC_DEFUN.
50819
50820         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
50821         know the name of the variable in the macro definition.
50822
50823 2001-11-03  Jim Meyering  <meyering@lucent.com>
50824
50825         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
50826         in argmatch_to_argument call.
50827
50828         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
50829         argument.
50830
50831         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
50832         e.g., a fault due to an attempt to free a NULL pointer.
50833
50834 2001-11-01  Jim Meyering  <meyering@lucent.com>
50835
50836         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
50837         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
50838
50839 2001-11-01  Jim Meyering  <meyering@lucent.com>
50840
50841         * lib/dirfd.c, lib/dirfd.h: New files.
50842         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
50843
50844         * lib/hash.c (hash_print) [TESTING]: Clean up.
50845
50846 2001-10-22  Paul Eggert  <eggert@twinsun.com>
50847
50848         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
50849         to avoid a warning if -Wall.
50850
50851 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
50852
50853         * README: New file
50854         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
50855         (per RMS's instructions, this is now the canonical source)
50856         * lgpl/, gpl/: New directories.
50857
50858 2001-10-21  Paul Eggert  <eggert@twinsun.com>
50859
50860         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
50861
50862 2001-10-21  Jim Meyering  <meyering@lucent.com>
50863
50864         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
50865         this code would end up calling gettext even in packages built
50866         with --disable-nls.
50867         * lib/getopt.c (_): Likewise.
50868         * lib/regex.c (_): Likewise.
50869
50870 2001-10-20  Paul Eggert  <eggert@twinsun.com>
50871
50872         * m4/error.m4 (jm_PREREQ_ERROR):
50873         Do not invoke AC_CHECK_FUNCS with strerror_r, as
50874         AC_FUNC_STRERROR_R does that.
50875         Check for strerror declaration.
50876
50877         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
50878         are supposed to have them these days.
50879         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
50880         Merge changes from latest Autoconf CVS.
50881         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
50882         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
50883         POSIX decided to standardize on the int flavor of strerror_r.
50884
50885 2001-10-20  Paul Eggert  <eggert@twinsun.com>
50886
50887         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
50888         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
50889         Use strerror_r that is only a macro, even if it is not a function.
50890         (strerror): Check for HAVE_DECL_STRERROR before declaring.
50891         (private_strerror): Use prototypes, not old-style function definition.
50892         (print_errno_message): New function.
50893         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
50894         char*-flavored one.
50895         (error_tail, error, error_at_line): Use it.
50896
50897 2001-10-11  Jim Meyering  <meyering@lucent.com>
50898
50899         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
50900         and quote_n (1, ... to avoid clobbering a buffer.
50901
50902 2001-10-05  Jim Meyering  <meyering@lucent.com>
50903
50904         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
50905         hash-pjw.h.
50906         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
50907         * lib/hash-pjw.h: New file.
50908
50909 2001-09-30  Jim Meyering  <meyering@lucent.com>
50910
50911         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
50912         `struct fsstat' has the `f_fstypename' member.
50913         Use that to define FS_TYPE, which is now used to make
50914         the getfsstat link test tighter.
50915
50916 2001-09-30  Jim Meyering  <meyering@lucent.com>
50917
50918         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
50919         Include <sys/ucred.h>, for Apple Darwin.
50920         Include sys/mount.h and sys/fs_types.h only if available.
50921         (FS_TYPE): Define.
50922         (read_filesystem_list): Use FS_TYPE.
50923
50924 2001-09-29  Paul Eggert  <eggert@twinsun.com>
50925
50926         * lib/exclude.c (excluded_filename): 0 -> false, since it's
50927         a boolean context.
50928
50929 2001-09-29  Jim Meyering  <meyering@lucent.com>
50930
50931         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
50932         [one-argument getmntent function]): Include stdio.h before mntent.h.
50933         SunOS 4.1.x needs it for the declaration of `FILE'.
50934         Patch by Volker Borchert.
50935
50936         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
50937         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
50938         sys/fs_types.h, and make the link-test for getfsstat guard #include
50939         directives with appropriate #if HAVE_*_H tests so that we can
50940         detect getfsstat on Apple Darwin1.3.7 systems.
50941         Reported by Nelson Beebe.
50942         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
50943
50944 2001-09-28  Paul Eggert  <eggert@twinsun.com>
50945
50946         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
50947         #defines strtoimax.  Also treat the other strto* functions
50948         like strtoimax.
50949
50950         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
50951         Check for strtoul and strtoumax,
50952         as those declarations are made even in the signed case.
50953         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
50954         Likewise, for strtol and strtoimax.
50955
50956 2001-09-28  Paul Eggert  <eggert@twinsun.com>
50957
50958         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
50959         #defines strtoimax.  Also treat the other strto* functions
50960         like strtoimax.
50961
50962         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
50963         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
50964         (strtoimax, strtoumax): Do not declare if already defined as a macro.
50965
50966 2001-09-26  Jim Meyering  <meyering@lucent.com>
50967
50968         Most macros in unlocked-io.h had the wrong number of arguments.
50969         * lib/gen-uio: New script.
50970         (USE_UNLOCKED_IO): Define to 1 if not already defined.
50971         * lib/unlocked-io.hin: Remove file.
50972         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
50973         rather than trying to embed it here.
50974         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
50975         Reported by Padraig Brady.
50976
50977 2001-09-25  Volker Borchert  <bt@teknon.de>
50978
50979         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
50980         `result'.
50981
50982 2001-09-24  Jim Meyering  <meyering@lucent.com>
50983
50984         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
50985
50986 2001-09-23  Jim Meyering  <meyering@lucent.com>
50987
50988         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
50989         instead of the mere test for existence of mntent.h.  The latter
50990         would get a false-positive on AIX 3.4 systems.
50991         In the outer getmntent if-block, don't die if neither of the getmntent
50992         tests succeeds.  Instead, just fall through and continue with the
50993         remaining tests.
50994
50995 2001-09-23  Jim Meyering  <meyering@lucent.com>
50996
50997         * lib/mountlist.c: Remove useless parentheses in #if directives.
50998         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
50999         the deprecated MOUNTED symbol is no longer defined in mntent.h.
51000
51001 2001-09-22  Jim Meyering  <meyering@lucent.com>
51002
51003         * m4/gettext.m4: New file.  From gettext.
51004         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
51005         * m4/progtest.m4: Likewise
51006         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
51007         * m4/glibc21.m4: Likewise.
51008
51009         * m4/libintl.m4: Remove.  No longer used.
51010
51011 2001-09-22  Jim Meyering  <meyering@lucent.com>
51012
51013         * lib/localcharset.c: Update from latest gettext.
51014         * lib/config.charset: Likewise.
51015
51016 2001-09-20  Jim Meyering  <meyering@lucent.com>
51017
51018         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
51019         strtoimax.
51020         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
51021         strtoumax.
51022
51023 2001-09-20  Jim Meyering  <meyering@lucent.com>
51024
51025         * lib/xstrtol.c (strtoimax): Guard declaration with
51026         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
51027         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
51028         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
51029         (strtoumax): Likewise, for completeness (it wasn't necessary).
51030
51031 2001-09-17  Paul Eggert  <eggert@twinsun.com>
51032
51033         * lib/strtoimax.c (HAVE_LONG_LONG):
51034         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
51035         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
51036         to work around bug in IBM C compiler.
51037
51038 2001-09-17  Jim Meyering  <meyering@lucent.com>
51039
51040         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
51041         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
51042         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
51043         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
51044         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
51045         whenever the right hand side need not be expanded by the shell.
51046
51047 2001-09-16  Paul Eggert  <eggert@twinsun.com>
51048
51049         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
51050         library.  It's not correct, as some older glibcs are buggy.
51051         fnmatch wasn't fixed until glibc 2.2.
51052
51053         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
51054         special shell magic here.
51055
51056 2001-09-16  Jim Meyering  <meyering@lucent.com>
51057
51058         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
51059         * m4/jm-macros.m4: Require it.
51060
51061 2001-09-16  Jim Meyering  <meyering@lucent.com>
51062
51063         * lib/mkdir.c: New file.
51064
51065 2001-09-15  Jim Meyering  <meyering@lucent.com>
51066
51067         * m4/jm-macros.m4: Check for help2man.
51068
51069 2001-09-11  Jim Meyering  <meyering@lucent.com>
51070
51071         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
51072         The body, by Paul Eggert, was moved here from configure.in.
51073         * m4/jm-macros.m4: Require UTILS_HOST_OS.
51074
51075 2001-09-04  Paul Eggert  <eggert@twinsun.com>
51076
51077         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
51078         (jm_PREREQ): Use it.
51079
51080 2001-09-04  Paul Eggert  <eggert@twinsun.com>
51081
51082         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
51083         Use ssize_t, not int, to store result of readlink.
51084         Check for ssize_t overflow as well as size_t overflow,
51085         as POSIX says the result of readlink is implementation-defined
51086         when ssize_t overflows.
51087         Remove unnecessary cast to char*.
51088         Use free+malloc instead of realloc, as the storage doesn't need
51089         to be preserved and it's clearer and can be more efficient that way.
51090         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
51091         * lib/xreadlink.h (xreadlink): Update prototype.
51092
51093 2001-09-04  Paul Eggert  <eggert@twinsun.com>
51094
51095         * lib/xgetcwd.c: Revert some of the previous change; intead,
51096         fix the HAVE_GETCWD_NULL code to behave more like the
51097         !HAVE_GETCWD_NULL code used to.
51098
51099         Include "xalloc.h".
51100         (xgetcwd): Do not return NULL when memory is exhausted; instead,
51101         invoke xalloc_die.
51102
51103 2001-09-03  Paul Eggert  <eggert@twinsun.com>
51104
51105         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
51106         sys/param.h, as pathmax.h includes them.
51107
51108 2001-09-03  Paul Eggert  <eggert@twinsun.com>
51109
51110         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
51111         (jm_PREREQ_XGETCWD): New macro.
51112
51113         * m4/getcwd.m4: New file.
51114
51115 2001-09-03  Paul Eggert  <eggert@twinsun.com>
51116
51117         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
51118         like the HAVE_GETCWD_NULL code.
51119         Include pathmax.h if not HAVE_GETCWD.
51120         Do not include xalloc.h.
51121         (INITIAL_BUFFER_SIZE): New symbol.
51122         Do not use xmalloc / xrealloc, since the caller is responsible for
51123         handling errors.  Preserve errno around `free' during failure.
51124         Do not overrun buffer when using getwd.
51125
51126 2001-09-03  Paul Eggert  <eggert@twinsun.com>
51127
51128         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
51129         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
51130         getcwd (NULL, 0).
51131
51132 2001-09-03  Paul Eggert  <eggert@twinsun.com>
51133
51134         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
51135         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
51136         spotted by Jim Meyering.
51137
51138 2001-09-03  Jim Meyering  <meyering@lucent.com>
51139
51140         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
51141         failure.
51142
51143 2001-09-02  Jim Meyering  <meyering@lucent.com>
51144
51145         * lib/error.c: Update from GNU libc.
51146
51147 2001-09-01  Jim Meyering  <meyering@lucent.com>
51148
51149         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
51150         Used by df.
51151
51152 2001-09-01  Jim Meyering  <meyering@lucent.com>
51153
51154         * lib/xreadlink.c: New file.
51155         * lib/xreadlink.h: New file.
51156         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
51157         xreadlink.h.
51158
51159         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
51160         doesn't conflict with sparc Solaris 7's definition in
51161         /usr/include/sys/int_types.h.
51162
51163         * lib/exclude.c: Use `""', not `<>' to #include non-system header
51164         files.
51165         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
51166         and strncasecmp as r-values.  Unixware didn't have declarations.
51167
51168 2001-08-31  Paul Eggert  <eggert@twinsun.com>
51169
51170         * lib/xstrtol.h: Add copyright notice.
51171         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
51172         LONGINT_INVALID_SUFFIX_CHAR.
51173
51174 2001-08-31  Paul Eggert  <eggert@twinsun.com>
51175
51176         * lib/xstrtol.c (strtoimax): New decl.
51177
51178 2001-08-31  Paul Eggert  <eggert@twinsun.com>
51179
51180         * lib/xgetcwd.c: Don't include pathmax.h.
51181         Include stdlib.h and unistd.h if available.
51182         Include xalloc.h.
51183         (xmalloc, xstrdup, free): Remove decls.
51184         (xgetcwd): Don't assume sizes fit in unsigned.
51185         Check for overflow when computing sizes.
51186         Simplify reallocation code.
51187
51188 2001-08-31  Paul Eggert  <eggert@twinsun.com>
51189
51190         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
51191         a directory's st_size can have an arbitrary value, so the old
51192         usage could waste an arbitrary amount of memory.  All uses
51193         changed.
51194         * lib/savedir.h: Update prototype.
51195
51196 2001-08-31  Paul Eggert  <eggert@twinsun.com>
51197
51198         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
51199
51200         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
51201         old strtoimax.c.
51202
51203         Also, make the following further changes to make this file's
51204         configuration more similar to that of strtol.c:
51205         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
51206         (strtoumax, uintmax_t, strtoull, strtol): Remove.
51207         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
51208         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
51209         changed to signed values.
51210
51211         And make the following changes as well:
51212         Fix copyright notice, as 1999 was missing.
51213         (verify): New macro.
51214         (strtoimax): Check sizes at compile-time, not run-time.
51215         Prefer strtol to strtoll if both work.
51216         (main): Remove; it was not that useful and was a pain to maintain.
51217
51218         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
51219
51220 2001-08-31  Jim Meyering  <meyering@lucent.com>
51221
51222         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
51223         Use an initial, malloc'd, buffer of length 128 rather than
51224         a statically allocated one of length 1024.
51225
51226 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51227
51228         Simplify code, partly by assuming autoconf 2.52 semantics.
51229
51230         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
51231
51232         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
51233         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
51234         All uses removed.
51235         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
51236         Move AC_REQUIRE to next-to-top level, to avoid confusion.
51237         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
51238         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
51239         jm_AC_HEADER_INTTYPES_H.
51240         * m4/jm-macros.m4 (jm_MACROS): Likewise.
51241
51242         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
51243
51244         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
51245         Quote first arg of AC_DEFUN.
51246         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
51247         since they are needed to parse the include file even if we need
51248         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
51249         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
51250         but with opposite signedness.
51251
51252 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51253
51254         Merge 'exclude' changes from tar 1.13.22.
51255         This fixes one or two unlikely storage allocation overflow bugs,
51256         but doesn't change user-visible behavior otherwise.
51257
51258 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51259
51260         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
51261         (jm_PREREQ_EXCLUDE): New macro.
51262
51263 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51264
51265         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
51266         tm to be declared.
51267
51268 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51269
51270         * lib/hash.c: Remove '2001' from copyright notice.
51271
51272 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51273
51274         * lib/full-write.h: New file.
51275         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
51276         * lib/full-write.c: Correct credits, as cccp.c no longer
51277         exists and anyway it was so heavily changed from the old cccp
51278         code as to be unrecognizable.  Include full-write.h.
51279         (full_write) Return size_t, with short writes meaning failure.
51280         All callers changed.  This fixes a bug with large buffers
51281         on 64-bit hosts.
51282         * lib/utime.c: Include full-write.h.
51283
51284 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51285
51286         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
51287         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
51288         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
51289         Include if available.
51290         (<xalloc.h>): Include
51291         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
51292         (verify): New macro.  Use it to verify that EXCLUDE macros do not
51293         collide with FNM macros.
51294         (struct patopts): New struct.
51295         (struct exclude): Use it, as exclude patterns now come with options.
51296         (new_exclude): Support above changes.
51297         (new_exclude, add_exclude_file):
51298         Initial size must now be a power of two to simplify overflow checking.
51299         (free_exclude, fnmatch_no_wildcards): New function.
51300         (excluded_filename): No longer requires options arg, as the options
51301         are determined by add_exclude.  Now returns bool, not int.
51302         (excluded_filename, add_exclude):
51303         Add support for the fancy new exclusion options.
51304         (add_exclude, add_exclude_file): Now takes int options arg.
51305         Check for arithmetic overflow when computing sizes.
51306         (add_exclude_file): xrealloc might modify errno, so don't
51307         realloc until after errno might be used.
51308
51309         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
51310         New macros.
51311         (free_exclude): New decl.
51312         (add_exclude, add_exclude_file): Now takes int options arg.
51313         (excluded_filename): No longer requires options arg, as the options
51314         are determined by add_exclude.  Now returns bool, not int.
51315
51316 2001-08-30  Paul Eggert  <eggert@twinsun.com>
51317
51318         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
51319
51320 2001-08-27  Jim Meyering  <meyering@lucent.com>
51321
51322         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
51323
51324         * lib/version-etc.c (N_): Remove definition.
51325         Revert most of last change.
51326         Instead, simply don't mark the `Copyright...' string for translation.
51327         Based on advice from Paul Eggert.
51328
51329         * lib/strtoxmax.c: Tweak comment.
51330
51331 2001-08-26  Jim Meyering  <meyering@lucent.com>
51332
51333         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
51334
51335         * m4/xstrtoimax.m4: New file.
51336         * m4/xstrtoumax.m4: Add comments explaining why we
51337         AC_REPLACE_FUNCS(strtol).
51338
51339 2001-08-26  Jim Meyering  <meyering@lucent.com>
51340
51341         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
51342         of copyright with `%s' so translators don't get an untranslated
51343         message in 2002.
51344         (COPYRIGHT_YEAR): Define.
51345         (version_etc): Use fprintf rather than fputs.
51346         Suggestion from Ulrich Drepper.
51347
51348         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
51349
51350         * lib/strtoll.c: New file, from GNU libc.
51351         * lib/xstrtoimax.c: New file.
51352
51353         * lib/xstrtol.h: Add xstrtoimax.
51354         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
51355         * lib/strtoimax.c: New file.  Likewise, but first define
51356         STRTOUXMAX_SIGNED.
51357
51358         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
51359         ...
51360         * lib/strtoxmax.c: ... then renamed to this.
51361
51362 2001-08-18  Paul Eggert  <eggert@twinsun.com>
51363
51364         * m4/inttypes.m4: Add AC_PREREQ(2.13).
51365         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
51366         (jm_AC_TYPE_INTMAX_T): New macro.
51367         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
51368
51369         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
51370
51371         * m4/longlong.m4: Renamed from ulonglong.m4.
51372         * m4/inttypes.m4: Renamed from inttypes_h.m4.
51373         * m4/uintmax_t.m4: Removed.
51374
51375 2001-08-13  Paul Eggert  <eggert@twinsun.com>
51376
51377         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
51378         Port to Solaris 8, where 'sed' requires a space after the 'r'
51379         command, and where sh dislikes "$/".  Clean up the spacing a bit.
51380         Redirect output to $tmp just once.
51381
51382 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
51383
51384         * lib/addext.c (<errno.h>): Include.
51385         (errno): Declare if not defined.
51386         (addext): Work correctly when pathconf returns -1 and leaves
51387         errno alone because there is no limit.  Also, work even if
51388         pathconf returns a value greater than SIZE_MAX.
51389
51390 2001-08-12  Jim Meyering  <meyering@lucent.com>
51391
51392         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
51393         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
51394         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
51395         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
51396         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
51397         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
51398         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
51399         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
51400         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
51401         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
51402         utime.m4, utimes.m4, xstrtoumax.m4:
51403         Quote the first argument in each use of AC_DEFUN.
51404
51405 2001-08-12  Jim Meyering  <meyering@lucent.com>
51406
51407         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
51408         Simply `return getcwd (NULL, 0);'.
51409         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
51410         Use 1300 as initial value for length, not PATH_MAX.
51411
51412         * lib/pathmax.h: Clean up cpp syntax.
51413
51414 2001-08-12  Jim Meyering  <meyering@lucent.com>
51415
51416         * lib/gettimeofday.c: New file.
51417         * lib/gtod.h: New file.
51418         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
51419
51420 2001-08-05  Jim Meyering  <meyering@lucent.com>
51421
51422         * m4/jm-macros.m4: Require autoconf-2.52.
51423
51424 2001-08-04  Jim Meyering  <meyering@lucent.com>
51425
51426         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
51427         stmt, to get in sync with glibc.
51428
51429 2001-08-03  Paul Eggert  <eggert@twinsun.com>
51430
51431         The following changes are from gettext 0.10.39 as maintained by
51432         Bruno Haible.
51433
51434         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
51435         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
51436         with inverted sense.  All uses changed.
51437
51438         * lib/mbswidth.c: Don't include <limits.h>.
51439         Include <stdlib.h> and <string.h> unconditionally.
51440         (iswcntrl, mbsinit, ISCNTRL): New macros.
51441         (mbsnwidth): Use K&R style function declarations.
51442         Don't bother checking for MB_LEN_MAX == 1, since the compiler
51443         can optimize it when MB_CUR_MAX == 1.
51444         The width of control characters is zero, not 1.
51445
51446 2001-08-03  Paul Eggert  <eggert@twinsun.com>
51447
51448         The following changes are from gettext 0.10.39 as maintained by
51449         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
51450
51451         * m4/codeset.m4: Upgrade to serial AM1.
51452         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
51453         all uses changed.  Quote first arg of AC_DEFUN.
51454         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
51455
51456         * m4/iconv.m4: Upgrade to serial AM2.
51457         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
51458         Add --with-libconv-prefix.
51459         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
51460         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
51461         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
51462         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
51463         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
51464
51465         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
51466         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
51467         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
51468         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
51469         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
51470         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
51471         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
51472         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
51473         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
51474
51475         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
51476         string.h any more.
51477
51478         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
51479         not the default value.
51480
51481         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
51482         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
51483         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
51484         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
51485         Also check for iswcntrl, used for wcwidth fallback.
51486         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
51487         to Autoconf 2.13.
51488
51489 2001-08-03  Jim Meyering  <meyering@lucent.com>
51490
51491         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
51492         as it was in the original.  Reported by Paul Eggert.
51493
51494 2001-07-16  Jim Meyering  <meyering@lucent.com>
51495
51496         * m4/gettimeofday.m4: New file.
51497         Prompted by a report from Bernhard Baehr.
51498
51499 2001-07-15  Jim Meyering  <meyering@lucent.com>
51500
51501         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
51502         stuff. Now it's in ../Makefile.cfg.
51503
51504 2001-07-15  Jim Meyering  <meyering@lucent.com>
51505
51506         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
51507         (BUILT_SOURCES): Add unlocked-io.h.
51508         (io_functions): Define.
51509         (unlocked-io.h): New rule.
51510         (DISTCLEANFILES): Add unlocked-io.h.
51511         (all-local): Depend on unlocked-io.h, to ensure it is created.
51512
51513         * lib/unlocked-io.hin: New file
51514
51515         * lib/regex.c: Update from glibc.
51516
51517 2001-07-05  Jim Meyering  <meyering@lucent.com>
51518
51519         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
51520         recommendation.
51521         (libfetish_a_SOURCES): Put all .h files here instead.
51522         Remove a thus-exposed (better checks in automake) duplicate and
51523         two unnecessary .h files.
51524
51525 2001-07-04  Jim Meyering  <meyering@lucent.com>
51526
51527         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
51528         that generates jm-glibc-io.m4 so that it doesn't trigger any make
51529         distcheck failure.
51530
51531 2001-07-02  Jim Meyering  <meyering@lucent.com>
51532
51533         The following changes were prompted by suggestions from Bruno Haible.
51534
51535         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
51536         is now generated.
51537         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
51538         definition of EXTRA_DIST.
51539         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
51540         ensure that the generated file is created/updated whenever the list
51541         of $(unlocked_functions) is changed.
51542         (jm-glibc-io.m4): New rule.
51543         (unlocked-io.h): New rule -- currently unused.
51544
51545 2001-06-24  Jim Meyering  <meyering@lucent.com>
51546
51547         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
51548         unmatched right bracket, rather than kludging it with an extra,
51549         falsely-matching quote in a comment.  Patch by Akim Demaille.
51550
51551 2001-06-11  Jim Meyering  <meyering@lucent.com>
51552
51553         * lib/regex.c: Update from GNU libc.
51554
51555 2001-05-27  Jim Meyering  <meyering@lucent.com>
51556
51557         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
51558         Check for ut_type in struct utmp.
51559
51560 2001-05-27  Jim Meyering  <meyering@lucent.com>
51561
51562         * lib/readutmp.h (UT_TYPE): Define.
51563
51564 2001-05-24  Jim Meyering  <meyering@lucent.com>
51565
51566         * lib/argmatch.c: Include "quote.h".
51567         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
51568         quote function.  Reported by Göran Uddeborg.
51569
51570 2001-05-22  Jim Meyering  <meyering@lucent.com>
51571
51572         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
51573         now that we use the package-supplied version unconditionally.
51574         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
51575
51576 2001-05-21  Jim Meyering  <meyering@lucent.com>
51577
51578         * m4/regex.m4: Change a couple backticks to single quotes to avoid
51579         shell syntax errors.
51580
51581 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
51582
51583         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
51584
51585 2001-05-20  Paul Eggert  <eggert@twinsun.com>
51586
51587         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
51588         Don't bother to check library strftime, since
51589         we'll be using our own my_strftime function anyway.
51590         Define my_strftime instead of strftime.
51591
51592 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
51593
51594         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
51595         which is not yet declared.
51596
51597 2001-05-15  Jim Meyering  <meyering@lucent.com>
51598
51599         * m4/regex.m4: Use proper quoting so brackets appear in the test
51600         program.
51601         Reported by, and with help from, Bruno Haible.
51602
51603 2001-05-13  Jim Meyering  <meyering@lucent.com>
51604
51605         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
51606         undefined.
51607
51608 2001-05-11  Paul Eggert  <eggert@twinsun.com>
51609
51610         dirname code cleanup.  base_name now behaves more compatibly
51611         with POSIX basename when given file names that have trailing
51612         slashes, and similarly for dir_name.  Add new primitives
51613         base_len and dir_len.  Put the directory-name-related decls
51614         into dirname.h.
51615
51616         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
51617         * lib/backupfile.c (base_name): Likewise.
51618         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
51619         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
51620         * lib/makepath.c (strip_trailing_slashes): Likewise.
51621         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
51622         ISSLASH): Likewise.
51623         * lib/rename.c (strip_trailing_slashes): Likewise.
51624         * lib/same.c (base_name): Likewise.
51625         * lib/stripslash.c (ISSLASH): Likewise.
51626
51627         * lib/addext.c: Include <dirname.h> after size_t is defined.
51628         * lib/backupfile.c: Likewise.
51629
51630         * lib/addext.c (addext): Use base_len to trim redundant
51631         trailing slashes instead of doing it ourselves.
51632         But do not trim the last slash if it is not redundant.
51633
51634         * lib/backupfile.c (find_backup_file_name,
51635         max_backup_version): Use base_len instead of rolling it ourselves.
51636         Handle the case of "" and (on DOS) "C:" correctly.
51637
51638         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
51639         needed. Include <string.h>, <dirname.h>.
51640         (base_name): Allow file names ending in slashes, other than names
51641         that are all slashes.  In this case, return the basename followed
51642         by the slashes.  This is more general, and can be used in places
51643         where the original base_name purposely had an assertion failure.
51644         (base_len): New function.
51645
51646         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
51647         Do not include <assert.h>; no longer needed.
51648         Include xalloc.h.
51649         (memrchr): Remove decl.
51650         (dir_name_r): Remove.
51651         (dir_len): Renamed from dirlen.  All callers changed.
51652         Rewrite in terms of base_name, for simplicity and consistency.
51653         (dir_name): Never return NULL.  All callers changed.
51654         Do not include <stdlib.h> in test program; no longer needed.
51655         return 0; is fine for test program.
51656
51657         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
51658         New macros.
51659         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
51660
51661         * lib/path-concat.c (path_concat): Use base_len to compute
51662         base length, not strlen; this means we cannot rely on memcpy
51663         to null-terminate.
51664
51665         * lib/same.c (STREQ): Remove.
51666         (same_name): Handle the case where the basename ends in trailing '/'.
51667
51668         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
51669         a slash was stripped.  Do not strip the last slash after a
51670         file system prefix.
51671
51672 2001-05-11  Paul Eggert  <eggert@twinsun.com>
51673
51674         * lib/Makefile.am (libfetish_a_SOURCES):
51675         Add strftime.c, since we now compile it on all hosts.
51676
51677         * lib/strftime.c (my_strftime):
51678         Define to nstrftime if emacs, but only if my_strftime is not defined.
51679         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
51680         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
51681         Add one more extra argument: a nanoseconds value.
51682         All uses changed.
51683         (ns): New macro.
51684         (my_strftime function): Add %N format.
51685         (emacs_strftimeu): Renamed from emacs_strftime,
51686         with extra ut argument.
51687
51688 2001-05-09  Paul Eggert  <eggert@twinsun.com>
51689
51690         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
51691
51692 2001-04-21  Jim Meyering  <meyering@lucent.com>
51693
51694         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
51695         doesn't interfere.
51696
51697 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
51698
51699         * m4/ftruncate.m4: Check for chsize.
51700         Link with ftruncate.o unconditionally if ftruncate is missing.
51701         This was required when cross-compiling to i586-mingw32msvc.
51702
51703 2001-04-08  Jim Meyering  <meyering@lucent.com>
51704
51705         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
51706         recomputed; that's necessary when the offset spans a DST transition.
51707         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
51708
51709 2001-04-02  Jim Meyering  <meyering@lucent.com>
51710
51711         * lib/regex.h, regex.c: Update from GNU libc.
51712
51713 2001-03-24  Jim Meyering  <meyering@lucent.com>
51714
51715         * m4/jm-macros.m4: Require autoconf-2.49d.
51716
51717 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
51718
51719         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
51720
51721 2001-03-19  Paul Eggert  <eggert@twinsun.com>
51722
51723         * lib/version-etc.c (version_etc_copyright): Update to 2001.
51724
51725 2001-03-17  Jim Meyering  <meyering@lucent.com>
51726
51727         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
51728         now that the version in autoconf is equivalent.
51729         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
51730
51731         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
51732         Suggestion from Akim Demaille.
51733
51734         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
51735         (jm_PREREQ_TEMPNAME): New function.
51736
51737 2001-03-16  Paul Eggert  <eggert@twinsun.com>
51738
51739         * lib/tempname.c (uint64_t): Define to uintmax_t if
51740         not defined, and if UINT64_MAX is not defined.
51741         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
51742         Reported by John David Anglin.
51743
51744 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
51745
51746         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
51747         resolve alias if codeset is empty.
51748         * lib/config.charset (BeOS): Use wildcard syntax.
51749
51750 2001-03-13  Jim Meyering  <meyering@lucent.com>
51751
51752         * lib/path-concat.c (path_concat)
51753         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
51754         concatenating e.g., `C:' and `foo'.
51755         From Bruno Haible.
51756
51757 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
51758
51759         * lib/localcharset.c (locale_charset): Don't use
51760         setlocale(LC_CTYPE,NULL). Don't return NULL.
51761         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
51762
51763 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
51764
51765         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
51766         support for DOS/DJGPP.
51767
51768 2001-03-01  Paul Eggert  <eggert@twinsun.com>
51769
51770         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
51771         lacks mkstemp.  Compile our own tempname.c if we compile our own
51772         mkstemp.c, as mkstemp relies on tempname.
51773
51774 2001-03-01  Jim Meyering  <meyering@lucent.com>
51775
51776         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
51777         AH_VERBATIM really does output its argument verbatim.
51778
51779 2001-02-28  Paul Eggert  <eggert@twinsun.com>
51780
51781         * lib/Makefile.am (libfetish_a_SOURCES):
51782         Add dup-safer.c, fopen-safer.c.
51783         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
51784
51785         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
51786         * lib/unistd-safer.h: New files.
51787
51788 2001-02-25  Paul Eggert  <eggert@twinsun.com>
51789
51790         The mkstemp replacement is taken from glibc 2.2.2, with some
51791         portability fixes for use outside glibc, as follows:
51792
51793         * lib/tempname.c (struct_stat64): New macro.
51794         (direxists, __gen_tempname): Use it.
51795         This avoids a portability problem with Solaris 8.
51796
51797         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
51798         (<stddef.h>, <stdint.h>, <string.h>):
51799         Include only if STDC_HEADERS || _LIBC.
51800         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
51801         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
51802         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
51803         (__set_errno): Define this macro if <errno.h> doesn't.
51804         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
51805         Define these macros if <stdio.h> doesn't.
51806         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
51807         Define these macros if <sys/stat.h>
51808         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
51809         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
51810         __xstat64): Define if not _LIBC.
51811         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
51812         (__gen_tempname): Invoke gettimeofday only if
51813         HAVE_GETTIMEOFDAY || _LIBC;
51814         otherwise, fall back on plain "time".
51815         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
51816
51817         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
51818
51819         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
51820
51821 2001-02-18  Paul Eggert  <eggert@twinsun.com>
51822
51823         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
51824
51825 2001-02-17  Paul Eggert  <eggert@twinsun.com>
51826
51827         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
51828         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
51829         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
51830         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
51831
51832 2001-02-17  Paul Eggert  <eggert@twinsun.com>
51833
51834         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
51835         Remove workaround macros for hosts that have mbrtowc but not
51836         mbstate_t, as we now insist on proper declarations for both
51837         before using mbrtowc.
51838
51839 2001-02-17  Jim Meyering  <meyering@lucent.com>
51840
51841         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
51842         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
51843         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
51844         UnixWare 7.1.1.
51845
51846         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
51847         rather than AC_CACHE_VAL.
51848
51849 2001-02-17  Jim Meyering  <meyering@lucent.com>
51850
51851         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
51852         around included file name.
51853
51854         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
51855
51856         * lib/strftime.c: Update from GNU libc (the only changes were to
51857         comments).
51858
51859 2001-02-17  Jim Meyering  <meyering@lucent.com>
51860
51861         * lib/regex.c: Update from libc.
51862
51863 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
51864
51865         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
51866         clash.
51867
51868 2001-02-16  Paul Eggert  <eggert@twinsun.com>
51869
51870         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
51871         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
51872         Reported by Mark Hounschell via Paul Eggert.
51873
51874 2001-02-07  Jim Meyering  <meyering@lucent.com>
51875
51876         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
51877
51878 2001-02-05  Jim Meyering  <meyering@lucent.com>
51879
51880         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
51881         it includes the patch required for `large file' support with at least
51882         HP-UX's 10.20 /bin/cc.
51883
51884 2001-02-03  Jim Meyering  <meyering@lucent.com>
51885
51886         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
51887         AS_IF, now that it works once again (mysteriously).
51888         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
51889
51890 2001-01-30  Jim Meyering  <meyering@lucent.com>
51891
51892         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
51893         * m4/chown.m4: Rename conftestchown to conftest.chown.
51894         * m4/rename.m4: s/conftestdir/conftest.d1/ and
51895         s/conftestdir2/conftest.d2/.
51896         * m4/utimes.m4: s/conftestdata/conftest.data/
51897         Inspired by Pavel Roskin's change in autoconf.
51898
51899 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
51900
51901         * lib/config.charset: Update for FreeBSD 4.2.
51902
51903 2001-01-27  Jim Meyering  <meyering@lucent.com>
51904
51905         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
51906         a use of AS_IF.
51907         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
51908
51909 2001-01-26  Jim Meyering  <meyering@lucent.com>
51910
51911         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
51912         quotearg.c includes it.
51913
51914 2001-01-26  Jim Meyering  <meyering@lucent.com>
51915
51916         * lib/quotearg.c: Include stddef.h.
51917         * lib/quote.c: Include stddef.h.
51918         Reported by Axel Kittenberger.
51919
51920         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
51921         line in double quotes so that it evokes a better diagnostic.
51922         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
51923         Reported by Axel Kittenberger.
51924
51925 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
51926
51927         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
51928         as if it was a `charset'.
51929
51930 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
51931
51932         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
51933         has const.
51934
51935 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
51936
51937         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
51938         to avoid a warning.  Add back 'const' to inptr.
51939
51940 2001-01-20  Jim Meyering  <meyering@lucent.com>
51941
51942         Be sure that headers are checked before used in code compiled
51943         for the type checks.
51944         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
51945         In place of that, invoke jm_CHECK_ALL_TYPES.
51946         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
51947         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
51948         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
51949         The check for ssize_t was mistakenly run before the test for unistd.h.
51950
51951         The configure-time check for stdbool.h was missing.
51952         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
51953         (jm_PREREQ_HASH): New function.
51954
51955 2001-01-17  Jim Meyering  <meyering@lucent.com>
51956
51957         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
51958         for autoconf-2.49c.
51959         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
51960
51961 2001-01-16  Jim Meyering  <meyering@lucent.com>
51962
51963         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
51964         From Bruno Haible.
51965
51966 2001-01-14  Jim Meyering  <meyering@lucent.com>
51967
51968         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
51969         foo and bar.  Create conftestdir/ in the script, not in the C code.
51970         Remove directories in the script, not in the C code.
51971         Remove conftestdir{,2} before trying to create the directory.
51972         Make the entire configure script fail if the mkdir fails.
51973
51974 2001-01-14  Jim Meyering  <meyering@lucent.com>
51975
51976         * lib/rename.c: New file.  From Volker Borchert.
51977         Include stdlib.h, string.h or strings.h, and xalloc.h.
51978         Use strip_trailing_slashes rather than open-coding it.
51979
51980 2001-01-03  Paul Eggert  <eggert@twinsun.com>
51981
51982         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
51983
51984 2001-01-03  Jim Meyering  <meyering@lucent.com>
51985
51986         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
51987         of local `inptr' to avoid warning with some system declarations of
51988         iconv.
51989
51990 2001-01-02  Volker Borchert  <bt@teknon.de>
51991
51992         * m4/rename.m4: New file.
51993         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
51994
51995 2001-01-01  Jim Meyering  <meyering@lucent.com>
51996
51997         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
51998         even on systems with utmpx.h.  It's necessary for the declaration of
51999         utmp's ut_user member.  Reported by Andreas Jaeger.
52000
52001         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
52002         available. They are required for the declarations of getgrgid and
52003         getpwuid resp.
52004         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
52005         Reported by Andreas Jaeger.
52006
52007 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
52008
52009         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
52010         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
52011         so `make install' also works in VPATH builds.
52012
52013 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
52014
52015         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
52016         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
52017         can be used in subdirectories.
52018
52019 2000-12-29  Paul Eggert  <eggert@twinsun.com>
52020
52021         * lib/modechange.c: Do not assume that mode_t uses the
52022         traditional octal encoding.  E.g. "chmod 1 FOO" should set
52023         the other-execute bit of FOO even if S_IXOTH != 1.
52024
52025         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
52026         WOTH, XOTH, ALLM): New macros.
52027         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
52028          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
52029         Use them.
52030         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
52031         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
52032         (mode_compile):
52033         No need to use uintmax_t; unsigned long is long enough.
52034         Don't bother to get suffix since we don't use it.
52035
52036 2000-12-26  Jim Meyering  <meyering@lucent.com>
52037
52038         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
52039         better with autoheader.
52040
52041 2000-12-24  Jim Meyering  <meyering@lucent.com>
52042
52043         * lib/hash.c (is_prime): Return explicit boolean values.
52044         (hash_get_first): Return NULL to appease Irix5.6's 89.
52045         Reported by Nelson Beebe.
52046
52047 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
52048
52049         * lib/localcharset.c (locale_charset): Add support for Win32.
52050
52051 2000-12-18  Paul Eggert  <eggert@twinsun.com>
52052
52053         * lib/physmem.h, lib/physmem.c: New files.
52054
52055         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
52056         (noinst_HEADERS): Add physmem.h.
52057
52058         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
52059         't' for compatibility with Solaris 8 sort.
52060
52061 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
52062
52063         * lib/config.charset: Add support for BeOS.
52064
52065 2000-12-17  Jim Meyering  <meyering@lucent.com>
52066
52067         * m4/dos.m4 (jm_AC_DOS): New file and macro.
52068         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
52069
52070 2000-12-16  Jim Meyering  <meyering@lucent.com>
52071
52072         This bug had a serious impact on chown: `chown N:M FILE' (for integer
52073         N and M) would have treated it like `chown N:N FILE'.
52074
52075         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
52076
52077 2000-12-16  Jim Meyering  <meyering@lucent.com>
52078
52079         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
52080         SHELLS_FILE to a file name that's useful on djgpp systems.
52081         Include stdlib.h.
52082         (ADDITIONAL_DEFAULT_SHELLS): Define.
52083         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
52084         Based mostly on a patch from Prashant TR.
52085
52086 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
52087
52088         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
52089         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
52090         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
52091
52092 2000-12-08  Andreas Schwab  <schwab@suse.de>
52093
52094         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
52095         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
52096
52097 2000-12-07  Jim Meyering  <meyering@lucent.com>
52098
52099         * lib/stripslash.c (ISSLASH): Define.
52100         (strip_trailing_slashes): Use ISSLASH rather than comparing against
52101         `/'.
52102         From Prashant TR.
52103
52104         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
52105         (dir_name_r): Declare this function as static.
52106         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
52107         manifest itself on a name containing a mix of slashes and
52108         backslashes.
52109         Make this function work with names starting with a DOS-style
52110         drive letter and colon prefix.
52111         (dir_name): Append `.' if necessary.
52112         Based mostly on patches from Prashant TR and Eli Zaretskii.
52113
52114         * lib/dirname.h (dir_name_r): Remove prototype.
52115
52116 2000-12-06  Paul Eggert  <eggert@twinsun.com>
52117
52118         * m4/off_t-format.m4: Remove this file.
52119         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
52120
52121 2000-12-06  Jim Meyering  <meyering@lucent.com>
52122
52123         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
52124         replacement strtoull, we may well need the replacement strtoul, too.
52125         Check for declarations of strtoul and strtoull.
52126         Check for strtol.  Mainly as a cue to cause automake to include
52127         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
52128         Check for limits.h -- strtol.c needs it.
52129
52130 2000-12-05  Jim Meyering  <meyering@lucent.com>
52131
52132         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
52133
52134 2000-12-04  Jim Meyering  <meyering@lucent.com>
52135
52136         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
52137         Also include memory.h, stdlib.h, unistd.h if appropriate.
52138         Reported by Andreas Jaeger (conflicting declaration of malloc).
52139
52140 2000-12-02  Jim Meyering  <meyering@lucent.com>
52141
52142         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
52143         * m4/jm-macros.m4 (jm_MACROS): require it.
52144
52145 2000-12-02  Jim Meyering  <meyering@lucent.com>
52146
52147         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
52148
52149 2000-12-01  Paul Eggert  <eggert@twinsun.com>
52150
52151         * lib/memrchr.c: Include <config.h> before any system include file.
52152
52153 2000-11-30  Jim Meyering  <meyering@lucent.com>
52154
52155         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
52156
52157 2000-11-30  Jim Meyering  <meyering@lucent.com>
52158
52159         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
52160
52161 2000-11-29  Paul Eggert  <eggert@twinsun.com>
52162
52163         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
52164
52165 2000-11-26  Jim Meyering  <meyering@lucent.com>
52166
52167         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
52168
52169 2000-11-22  Paul Eggert  <eggert@twinsun.com>
52170
52171         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
52172         size of (size_t) -1; it's not portable.
52173
52174 2000-11-17  Jim Meyering  <meyering@lucent.com>
52175
52176         * lib/strstr.c: Update from GNU libc.
52177
52178 2000-11-17  Akim Demaille  <akim@epita.fr>
52179
52180         * lib/obstack.h: Formatting changes.
52181         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
52182         prevent type checking.
52183         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
52184         cast the value to (void *): assigning a `foo *' to a `void *'
52185         variable is valid.
52186         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
52187
52188 2000-11-16  Jim Meyering  <meyering@lucent.com>
52189
52190         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
52191
52192 2000-11-11  Jim Meyering  <meyering@lucent.com>
52193
52194         * lib/error.c: Add a couple #includes, merging from GNU libc version.
52195
52196 2000-11-10  Jim Meyering  <meyering@lucent.com>
52197
52198         * lib/obstack.h: Update from GNU libc.
52199         * lib/obstack.c: Likewise.
52200
52201 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
52202
52203         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
52204
52205 2000-11-06  Paul Eggert  <eggert@twinsun.com>
52206
52207         * lib/getusershell.c (setusershell): Use rewind rather than
52208         fseek/fseeko, to avoid configuration hassles with fseeko.
52209         Don't bother opening SHELLS_FILE if shellstream is NULL;
52210         it's not necessary.
52211
52212 2000-11-05  Jim Meyering  <meyering@lucent.com>
52213
52214         * lib/makepath.h (make_dir): Declare.
52215         * lib/makepath.c (make_dir): Remove `static' attribute.
52216         Tweak a comment.
52217
52218 2000-11-04  Jim Meyering  <meyering@lucent.com>
52219
52220         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
52221
52222 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
52223
52224         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
52225         last one in a bucket, advance to the next bucket.
52226
52227 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
52228
52229         * lib/fnmatch.c: Do not comment out all the code if we are using
52230         the GNU C library, because in some cases we are replacing buggy
52231         code in the GNU C library itself.
52232
52233 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
52234
52235         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
52236         (regex_compile): Catch bogus \(\1\).
52237
52238 2000-10-30  Paul Eggert  <eggert@twinsun.com>
52239
52240         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
52241         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
52242         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
52243
52244 2000-10-30  Paul Eggert  <eggert@twinsun.com>
52245
52246         * lib/error.h, getline.h, modechange.h:
52247         Remove "2000" from Copyright line, as the file hasn't been
52248         changed this year other than in the copyright notice.
52249
52250         * lib/xalloc.h: Add "2000" to Copyright line, as this file
52251         was changed this year.
52252
52253 2000-10-29  Jim Meyering  <meyering@lucent.com>
52254
52255         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
52256         renaming.
52257         * m4/ls-mntd-fs.m4: Likewise
52258
52259 2000-10-29  Jim Meyering  <meyering@lucent.com>
52260
52261         * lib/xstat.in: Fix grammar in comment.
52262
52263 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
52264
52265         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
52266         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
52267         doesn't define __restrict_arr.
52268
52269 2000-10-28  Jim Meyering  <meyering@lucent.com>
52270
52271         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
52272         (jm_PREREQ_MEMCHR): New function.
52273
52274 2000-10-28  Jim Meyering  <meyering@lucent.com>
52275
52276         * lib/memchr.c: Update from libc.
52277         Adjust for portability:
52278         [HAVE_STDLIB_H]: Include stdlib.h.
52279         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
52280         Undef __memchr, too.
52281         [!weak_alias]: Define __memchr to memchr.
52282
52283         * lib/regex.c: Update from libc.
52284         * lib/regex.h: Likewise.
52285         * lib/getopt1.c: Likewise.
52286         * lib/memcmp.c: Likewise.
52287
52288         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
52289         Avoid using fseek, when possible -- it's broken by design.
52290         Patch by Ulrich Drepper.
52291
52292 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
52293
52294         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
52295         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
52296         Giving in to popular pressure to shut up the compiler with casts.
52297
52298 2000-10-26  Jim Meyering  <meyering@lucent.com>
52299
52300         * lib/strftime.c: Update from libc.
52301
52302 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
52303
52304         * regex.c: More `unsigned char' -> `re_char' changes.
52305         Also change several `int' into `re_wchar_t'.
52306         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
52307         (PUSH_FAILURE_POINTER): Don't cast any more.
52308         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
52309         We want GCC to complain, since this piece of code makes
52310         re_match non-reentrant, which *should* be fixed.
52311         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
52312         (EXTEND_BUFFER): Use RETALLOC.
52313         (SET_LIST_BIT): Don't cast.
52314         (re_wchar_t): New type.
52315         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
52316         that those two functions will always properly return.
52317         (IMMEDIATE_QUIT_CHECK): Cast to void.
52318         (analyse_first): Use recursion rather than an explicit stack.
52319         (re_compile_fastmap): Can't fail anymore.
52320         (re_search_2): Don't check re_compile_fastmap for failure.
52321         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
52322         Now also sets the new value (passed in a new argument).
52323         (re_match_2_internal): Use it.
52324         Also, use a new var `reg' of type size_t when looping through regs
52325         rather than reuse the inappropriate `mcnt'.
52326
52327 2000-10-25  Jim Meyering  <meyering@lucent.com>
52328
52329         * lib/obstack.c: Update from libc.
52330
52331 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
52332
52333         * regex.c (regex_compile): Change the way of handling a range from
52334         a char less than 256 to a char not less than 256.
52335
52336 2000-10-24  Andrew Innes  <andrewi@gnu.org>
52337
52338         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
52339         NT-Emacs only.
52340         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
52341         so that re_search functions only quit when callers expect them to.
52342
52343 2000-10-23  Jim Meyering  <meyering@lucent.com>
52344
52345         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
52346         wrong.  That set_locale call must not have any side effects.
52347         From Paul Eggert.
52348
52349 2000-10-22  Jim Meyering  <meyering@lucent.com>
52350
52351         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
52352         [CYCLIC]: Remove now-unused definition.
52353
52354         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
52355         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
52356         Suggestion from Ulrich Drepper.
52357
52358 2000-10-21  Jim Meyering  <meyering@lucent.com>
52359
52360         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
52361         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
52362         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
52363
52364 2000-10-21  Jim Meyering  <meyering@lucent.com>
52365
52366         * lib/dirname.c (memrchr): Declare if necessary.
52367         (dir_name): Remove the restriction that there be no
52368         trailing slashes.  Now, this code skips past them, effectively
52369         ignoring them.
52370         [TEST_DIRNAME] (main): New unit tests.
52371
52372         * lib/memrchr.c: New file from GNU libc.
52373         Undef __memrchr, too.
52374         [!weak_alias]: Define __memrchr to memrchr.
52375         Guard weak_alias use with `#ifdef weak_alias'.
52376
52377 2000-10-21  Jim Meyering  <meyering@lucent.com>
52378
52379         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
52380         (dir_name): Use dir_name_r.
52381         * lib/dirname.h (dir_name_r): Declare it.
52382
52383 2000-10-17  Jim Meyering  <meyering@lucent.com>
52384
52385         * lib/quote.h (PARAMS): Define and use.
52386         Reported by Akim Demaille.
52387
52388         * lib/getopt.c: Update from libc.
52389
52390 2000-10-16  Jim Meyering  <meyering@lucent.com>
52391
52392         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
52393         setlocale.
52394         From Jan Fedak.
52395
52396 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
52397
52398         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
52399
52400 2000-09-25  Jim Meyering  <meyering@lucent.com>
52401
52402         * lib/md5.h (rol): Define (from GnuPG).
52403
52404         * lib/sha.c: Give credit (GnuPG) where due.
52405         (M): Use rol rather than open-coding it.
52406         Add a FIXME comment.
52407
52408 2000-09-21  Jim Meyering  <meyering@lucent.com>
52409
52410         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
52411         Reported by Michael Stone.
52412
52413 2000-09-20  Jim Meyering  <meyering@lucent.com>
52414
52415         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
52416         (noinst_HEADERS): Add sha.h.
52417         Based on code from Scott G. Miller and from GnuPG.
52418
52419 2000-09-18  Jim Meyering  <meyering@lucent.com>
52420
52421         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
52422         LIBS. Otherwise, everyone ends up linking with -lelf for some
52423         configurations.
52424         Reported by Mike Stone.
52425
52426 2000-09-15  Jim Meyering  <meyering@lucent.com>
52427
52428         * lib/regex.c: Update from libc.
52429
52430 2000-09-10  Jim Meyering  <meyering@lucent.com>
52431
52432         * lib/getopt.c (_getopt_internal): Update from glibc.
52433
52434 2000-09-09  Jim Meyering  <meyering@lucent.com>
52435
52436         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
52437         think it should be used as a general replacement for isascii.
52438         * lib/fnmatch.c: Likewise.
52439         * lib/mbswidth.c: Likewise
52440         * lib/regex.c: Likewise.
52441
52442         Don't use atoi.
52443         * lib/userspec.c: Include sys/param.h and limits.h.
52444         Include xstrtol.h.
52445         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
52446         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
52447         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
52448         UID, GID.  Check range.
52449
52450 2000-09-06  Jim Meyering  <meyering@lucent.com>
52451
52452         * lib/getopt.c (_getopt_internal): Update from glibc.
52453
52454 2000-08-30  Jim Meyering  <meyering@lucent.com>
52455
52456         * lib/strftime.c: Merge in changes from GNU libc.
52457
52458 2000-08-26  Jim Meyering  <meyering@lucent.com>
52459
52460         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
52461         * m4/fpending.m4: New file.
52462
52463 2000-08-26  Jim Meyering  <meyering@lucent.com>
52464
52465         * lib/closeout.c: Include "__fpending.h".
52466         (close_stdout_status): Return right away if there's nothing to flush.
52467
52468         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
52469         * lib/__fpending.c: New file.
52470         * lib/__fpending.h: New file.
52471
52472 2000-08-20  Jim Meyering  <meyering@lucent.com>
52473
52474         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
52475         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
52476         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
52477
52478 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
52479
52480         Improve fileutils installation on systems where running
52481         programs (like install) can't be unlinked.
52482         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
52483         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
52484
52485 2000-08-07  Paul Eggert  <eggert@twinsun.com>
52486
52487         Standardize on "memory exhausted" instead of "Memory exhausted"
52488         or "virtual memory exhausted".
52489         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
52490         "virtual memory exhausted".
52491         * lib/same.c (same_name): Invoke xalloc_die instead of printing
52492         our own message.
52493         * lib/userspec.c (parse_user_spec): Likewise.
52494         * lib/bumpalloc.h: comment fix
52495         * lib/same.c, userspec.c: Include xalloc.h.
52496
52497         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
52498         not char *const and pointing to a constant array.
52499         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
52500         (xrealloc): Comment fix.
52501
52502         * lib/userspec.c (parse_user_spec):
52503         Don't translate a message until just before returning,
52504         to avoid unnecessary translation.
52505
52506 2000-08-07  Jim Meyering  <meyering@lucent.com>
52507
52508         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
52509         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
52510         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
52511         getgroups.c, gethostname.c, getopt.h, group-member.c,
52512         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
52513         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
52514         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
52515         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
52516         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
52517         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
52518         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
52519         yesno.c: Back out Copyright date changes for each file with no change
52520         this year.  This eases coordination with other programs using the same
52521         source code modules.  From Paul Eggert.
52522
52523 2000-08-06  Paul Eggert  <eggert@twinsun.com>
52524
52525         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
52526         not char, for compatibility with glibc 2.1.3 strftime.c.
52527
52528 2000-08-03  Greg McGary  <greg@mcgary.org>
52529
52530         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
52531         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
52532         (EXTEND_BUFFER): Use them.
52533
52534 2000-08-01  Jim Meyering  <meyering@lucent.com>
52535
52536         * lib/dirname.c (ISSLASH): Define.
52537         (BACKSLASH_IS_PATH_SEPARATOR): Define.
52538         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
52539         both `\' and `/' may be use as path separators.
52540         Based on a patch from Prashant TR.
52541
52542 2000-07-31  Paul Eggert  <eggert@twinsun.com>
52543
52544         * lib/quotearg.c (quotearg_n_options): Don't make the initial
52545         slot vector a constant, since it might get modified.
52546
52547 2000-07-31  Jim Meyering  <meyering@lucent.com>
52548
52549         * lib/xmalloc.c: Use `virtual memory exhausted', not
52550         `Memory exhausted'.
52551         * lib/obstack.c (print_and_abort): Likewise.
52552
52553 2000-07-30  Paul Eggert  <eggert@twinsun.com>
52554
52555         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
52556         buffer, so that the caller can always quote one small
52557         component of a "memory exhausted" message in slot 0.
52558         From a suggestion by Jim Meyering.
52559
52560 2000-07-30  Jim Meyering  <meyering@lucent.com>
52561
52562         * lib/makepath.c (make_path): Quote the other instance, too.
52563
52564         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
52565         (STATIC_BUF_SIZE): Define.
52566         (quotearg_n_options): Use only statically allocated storage when
52567         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
52568         than STATIC_BUF_SIZE.
52569
52570 2000-07-29  Jim Meyering  <meyering@lucent.com>
52571
52572         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
52573         * lib/dirname.c (dir_name): Likewise.
52574
52575         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
52576         `/'.
52577
52578         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
52579         (dir_name): Assert that there are no trailing slashes.
52580
52581 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
52582
52583         * lib/mbswidth.h (mbswidth): Add a flags argument.
52584         (mbswidth): New declaration.
52585         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
52586         * lib/mbswidth.c (mbswidth): Add a flags argument.
52587         (mbsnwidth): New function.
52588
52589 2000-07-24  Jim Meyering  <meyering@lucent.com>
52590
52591         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
52592
52593 2000-07-23  Paul Eggert  <eggert@twinsun.com>
52594
52595         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
52596
52597 2000-07-23  Paul Eggert  <eggert@twinsun.com>
52598
52599         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
52600         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
52601         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
52602         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
52603         invoke multibyte primitives.
52604
52605 2000-07-23  Paul Eggert  <eggert@twinsun.com>
52606
52607         * lib/quotearg.c:
52608         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
52609         so that mbstate_t is always defined.
52610
52611         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
52612         be 1 in at least one GCC installation, and this configuration
52613         error is likely to be common.  Ignoring MB_LEN_MAX hurts
52614         performance on hosts that have mbrtowc but have only unibyte
52615         locales, but I assume these hosts are rare.
52616
52617 2000-07-23  Paul Eggert  <eggert@twinsun.com>
52618
52619         * lib/mbswidth.c (_XOPEN_SOURCE):
52620         Don't define; this causes problems on Solaris 7.
52621         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
52622
52623 2000-07-23  Jim Meyering  <meyering@lucent.com>
52624
52625         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
52626         too: getgrgid, getpwuid, getuid.
52627
52628 2000-07-23  Jim Meyering  <meyering@lucent.com>
52629
52630         * lib/basename.c (base_name): Add an assertion.
52631
52632 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
52633
52634         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
52635         shadow its mbsinit function.
52636
52637 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
52638
52639         * lib/mbswidth.h: New file.
52640         * lib/mbswidth.c: New file.
52641         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
52642         (noinst_HEADERS): Add mbswidth.h.
52643
52644 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
52645
52646         * lib/config.charset: Add support for FreeBSD. Improve support for
52647         HP-UX and IRIX 6.
52648
52649 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
52650
52651         * m4/mbswidth.m4: New file.
52652         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
52653
52654 2000-07-15  Jim Meyering  <meyering@lucent.com>
52655
52656         * lib/makepath.c: Include quote.h.
52657         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
52658         corresponding argument in a `quote (...)' call.
52659         Give better diagnostics.
52660
52661         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
52662         (noinst_HEADERS): Add quote.h.
52663
52664         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
52665         from tar's src/misc.c.
52666         * lib/quote.h: New file.  Prototypes for same.
52667
52668 2000-07-14  Paul Eggert  <eggert@twinsun.com>
52669
52670         From a suggestion by Bruno Haible.
52671         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
52672         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
52673         to decide whether to define the BeOS workaround macro;
52674         this adjusts to the change to AC_MBSTATE_T.
52675
52676 2000-07-14  Jim Meyering  <meyering@lucent.com>
52677
52678         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
52679         jm_AC_TYPE_UINTMAX_T.
52680
52681 2000-07-13  Paul Eggert  <eggert@twinsun.com>
52682
52683         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
52684
52685         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
52686         quotearg_buffer_restyled): Add support for
52687         clocale_quoting_style.  Undo previous change to
52688         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
52689         and "{RIGHT QUOTATION MARK}" msgids.
52690
52691 2000-07-10  Paul Eggert  <eggert@twinsun.com>
52692
52693         From a suggestion by Bruno Haible.
52694         * m4/mbstate_t.m4 (AC_MBSTATE_T):
52695         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
52696         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
52697         and mbstate_t, to a single-part test that simply defines mbstate_t.
52698         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
52699         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
52700
52701 2000-07-10  Jim Meyering  <meyering@lucent.com>
52702
52703         * m4/strerror_r.m4: Mirror the correction made in autoconf.
52704
52705         * m4/gnu-source.m4: Output to confdefs.h directly.
52706         Suggestion from Akim Demaille.
52707
52708 2000-07-09  Paul Eggert  <eggert@twinsun.com>
52709
52710         The old behavior of quoting `like this' doesn't look good with
52711         newer, ISO-style fonts.  See:
52712         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
52713
52714         Instead, quote "like this" by default.  Let the translator
52715         tailor the locale-specific quoting behavior by providing
52716         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
52717
52718         * lib/quotearg.c (N_): New macro.
52719         (gettext_default): New function.
52720         (quotearg_buffer_restyled): Use
52721         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
52722         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
52723
52724 2000-07-09  Jim Meyering  <meyering@lucent.com>
52725
52726         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
52727         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
52728
52729         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
52730         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
52731
52732 2000-07-09  Jim Meyering  <meyering@lucent.com>
52733
52734         * lib/Most files: Update copyright dates to include 2000.
52735
52736 2000-07-08  Jim Meyering  <meyering@lucent.com>
52737
52738         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
52739         if not defined.
52740         (xgethostname): Remove now-unnecessary #ifdef.
52741         Move declaration of `err' into loop where it's used.
52742
52743 2000-07-05  Paul Eggert  <eggert@twinsun.com>
52744         and Bruno Haible  <haible@clisp.cons.org>
52745
52746         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
52747         only if the test for an object-type mbstate_t fails.  This
52748         prevents us from mistakenly reporting that mbstate_t is a
52749         system object type after we "#define mbstate_t int" to work
52750         around its lack.
52751
52752 2000-07-05  Paul Eggert  <eggert@twinsun.com>
52753         and Bruno Haible  <haible@clisp.cons.org>
52754
52755         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
52756
52757 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
52758
52759         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
52760         to strerror_r.
52761         Include <ctype.h> for use of isalpha.
52762
52763 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
52764
52765         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
52766         by allocating a larger buffer. Test the gethostname return value for
52767         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
52768         returns an error and ENAMETOOLONG isn't defined.
52769
52770 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
52771
52772         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
52773         dimension.
52774
52775 2000-07-04  Jim Meyering  <meyering@lucent.com>
52776
52777         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
52778         of the deprecated AC_CHECKING.
52779
52780 2000-07-04  Jim Meyering  <meyering@lucent.com>
52781
52782         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
52783         Reported by Bruno Haible.
52784
52785 2000-07-04  Jim Meyering  <meyering@lucent.com>
52786
52787         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
52788         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
52789         lacks mbrtowc.
52790
52791 2000-07-03  Paul Eggert  <eggert@twinsun.com>
52792
52793         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
52794         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
52795
52796 2000-07-03  Paul Eggert  <eggert@twinsun.com>
52797         and Bruno Haible  <haible@clisp.cons.org>
52798
52799         * lib/quotearg.c (mbrtowc):
52800         Assign to *pwc, and return 1 only if result is nonzero.
52801         (iswprint): Use ISPRINT when substituting our own mbrtowc.
52802
52803 2000-07-03  Jim Meyering  <meyering@lucent.com>
52804
52805         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
52806
52807 2000-07-03  Jim Meyering  <meyering@lucent.com>
52808
52809         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
52810         This is necessary to get a definition of e.g., UTMP_FILE on
52811         HP-UX 10.20.
52812         From Bob Proulx.
52813
52814 2000-07-02  Jim Meyering  <meyering@lucent.com>
52815
52816         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
52817
52818         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
52819         AC_LIBOBJ(function_name).
52820         * m4/chown.m4: Likewise.
52821         * m4/fnmatch.m4: Likewise.
52822         * m4/ftruncate.m4: Likewise.
52823         * m4/getgroups.m4: Likewise.
52824         * m4/getline.m4: Likewise.
52825         * m4/group-member.m4: Likewise.
52826         * m4/jm-macros.m4: Likewise.
52827         * m4/lstat.m4: Likewise.
52828         * m4/malloc.m4: Likewise.
52829         * m4/memcmp.m4: Likewise.
52830         * m4/nanosleep.m4: Likewise.
52831         * m4/putenv.m4: Likewise.
52832         * m4/realloc.m4: Likewise.
52833         * m4/regex.m4: Likewise.
52834         * m4/stat.m4: Likewise.
52835         * m4/strftime.m4: Likewise.
52836
52837 2000-07-02  Jim Meyering  <meyering@lucent.com>
52838
52839         * lib/quotearg.c (mbstate_t): Don't define here.
52840
52841 2000-07-02  Jim Meyering  <meyering@lucent.com>
52842
52843         * lib/nanosleep.c (SIGCONT): Define if not already defined.
52844
52845 2000-07-01  Jim Meyering  <meyering@lucent.com>
52846
52847         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
52848
52849 2000-07-01  Jim Meyering  <meyering@lucent.com>
52850
52851         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
52852         problem.
52853
52854 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
52855
52856         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
52857         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
52858
52859 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
52860
52861         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
52862         per change in ../m4/ls-mntd-fs.m4.
52863         (read_filesystem_list): Ignore symbolic links.
52864
52865 2000-06-29  Jim Meyering  <meyering@lucent.com>
52866
52867         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
52868         for declaration of strcmp.
52869
52870         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
52871
52872         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
52873         Avoid warning by casting result to `char *' to remove `const'.
52874
52875 2000-06-28  Jim Meyering  <meyering@lucent.com>
52876
52877         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
52878         included by quotearg.c, for which we perform this test.  From
52879         Bruno Haible.
52880
52881 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
52882
52883         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
52884         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
52885         <utmpx.h> exists, put readutmp.o into LIBOBJS.
52886
52887 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
52888
52889         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
52890
52891 2000-06-26  Paul Eggert  <eggert@twinsun.com>
52892
52893         savedir now sets errno on failure and invokes xmalloc to get memory.
52894         Fix a couple of other minor bugs while we're at it.
52895
52896         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
52897         (NAMLEN): Remove macro.
52898         (malloc, realloc): Remove decls.
52899         (stpcpy): Likewise.
52900         ("xalloc.h"): Include.
52901         (NAME_SIZE_DEFAULT): New macro.
52902         (savedir): Use xmalloc / xrealloc to allocate memory.
52903         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
52904         Skip "" directory entries.
52905         Use strlen to calculate directory entry length, since the old method
52906         is rarely used these days and isn't worth supporting.
52907         Don't use a pointer after freeing it.
52908         Check for integer overflow when calculating allocation size.
52909         Use memcpy to copy entries, instead of stpcpy.
52910         Set errno properly when returning NULL.
52911         Check for readdir error.
52912
52913 2000-06-26  Jim Meyering  <meyering@lucent.com>
52914
52915         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
52916
52917 2000-06-25  Jim Meyering  <meyering@lucent.com>
52918
52919         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
52920         Linux header bug when _XOPEN_SOURCE is defined to 500.
52921
52922 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
52923
52924         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
52925         deficiency.
52926
52927 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
52928
52929         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
52930         Include xalloc.h.
52931         Don't include <stdlib.h>.  Don't declare malloc, realloc.
52932
52933 2000-06-24  Jim Meyering  <meyering@lucent.com>
52934
52935         * m4/strerror_r.m4: Revive this file -- to try out an experimental
52936         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
52937         for which strerror does return char*, but which lacks a conveniently
52938         accessible declaration of the function.  If the compile-test says
52939         strerror_r doesn't work, then resort to a `run'-test that works on
52940         BeOS and segfaults on DEC Unix.
52941
52942 2000-06-24  Jim Meyering  <meyering@lucent.com>
52943
52944         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
52945
52946 2000-06-23  Paul Eggert  <eggert@twinsun.com>
52947
52948         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
52949         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
52950
52951 2000-06-23  Paul Eggert  <eggert@twinsun.com>
52952
52953         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
52954         (mbrtowc, mbstate_t): Define substitutes if
52955         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
52956         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
52957         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
52958
52959 2000-06-23  Jim Meyering  <meyering@lucent.com>
52960
52961         * m4/afs.m4: Add missing AC_MSG_RESULT.
52962         Reported by Bruno Haible.
52963
52964         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
52965         Suggestion from Bruno Haible.
52966
52967 2000-06-23  Jim Meyering  <meyering@lucent.com>
52968
52969         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
52970
52971 2000-06-21  Jim Meyering  <meyering@lucent.com>
52972
52973         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
52974
52975 2000-06-21  Jim Meyering  <meyering@lucent.com>
52976
52977         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
52978         (noinst_HEADERS): Add getstr.h.
52979
52980         * lib/getline.c (getstr): Move into a separate file.
52981         * lib/getstr.c (getstr): New file, extracted from getline.c, with
52982         the following changes: new parameter, delim2; both delim[12]
52983         parameters have type `int', not `char'.  The latter would lose
52984         with 8-bit delimiters.
52985         * lib/getstr.h: New file.
52986
52987 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
52988
52989         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
52990         than 1024, return a memory chunk of least possible size, instead
52991         of size PATH_MAX + 2. In the loop, increment the size proportionally.
52992         Use free/xmalloc instead of xrealloc to avoid copying for very long
52993         paths.
52994
52995 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
52996
52997         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
52998         the empty string.
52999
53000 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
53001
53002         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
53003         address, not strdup.  Include <stdlib.h> and don't declare free().
53004
53005 2000-06-19  Jim Meyering  <meyering@lucent.com>
53006
53007         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
53008
53009 2000-06-18  Jim Meyering  <meyering@lucent.com>
53010
53011         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
53012
53013         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
53014         `checking whether...' message to be consistent with that of the
53015         lstat test.
53016
53017 2000-06-18  Jim Meyering  <meyering@lucent.com>
53018
53019         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
53020         Besides, these days every porting target provides a mkdir function.
53021
53022         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
53023         needed. (this snippet comes from src/system.h).
53024
53025 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
53026
53027         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
53028
53029 2000-06-15  Paul Eggert  <eggert@twinsun.com>
53030
53031         * lib/human.c (adjust_value): New function.
53032         (human_readable_inexact): Apply rounding style even when
53033         printing approximate values.
53034
53035 2000-06-14  Paul Eggert  <eggert@twinsun.com>
53036
53037         * lib/human.c (human_readable_inexact): Allow an input block
53038         size that is not a multiple of the output block size, and vice versa.
53039         Reported by Piergiorgio Sartor.
53040
53041 2000-06-14  Paul Eggert  <eggert@twinsun.com>
53042
53043         * lib/getdate.y (get_date): Apply relative times after time
53044         zone indicator, not before.  Reported by Todd A. Jacobs.
53045
53046 2000-06-13  Jim Meyering  <meyering@lucent.com>
53047
53048         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
53049
53050         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
53051
53052 2000-06-12  Paul Eggert  <eggert@twinsun.com>
53053
53054         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
53055
53056 2000-06-12  Jim Meyering  <meyering@lucent.com>
53057
53058         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
53059         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
53060         optional argument.
53061         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
53062         the optional argument, `lib'.
53063
53064 2000-06-08  Jim Meyering  <meyering@lucent.com>
53065
53066         * m4/largefile.m4: Remove file (now that it's part of autoconf).
53067
53068 2000-06-04  Paul Eggert  <eggert@twinsun.com>
53069
53070         Rewrite largefile configuration so that we don't need to run
53071         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
53072         AC_CANONICAL_HOST in configure.in -- jmm]
53073
53074         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
53075         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
53076         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
53077         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
53078         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
53079         All uses changed.
53080         Instead of inspecting the output of getconf, try to compile the
53081         test program without and with the macro definition.
53082         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
53083         for getconf.  Instead, check for the needed flags by compiling
53084         test programs.
53085
53086 2000-06-04  Paul Eggert  <eggert@twinsun.com>
53087
53088         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
53089
53090 2000-06-04  Jim Meyering  <meyering@lucent.com>
53091
53092         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
53093         SunOS 4.1.4 for which gid_t is an unsigned type.
53094
53095 2000-06-03  Jim Meyering  <meyering@lucent.com>
53096
53097         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
53098         now that autoconf requires that.
53099
53100         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
53101         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
53102         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
53103
53104 2000-06-03  Jim Meyering  <meyering@lucent.com>
53105
53106         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
53107
53108 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
53109
53110         * m4/glibc21.m4: New file.
53111         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
53112
53113 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
53114
53115         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
53116         newer, don't install charset.alias.
53117         * lib/config.charset: Change the Linux/glibc rules so they become empty
53118         on glibc-2.1 or newer.
53119
53120 2000-06-02  Jim Meyering  <meyering@lucent.com>
53121
53122         * lib/mountlist.c: Back out last change.  Instead, do this...
53123         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
53124         me_dummy member using the same `ignore'-testing code.
53125         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
53126         fs_type strings.
53127         From Mark D. Roth.
53128
53129 2000-05-29  Jim Meyering  <meyering@lucent.com>
53130
53131         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
53132         mounts with the `ignore' attribute.  Based on a patch from
53133         Mark D. Roth.
53134
53135 2000-05-28  Jim Meyering  <meyering@lucent.com>
53136
53137         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
53138         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
53139         * m4/stat.m4: Likewise.
53140         * m4/lstat.m4: Likewise.
53141         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
53142
53143         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
53144         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
53145
53146 2000-05-26  Jim Meyering  <meyering@lucent.com>
53147
53148         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
53149
53150 2000-05-24  Jim Meyering  <meyering@lucent.com>
53151
53152         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
53153         autoconf requires that.
53154         * m4/lib-check.m4: Likewise.
53155         * m4/jm-macros.m4: Likewise.
53156         * m4/strftime.m4: Likewise.
53157
53158         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
53159         AC_CHECK_DECLS, now that autoconf requires that.
53160
53161 2000-05-22  Jim Meyering  <meyering@lucent.com>
53162
53163         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
53164         * m4/lstat.m4: Likewise.
53165
53166 2000-05-22  Jim Meyering  <meyering@lucent.com>
53167
53168         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
53169
53170 2000-05-20  Jim Meyering  <meyering@lucent.com>
53171
53172         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
53173         (jm_PREREQ): Use it.
53174
53175 2000-05-18  Jim Meyering  <meyering@lucent.com>
53176
53177         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
53178         back, too, since it may have been modified by allocate_entry.
53179         (hash_delete): Rewrite to use neither the assignment operator
53180         nor the comma operator in an if-expression.
53181
53182 2000-05-15  Paul Eggert  <eggert@twinsun.com>
53183
53184         * lib/closeout.c:
53185         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
53186         Remove; no longer needed.
53187         "quotearg.h": Add include.
53188         (file_name): Do not bother to explicitly initialize to NULL; it's less
53189         efficient on some hosts.
53190         (close_stdout_status): Remove test as to whether stdout was already
53191         closed; it breaks for the case "echo x | sort >&-".
53192         Quote file name colons.
53193         Do not assume that _("write error") lacks format strings.
53194
53195 2000-05-15  Jim Meyering  <meyering@lucent.com>
53196
53197         * lib/version-etc.c (version_etc_copyright): Update the copyright
53198         string used in all --version output.
53199
53200 2000-05-14  Jim Meyering  <meyering@lucent.com>
53201
53202         * lib/closeout.c (close_stdout_set_file_name): New function.
53203         (close_stdout_status): Use new file-scoped global.
53204         Return right away if fstat says the stdout file descriptor is invalid.
53205         * lib/closeout.h (close_stdout_set_file_name): Declare.
53206
53207 2000-05-10  Jim Meyering  <meyering@lucent.com>
53208
53209         * lib/closeout.c [default_exit_status]: New file-scoped variable.
53210         (close_stdout_set_status): New function.
53211         * lib/closeout.h (close_stdout_set_status): Declare.
53212
53213 2000-05-09  Jim Meyering  <meyering@lucent.com>
53214
53215         * m4/gettext.m4: Rename this...
53216         * m4/libintl.m4: ...to this.
53217
53218 2000-05-08  Jim Meyering  <meyering@lucent.com>
53219
53220         * lib/long-options.c: Don't include closeout.h.
53221         (parse_long_options): Don't call close_stdout for --version.
53222
53223 2000-05-06  Paul Eggert  <eggert@twinsun.com>
53224
53225         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
53226         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
53227         2.1.3 bug.  This avoids a clash when files like regex.c define
53228         _GNU_SOURCE.
53229
53230 2000-05-06  Jim Meyering  <meyering@lucent.com>
53231
53232         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
53233         (AC_REPLACE_FUNCS): Add strnlen.
53234
53235         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
53236         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
53237
53238         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
53239         AC_SEARCH_LIBS call for nanosleep.
53240         (LIB_NANOSLEEP): Set and AC_SUBST.
53241
53242 2000-05-06  Jim Meyering  <meyering@lucent.com>
53243
53244         * lib/strnlen.c: Undefine __strnlen and strnlen.
53245         [!weak_alias]: Define __strnlen to strnlen.
53246
53247         * lib/atexit.c: New file, from libiberty.
53248
53249 2000-05-06  Jim Meyering  <meyering@lucent.com>
53250
53251         * lib/closeout.c (close_stdout_status): Also check for errors on the
53252         stderr stream.
53253
53254 2000-05-05  Jim Meyering  <meyering@lucent.com>
53255
53256         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
53257         AC_SEARCH_LIBS call for clock_gettime.
53258         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
53259
53260         * m4/search-libs.m4: Update from autoconf.
53261
53262         su doesn't work on Solaris 2.6.
53263         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
53264         <shadow.h>.  Reported by Dragos Harabor.
53265
53266 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
53267
53268         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
53269         memcpy instead of xmalloc, xrealloc, path_concat.
53270         (locale_charset): Treat empty environment variables as absent.
53271         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
53272
53273 2000-05-04  Jim Meyering  <meyering@lucent.com>
53274
53275         * lib/getopt.c: Update from glibc.
53276         * lib/obstack.c: Likewise.
53277         * lib/obstack.h: Likewise.
53278         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
53279         file
53280
53281         * lib/regex.h: Likewise.
53282         * lib/strndup.c: Likewise.
53283         * lib/strnlen.c: New file, from glibc.
53284
53285 2000-05-03  Jim Meyering  <meyering@lucent.com>
53286
53287         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
53288
53289 2000-05-02  Paul Eggert  <eggert@twinsun.com>
53290
53291         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
53292         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
53293         compile-time test, rather than inspecting host and OS, to
53294         decide whether to define _LARGEFILE_SOURCE.
53295
53296 2000-05-01  Jim Meyering  <meyering@lucent.com>
53297
53298         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
53299
53300         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
53301         Based on a patch from Bruno Haible.
53302
53303 2000-05-01  Jim Meyering  <meyering@lucent.com>
53304
53305         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
53306
53307 2000-04-29  Jim Meyering  <meyering@lucent.com>
53308
53309         * lib/path-concat.c: Declare strdup only if it's not defined.
53310         * lib/canon-host.c: Likewise.
53311
53312 2000-04-28  Jim Meyering  <meyering@lucent.com>
53313
53314         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
53315         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
53316         is included first, then limits.h is included by locale.h by libintl.h.
53317         From John David Anglin.
53318
53319 2000-04-25  Jim Meyering  <meyering@lucent.com>
53320
53321         * lib/makepath.c (S_IRWXUGO): Define.
53322         (make_path): Always perform explicit chmod if MODE specifies any
53323         of the `special' permission bits.  Prompted by a bug report against
53324         install from Mate Wierdl and Joost van Baal.
53325
53326 2000-04-18  Jim Meyering  <meyering@lucent.com>
53327
53328         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
53329         (jm_PREREQ): Use it.
53330
53331 2000-04-18  Jim Meyering  <meyering@lucent.com>
53332
53333         * lib/README: New file.
53334
53335         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
53336         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
53337
53338 2000-04-17  Jim Meyering  <meyering@lucent.com>
53339
53340         Get it right :-)
53341         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
53342         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
53343         Suggestion from Akim Demaille.
53344
53345 2000-04-17  Jim Meyering  <meyering@lucent.com>
53346
53347         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
53348         the definition of it to rpl_strftime also defined-away the system's
53349         declaration.
53350
53351 2000-04-15  Jim Meyering  <meyering@lucent.com>
53352
53353         Use `C' to denote so-called `contiguous' files, the same way
53354         that tar does.
53355         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
53356         (ftypelet): Use S_ISCTG.
53357         From Michael Deutschmann.
53358
53359 2000-04-14  Jim Meyering  <meyering@lucent.com>
53360
53361         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
53362         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
53363         clobbered.
53364
53365 2000-04-14  Jim Meyering  <meyering@lucent.com>
53366
53367         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
53368
53369 2000-04-13  Jim Meyering  <meyering@lucent.com>
53370
53371         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
53372         AH_VERBATIM to insert required #ifndef into config.h.in.
53373         Suggestion from Akim Demaille.
53374
53375 2000-04-12  Jim Meyering  <meyering@lucent.com>
53376
53377         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
53378         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
53379         Christian Krackowizer.
53380
53381         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
53382         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
53383         (AC_SYS_LARGEFILE): Require.
53384         (AM_C_PROTOTYPES): Require.
53385
53386 2000-04-08  Jim Meyering  <meyering@lucent.com>
53387
53388         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
53389         names don't conflict.  Reported by Eli Zaretskii.
53390
53391 2000-04-07  Jim Meyering  <meyering@lucent.com>
53392
53393         * lib/putenv.c: Move inclusion of errno.h so it follows that of
53394         sys/types.h, to work around system header problems on AIX 3.2.5.
53395         From Bruno Haible.
53396
53397 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
53398
53399         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
53400         bug.  Deal with the different error behavior of Irix iconv.
53401
53402 2000-04-05  Paul Eggert  <eggert@twinsun.com>
53403
53404         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
53405         IRIX if the installer said otherwise.
53406
53407 2000-04-05  Jim Meyering  <meyering@lucent.com>
53408
53409         Portability tweaks required for ultrix4.3.
53410         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
53411         (jm_CHECK_DECLS): Add getutent to the list of functions.
53412         (_jm_DECL_HEADERS): Add utmpx.h.
53413         From John David Anglin.
53414
53415         * m4/strftime.m4: Back out the 2000-04-02 change.
53416         Instead of that change, simply undefine putenv in the test program.
53417
53418 2000-04-05  Jim Meyering  <meyering@lucent.com>
53419
53420         Portability tweaks required for ultrix4.3.
53421         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
53422         getutent.
53423         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
53424         * lib/canon-host.c: Declare strdup.
53425         * lib/path-concat.c: Likewise.
53426         From John David Anglin.
53427
53428 2000-04-04  Jim Meyering  <meyering@lucent.com>
53429
53430         Be more DOS 8.3-friendly.
53431         * lib/ref-add.sin: Renamed from ref-add.sed.in.
53432         * lib/ref-del.sin: Renamed from ref-del.sed.in.
53433         * lib/Makefile.am: Reflect renaming.
53434         Reported by Eli Zaretskii.
53435
53436         Use a temporary file name that won't clash with `charset.alias'
53437         in the DOS 8.3 name space.
53438         * lib/Makefile.am (charset_tmp): Define.
53439         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
53440         (uninstall-local): Likewise.
53441         Reported by Eli Zaretskii.
53442
53443 2000-04-03  Jim Meyering  <meyering@lucent.com>
53444
53445         * m4/gettext.m4: Fix typo in comment.
53446
53447         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
53448         textutils/configure.in).  Suggestion from Paul Eggert.
53449         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
53450
53451 2000-04-02  Paul Eggert  <eggert@twinsun.com>
53452
53453         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
53454         variable in the shell rather than using putenv, which isn't
53455         portable.  This avoids the configure-time inter-test dependency
53456         on the potentially-renamed putenv function.
53457
53458 2000-03-30  Paul Eggert  <eggert@twinsun.com>
53459
53460         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
53461         before checking struct stat.st_blksize, so that
53462         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
53463
53464 2000-03-29  Paul Eggert  <eggert@twinsun.com>
53465
53466         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
53467         since strftime.c uses HAVE_STRFTIME to decide whether to use
53468         the underlying strftime.
53469
53470 2000-03-29  Paul Eggert  <eggert@twinsun.com>
53471
53472         * lib/time/strftime.c (my_strftime): Make sure we call the system
53473         strftime, not ourselves, when invoking the underlying strftime.
53474
53475 2000-03-24  Jim Meyering  <meyering@lucent.com>
53476
53477         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
53478         (charset_alias): Define.
53479         (install-exec-local): Factor out common code.
53480         (uninstall-local): Split lines longer than 80.
53481         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
53482         (SUFFIXES): Define.
53483         (.sed.in.sed): New rule.  Don't redirect directly to $@.
53484         (CLEANFILES): Add ref-add.sed and ref-del.sed.
53485
53486 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
53487
53488         * lib/config.charset: Output a line containing "Packages using this
53489         file".
53490         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
53491         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
53492         ref-del.sed): New rules.
53493
53494 2000-03-17  Jim Meyering  <meyering@lucent.com>
53495
53496         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
53497         Otherwise, include <strings.h>
53498
53499 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
53500
53501         * lib/unicodeio.c (utf8_wctomb): New function.
53502         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
53503         format instead of in UCS-4 with platform dependent endianness.
53504
53505 2000-03-10  Jim Meyering  <meyering@lucent.com>
53506
53507         * m4/lib-check.m4: Look for getspnam in -lgen, too.
53508         From Marco Franzen.
53509
53510 2000-03-07  Paul Eggert  <eggert@twinsun.com>
53511
53512         * lib/savedir.c (savedir): Work even if directory size is
53513         negative; this can happen with some screwy NFS configurations.
53514
53515 2000-03-06  Jim Meyering  <meyering@lucent.com>
53516
53517         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
53518         if it's NULL (because we ran out of memory).  From Bruno Haible.
53519
53520 2000-03-05  Jim Meyering  <meyering@lucent.com>
53521
53522         * lib/localcharset.c ("path-concat.h"): Include.
53523         (get_charset_aliases): Use path_concat instead of ANSI string
53524         concatenation.
53525
53526         * lib/unicodeio.h (PARAMS): Define.
53527         Use it to guard prototype.
53528
53529 2000-03-04  Jim Meyering  <meyering@lucent.com>
53530
53531         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
53532         for lib/localcharset.c.
53533
53534 2000-03-04  Jim Meyering  <meyering@lucent.com>
53535
53536         * lib/Makefile.am (install-exec-local): Create $(libdir) before
53537         installing into it.
53538         (uninstall-local): Uncomment this rule so `make distcheck' works
53539         once again.
53540
53541         * lib/unicodeio.c (<errno.h>): Include it.
53542         (errno): Declare if not defined.
53543
53544         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
53545
53546         * lib/config.charset: New version, incorporating remarks from a linux
53547         i18n mailing list.  From Bruno Haible.
53548
53549 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
53550
53551         * m4/codeset.m4: New file.
53552         * m4/iconv.m4: New file.
53553         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
53554
53555 2000-03-03  Jim Meyering  <meyering@lucent.com>
53556
53557         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
53558
53559 2000-03-02  Jim Meyering  <meyering@lucent.com>
53560
53561         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
53562         the messages come out on separate lines.
53563
53564         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
53565         rather than jm_CHECK_DECLARATIONS.
53566         * m4/decl.m4: Remove now-unused file.
53567
53568         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
53569         geteuid.
53570
53571 2000-03-02  Jim Meyering  <meyering@lucent.com>
53572
53573         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
53574
53575 2000-03-01  Jim Meyering  <meyering@lucent.com>
53576
53577         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
53578         * lib/unicodeio.c: Likewise.
53579
53580 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
53581
53582         * lib/config.charset: New file.
53583         * lib/localcharset.c: New file.
53584         * lib/unicodeio.h, lib/unicodeio.c: New files.
53585         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
53586         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
53587         (noinst_HEADERS): Add unicodeio.h.
53588         (all-local, install-exec-local, charset.alias): New targets.
53589
53590 2000-02-28  Paul Eggert  <eggert@twinsun.com>
53591
53592         * lib/quotearg.c (ALERT_CHAR): New macro.
53593         (quotearg_buffer_restyled): Use it.
53594
53595 2000-02-27  Jim Meyering  <meyering@lucent.com>
53596
53597         * m4/check-decl.m4: Add getenv to the list.
53598
53599 2000-02-27  Jim Meyering  <meyering@lucent.com>
53600
53601         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
53602         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
53603
53604         * lib/backupfile.c: Guard inclusion of stdlib.h with
53605         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
53606         Declare malloc if needed.
53607
53608         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
53609         `#ifndef HAVE_DECL..'
53610         now that autoconf always defines the HAVE_DECL_ symbols.
53611         * lib/human.c: Likewise.
53612         * lib/same.c: Likewise.
53613         * lib/strtoumax.c: Likewise.
53614
53615         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
53616         declaration check was not run.
53617         * lib/hash.c: Likewise.
53618         * lib/human.c: Likewise.
53619         * lib/same.c: Likewise.
53620         * lib/strtoumax.c: Likewise.
53621
53622         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
53623         `.', then first look up the entire `.'-containing string as a login
53624         name.
53625
53626 2000-02-23  Jim Meyering  <meyering@lucent.com>
53627
53628         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
53629         in place of my hack.
53630
53631 2000-02-18  Paul Eggert  <eggert@twinsun.com>
53632
53633         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
53634         (textint): New typedef.
53635         (parser_control): Member year changed from int to textint.
53636         All uses changed.
53637         (YYSTYPE): Removed; replaced by %union with int and textint members.
53638         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
53639         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
53640         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
53641         (tSNUMBER, tUNUMBER): Now of type <textintval>.
53642         (date, number, to_year): Use width of number in digits, not its value,
53643         to determine whether it's a 2-digit year, or a 2-digit time.
53644         (yylex): Store number of digits of numeric tokens.
53645         Reported by John Kendall.
53646
53647         (parser_control): Changed from struct parser_control to typedef (for
53648         consistency).  All uses changed.
53649
53650         (tID): Removed; not used.
53651         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
53652
53653 2000-02-14  Paul Eggert  <eggert@twinsun.com>
53654
53655         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
53656         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
53657
53658 2000-02-12  Jim Meyering  <meyering@lucent.com>
53659
53660         * lib/userspec.c (ISDIGIT): Define it.
53661         (isdigit): Remove definition.
53662         (is_number): Use ISDIGIT, not isdigit.
53663         <libintl.h>: Include.
53664         (_ and N_): Define.
53665         (parse_user_spec): Mark translatable strings.
53666
53667 2000-02-10  Jim Meyering  <meyering@lucent.com>
53668
53669         With these changes, nanosleep.[ch] are finally enough like the other
53670         lib/* replacement files to compile on a few more losing systems.
53671
53672         * lib/nanosleep.h: Don't include config.h.
53673         Remove prototype from declaration of nanosleep.
53674         (PARAMS): Remove now-unneeded definition.
53675         * lib/nanosleep.c: #undef nanosleep.
53676         (rpl_nanosleep): Rename from nanosleep.
53677
53678 2000-02-10  Jim Meyering  <meyering@lucent.com>
53679
53680         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
53681         gnu_nanosleep to rpl_nanosleep.
53682
53683 2000-02-09  Jim Meyering  <meyering@lucent.com>
53684
53685         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
53686         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
53687
53688 2000-02-08  Akim Demaille  <akim@epita.fr>
53689
53690         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
53691         `[' and `]' and remove uses of `changequote'.
53692         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
53693         (AC_SYS_LARGEFILE): Likewise.
53694         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
53695         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
53696         of changequote.
53697         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
53698         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
53699         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
53700         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
53701
53702 2000-02-05  Jim Meyering  <meyering@lucent.com>
53703
53704         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
53705         Remove explicit use of AC_HEADER_TIME.  It is required by
53706         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
53707         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
53708         in autoconf whereby the expansion of the latter ended up preceding
53709         the expansion of its prerequisite, AC_HEADER_TIME.
53710         Reported by Volker Borchert.
53711
53712 2000-02-03  Jim Meyering  <meyering@lucent.com>
53713
53714         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
53715
53716 2000-02-03  Jim Meyering  <meyering@lucent.com>
53717
53718         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
53719         rather than with `#if HAVE_UTMPNAME'.
53720
53721 2000-02-02  Jim Meyering  <meyering@lucent.com>
53722
53723         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
53724         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
53725         Reported by Eli Zaretskii.
53726
53727 2000-02-01  Jim Meyering  <meyering@lucent.com>
53728
53729         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
53730
53731 2000-01-31  Jim Meyering  <meyering@lucent.com>
53732
53733         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
53734         functions.  Add the time.h and sys/time.h headers along with the
53735         AC_REQUIRE'ment of AC_HEADER_TIME.
53736
53737 2000-01-31  Jim Meyering  <meyering@lucent.com>
53738
53739         * lib/nanosleep.h (nanosleep): Guard declaration with
53740         `#if ! HAVE_DECL_NANOSLEEP'.
53741         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
53742         the declaration in that vendor's sys/timers.h.
53743         Reported by Christian Krackowizer.
53744
53745         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
53746         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
53747         (ISPRINT): Likewise.
53748         Reported by Tom Tromey.
53749
53750 2000-01-30  Jim Meyering  <meyering@lucent.com>
53751
53752         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
53753
53754         * m4/prereq.m4 (utmp_includes): Define.
53755         Check for ut_user and ut_name members in both struct utmpx
53756         and struct utmp.
53757
53758 2000-01-30  Jim Meyering  <meyering@lucent.com>
53759
53760         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
53761         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
53762         header files where only utmpx.ut_user is declared.
53763
53764         * lib/readutmp.h (UT_USER): Define.
53765
53766 2000-01-29  Jim Meyering  <meyering@lucent.com>
53767
53768         * m4/lib-check.m4: New file containing library-related checks from
53769         fileutils and sh-utils (textutils had none).
53770
53771 2000-01-28  Jim Meyering  <meyering@lucent.com>
53772
53773         * m4/perl.m4: Change format of warning message to look more like that
53774         from the missing script.  Suggestion from François Pinard.
53775
53776 2000-01-25  Jim Meyering  <meyering@lucent.com>
53777
53778         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
53779         well as time.h in the compile check.
53780         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
53781         Fix typo in cross-compiling case: s/yes/no/.
53782
53783 2000-01-23  Jim Meyering  <meyering@lucent.com>
53784
53785         * m4/jm-macros.m4: Move df-related tests here from
53786         fileutils/configure.in
53787
53788         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
53789         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
53790
53791         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
53792         s/space/ac_fsusage_space/.
53793         (jm_FILE_SYSTEM_USAGE): Take two parameters.
53794
53795         * m4/ftruncate.m4: New file (derived from part of
53796         fileutils/configure.in).
53797         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
53798         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
53799
53800         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
53801         AC_SUBST these here, rather than just in sh-util/configure.in, so
53802         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
53803         all the same.
53804         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
53805         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
53806         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
53807         (AC_SUBST(POW_LIBM)): Likewise.
53808         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
53809
53810 2000-01-23  Jim Meyering  <meyering@lucent.com>
53811
53812         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
53813         obstack.c.
53814
53815 2000-01-22  Jim Meyering  <meyering@lucent.com>
53816
53817         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
53818
53819         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
53820
53821         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
53822         configure.in
53823         (AC_CHECK_HEADERS): Likewise for sh-utils.
53824         (AC_CHECK_HEADERS): Likewise for textutils.
53825         Merge the three lists of headers.
53826
53827         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
53828         from fileutils' configure.in.
53829
53830         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
53831         code. Moved tests into their own function (_jm_DECL_HEADERS) in
53832         check-decl.m4.
53833
53834         * m4/check-decl.m4: Use #if rather than #ifdef.
53835         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
53836         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
53837         (_jm_DECL_HEADERS): Define new function.
53838         (jm_CHECK_DECLARATIONS): Require it.
53839
53840 2000-01-22  Jim Meyering  <meyering@lucent.com>
53841
53842         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
53843         [! HAVE_DECL_STRTOULL]: Declare strtoull.
53844         Required for some AIX systems.  Reported by Christian Krackowizer.
53845         [TESTING] (main): New function.
53846
53847         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
53848         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
53849         letters.
53850
53851         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
53852         iswprint.
53853
53854         * lib/strverscmp.c (ISDIGIT): Define.
53855         (strverscmp): Use ISDIGIT, not isdigit.
53856
53857 2000-01-19  Jim Meyering  <meyering@lucent.com>
53858
53859         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
53860         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
53861         defines `struct timespec' in <sys/time.h>
53862
53863         * m4/c-bs-a.m4: Remove uses of changequote altogether.
53864         Thanks to Akim for explaining.
53865
53866 2000-01-17  Paul Eggert  <eggert@twinsun.com>
53867
53868         * lib/nanosleep.c (nanosleep):
53869         Don't use SA_INTERRUPT to decide whether to call sigaction, as
53870         POSIX.1 doesn't require SA_INTERRUPT and some systems
53871         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
53872         it's been part of POSIX.1 since day 1 (in 1988).
53873
53874 2000-01-17  Jim Meyering  <meyering@lucent.com>
53875
53876         * lib/interlock: Remove unused file.  Reported by François Pinard.
53877
53878 2000-01-16  Paul Eggert  <eggert@twinsun.com>
53879
53880         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
53881         alert, backslash, formfeed, and vertical tab unnecessarily in
53882         shell quoting style.
53883
53884 2000-01-16  Jim Meyering  <meyering@lucent.com>
53885
53886         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
53887         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
53888         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
53889         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
53890
53891 2000-01-16  Jim Meyering  <meyering@lucent.com>
53892
53893         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
53894         because the latter didn't work.
53895
53896 2000-01-15  Jim Meyering  <meyering@lucent.com>
53897
53898         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
53899         (AC_REPLACE_FUNCS): Add memcpy and memset.
53900         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
53901         Add strpbrk.
53902         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
53903
53904 2000-01-12  Jim Meyering  <meyering@lucent.com>
53905
53906         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
53907         (jm_PREREQ): Use it.
53908         (jm_PREREQ_READUTMP): New macro.
53909         (jm_PREREQ): Use it.
53910
53911 2000-01-11  Paul Eggert  <eggert@twinsun.com>
53912
53913         Quote multibyte characters correctly.
53914         * m4/c-bs-a.m4: New file.
53915         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
53916         (jm_PREREQ): Use it.
53917
53918 2000-01-11  Paul Eggert  <eggert@twinsun.com>
53919
53920         * m4/uintmax_t.m4: Port to autoconf 2.13.
53921
53922 2000-01-08  Jim Meyering  <meyering@ascend.com>
53923
53924         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
53925         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
53926
53927 2000-01-04  Jim Meyering  <meyering@ascend.com>
53928
53929         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
53930         jm_STRUCT_DIRENT_D_TYPE.
53931         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
53932         jm_STRUCT_DIRENT_D_INO.
53933         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
53934         jm_STRUCT_UTIMBUF.
53935         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
53936         renamings.
53937         * m4/utime.m4: Likewise.
53938
53939         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
53940         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
53941
53942 2000-01-03  Paul Eggert  <eggert@twinsun.com>
53943
53944         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
53945         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
53946
53947 2000-01-02  Jim Meyering  <meyering@ascend.com>
53948
53949         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
53950         remember if this is necessary.
53951
53952 1999-12-26  Jim Meyering  <meyering@ascend.com>
53953
53954         * m4/jm-macros.m4: Use it here.
53955         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
53956
53957 1999-12-23  Jim Meyering  <meyering@ascend.com>
53958
53959         * m4/jm-macros.m4: Check for clock_gettime (moved from
53960         fileutils/configure.in)
53961         Check for gettimeofday.
53962
53963 1999-12-20  Jim Meyering  <meyering@ascend.com>
53964
53965         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
53966         autoconf-2.14a-1999-12-20.
53967
53968 1999-12-19  Jim Meyering  <meyering@ascend.com>
53969
53970         * m4/lstat-slash.m4: New file.
53971         * m4/jm-macros.m4: Use the new macro:
53972         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
53973
53974 1999-12-07  Jim Meyering  <meyering@ascend.com>
53975
53976         * m4/perl.m4: Require that File::Compare be available, too.
53977         Too many systems seem to lack it.
53978
53979         * m4/strftime.m4: Add checks for most of the cpp macros tested in
53980         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
53981
53982 1999-11-18  Paul Eggert  <eggert@twinsun.com>
53983
53984         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
53985         problem with the QNX 4.25 shell, which doesn't propagate exit
53986         status of failed commands inside shell assignments.
53987
53988 1999-11-17  Jim Meyering  <meyering@ascend.com>
53989
53990         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
53991
53992 1999-11-07  Jim Meyering  <meyering@ascend.com>
53993
53994         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
53995
53996 1999-11-06  Jim Meyering  <meyering@ascend.com>
53997
53998         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
53999         * m4/jm-macros.m4 (jm_MACROS): Use it here.
54000
54001 1999-11-05  Jim Meyering  <meyering@ascend.com>
54002
54003         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
54004         configure.in of textutils, fileutils, and sh-utils into this one
54005         (shared between those packages) file.
54006         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
54007         AC_STRUCT_ST_BLKSIZE.
54008
54009 1999-11-03  Jim Meyering  <meyering@ascend.com>
54010
54011         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
54012         of AC_CHECK_TYPE checks includes unistd.h.
54013         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
54014         Suggestion from Akim Demaille.
54015
54016 1999-10-30  Jim Meyering  <meyering@ascend.com>
54017
54018         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
54019         m4-quoted string.
54020         * m4/ls-mntd-fs.m4: Likewise.
54021         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
54022         * m4/jm-winsz1.m4: Likewise.
54023
54024         * m4/const.m4: Remove file, since the fix made it into the experimental
54025         version of autoconf.
54026         * m4/mktime.m4: Likewise.
54027
54028         * m4/check-type.m4: Remove file, now that the latest version of
54029         AC_CHECK_TYPE takes a third arg to specify additional #includes.
54030
54031         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
54032         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
54033         AC_CHECK_TYPE.
54034
54035 1999-10-04  Jim Meyering  <meyering@ascend.com>
54036
54037         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
54038
54039 1999-09-22  Paul Eggert  <eggert@twinsun.com>
54040
54041         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
54042         2.95.1 bug with HP-UX 10.20.
54043
54044 1999-09-17  Jim Meyering  <meyering@ascend.com>
54045
54046         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
54047         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
54048         due to missing strdup (against sh-utils-2.0).
54049
54050 1999-08-29  Jim Meyering  <meyering@ascend.com>
54051
54052         * m4/jm-macros.m4: Require jm_BISON.
54053         * m4/bison.m4: New file.
54054
54055 1999-08-17  Paul Eggert  <eggert@twinsun.com>
54056
54057         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
54058         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
54059
54060 1999-08-05  Jim Meyering  <meyering@ascend.com>
54061
54062         * m4/getline.m4: Rename test file from conftestdata to conftest.data
54063         to avoid conflicts with `conftest' on 8+3 filesystems.
54064         Suggestion from Eli Zaretskii.
54065
54066 1999-08-04  Jim Meyering  <meyering@ascend.com>
54067
54068         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
54069         fileutils and sh-utils (textutils's getline test was inadequate).
54070         (AM_FUNC_GETLINE): Run this test.
54071         (AC_CHECK_FUNCS): Check for getdelim.
54072         Reported by Bob Proulx.
54073
54074 1999-08-02  Jim Meyering  <meyering@ascend.com>
54075
54076         * m4/jm-macros.m4: Add a comment.
54077
54078 1999-08-01  Paul Eggert  <eggert@twinsun.com>
54079
54080         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
54081         <inttypes.h> defines strtoumax as a macro (and not as a
54082         function).
54083
54084 1999-08-01  Paul Eggert  <eggert@twinsun.com>
54085
54086         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
54087         that we can shift, multiply and divide unsigned long long
54088         values; Ultrix cc can't do it.
54089
54090 1999-08-01  Paul Eggert  <eggert@twinsun.com>
54091
54092         * m4/mktime.m4: New file, which is a preview of what should appear
54093         in the next public autoconf release.
54094
54095 1999-08-01  Paul Eggert  <eggert@twinsun.com>
54096
54097         * m4/lfs.m4: Remove this file.
54098         * m4/largefile.m4: New file.  It contains the old contents of
54099         lfs.m4, except that all names with prefix AC_LFS have been
54100         changed to use the prefix AC_SYS_LARGEFILE instead, to be
54101         compatible with future autoconf versions.  Also, some minor m4
54102         quoting problems have been fixed.
54103
54104 1999-08-01  Paul Eggert  <eggert@twinsun.com>
54105
54106         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
54107         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
54108         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
54109         and simplify the shell code.
54110
54111 1999-08-01  Jim Meyering  <meyering@ascend.com>
54112
54113         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
54114         m4.
54115
54116 1999-07-20  Jim Meyering  <meyering@ascend.com>
54117
54118         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
54119
54120 1999-07-15  Jim Meyering  <meyering@ascend.com>
54121
54122         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
54123
54124 1999-05-22  Jim Meyering  <meyering@ascend.com>
54125
54126         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
54127
54128 1999-05-20  Jim Meyering  <meyering@ascend.com>
54129
54130         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
54131         Add a colon after each `then' in case $4 is empty.
54132
54133 1999-05-16  Jim Meyering  <meyering@ascend.com>
54134
54135         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
54136
54137 1999-05-10  Jim Meyering  <meyering@ascend.com>
54138
54139         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
54140
54141         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
54142         AC_FUNC_MKTIME.
54143
54144 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
54145
54146         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
54147
54148 1999-05-04  Paul Eggert  <eggert@twinsun.com>
54149
54150         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
54151         not CPPFLAGS, so that linking works correctly in IRIX.
54152
54153 1999-04-30  Paul Eggert  <eggert@twinsun.com>
54154
54155         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
54156
54157 1999-04-20  Paul Eggert  <eggert@twinsun.com>
54158
54159         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
54160         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
54161         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
54162         jm_AC_TYPE_UNSIGNED_LONG_LONG.
54163         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
54164
54165         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
54166
54167 1999-04-20  Jim Meyering  <meyering@ascend.com>
54168
54169         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
54170         AC_REPLACE xstroull if necessary.  From Paul Eggert.
54171         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
54172
54173 1999-04-18  Jim Meyering  <meyering@ascend.com>
54174
54175         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
54176         * m4/jm-macros.m4: Use it.
54177
54178 1999-04-06  Jim Meyering  <meyering@ascend.com>
54179
54180         * m4/strftime.m4: Remove test for %f.
54181
54182 1999-03-29  Jim Meyering  <meyering@ascend.com>
54183
54184         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
54185         superset of the AC_TYPE_* checks in the textutils, fileutils,
54186         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
54187         AC_TYPE_PID_T.
54188
54189 1999-03-28  Jim Meyering  <meyering@ascend.com>
54190
54191         * m4/jm-macros.m4: Define GNU_PACKAGE here.
54192         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
54193         replaced e.g., in the *.sh files of the sh-utils.
54194
54195 1999-03-20  Jim Meyering  <meyering@ascend.com>
54196
54197         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
54198         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
54199         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
54200
54201 1999-03-19  Jim Meyering  <meyering@ascend.com>
54202
54203         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
54204
54205 1999-03-12  Jim Meyering  <meyering@ascend.com>
54206
54207         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
54208
54209 1999-03-07  Jim Meyering  <meyering@ascend.com>
54210
54211         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
54212         declared.
54213
54214 1999-02-17  Jim Meyering  <meyering@ascend.com>
54215
54216         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
54217         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
54218
54219 1999-02-07  Jim Meyering  <meyering@ascend.com>
54220
54221         * m4/group-member.m4: New file -- extracted from sh-utils'
54222         configure.in.
54223
54224         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
54225         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
54226
54227 1999-02-06  Jim Meyering  <meyering@ascend.com>
54228
54229         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
54230         * m4/fnmatch.m4: Likewise.
54231         * m4/getgroups.m4: Likewise.
54232         * m4/lstat.m4: Likewise.
54233         * m4/malloc.m4: Likewise.
54234         * m4/putenv.m4: Likewise.
54235         * m4/realloc.m4: Likewise.
54236         * m4/regex.m4: Likewise.
54237         * m4/stat.m4: Likewise.
54238         * m4/strftime.m4: Likewise.
54239         Suggestion from Alain Magloire.
54240
54241         * m4/chown.m4: Use `.$ac_objext', not `.o'.
54242         * m4/fnmatch.m4: Likewise.
54243         * m4/getgroups.m4: Likewise.
54244         * m4/getline.m4: Likewise.
54245         * m4/lstat.m4: Likewise.
54246         * m4/malloc.m4: Likewise.
54247         * m4/memcmp.m4: Likewise.
54248         * m4/putenv.m4: Likewise.
54249         * m4/realloc.m4: Likewise.
54250         * m4/regex.m4: Likewise.
54251         * m4/stat.m4: Likewise.
54252         * m4/strftime.m4: Likewise.
54253         Suggestion from Alain Magloire.
54254
54255         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
54256         an argument.
54257
54258         * m4/regex.m4: Add a run-time Test for proper operation of
54259         re_compile_pattern.
54260
54261 1999-01-31  Jim Meyering  <meyering@ascend.com>
54262
54263         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
54264
54265 1999-01-30  Jim Meyering  <meyering@ascend.com>
54266
54267         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
54268
54269         * m4/jm-mktime.m4: Make this a wrapper around the official
54270         AM_FUNC_MKTIME rather than my private copy, now that the official one
54271         is up to date.
54272         * m4/mktime.m4: Remove file.
54273
54274         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
54275         * m4/uptime.m4: Likewise.
54276         * m4/uintmax_t.m4: Likewise.
54277
54278 1999-01-28  Jim Meyering  <meyering@ascend.com>
54279
54280         * m4/jm-macros.m4: Use jm_AFS.
54281         * m4/afs.m4: New file (from fileutils' configure.in).
54282
54283         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
54284         * m4/chown.m4: Likewise.
54285         * m4/d-ino.m4: Likewise.
54286         * m4/d-type.m4: Likewise.
54287         * m4/fnmatch.m4: Likewise.
54288         * m4/getgroups.m4: Likewise.
54289         * m4/gettext.m4: Likewise.
54290         * m4/jm-mktime.m4: Likewise.
54291         * m4/jm-winsz2.m4: Likewise.
54292         * m4/lcmessage.m4: Likewise.
54293         * m4/ls-mntd-fs.m4: Likewise.
54294         * m4/malloc.m4: Likewise.
54295         * m4/memcmp.m4: Likewise.
54296         * m4/putenv.m4: Likewise.
54297         * m4/realloc.m4: Likewise.
54298         * m4/st_mtim.m4: Likewise.
54299         * m4/strftime.m4: Likewise.
54300
54301 1999-01-16  Jim Meyering  <meyering@ascend.com>
54302
54303         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
54304         (ARGMATCH_DIE_DECL): Define.
54305
54306 1999-01-12  Jim Meyering  <meyering@ascend.com>
54307
54308         * m4/Makefile.am.in: Rewrite to avoid using fmt.
54309         Reported by Lars Hecking.
54310
54311 1999-01-10  Jim Meyering  <meyering@ascend.com>
54312
54313         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
54314         gross kludge.
54315         * m4/inttypes_h.m4: Likewise.
54316         * m4/lstat.m4: Likewise.
54317         * m4/malloc.m4: Likewise.
54318         * m4/readdir.m4: Likewise.
54319         * m4/realloc.m4: Likewise.
54320         * m4/st_dm_mode.m4: Likewise.
54321         * m4/stat.m4: Likewise.
54322         * m4/utimbuf.m4: Likewise.
54323         * m4/utimes.m4: Likewise.
54324
54325         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
54326         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
54327         comments in config.h.in are meaningful.
54328
54329         * m4/jm-macros.m4: Require autoconf-2.13 here.
54330
54331         * m4/regex.m4: By default, don't use the included regex.c on systems
54332         with glibc 2.  Suggestion from Uli Drepper.
54333
54334 1999-01-02  Jim Meyering  <meyering@ascend.com>
54335
54336         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
54337
54338 1998-12-18  Jim Meyering  <meyering@ascend.com>
54339
54340         * m4/Makefile.am.in (Makefile.am): Simplify rule.
54341         Based on a suggestion from Lars Hecking.
54342
54343 1998-11-16  Paul Eggert  <eggert@twinsun.com>
54344
54345         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
54346
54347 1998-11-16  Jim Meyering  <meyering@ascend.com>
54348
54349         * m4/lfs.m4: Double-quote the `uname...` expression.
54350
54351 1998-11-14  Jim Meyering  <meyering@ascend.com>
54352
54353         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
54354         * m4/stat.m4: Likewise.
54355
54356 1998-11-03  Jim Meyering  <meyering@ascend.com>
54357
54358         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
54359         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
54360
54361 1998-10-18  Jim Meyering  <meyering@ascend.com>
54362
54363         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
54364
54365 1998-10-17  Jim Meyering  <meyering@ascend.com>
54366
54367         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
54368         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
54369         calls for those previously hard-coded headers.  Instead, take a new
54370         parameter.
54371         (jm_CHECK_DECLARATIONS): Reflect interface change.
54372         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
54373         (jm_CHECK_DECL_LOCALTIME_R): New macro.
54374
54375         * m4/mktime.m4: Test for spring-forward gap before long-running test.
54376
54377 1998-10-14  Jim Meyering  <meyering@ascend.com>
54378
54379         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
54380         instead of "TZ=America/Vancouver".  From Paul Eggert.
54381
54382 1998-10-11  Jim Meyering  <meyering@ascend.com>
54383
54384         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
54385         This adds a test for a recently added compatibility fix for mktime.c.
54386         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
54387
54388 1998-09-27  Jim Meyering  <meyering@ascend.com>
54389
54390         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
54391
54392         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
54393         ../configure.in, including a change from Gordon Matzigkeit to allow
54394         cross-compiling for the Hurd.
54395
54396         * m4/glibc.m4: New file/macro to test for the GNU C Library
54397         versions 1 and 2.  From Gordon Matzigkeit.
54398         Indent.
54399
54400 1998-09-21  Jim Meyering  <meyering@ascend.com>
54401
54402         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
54403
54404 1998-08-18  Paul Eggert  <eggert@twinsun.com>
54405
54406         Port nanosecond-resolution times to UnixWare 2.1.2 and
54407         pedantic Solaris 2.6.
54408
54409         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
54410         AC_STRUCT_ST_MTIM.
54411         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
54412         Generate name of ns member, instead of just 1 or undef.
54413         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
54414
54415 1998-08-15  Jim Meyering  <meyering@ascend.com>
54416
54417         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
54418         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
54419         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
54420         instead of jm_TYPE_SSIZE_T.
54421
54422 1998-08-12  Jim Meyering  <meyering@ascend.com>
54423
54424         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
54425
54426 1998-08-02  Jim Meyering  <meyering@ascend.com>
54427
54428         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
54429         in acconfig.h manually.
54430
54431 1998-07-31  Paul Eggert  <eggert@twinsun.com>
54432
54433         * m4/st_mtim.m4: New file.
54434
54435 1998-07-28  Jim Meyering  <meyering@ascend.com>
54436
54437         * m4/utimes.m4: Undef stat.
54438
54439 1998-07-25  Jim Meyering  <meyering@ascend.com>
54440
54441         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
54442         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
54443
54444 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
54445
54446         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
54447         uid and gid actually remain unchanged.
54448
54449 1998-07-07  Jim Meyering  <meyering@ascend.com>
54450
54451         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
54452
54453 1998-07-04  Jim Meyering  <meyering@ascend.com>
54454
54455         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
54456         to prove that this macro can be used in packages without regex.c.
54457
54458 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
54459
54460         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
54461         is to be used.
54462
54463 1998-07-03  Jim Meyering  <meyering@ascend.com>
54464
54465         * m4/gettext.m4: Add -lintl if it's found to be necessary.
54466
54467         * m4/gettext.m4: New file -- from gettext-0.10.35.
54468         * m4/lcmessage.m4: Likewise.
54469         * m4/progtest.m4: Likewise.
54470
54471         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
54472         * m4/jm-macros.m4: Require the new macro.
54473
54474 1998-06-29  Jim Meyering  <meyering@ascend.com>
54475
54476         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
54477         for the definition of NGROUPS (used in a system header included
54478         by sys/mount.h).
54479
54480 1998-06-28  Jim Meyering  <meyering@ascend.com>
54481
54482         * m4/ls-mntd-fs.m4: New file.
54483         * m4/fstypename.m4: New file.
54484
54485         * m4/jm-macros.m4: Require the new macro.
54486         * m4/jm-glibc-io.m4: New file.
54487
54488 1998-05-19  Jim Meyering  <meyering@ascend.com>
54489
54490         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
54491         * m4/lchown.m4: New file.
54492
54493         * m4/Makefile.am.in: New file.
54494         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
54495
54496 1998-05-14  Jim Meyering  <meyering@ascend.com>
54497
54498         * m4/Makefile.am (EXTRA_DIST): Add them.
54499         * m4/jm-macros.m4: New file.
54500         * m4/utimbuf.m4: New file.
54501
54502 1998-05-12  Jim Meyering  <meyering@ascend.com>
54503
54504         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
54505
54506 1998-05-11  Jim Meyering  <meyering@ascend.com>
54507
54508         * m4/isc-posix.m4: New file.
54509
54510 1998-05-10  Jim Meyering  <meyering@ascend.com>
54511
54512         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
54513
54514 1998-05-09  Jim Meyering  <meyering@ascend.com>
54515
54516         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
54517         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
54518         with automake.
54519
54520         * m4/ssize_t.m4: New file.
54521         * m4/mktime.m4: Remove file -- the new automake has this now.
54522
54523 1998-04-26  Jim Meyering  <meyering@ascend.com>
54524
54525         * m4/assert.m4: New file.
54526         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
54527
54528 1998-04-05  Jim Meyering  <meyering@ascend.com>
54529
54530         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
54531         (jm_PREREQ): Use it here.
54532
54533 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
54534
54535         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
54536         in acconfig.h.
54537
54538 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
54539
54540         * m4/prereq.m4: New file.
54541         * m4/error.m4: New file.
54542         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
54543
54544 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
54545
54546         * m4/getline.m4: Don't set am_cv_func_working_getline before the
54547         cache-check for the same variable -- that defeated the purpose of
54548         the test; the test program was never run.  This was a problem only
54549         on systems with losing getline functions -- HP-UX 10.20 is one.
54550         Reported by Bjorn Helgaas.
54551
54552 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
54553
54554         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
54555
54556 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
54557
54558         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
54559
54560         * m4/const.m4: New file.  Use an initializer in this declaration
54561         typedef int charset[2]; const charset x;
54562         Reported by Bob Glickstein.
54563
54564 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
54565
54566         * m4/chown.m4: Fix reversed types on -1 args to chown.
54567         From Kaveh Ghazi.
54568
54569 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
54570
54571         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
54572         Add lseek and memchr.
54573
54574         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
54575         T.E.Dickey <dickey@clark.net> said that some older preprocessors
54576         have a 20-character limit on names.
54577
54578 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
54579
54580         * m4/inttypes_h.m4: New file.
54581         * m4/uintmax_t.m4: New file.
54582         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
54583
54584
54585         -----
54586
54587         Local Variables:
54588         coding: utf-8
54589         End:
54590
54591         Copyright (C) 1997-2009 Free Software Foundation, Inc.
54592
54593         Copying and distribution of this file, with or without
54594         modification, are permitted provided the copyright notice
54595         and this notice are preserved.