test-xalloc-die: avoid unwarranted test failure on OpenSolaris 5.11
[gnulib.git] / ChangeLog
1 2010-05-03  Jim Meyering  <meyering@redhat.com>
2
3         test-xalloc-die: avoid unwarranted test failure on OpenSolaris 5.11
4         * tests/test-xalloc-die.sh: Redirect stdout before stderr, (i.e.,
5         "> out 2> err", rather than "2> err > out").  Otherwise, with /bin/sh
6         on OpenSolaris 5.11 snv_134, we would end up with a stray "1> out"
7         line in the "err2" output file when running "make check" in verbose
8         mode (i.e., with set -x enabled).
9
10 2010-05-03  Bruno Haible  <bruno@clisp.org>
11
12         wctob: Fix for weird platforms.
13         * lib/wctob.c (wctob): When wint_t is larger than wchar_t, check the
14         argument value.
15
16 2010-05-03  Jim Meyering  <meyering@redhat.com>
17
18         maint.mk: prohibit unwarranted use of <strings.h>
19         * top/maint.mk (sc_prohibit_strings_without_use): Reject inclusion of
20         strings.h in a file that does not also use strcasecmp, strncasecmp,
21         ffs or ffsll.
22
23         maint.mk: remove obsolete comments
24         * top/maint.mk: Remove stale, commented-out rules.
25
26 2010-05-02  Bruno Haible  <bruno@clisp.org>
27
28         wcwidth: Declare also when it's aliased.
29         * lib/wchar.in.h (wcwidth): Don't test whether wcwidth is defined as a
30         macro.
31
32 2010-05-02  Bruno Haible  <bruno@clisp.org>
33
34         Fix regression from 2010-04-25.
35         * gnulib-tool (func_modules_transitive_closure): Check the status of
36         all modules, not only of the tests that are of the form foo-tests where
37         foo is a module.
38
39 2010-05-02  Bruno Haible  <bruno@clisp.org>
40
41         wctob: Work around nasty Cygwin 1.7.2 bug.
42         * m4/wctob.m4 (gl_FUNC_WCTOB): Detect the Cygwin bug.
43         * doc/posix-functions/wctob.texi: Mention the Cygwin bug.
44
45 2010-05-01  Bruno Haible  <bruno@clisp.org>
46
47         fpurge: Sharper test.
48         * tests/test-fpurge.c (main): Add one more ftell check.
49         * modules/fpurge-tests (Depends-on): Add ftell.
50         Suggested by Eric Blake.
51
52 2010-05-01  Bruno Haible  <bruno@clisp.org>
53
54         ftello: Another test.
55         * tests/test-ftello3.c: New file.
56         * modules/ftello-tests (Files): Add it.
57         (Makefile.am): Add it to TESTS and check_PROGRAMS. Augment
58         MOSTLYCLEANFILES.
59
60         ftell: Another test.
61         * tests/test-ftell3.c: New file.
62         * modules/ftell-tests (Files): Add it.
63         (Makefile.am): Add it to TESTS and check_PROGRAMS. Augment
64         MOSTLYCLEANFILES.
65
66 2010-05-01  Bruno Haible  <bruno@clisp.org>
67
68         ftell, ftello: Work around Solaris bug.
69         * m4/ftello.m4 (gl_FUNC_FTELLO): Detect Solaris bug.
70         * lib/ftello.c: Include stdio-impl.h.
71         (ftello): On Solaris, when _IOWRT is set, compute the result without
72         looking at _IOREAD.
73         * modules/ftello (Files): Add lib/stdio-impl.h.
74         * doc/posix-functions/ftell.texi: Mention Solaris bug.
75         * doc/posix-functions/ftello.texi: Likewise.
76         Reported by Eric Blake.
77
78 2010-05-01  Bruno Haible  <bruno@clisp.org>
79
80         freading: Adapt to special meaning of _IOREAD flag on Solaris.
81         * lib/freading.c (freading): On Solaris, ignore the _IOREAD flag if
82         the _IOWRT flag is also set.
83
84 2010-05-01  Bruno Haible  <bruno@clisp.org>
85
86         Fix doc about a HP-UX stdio bug.
87         * doc/posix-functions/ftell.texi: Mark HP-UX bug as unfixed.
88         * doc/posix-functions/ftello.texi: Likewise.
89
90 2010-05-01  Bruno Haible  <bruno@clisp.org>
91
92         lseek test: Fix failure on Solaris.
93         * tests/test-lseek.sh: Partially revert 2010-04-20 commit. Consume all
94         output.
95
96 2010-04-30  Jim Meyering  <meyering@redhat.com>
97
98         bootstrap: don't ignore failure to generate po*/Makevars
99         * build-aux/bootstrap (with_gettext): Don't ignore failure
100         to create po/Makevars or runtime-po/Makevars.
101
102 2010-04-29  Eric Blake  <eblake@redhat.com>
103
104         headers: relax license to LGPLv2+
105         * modules/fcntl-h (License): Relax license.
106         * modules/getopt-posix (License): Likewise.
107         * modules/locale (License): Likewise.
108         * modules/math (License): Likewise.
109         * modules/pty (License): Likewise.
110         * modules/sched (License): Likewise.
111         * modules/search (License): Likewise.
112         * modules/spawn (License): Likewise.
113         * modules/stdarg (License): Likewise.
114         * modules/sysexits (License): Likewise.
115
116 2010-04-29  Jim Meyering  <meyering@redhat.com>
117
118         inttypes: relax license to LGPLv2+
119         * modules/inttypes (License): Relax license.
120
121 2010-04-29  Simon Josefsson  <simon@josefsson.org>
122
123         * top/maint.mk (indent): Run twice to produce idempotent results.
124
125 2010-04-28  Bruno Haible  <bruno@clisp.org>
126
127         getdate: Generate getdate.c in the source directory.
128         * modules/getdate (Makefile.am): Add rule for getdate.c. Augment
129         MOSTLYCLEANFILES.
130         Suggested by Daniel Richard G. <skunk@iskunk.org> and Ralf Wildenhues.
131
132 2010-04-27  Andreas Gruenbacher  <agruen@suse.de>  (tiny change)
133
134         * lib/utimens.c: On Tru64, the timestamp parameter of utimens(2)
135         is not declared as a const *; avoid warnings in that case.
136
137 2010-04-28  Eric Blake  <eblake@redhat.com>
138
139         canonicalize-lgpl: avoid compiler warning
140         * lib/canonicalize-lgpl.c (versioned_symbol): Avoid an 'empty
141         declaration' / 'extraneous semicolon' warning with some compilers.
142         Reported by Andreas Gruenbacher.
143
144 2010-04-28  Jim Meyering  <meyering@redhat.com>
145
146         init.sh: ensure a more reliable exit status when exiting via trap
147         * tests/init.sh (setup_): Don't rely on $? in signal handler.
148         Inspired by patches from Dmitry V. Levin.
149         Also trap on signal 3 (SIGQUIT).
150
151 2010-04-27  Bruno Haible  <bruno@clisp.org>
152
153         Update doc about utimes().
154         * doc/posix-functions/utimes.texi: Mention the OSF/1 problem and the
155         'utimens' module.
156         Reported by Andreas Gruenbacher <agruen@suse.de>.
157
158 2010-04-27  Eric Blake  <eblake@redhat.com>
159
160         full-read, full-write: relax license
161         * modules/full-read (License): Drop to LGPLv2+.
162         * modules/full-write (License): Likewise.
163         * modules/safe-read (License): Likewise.
164         * modules/safe-write (License): Likewise.
165
166         pthread: mention library for linking
167         * modules/pthread (Link): Mention $(LIB_PTHREAD).
168
169 2010-04-27  Jim Meyering  <meyering@redhat.com>
170
171         maint.mk: fix a bug introduced in last change
172         * top/maint.mk (gl_assured_headers_): Now that all names are on
173         one line, use sed's "g" modifier.  Note that while the \.in\.h LHS
174         is not anchored to end of word, it should be adequate.
175
176         maint.mk: avoid side-effect in latest syntax-check
177         * top/maint.mk (sc_prohibit_always_true_header_tests): Rework not
178         to run commands via $(shell...), and hence to incur cost only when
179         the new rule is actually run.
180
181         maint.mk: syntax-check: prohibit HAVE_<header>_H that are always true
182         Derive the list of guaranteed header names from gnulib/lib/*.in.h,
183         and use that to create a regexp used to detect all #if HAVE_..._H uses.
184         * top/maint.mk (sc_prohibit_always_true_header_tests): New rule.
185         (gl_assured_headers_, az_, AZ_): Define.
186         (gl_header_upper_case_or_, gl_have_header_regex_): Define.
187
188 2010-04-26  Jim Meyering  <jim@meyering.net>
189             Bruno Haible  <bruno@clisp.org>
190
191         gnulib-common.m4: make glibc write diagnostics to stderr, not /dev/tty
192         * m4/gnulib-common.m4 (gl_COMMON_BODY): Set LIBC_FATAL_STDERR_.
193         Prompted by an exchange with Gilles Espinasse.
194
195 2010-04-26  Jim Meyering  <meyering@redhat.com>
196
197         git-version-gen: aesthetic tweak
198         * build-aux/git-version-gen: Use "$nl" rather than a literal,
199         so that the command remains on a single line.
200
201 2010-04-26  Eric Blake  <eblake@redhat.com>
202
203         git-version-gen: allow use on EBCDIC hosts
204         * build-aux/git-version-gen (dirty): Use literal rather than tying
205         ourselves to ascii.
206         Reported by Steve Goetze.
207
208 2010-04-25  Bruno Haible  <bruno@clisp.org>
209
210         netdb: Add support for GNULIB_POSIXCHECK.
211         * lib/netdb.in.h: Include warn-on-use.h.
212         (getaddrinfo, freeaddrinfo, gai_strerror, getnameinfo): Warn if these
213         functions are used when GNULIB_POSIXCHECK is defined and the
214         getaddrinfo module is not in use.
215         * m4/netdb_h.m4 (gl_HEADER_NETDB): Test whether getaddrinfo,
216         freeaddrinfo, gai_strerror, getnameinfo are declared.
217         * modules/netdb (Depends-on): Add warn-on-use.
218         (Makefile.am): Include warn-on-use.h in netdb.h.
219
220 2010-04-24  Ian Beckwith  <ianb@erislabs.net>
221
222         build: avoid "make check" failure without .git/ directory
223         * Makefile (sc_prefer_ac_check_funcs_once): Skip this test when
224         there is no .git/ directory.
225
226 2010-04-25  Bruno Haible  <bruno@clisp.org>
227
228         ptsname: Fix misuse of ttyname_r.
229         * lib/ptsname.c (__ptsname_r): Use __ttyname_r's return value instead
230         of errno.
231
232 2010-04-25  Bruno Haible  <bruno@clisp.org>
233
234         ttyname_r: Make it work on Solaris 10.
235         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Define HAVE_POSIXDECL_TTYNAME_R
236         if the system function has the POSIX declaration. Test whether the
237         function fails if the buffer is less than 128 bytes large.
238         * lib/ttyname_r.c (ttyname_r): Handle both possible declarations of the
239         system's ttyname_r function. Provide a reasonably large buffer.
240         * modules/ttyname_r (Depends-on): Add extensions.
241         * doc/posix-functions/ttyname_r.texi: Mention the Solaris problem.
242
243 2010-04-25  Bruno Haible  <bruno@clisp.org>
244
245         Use the 'extensions' module for some more functions on Solaris.
246         * doc/posix-functions/asctime_r.texi: Recommend to use the 'extensions'
247         module.
248         * doc/posix-functions/ctime_r.texi: Likewise.
249         * doc/posix-functions/getgrgid_r.texi: Likewise.
250         * doc/posix-functions/getgrnam_r.texi: Likewise.
251         * doc/posix-functions/getpwnam_r.texi: Likewise.
252         * doc/posix-functions/getpwuid_r.texi: Likewise.
253         * doc/posix-functions/readdir_r.texi: Likewise.
254         * doc/posix-functions/sigwait.texi: Likewise.
255         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Add comment.
256         * doc/posix-functions/getlogin_r.texi: Mark Solaris problem as fixed.
257
258 2010-04-25  Bruno Haible  <bruno@clisp.org>
259
260         ttyname_r: Make it work on MacOS X 10.4 and Solaris 10.
261         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Test whether the system function
262         has the POSIX declaration. Set REPLACE_TTYNAME_R if not.
263         * lib/ttyname_r.c: Include <limits.h>.
264         (ttyname_r): Define using the system's ttyname_r function, if it exists
265         and not on Solaris.
266         * lib/unistd.in.h (ttyname_r): Replace function if REPLACE_TTYNAME_R is
267         set.
268         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize REPLACE_TTYNAME_R.
269         * modules/unistd (Makefile.am): Substitute REPLACE_TTYNAME_R.
270         * doc/posix-functions/ttyname_r.texi: Mark the problem as fixed.
271         Reported by Simon Josefsson.
272
273 2010-04-25  Bruno Haible  <bruno@clisp.org>
274
275         Mention effects of _POSIX_PTHREAD_SEMANTICS on Solaris.
276         * doc/posix-functions/asctime_r.texi: Mention the Solaris problem.
277         * doc/posix-functions/ctime_r.texi: Likewise.
278         * doc/posix-functions/getgrgid_r.texi: Likewise.
279         * doc/posix-functions/getgrnam_r.texi: Likewise.
280         * doc/posix-functions/getlogin_r.texi: Likewise.
281         * doc/posix-functions/getpwnam_r.texi: Likewise.
282         * doc/posix-functions/getpwuid_r.texi: Likewise.
283         * doc/posix-functions/readdir_r.texi: Likewise.
284         * doc/posix-functions/sigwait.texi: Likewise.
285         * doc/posix-functions/ttyname_r.texi: Likewise.
286         Reported by Simon Josefsson.
287
288 2010-04-25  Bruno Haible  <bruno@clisp.org>
289
290         gnulib-tool: Don't include hairy tests of dependencies in testdirs.
291         * gnulib-tool (func_usage): Document that --with-*-tests options apply
292         also to --create-testdir.
293         (func_acceptable): Don't consider the status of *-tests modules here.
294         (func_modules_transitive_closure): Consider it here, before including a
295         test module.
296         (func_import, func_create_testdir): Set inc_all_direct_tests,
297         inc_all_indirect_tests.
298         * doc/gnulib.texi (Extra tests modules): Document new behaviour of
299         --create-testdir and --create-megatestdir.
300
301 2010-04-25  Bruno Haible  <bruno@clisp.org>
302
303         gnulib-tool: Add --without-*-tests options.
304         * gnulib-tool (func_usage): Document the --without-*-tests options.
305         (excl_cxx_tests, excl_longrunning_tests, excl_privileged_tests,
306         excl_unportable_tests): New variables.
307         Fail if they are specified with --import or --update.
308         (func_acceptable): Respect the excl_*_tests variables.
309         (func_import): Set the excl_*_tests variables to empty.
310
311 2010-04-25  Simon Josefsson  <simon@josefsson.org>
312             Bruno Haible  <bruno@clisp.org>
313
314         Work around a MacOS X 10.4 bug with openpty.
315         * doc/glibc-functions/openpty.texi: Mention the MacOS X 10.4 bug.
316         * tests/test-openpty.c (main): Close the master side explicitly.
317
318 2010-04-25  Bruno Haible  <bruno@clisp.org>
319
320         strnlen: Fix a C++ test error on MacOS X and Solaris.
321         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Don't set REPLACE_STRNLEN to 1 if
322         the function is not declared.
323         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com> and
324         Simon Josefsson.
325
326 2010-04-24  Bruno Haible  <bruno@clisp.org>
327
328         Avoid a gcc warning.
329         * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Pass argument
330         of correct type for %08lx directive.
331         Reported by Eric Blake.
332
333 2010-04-24  Bruno Haible  <bruno@clisp.org>
334
335         vasnprintf: Correct errno value in case of out-of-memory.
336         * lib/vasnprintf.c (VASNPRINTF): Set errno to 0 before calling SNPRINTF
337         or sprintf. Use the errno value from SNPRINTF or sprintf.
338         Reported by Ian Beckwith <ianb@erislabs.net>.
339
340 2010-04-24  Bruno Haible  <bruno@clisp.org>
341
342         ansi-c++-opt: Find correct compiler when cross-compiling.
343         * m4/ansi-c++.m4 (gl_PROG_ANSI_CXX): Use AC_CHECK_TOOLS instead of
344         AC_CHECK_PROGS.
345         Reported by Simon Josefsson.
346
347 2010-04-24  Giuseppe Scrivano  <gscrivano@gnu.org>
348
349         vc-list-files: Add support for subversion
350         * build-aux/vc-list-files: Use "svn list" to generate the list of
351         files controlled by subversion.
352
353 2010-04-23  Jim Meyering  <meyering@redhat.com>
354
355         vc-list-files tests: convert to use init.sh
356         * tests/test-vc-list-files-cvs.sh: Invoke "$srcdir/init.sh" and
357         path_prepend_.
358         Use Exit, not exit.
359         Use skip_ rather than open coding it.
360         Remove trap set-up and compare definitions.
361         * tests/test-vc-list-files-git.sh: Likewise.
362         * modules/vc-list-files-tests (Files): Add tests/init.sh.
363
364 2010-04-22  Simon Josefsson  <simon@josefsson.org>
365
366         * top/maint.mk (sc_prohibit_backup_files): Prohibit checked in
367         backup files.
368
369 2010-04-21  Simon Josefsson  <simon@josefsson.org>
370
371         * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Test %08lx.
372
373 2010-04-20  Eric Blake  <eblake@redhat.com>
374
375         tests: be robust to ignored SIGPIPE
376         * tests/test-select-in.sh: Consume all output.
377         * tests/test-lseek.sh: Check correct exit status, while avoiding
378         EPIPE.
379
380 2010-04-20  Simon Josefsson  <simon@josefsson.org>
381             Bruno Haible  <bruno@clisp.org>
382
383         visibility: Don't use -fvisibility if it leads to a warning.
384         * m4/visibility.m4 (gl_VISIBILITY): Check whether -Werror is usable. If
385         yes, don't pretend that visibility works if it leads to a warning.
386         Reported by Mike Gran <spk121@yahoo.com>.
387
388 2010-04-20  Andreas Gruenbacher  <agruen@suse.de>
389
390         * build-aux/bootstrap: Use "git -h" for testing for supported options
391         instead of "git --help".  The short-form option only shows a summary,
392         and doesn't layout the full man page.  Grep for the full option name
393         in the summary, too.
394
395 2010-04-19  Bruno Haible  <bruno@clisp.org>
396
397         relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
398         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Set RELOCATABLE_STRIP.
399         * doc/relocatable-maint.texi (Supporting Relocation): Remove the
400         mention of RELOCATABLE_STRIP.
401         Reported by Sylvain Beucler <beuc@beuc.net>.
402
403 2010-04-19  Bruno Haible  <bruno@clisp.org>
404
405         * lib/diffseq.h: Fix typo in comment.
406         Reported by Eric Blake.
407
408 2010-04-19  Bruno Haible  <bruno@clisp.org>
409
410         ioctl: Move autoconf macro to a .m4 file.
411         * m4/ioctl.m4: New file, extracted from modules/ioctl.
412         * modules/ioctl (Files): Add it.
413         (configure.ac): Simply invoke gl_FUNC_IOCTL.
414         Reported by Ian Beckwith <ianb@erislabs.net>.
415
416 2010-04-18  Andreas Gruenbacher  <agruen@suse.de>
417             Bruno Haible  <bruno@clisp.org>
418
419         diffseq: Accommodate use-case with abstract arrays.
420         * lib/diffseq.h (struct context): Remove xvec, yvec fields if ELEMENT
421         is not defined.
422         (diag, compareseq): Remove local variables xv, yv if ELEMENT is not
423         defined. Use local macro XREF_YREF_EQUAL instead of EQUAL.
424
425 2010-04-18  Bruno Haible  <bruno@clisp.org>
426
427         * doc/posix-headers/stdbool.texi: More precise wording.
428
429 2010-04-17  Jim Meyering  <meyering@redhat.com>
430
431         maint.mk: use gnu-style indentation in an embedded perl script
432         * top/maint.mk (detect_empty_lines_at_EOF_): Clean up formatting.
433         Rename variable: s/two/last_two_bytes/
434
435 2010-04-16  Eric Blake  <eblake@redhat.com>
436
437         test-stdbool: skip test that fails with Solaris CC
438         * tests/test-stdbool.c (f): Skip test that causes compilation
439         error under buggy C++ compiler.
440         * lib/stdbool.in.h: Document the limitation.
441         * doc/posix-headers/stdbool.texi (stdbool.h): Likewise.
442
443         setenv: allow compilation with C++
444         * lib/setenv.c (__add_to_environ): Add a cast.  Also, drop use of
445         register keyword.
446
447         stdint: allow test to pass with C++
448         * tests/test-stdint.c: Define __STDC_CONSTANT_MACROS, for glibc.
449
450         getopt: allow compilation with C++
451         * lib/getopt_int.h (__ordering): Hoist enum declaration outside
452         struct.
453         * lib/getopt.c (_getopt_internal_r): Use correct type.
454         Reported by Dagobert Michelson, via Joel E. Denny.
455
456 2010-04-16  Bruno Haible  <bruno@clisp.org>
457
458         Override netdb.h always.
459         * modules/netdb (Makefile.am): Augment BUILT_SOURCES always.
460         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't set NETDB_H.
461         Reported by Ludovic Courtès <ludo@gnu.org>.
462
463 2010-04-15  Bruno Haible  <bruno@clisp.org>
464
465         openpty: Fix mistake from 2010-03-21.
466         * m4/pty.m4 (gl_FUNC_OPENPTY): Define HAVE_OPENPTY when openpty exists.
467         Reported by Simon Josefsson.
468
469 2010-04-15  Eric Blake  <eblake@redhat.com>
470
471         test-forkpty: fix expected signature
472         * tests/test-forkpty.c (SIGNATURE_CHECK): Add appropriate const.
473         Reported by Simon Josefsson.
474
475 2010-04-15  Jim Meyering  <meyering@redhat.com>
476
477         maint.mk: texinfo_suffix_re_: correct the default regexp
478         * top/maint.mk (texinfo_suffix_re_): Fix default regexp.
479
480         * top/maint.mk (sc_texinfo_acronym): Improve filename regexp, and
481         make it configurable via texinfo_suffix_re_.
482
483 2010-04-14  Eric Blake  <eblake@redhat.com>
484
485         strtok_r: relax license to LGPLv2+
486         * modules/strtok_r (License): Relax license.
487         Reported by Matthias Bolte.
488
489 2010-04-14  Simon Josefsson  <simon@josefsson.org>
490
491         * lib/gc-libgcrypt.c (gc_init): Use MIN_GCRYPT_VERSION set to
492         version 1.4.4 by default instead of requiring the libgcrypt
493         version used during build.  This makes it possible to use the
494         application with older but still binary compatible libgcrypt
495         versions.
496
497 2010-04-13  Eric Blake  <eblake@redhat.com>
498
499         getopt-gnu: match recent glibc fixes and posix ruling
500         * tests/test-getopt.h (test_getopt): Strengthen tests of leading
501         '+' handling, when requesting extensions.
502         * tests/test-getopt_long.h (test_getopt_long): Strengthen test of
503         'W;' handling.
504         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Detect glibc 2.11 bug.
505         * doc/posix-functions/getopt.texi (getopt): Document this.
506         * doc/glibc-functions/getopt_long.texi (getopt_long): Likewise.
507         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
508         Likewise.
509
510         getopt: merge bug fixes from glibc
511         * lib/getopt.c (_getopt_internal_r): Use correct message for 'W;'
512         diagnostics.  Honor '+:' correctly.  Reject ';'.
513
514         getopt-posix: detect MacOS bug
515         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Reject MacOS botch of
516         optind when missing a required argument.
517         * doc/posix-functions/getopt.texi (getopt): Document the bug.
518         * doc/glibc-functions/getopt_long.texi (getopt_long): Likewise.
519         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
520         Likewise.
521
522         getopt-posix: avoid spurious failure on Solaris
523         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Check for getopt_clip as
524         an indicator that setting optind=1 is sufficient for reset.
525
526         getopt-posix: avoid spurious failure on FreeBSD
527         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Check for optreset even
528         in POSIX mode, since the m4 test uses it.
529
530         gnulib-tool: silence warning on BSD sh
531         * gnulib-tool: Avoid leaking warning about unknown 'declare'.
532
533 2010-04-13  Jim Meyering  <meyering@redhat.com>
534
535         doc: users.txt: GNU patch now uses gnulib
536         * users.txt: Add patch.
537
538 2010-04-12  Jim Meyering  <meyering@redhat.com>
539
540         maint.mk: generate more concise timing data for syntax-check rules
541         * top/maint.mk ($(sc_z_rules_)): Remove the ":", "sc_" prefix and
542         " done" from each line that reports a syntax-check test duration.
543
544 2010-04-12  Andreas Gruenbacher  <agruen@suse.de>
545
546         git-version-gen: use "git update-index..." rather than "git status"
547         * build-aux/git-version-gen: Use git update-index --refresh, not
548         "git status".  With some versions of git, "git status" would fail
549         to update the index and result in an unwarranted "-dirty" suffix.
550
551 2010-04-11  Jim Meyering  <meyering@redhat.com>
552
553         openat: correct formatting (no semantic change)
554         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Correct formatting in AC_DEFINE.
555         Suggested by Bruno Haible.
556
557 2010-04-11  Bruno Haible  <bruno@clisp.org>
558
559         Stricter declaration checking in testdirs.
560         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
561         If for_tests is true, augment AM_CPPFLAGS to define
562         GNULIB_STRICT_CHECKING.
563         * build-aux/warn-on-use.h (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): When
564         GNULIB_STRICT_CHECKING is defined, verify that the function is
565         declared.
566
567 2010-04-11  Paolo Bonzini  <bonzini@gnu.org>
568             Bruno Haible  <bruno@clisp.org>
569
570         libunistring: Improve configure output.
571         * m4/libunistring.m4 (gl_LIBUNISTRING): Check for libiconv first.
572         Don't say "consider installing GNU libunistring" when checking again
573         with libiconv.
574
575 2010-04-11  Bruno Haible  <bruno@clisp.org>
576
577         libunistring: Correct value of $LTLIBUNISTRING.
578         * m4/libunistring.m4 (gl_LIBUNISTRING): When it depends on libiconv,
579         correct the value of $LTLIBUNISTRING.
580
581 2010-04-11  Bruno Haible  <bruno@clisp.org>
582
583         havelib: Add static libraries to LIBS in the right order.
584         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): When $LIB[]NAME contains no
585         -l options, prepend it to $LIBS, instead of appending it to $LIBS.
586
587 2010-04-11  Bruno Haible  <bruno@clisp.org>
588
589         libunistring: Detect libunistring also when it depends on libiconv.
590         * m4/libunistring.m4 (gl_LIBUNISTRING): Unset the cached result before
591         the second AC_LIB_HAVE_LINKFLAGS invocation.
592
593 2010-04-11  James Youngman  <jay@gnu.org>
594
595         close-stream: declare local scalars to be "const"
596         * lib/close-stream.c (close_stream): Make boolean variables const
597         to document the fact that we set but do not change them.
598
599 2010-04-11  Bruno Haible  <bruno@clisp.org>
600
601         * m4/libunistring.m4 (gl_LIBUNISTRING): Fix typo in comment.
602
603 2010-04-11  Jim Meyering  <meyering@redhat.com>
604
605         maint.mk: don't include dist-check.mk
606         * top/maint.mk: Remove bogus include directive.
607
608         maint.mk: improve empty-line-at-EOF check
609         * top/maint.mk (sc_prohibit_empty_lines_at_EOF): Use Perl-based
610         solution, rather than tail+Perl-based one.  The latter would read
611         a few kilobytes from the end of each file, and did not handle empty
612         files properly.
613
614         maint.mk: print the elapsed time for each syntax-check rule
615         * top/maint.mk (sc_m_rules_): Save start time in a file.
616         (sc_z_rules_): New rules: remove temp file and print elapsed time.
617         (local-check): Interpose the .z rules
618
619 2010-04-11  Jim Meyering  <meyering@redhat.com>
620
621         maint.mk: detect_empty_lines_at_EOF_: avoid FP for an empty file
622         * top/maint.mk (detect_empty_lines_at_EOF_): Don't confuse an
623         empty file with one that ends in an empty line.
624
625 2010-04-10  Bruno Haible  <bruno@clisp.org>
626
627         mkdir: Make it work on mingw64.
628         * lib/sys_stat.in.h: Include <direct.h> together with <io.h>.
629         * lib/mkdir.c: Update comment.
630         Reported by Roman Donchenko (Роман Ð”онченко) <dxdragon@yandex.ru>.
631
632 2010-04-10  Bruno Haible  <bruno@clisp.org>
633
634         Don't override improved macro from newer autoconf.
635         * m4/gnulib-common.m4 (AC_C_RESTRICT): Don't define for
636         autoconf >= 2.62.
637         Reported by Joel E. Denny <jdenny@clemson.edu>.
638
639 2010-04-10  Jim Meyering  <meyering@redhat.com>
640
641         maint.mk: new syntax-check rule: prohibit empty lines at end of file
642         * top/maint.mk (sc_prohibit_empty_lines_at_EOF): New rule.
643
644         maint.mk: correct a diagnostic
645         * top/maint.mk (sc_prohibit_HAVE_MBRTOWC): Fix obsolete use of $re
646         in diagnostic; now use $prohibit.
647
648 2010-04-10  Bruno Haible  <address@hidden>
649
650         fchownat: Fix a C++ test error on Solaris 8.
651         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Don't set REPLACE_FCHOWNAT to 1 if
652         the function does not exist.
653
654 2010-04-10  Bruno Haible  <bruno@clisp.org>
655
656         vasnprintf: Add more tests.
657         * tests/test-vasnprintf-posix.c: Include <errno.h>.
658         (test_function): Test converting an invalid wide string.
659
660         vasnprintf: Correct handling of unconvertible wide string arguments.
661         * lib/vasnprintf.c (MAX_ROOM_NEEDED): New function, extracted from
662         VASNPRINTF.
663         (VASNPRINTF): Use it. After snprintf failed, allocate more memory only
664         if HAVE_SNPRINTF_RETVAL_C99 is false and the allocated memory is
665         smaller than the expected maximum need for the directive. Set errno to
666         EILSEQ, not EINVAL, when the directive is 'c' or 's'.
667         (local_strnlen, local_wcslen, local_wcsnlen): Update conditions.
668         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Require AC_C_INLINE and
669         gl_SNPRINTF_RETVAL_C99. Define HAVE_SNPRINTF_RETVAL_C99.
670         * modules/vasnprintf (Files): Add m4/printf.m4.
671         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
672
673 2010-04-10  Bruno Haible  <bruno@clisp.org>
674
675         vasnprintf: Fix crash in %ls directive.
676         * lib/vasnprintf.c (VASNPRINTF): Don't abort when a unconvertible wide
677         string is passed as argument to %ls, with no precision and no width.
678         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
679
680 2010-04-10  Bruno Haible  <bruno@clisp.org>
681
682         vasnprintf: Fix multiple test failures on mingw.
683         * lib/vasnprintf.c (SNPRINTF) [mingw]: Define to snprintf, not
684         _snprintf, or snwprintf, not _snwprintf.
685
686 2010-04-10  Bruno Haible  <bruno@clisp.org>
687
688         write: Fix a C++ test error on mingw.
689         * lib/unistd.in.h (write): Use _GL_CXXALIAS_SYS_CAST.
690
691 2010-04-10  Bruno Haible  <bruno@clisp.org>
692
693         vasnprintf test: Reduce code duplication.
694         * tests/test-vasnprintf.c (test_function): New function, extracted from
695         test_vasnprintf.
696         (test_vasnprintf, test_asnprintf): Invoke it.
697
698 2010-04-10  Bruno Haible  <bruno@clisp.org>
699
700         strnlen: Fix warning in C++ mode on MacOS X.
701         * lib/string.in.h (strnlen): Use the modern idiom.
702         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set REPLACE_STRNLEN to 1, instead of
703         defining strnlen as a macro already in <config.h>.
704         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
705         REPLACE_STRNLEN.
706         * modules/string (Makefile.am): Substitute REPLACE_STRNLEN.
707         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
708
709 2010-04-08  James Youngman  <jay@gnu.org>
710
711         * doc/manywarnings.texi (manywarnings): Add missing parenthesis in
712         the example.
713
714 2010-04-09  Jim Meyering  <meyering@redhat.com>
715
716         maint.mk: print better diagnostic when there is no $(_hv_file)
717         * top/maint.mk (sc_cross_check_PATH_usage_in_tests): Skip test and
718         announce that when $(_hv_file) (aka help-version) does not exist.
719
720         init.sh: run tr in the "C" locale to avoid multibyte interpretation
721         * tests/init.sh (rand_bytes_): Run tr in the "C" locale so it does
722         not try to interpret its random input bytes.  Jarno Rajahalme reported
723         that ./test-xalloc-die.sh would fail with "tr: Illegal byte sequence".
724         on Darwin 10.3.0 with LC_CTYPE=UTF-8.
725         (mktempd_): Likewise, just in case.
726
727         ftruncate: add two years to projected module removal date: 2012
728         * m4/ftruncate.m4: Adjust comments.
729
730         ftruncate: mark module as obsolete; even MinGW provides it, now
731         * modules/ftruncate (Status): Obsolete.
732         (Notice): Say that.
733         * doc/posix-functions/ftruncate.texi: Don't say MinGW lacks it.
734         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/9203
735
736 2010-04-08  Bruno Haible  <bruno@clisp.org>
737
738         Fix side effects from tests-related modules.
739         * modules/dprintf-posix (Comment): New section.
740         * modules/fprintf-posix (Comment): Likewise.
741         * modules/obstack-printf-posix (Comment): Likewise.
742         * modules/printf-posix (Comment): Likewise.
743         * modules/snprintf-posix (Comment): Likewise.
744         * modules/sprintf-posix (Comment): Likewise.
745         * modules/vasnprintf-posix (Comment): Likewise.
746         * modules/vasprintf-posix (Comment): Likewise.
747         * modules/vdprintf-posix (Comment): Likewise.
748         * modules/vfprintf-posix (Comment): Likewise.
749         * modules/vprintf-posix (Comment): Likewise.
750         * modules/vsnprintf-posix (Comment): Likewise.
751         * modules/vsprintf-posix (Comment): Likewise.
752         * modules/xprintf-posix (Comment): Likewise.
753         * modules/xvasprintf-posix (Comment): Likewise.
754         * modules/ceilf-tests (Depends-on): Remove fprintf-posix.
755         * modules/floorf-tests (Depends-on): Likewise.
756         * modules/round-tests (Depends-on): Likewise.
757         * modules/roundf-tests (Depends-on): Likewise.
758         * modules/trunc-tests (Depends-on): Likewise.
759         * modules/truncf-tests (Depends-on): Likewise.
760         * tests/test-ceilf2.c (check): Don't invoke fprintf if the
761         'fprintf-posix' module is not present.
762         * tests/test-floorf2.c (check): Likewise.
763         * tests/test-trunc2.c (check): Likewise.
764         * tests/test-truncf2.c (check): Likewise.
765         * tests/test-round2.c (equal): Likewise.
766         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
767
768 2010-04-07  Karl Berry  <karl@gnu.org>
769
770         * config/srclist.txt,
771         * config/srclistvars.sh,
772         * config/srclist-update: doc fixes.
773
774 2010-04-07  Jim Meyering  <meyering@redhat.com>
775
776         maint.mk: add a PATH crosschecking syntax-check rule
777         * top/maint.mk (sc_cross_check_PATH_usage_in_tests): New rule.
778         Useful if you use a test like the one in help-version (coreutils,
779         diffutils, grep, gzip) that ensures $(VERSION) matches what is
780         printed by prog --version.
781
782 2010-04-06  Bruno Haible  <bruno@clisp.org>
783
784         Fix link error on mingw.
785         * modules/unistd-c++-tests (test_unistd_c___LDADD): Add LIBSOCKET.
786         * modules/fcntl-h-c++-tests (test_fcntl_h_c___LDADD): Likewise.
787
788 2010-04-06  Bruno Haible  <bruno@clisp.org>
789
790         Assume rmdir exists.
791         * lib/rmdir.c (rpl_rmdir): Remove code that invokes the rmdir program.
792
793 2010-04-06  Giuseppe Scrivano <gscrivano@gnu.org>
794
795         doc: update users.txt
796         * users.txt: Add gcal.
797
798 2010-04-06  Jim Meyering  <meyering@redhat.com>
799
800         init.sh: simply unset TMPDIR rather than risking env -i
801         * tests/init.sh (mktempd_): Using env -i is rather harsh, and
802         although it probably works fine on all Unix-based systems, some
803         systems (Cygwin?) cannot tolerate a totally cleared environment.
804         Suggestion from Eric Blake.
805
806 2010-04-06  Jim Meyering  <meyering@redhat.com>
807
808         init.sh: portability fix: use env's POSIX-specified -i option not -u
809         * tests/init.sh (mktempd_): Use env -i and set PATH explicitly rather
810         than unportable env -u.  Solaris 5.11's env lacks support for -u.
811
812 2010-04-05  Bruno Haible  <bruno@clisp.org>
813
814         btowc: Work around Cygwin 1.7.2 bug.
815         * m4/btowc.m4 (gl_FUNC_BTOWC): Set REPLACE_BTOWC to 1 if the function
816         does not map NUL to 0.
817         * doc/posix-functions/btowc.texi: Mention the Cygwin bug.
818
819 2010-04-05  Bruno Haible  <bruno@clisp.org>
820
821         Make the multithread modules work on Cygwin 1.7.2.
822         * m4/threadlib.m4 (gl_THREADLIB_BODY): Improve the test whether
823         imported symbols can be declared weak, so that it returns "no" on
824         Cygwin 1.7.2.
825
826 2010-04-05  Bruno Haible  <bruno@clisp.org>
827
828         Use the module 'strncat'.
829         * modules/unistr/u8-strncat (Depends-on): Add strncat.
830
831         Tests for module 'strncat'.
832         * modules/strncat-tests: New file.
833         * tests/test-strncat.c: New file.
834
835         New module 'strncat'.
836         * lib/string.in.h (strncat): New declaration.
837         * lib/strncat.c: New file, based on lib/unistr/u-strncat.h.
838         * m4/strncat.m4: New file, based on m4/memchr.m4.
839         * modules/strncat: New file.
840         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Also check whether strncat
841         is declared.
842         (gl_HEADER_STRING_H_DEFAULTS): Initialize GNULIB_STRNCAT,
843         REPLACE_STRNCAT.
844         * modules/string (Makefile.am): Substitute GNULIB_STRNCAT,
845         REPLACE_STRNCAT.
846         * doc/posix-functions/strncat.texi: Mention the Solaris bug and the new
847         module.
848         * tests/test-string-c++.cc: Check signature of strncat.
849
850 2010-04-05  Jim Meyering  <meyering@redhat.com>
851
852         xstrtoumax-tests: convert to use init.sh
853         * modules/xstrtoumax-tests (Files): Add tests/init.sh.
854         * tests/test-xstrtoumax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
855         Use Exit, not exit.
856         Remove uses of $EXEEXT and "./" to run a program in the current dir.
857
858         xstrtoimax-tests: convert to use init.sh
859         * modules/xstrtoimax-tests (Files): Add tests/init.sh.
860         * tests/test-xstrtoimax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
861         Use Exit, not exit.
862         Remove uses of $EXEEXT and "./" to run a program in the current dir.
863
864 2010-04-05  Bruno Haible  <bruno@clisp.org>
865
866         sys_socket: Avoid #define replacements in C++ mode.
867         * lib/sys_socket.in.h (close, gethostname, select): In C++, attach a
868         warning to the function if possible, rather than #defining the symbol
869         to a dysfunctional alias.
870
871 2010-04-05  Bruno Haible  <bruno@clisp.org>
872
873         fseeko: Fix C++ test error on mingw.
874         * m4/fseeko.m4 (gl_HAVE_FSEEKO): New macro, extracted from
875         gl_FUNC_FSEEKO.
876         (gl_REPLACE_FSEEKO): Also set REPLACE_FSEEKO if appropriate.
877         (gl_FUNC_FSEEKO): Require gl_HAVE_FSEEKO. Update.
878         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't fiddle with internals of the
879         fseeko module. Instead, invoke gl_REPLACE_FSEEKO.
880
881 2010-04-05  Bruno Haible  <bruno@clisp.org>
882
883         duplocale: Improve test output.
884         * tests/test-duplocale.c (main): Print reason for skipped test.
885
886 2010-04-05  Bruno Haible  <bruno@clisp.org>
887
888         Assume rmdir exists.
889         * m4/rmdir.m4 (gl_FUNC_RMDIR): Remove test whether rmdir exists.
890         * doc/posix-functions/rmdir.texi: Remove mention of "old platforms".
891
892 2010-04-05  Bruno Haible  <bruno@clisp.org>
893
894         Fix link error on Solaris 8 with cc.
895         * modules/pty-c++-tests (test_pty_c___LDADD): Add LIBINTL.
896
897 2010-04-05  Bruno Haible  <bruno@clisp.org>
898
899         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
900         * lib/math.in.h (frexpl): Fix condition on _GL_CXXALIASWARN invocation.
901
902 2010-04-05  Bruno Haible  <bruno@clisp.org>
903
904         vasprintf: Update documentation.
905         * doc/glibc-functions/asprintf.texi: Mention the 'vasprintf' module.
906
907 2010-04-05  Bruno Haible  <bruno@clisp.org>
908
909         ptsname: Improve test.
910         * tests/test-ptsname.c (main): Also try the various master names of BSD
911         systems.
912
913 2010-04-05  Bruno Haible  <bruno@clisp.org>
914
915         memchr: Avoid a possible C++ test error.
916         * lib/string.in.h (memchr): Provide declaration if function is missing.
917         * m4/memchr.m4 (gl_FUNC_MEMCHR): If the function is missing, set
918         HAVE_MEMCHR to 0, not REPLACE_MEMCHR to 1.
919         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MEMCHR.
920         * modules/string (Makefile.am): Substitute HAVE_MEMCHR.
921
922 2010-04-05  Bruno Haible  <bruno@clisp.org>
923
924         strtok_r: Improve idiom.
925         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Invoke gl_PREREQ_STRDUP only when
926         AC_LIBOBJ is used.
927
928 2010-04-05  Bruno Haible  <bruno@clisp.org>
929
930         strdup: Improve idiom.
931         * m4/strdup.m4 (gl_FUNC_STRDUP): Invoke gl_PREREQ_STRDUP only when
932         AC_LIBOBJ is used.
933         (gl_FUNC_STRDUP_POSIX): When strdup is missing and malloc is not POSIX
934         compliant, don't set REPLACE_STRDUP to 1. Invoke gl_PREREQ_STRDUP only
935         when AC_LIBOBJ is used.
936
937 2010-04-05  Bruno Haible  <bruno@clisp.org>
938
939         mbsinit, mbrtowc, wcrtomb: Improve idioms.
940         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): When the function does not exist,
941         don't set REPLACE_MBSINIT to 1.
942         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): When the function does not exist,
943         don't set REPLACE_MBRTOWC to 1.
944         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): When the function does not
945         exist, don't set REPLACE_MBSRTOWCS to 1.
946         * m4/mbsnrtowcs.m4 (gl_FUNC_MBSNRTOWCS): When the function does not
947         exist, don't set REPLACE_MBSNRTOWCS to 1.
948         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): When the function does not exist,
949         don't set REPLACE_WCRTOMB to 1.
950         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): When the function does not
951         exist, don't set REPLACE_WCSRTOMBS to 1.
952         * m4/wcsnrtombs.m4 (gl_FUNC_WCSNRTOMBS): When the function does not
953         exist, don't set REPLACE_WCSNRTOMBS to 1.
954
955 2010-04-05  Bruno Haible  <bruno@clisp.org>
956
957         ldexpl: Improve idiom.
958         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): When the function is not declared,
959         make sure to set HAVE_DECL_LDEXPL to 0.
960
961 2010-04-05  Jim Meyering  <meyering@redhat.com>
962
963         xstrtol-tests: convert to use init.sh
964         * modules/xstrtol-tests (Files): Add tests/init.sh.
965         * tests/test-xstrtol.sh: Invoke "$srcdir/init.sh" and path_prepend_.
966         Use Exit, not exit.
967         Remove uses of $EXEEXT and "./" to run a program in the current dir.
968
969         atexit-tests: convert to use init.sh
970         * modules/atexit-tests (Files): Add tests/init.sh.
971         * tests/test-atexit.sh: Invoke "$srcdir/init.sh" and path_prepend_.
972         Use Exit, not exit.
973         Remove uses of $EXEEXT and "./" to run a program in the current dir.
974
975         init.sh: fix typo
976         * tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
977
978         init.sh: make it easier for a test script to write to the tty, ...
979         when using automake's parallel-tests mode.
980         * tests/init.sh (stderr_fileno_): Define overridable variable.
981         (warn_): New function, to use it.
982         (fail_, skip_, framework_failure_): Use warn_.
983
984 2010-04-04  Bruno Haible  <bruno@clisp.org>
985
986         btowc: Avoid warning.
987         * lib/btowc.c: Include <stdlib.h>.
988         Reported by Hauke Fath <hauke@espresso.rhein-neckar.de>.
989
990 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
991             Bruno Haible  <bruno@clisp.org>
992
993         wchar: Port to NetBSD 1.5.
994         * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
995         * lib/wctype.in.h (WEOF): Likewise.
996
997 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
998             Bruno Haible  <bruno@clisp.org>
999
1000         Port extended stdio to NetBSD 1.5.
1001         * lib/stdio-impl.h [NetBSD]: Include <sys/param.h>.
1002         (struct __sfileext, fp_ub): Define the "old way" for NetBSD 1.5Z and
1003         older.
1004
1005 2010-04-04  Bruno Haible  <bruno@clisp.org>
1006
1007         string: Remove unused substitution.
1008         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
1009         HAVE_DECL_STRERROR.
1010         * modules/string (Makefile.am): Don't substitute HAVE_DECL_STRERROR.
1011
1012 2010-04-04  Bruno Haible  <bruno@clisp.org>
1013
1014         strtod: Avoid a possible C++ test error.
1015         * m4/strtod.m4 (gl_FUNC_STRTOD): When setting HAVE_STRTOD to 0, don't
1016         set REPLACE_STRTOD.
1017
1018 2010-04-04  Bruno Haible  <bruno@clisp.org>
1019
1020         strerror: Update documentation.
1021         * doc/posix-functions/strerror.texi: Remove mention of old platforms.
1022
1023 2010-04-04  Bruno Haible  <bruno@clisp.org>
1024
1025         stdio: Fix some C++ test errors on Solaris 8 with GCC.
1026         * lib/stdio.in.h (vdprintf, vfprintf, vprintf, vsprintf): Use
1027         _GL_CXXALIAS_SYS_CAST.
1028
1029 2010-04-04  Bruno Haible  <bruno@clisp.org>
1030
1031         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
1032         * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): When the
1033         function is not declared, set HAVE_DECL_FREXPL to 0, instead of setting
1034         REPLACE_FREXPL to 1.
1035         * doc/posix-functions/frexpl.texi: Update documentation.
1036
1037 2010-04-04  Bruno Haible  <bruno@clisp.org>
1038
1039         math: Fix some C++ test errors on Solaris 8 and Cygwin.
1040         * lib/math.in.h (cosl, logl, sinl): Use simpler idiom.
1041
1042 2010-04-04  Bruno Haible  <bruno@clisp.org>
1043
1044         Implement nanosleep for native Windows.
1045         * lib/nanosleep.c (nanosleep): New implementation for native Windows.
1046
1047 2010-04-04  Bruno Haible  <bruno@clisp.org>
1048
1049         math: Fix some C++ test errors on Solaris 8.
1050         * lib/math.in.h (truncf, trunc): Use simpler idiom.
1051
1052 2010-04-04  Bruno Haible  <bruno@clisp.org>
1053
1054         math: Fix some C++ test errors on Cygwin.
1055         * lib/math.in.h (ceilf, ceill, floorf, floorl, roundf, round, roundl,
1056         truncl): Provide declaration if the system does not have it.
1057         * m4/ceilf.m4 (gl_FUNC_CEILF): If the function is not declared, set
1058         HAVE_DECL_CEILF to 0, not REPLACE_CEILF to 1.
1059         * m4/ceill.m4 (gl_FUNC_CEILL): If the function is not declared, set
1060         HAVE_DECL_CEILL to 0, not REPLACE_CEILL to 1.
1061         * m4/floorf.m4 (gl_FUNC_FLOORF): If the function is not declared, set
1062         HAVE_DECL_FLOORF to 0, not REPLACE_FLOORF to 1.
1063         * m4/floorl.m4 (gl_FUNC_FLOORL): If the function is not declared, set
1064         HAVE_DECL_FLOORL to 0, not REPLACE_FLOORL to 1.
1065         * m4/round.m4 (gl_FUNC_ROUND): If the function is not declared, set
1066         HAVE_DECL_ROUND to 0, not REPLACE_ROUND to 1.
1067         * m4/roundf.m4 (gl_FUNC_ROUNDF): If the function is not declared, set
1068         HAVE_DECL_ROUNDF to 0, not REPLACE_ROUNDF to 1.
1069         * m4/roundl.m4 (gl_FUNC_ROUNDL): If the function is not declared, set
1070         HAVE_DECL_ROUNDL to 0, not REPLACE_ROUNDL to 1.
1071         * m4/truncl.m4 (gl_FUNC_TRUNCL): If the function is not declared, set
1072         HAVE_DECL_TRUNCL to 0, not REPLACE_TRUNCL to 1.
1073         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize HAVE_DECL_CEILF,
1074         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
1075         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
1076         * modules/math (Makefile.am): Substitute HAVE_DECL_CEILF,
1077         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
1078         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
1079
1080 2010-04-04  Bruno Haible  <bruno@clisp.org>
1081
1082         * m4/ceilf.m4 (gl_FUNC_CEILF): Remove redundant AC_SUBST invocation.
1083         * m4/ceill.m4 (gl_FUNC_CEILL): Likewise.
1084         * m4/floorf.m4 (gl_FUNC_FLOORF): Likewise.
1085         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
1086         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
1087         * m4/isinf.m4 (gl_ISINF): Likewise.
1088         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
1089
1090 2010-04-04  Bruno Haible  <bruno@clisp.org>
1091
1092         * m4/trunc.m4 (gl_FUNC_TRUNC): Remove redundant AC_SUBST invocation.
1093         * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
1094
1095 2010-04-04  Bruno Haible  <bruno@clisp.org>
1096
1097         * m4/tmpfile.m4 (gl_FUNC_TMPFILE): Renamed from gl_TMPFILE.
1098         * modules/tmpfile (configure.ac): Update.
1099
1100         tmpfile: Fix C++ test error on mingw.
1101         * lib/stdio.in.h (tmpfile): New declaration.
1102         * m4/tmpfile.m4 (gl_TMPFILE): Require gl_STDIO_H_DEFAULTS. Set
1103         REPLACE_TMPFILE instead of defining tmpfile as a macro in config.h.
1104         * modules/tmpfile (Depends-on): Add stdio.
1105         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
1106         * m4/stdio_h.m4 (gl_STDIO_H): Also check whether tmpfile is declared.
1107         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_TMPFILE and REPLACE_TMPFILE.
1108         * modules/stdio (Makefile.am): Substitute GNULIB_TMPFILE and
1109         REPLACE_TMPFILE.
1110         * tests/test-stdio-c++.cc (tmpfile): Verify signature.
1111
1112 2010-04-04  Bruno Haible  <bruno@clisp.org>
1113
1114         ioctl: Fix C++ test error on mingw.
1115         * lib/ioctl.c (ioctl): Renamed from rpl_ioctl.
1116         * lib/sys_ioctl.in.h (ioctl): When SYS_IOCTL_H_HAVE_WINSOCK2_H is 1,
1117         use _GL_FUNCDECL_SYS, not _GL_FUNCDECL_RPL.
1118
1119 2010-04-03  Bruno Haible  <bruno@clisp.org>
1120
1121         wcwidth: Fix C++ test error on mingw.
1122         * lib/wcwidth.c (wcwidth): Renamed from rpl_wcwidth.
1123         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): If the wcwidth function does not
1124         exist, don't set REPLACE_WCWIDTH. Instead, rely on HAVE_DECL_WCWIDTH.
1125
1126 2010-04-03  Bruno Haible  <bruno@clisp.org>
1127
1128         nanosleep: Fix C++ test error on mingw.
1129         * lib/nanosleep.c (nanosleep): Renamed from rpl_nanosleep.
1130         * lib/time.in.h (nanosleep): Use modern idiom.
1131         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): When the system does not have a
1132         nanosleep function, set HAVE_NANOSLEEP to 0, instead of setting
1133         REPLACE_NANOSLEEP to 1.
1134         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_NANOSLEEP.
1135         * modules/time (Makefile.am): Substitute HAVE_NANOSLEEP.
1136
1137 2010-04-03  Bruno Haible  <bruno@clisp.org>
1138
1139         strptime: Fix C++ test error on mingw.
1140         * lib/time.in.h (strptime): Use HAVE_STRPTIME, not REPLACE_STRPTIME.
1141         * m4/strptime.m4 (gl_FUNC_STRPTIME): Set HAVE_STRPTIME, not
1142         REPLACE_STRPTIME. Invoke gl_PREREQ_STRPTIME.
1143         (gl_PREREQ_STRPTIME): New macro, extracted from gl_FUNC_STRPTIME.
1144         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_STRPTIME,
1145         not REPLACE_STRPTIME.
1146         * modules/time (Makefile.am): Substitute HAVE_STRPTIME, not
1147         REPLACE_STRPTIME.
1148
1149 2010-04-03  Bruno Haible  <bruno@clisp.org>
1150
1151         timegm: Fix C++ test error on mingw.
1152         * lib/time.in.h (timegm): Use modern idiom.
1153         * m4/timegm.m4 (gl_FUNC_TIMEGM): When timegm does not exist, set
1154         HAVE_TIMEGM to 0, not REPLACE_TIMEGM to 1.
1155         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_TIMEGM.
1156         * modules/time (Makefile.am): Substitute HAVE_TIMEGM.
1157
1158 2010-04-03  Bruno Haible  <bruno@clisp.org>
1159
1160         timegm: Assume declaration if function exists.
1161         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume timegm is declared if and only
1162         if it exists. Don't clobber ac_cv_func_timegm.
1163
1164 2010-04-03  Bruno Haible  <bruno@clisp.org>
1165
1166         time_r: Fix C++ test error on mingw.
1167         * lib/time.in.h (localtime_r, gmtime_r): Use modern idiom.
1168         * m4/time_r.m4 (gl_TIME_R): When localtime_r does not exist, set
1169         HAVE_LOCALTIME_R to 0, not REPLACE_LOCALTIME_R to 1.
1170         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_LOCALTIME_R.
1171         * modules/time (Makefile.am): Substitute HAVE_LOCALTIME_R.
1172
1173 2010-04-03  Bruno Haible  <bruno@clisp.org>
1174
1175         time_r: Minor updates.
1176         * modules/time_r (Description): Mention the provided functions.
1177         * lib/time_r.c: Don't include <string.h>.
1178         * doc/posix-functions/gmtime_r.texi: Mention the 'time_r' module.
1179         * doc/posix-functions/localtime_r.texi: Likewise.
1180
1181 2010-04-03  Bruno Haible  <bruno@clisp.org>
1182
1183         time: Fix regression introduced on 2010-03-08.
1184         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Require
1185         gl_HEADER_TIME_H_DEFAULTS, not gl_HEADER_STRING_H_DEFAULTS.
1186
1187 2010-04-03  Jim Meyering  <meyering@redhat.com>
1188
1189         maint.mk: don't silently disable project-specific syntax-check rules
1190         * top/maint.mk (_prohibit_regexp): Define, to help people realize
1191         that they need to convert their project-specific syntax-check rules
1192         to use the new _sc_search_regexp.
1193
1194 2010-04-03  Bruno Haible  <bruno@clisp.org>
1195
1196         fchdir: Fix regression introduced on 2010-03-08.
1197         * lib/unistd.in.h (fchdir): Fix declaration.
1198         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set HAVE_FCHDIR, not REPLACE_FCHDIR.
1199         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize HAVE_FCHDIR, not
1200         REPLACE_FCHDIR.
1201         * modules/unistd (Makefile.am): Substitute HAVE_FCHDIR, not
1202         REPLACE_FCHDIR.
1203
1204 2010-04-03  Bruno Haible  <bruno@clisp.org>
1205
1206         getpagesize: Fix C++ test error on mingw.
1207         * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the
1208         system does not declare the function.
1209         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's
1210         declared.
1211         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
1212         HAVE_DECL_GETPAGESIZE.
1213         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE.
1214
1215 2010-04-03  Bruno Haible  <bruno@clisp.org>
1216
1217         stdio: Make C++ tests work on mingw.
1218         * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system
1219         does not declare the function.
1220
1221 2010-04-03  Bruno Haible  <bruno@clisp.org>
1222
1223         ftello: Fix C++ test error on mingw.
1224         * lib/stdio.in.h (ftello): Use modern idiom.
1225         * lib/ftello.c (ftello): Renamed from rpl_ftello.
1226         * m4/ftello.m4 (gl_FUNC_FTELLO): Distinguish the case that the function
1227         is missing and that it needs to be replaced.
1228         (gl_REPLACE_FTELLO): Don't set REPLACE_FTELLO here.
1229         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FTELLO.
1230         * modules/stdio (Makefile.am): Substitute HAVE_FTELLO.
1231
1232 2010-04-03  Bruno Haible  <bruno@clisp.org>
1233
1234         fseeko: Fix C++ test error on mingw.
1235         * lib/stdio.in.h (fseeko): Use modern idiom.
1236         * lib/fseeko.c (fseeko): Renamed from rpl_fseeko.
1237         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Distinguish the case that the function
1238         is missing and that it needs to be replaced.
1239         (gl_REPLACE_FSEEKO): Don't set REPLACE_FSEEKO here.
1240         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FSEEKO.
1241         * modules/stdio (Makefile.am): Substitute HAVE_FSEEKO.
1242
1243 2010-04-03  Bruno Haible  <bruno@clisp.org>
1244
1245         mkstemp: Fix C++ test error on mingw.
1246         * lib/stdlib.in.h (mkstemp): Use modern idiom.
1247         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Distinguish the case that the
1248         function is missing and that it needs to be replaced.
1249         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize HAVE_MKSTEMP.
1250         * modules/stdlib (Makefile.am): Substitute HAVE_MKSTEMP.
1251
1252 2010-04-03  Bruno Haible  <bruno@clisp.org>
1253
1254         stpncpy: Fix C++ test error on mingw.
1255         * lib/string.in.h (stpncpy): Use modern idiom.
1256         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Distinguish the case that the
1257         function is missing and that it needs to be replaced.
1258         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
1259         REPLACE_STPNCPY.
1260         * modules/string (Makefile.am): Substitute REPLACE_STPNCPY.
1261
1262 2010-04-03  Bruno Haible  <bruno@clisp.org>
1263
1264         sys_stat: Fix C++ test error on mingw.
1265         * build-aux/c++defs.h (_GL_CXXALIAS_RPL_CAST_1): New macro.
1266         * lib/sys_stat.in.h (lchmod): Use it instead of _GL_CXXALIAS_RPL_1.
1267
1268 2010-04-03  Bruno Haible  <bruno@clisp.org>
1269
1270         pty: Update doc.
1271         * doc/glibc-headers/pty.texi: Mention changes done since 2010-03-18.
1272
1273 2010-04-03  Bruno Haible  <bruno@clisp.org>
1274
1275         unistd: Fix C++ test error on mingw.
1276         * lib/unistd.in.h (getcwd): Use _GL_CXXALIAS_SYS_CAST.
1277
1278 2010-04-03  Bruno Haible  <bruno@clisp.org>
1279
1280         Update doc regarding mingw.
1281         * doc/glibc-functions/openpty.texi: Update regarding mingw.
1282         * doc/glibc-functions/login_tty.texi: Likewise.
1283         * doc/glibc-functions/forkpty.texi: Likewise.
1284
1285 2010-04-03  Bruno Haible  <bruno@clisp.org>
1286
1287         stdlib: Avoid compilation failure of c-strtold on mingw.
1288         * lib/stdlib.in.h: Don't include <unistd.h> on native Windows systems.
1289
1290 2010-04-03  Bruno Haible  <bruno@clisp.org>
1291
1292         locale: Make C++ tests work on Cygwin and mingw.
1293         * lib/locale.in.h (duplocale): Don't use _GL_CXXALIASWARN if gnulib
1294         cannot provide the function.
1295         Reported by Simon Josefsson.
1296
1297 2010-04-03  Bruno Haible  <bruno@clisp.org>
1298
1299         localename: Port to MacOS X 10.6.
1300         * lib/localename.c (gl_locale_name_thread_unsafe): On MacOS X, try the
1301         memory layout of the locales in MacOS X 10.6 as well.
1302         Reported by Panu Kekäläinen <panu@kekalainen.eu>.
1303
1304 2010-04-02  Bruno Haible  <bruno@clisp.org>
1305
1306         gnulib-tool: Ensure that long-running tests are executed last.
1307         * gnulib-tool (func_emit_tests_Makefile_am): Emit the code for long-
1308         running tests after the one for the other tests.
1309
1310 2010-04-02  Bruno Haible  <bruno@clisp.org>
1311
1312         gnulib-tool: Ensure the tests in the main directory are executed first.
1313         * gnulib-tool (func_emit_tests_Makefile_am): Initialize SUBDIRS to
1314         start with the current directory.
1315
1316 2010-04-02  Bruno Haible  <bruno@clisp.org>
1317
1318         Tests for module 'havelib', moved here from GNU gettext.
1319         * modules/havelib-tests: New file, from gettext/autoconf-lib-link with
1320         modifications.
1321         * tests/havelib/README: New file, from gettext/autoconf-lib-link.
1322         * tests/havelib/Makefile.am: New file, from gettext/autoconf-lib-link
1323         with modifications.
1324         * tests/havelib/rpath-1: New file, from gettext/autoconf-lib-link with
1325         modifications.
1326         * tests/havelib/rpath-1a: New file, from gettext/autoconf-lib-link.
1327         * tests/havelib/rpath-1b: New file, from gettext/autoconf-lib-link.
1328         * tests/havelib/rpath-2_a: New file, from gettext/autoconf-lib-link
1329         with modifications.
1330         * tests/havelib/rpath-2_b: New file, from gettext/autoconf-lib-link
1331         with modifications.
1332         * tests/havelib/rpath-2aaa: New file, from gettext/autoconf-lib-link.
1333         * tests/havelib/rpath-2aab: New file, from gettext/autoconf-lib-link.
1334         * tests/havelib/rpath-2aac: New file, from gettext/autoconf-lib-link.
1335         * tests/havelib/rpath-2aad: New file, from gettext/autoconf-lib-link.
1336         * tests/havelib/rpath-2aba: New file, from gettext/autoconf-lib-link.
1337         * tests/havelib/rpath-2abb: New file, from gettext/autoconf-lib-link.
1338         * tests/havelib/rpath-2abc: New file, from gettext/autoconf-lib-link.
1339         * tests/havelib/rpath-2abd: New file, from gettext/autoconf-lib-link.
1340         * tests/havelib/rpath-2baa: New file, from gettext/autoconf-lib-link.
1341         * tests/havelib/rpath-2bab: New file, from gettext/autoconf-lib-link.
1342         * tests/havelib/rpath-2bac: New file, from gettext/autoconf-lib-link.
1343         * tests/havelib/rpath-2bad: New file, from gettext/autoconf-lib-link.
1344         * tests/havelib/rpath-2bba: New file, from gettext/autoconf-lib-link.
1345         * tests/havelib/rpath-2bbb: New file, from gettext/autoconf-lib-link.
1346         * tests/havelib/rpath-2bbc: New file, from gettext/autoconf-lib-link.
1347         * tests/havelib/rpath-2bbd: New file, from gettext/autoconf-lib-link.
1348         * tests/havelib/rpath-3_a: New file, from gettext/autoconf-lib-link
1349         with modifications.
1350         * tests/havelib/rpath-3_b: New file, from gettext/autoconf-lib-link
1351         with modifications.
1352         * tests/havelib/rpath-3aaa: New file, from gettext/autoconf-lib-link.
1353         * tests/havelib/rpath-3aab: New file, from gettext/autoconf-lib-link.
1354         * tests/havelib/rpath-3aac: New file, from gettext/autoconf-lib-link.
1355         * tests/havelib/rpath-3aad: New file, from gettext/autoconf-lib-link.
1356         * tests/havelib/rpath-3aae: New file, from gettext/autoconf-lib-link.
1357         * tests/havelib/rpath-3aaf: New file, from gettext/autoconf-lib-link.
1358         * tests/havelib/rpath-3aag: New file, from gettext/autoconf-lib-link.
1359         * tests/havelib/rpath-3aah: New file, from gettext/autoconf-lib-link.
1360         * tests/havelib/rpath-3aba: New file, from gettext/autoconf-lib-link.
1361         * tests/havelib/rpath-3abb: New file, from gettext/autoconf-lib-link.
1362         * tests/havelib/rpath-3abc: New file, from gettext/autoconf-lib-link.
1363         * tests/havelib/rpath-3abd: New file, from gettext/autoconf-lib-link.
1364         * tests/havelib/rpath-3abe: New file, from gettext/autoconf-lib-link.
1365         * tests/havelib/rpath-3abf: New file, from gettext/autoconf-lib-link.
1366         * tests/havelib/rpath-3abg: New file, from gettext/autoconf-lib-link.
1367         * tests/havelib/rpath-3abh: New file, from gettext/autoconf-lib-link.
1368         * tests/havelib/rpath-3baa: New file, from gettext/autoconf-lib-link.
1369         * tests/havelib/rpath-3bab: New file, from gettext/autoconf-lib-link.
1370         * tests/havelib/rpath-3bac: New file, from gettext/autoconf-lib-link.
1371         * tests/havelib/rpath-3bad: New file, from gettext/autoconf-lib-link.
1372         * tests/havelib/rpath-3bae: New file, from gettext/autoconf-lib-link.
1373         * tests/havelib/rpath-3baf: New file, from gettext/autoconf-lib-link.
1374         * tests/havelib/rpath-3bag: New file, from gettext/autoconf-lib-link.
1375         * tests/havelib/rpath-3bah: New file, from gettext/autoconf-lib-link.
1376         * tests/havelib/rpath-3bba: New file, from gettext/autoconf-lib-link.
1377         * tests/havelib/rpath-3bbb: New file, from gettext/autoconf-lib-link.
1378         * tests/havelib/rpath-3bbc: New file, from gettext/autoconf-lib-link.
1379         * tests/havelib/rpath-3bbd: New file, from gettext/autoconf-lib-link.
1380         * tests/havelib/rpath-3bbe: New file, from gettext/autoconf-lib-link.
1381         * tests/havelib/rpath-3bbf: New file, from gettext/autoconf-lib-link.
1382         * tests/havelib/rpath-3bbg: New file, from gettext/autoconf-lib-link.
1383         * tests/havelib/rpath-3bbh: New file, from gettext/autoconf-lib-link.
1384         * tests/havelib/rpathx/rpathx.c: New file, from
1385         gettext/autoconf-lib-link.
1386         * tests/havelib/rpathx/Makefile.am: New file, from
1387         gettext/autoconf-lib-link.
1388         * tests/havelib/rpathx/configure.ac: New file, from
1389         gettext/autoconf-lib-link with modifications.
1390         * tests/havelib/rpathy/rpathy.c: New file, from
1391         gettext/autoconf-lib-link.
1392         * tests/havelib/rpathy/Makefile.am: New file, from
1393         gettext/autoconf-lib-link.
1394         * tests/havelib/rpathy/configure.ac: New file, from
1395         gettext/autoconf-lib-link with modifications.
1396         * tests/havelib/rpathz/rpathz.c: New file, from
1397         gettext/autoconf-lib-link.
1398         * tests/havelib/rpathz/Makefile.am: New file, from
1399         gettext/autoconf-lib-link.
1400         * tests/havelib/rpathz/configure.ac: New file, from
1401         gettext/autoconf-lib-link with modifications.
1402         * tests/havelib/rpathlx/usex.c: New file, from
1403         gettext/autoconf-lib-link.
1404         * tests/havelib/rpathlx/Makefile.am: New file, from
1405         gettext/autoconf-lib-link.
1406         * tests/havelib/rpathlx/configure.ac: New file, from
1407         gettext/autoconf-lib-link with modifications.
1408         * tests/havelib/rpathly/usey.c: New file, from
1409         gettext/autoconf-lib-link.
1410         * tests/havelib/rpathly/Makefile.am: New file, from
1411         gettext/autoconf-lib-link.
1412         * tests/havelib/rpathly/configure.ac: New file, from
1413         gettext/autoconf-lib-link with modifications.
1414         * tests/havelib/rpathlz/usez.c: New file, from
1415         gettext/autoconf-lib-link.
1416         * tests/havelib/rpathlz/Makefile.am: New file, from
1417         gettext/autoconf-lib-link.
1418         * tests/havelib/rpathlz/configure.ac: New file, from
1419         gettext/autoconf-lib-link with modifications.
1420         * tests/havelib/rpathlyx/usey.c: New file, from
1421         gettext/autoconf-lib-link.
1422         * tests/havelib/rpathlyx/Makefile.am: New file, from
1423         gettext/autoconf-lib-link.
1424         * tests/havelib/rpathlyx/configure.ac: New file, from
1425         gettext/autoconf-lib-link with modifications.
1426         * tests/havelib/rpathlzyx/usez.c: New file, from
1427         gettext/autoconf-lib-link.
1428         * tests/havelib/rpathlzyx/Makefile.am: New file, from
1429         gettext/autoconf-lib-link.
1430         * tests/havelib/rpathlzyx/configure.ac: New file, from
1431         gettext/autoconf-lib-link with modifications.
1432         * tests/havelib/rpathcfg.sh: New file, from gettext/autoconf-lib-link
1433         with modifications.
1434
1435 2010-04-02  Bruno Haible  <bruno@clisp.org>
1436
1437         gnulib-tool: Create distributed built sources also for the tests.
1438         * gnulib-tool (func_create_testdir): Also generate distributed built
1439         sources in the tests directory.
1440
1441 2010-04-02  Bruno Haible  <bruno@clisp.org>
1442
1443         gnulib-tool: Obey user's environment variables.
1444         * gnulib-tool (func_create_testdir): When creating built sources,
1445         respect the environment variables for autoconf, automake, etc. given by
1446         the user.
1447
1448 2010-04-02  Bruno Haible  <bruno@clisp.org>
1449
1450         gnulib-tool: Provide the value of --m4-base to modules.
1451         * gnulib-tool (func_import, func_create_testdir): Emit a definition
1452         of gl_m4_base.
1453
1454 2010-04-02  Eric Blake  <eblake@redhat.com>
1455
1456         maint.mk: fix some fallout
1457         * NEWS: Document the incompatible change, and its effect on cfg.mk.
1458         * top/maint.mk (sc_prohibit_test_minus_ao): Update.
1459
1460 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
1461
1462         maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
1463         * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
1464         (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
1465         (sc_cast_of_x_alloc_return_value): Likewise.
1466         (sc_cast_of_alloca_return_value): Likewise.
1467         (sc_space_tab): Likewise.
1468         (sc_prohibit_atoi_atof): Likewise.
1469         (sc_prohibit_magic_number_exit): Likewise.
1470         (sc_error_exit_success): Likewise.
1471         (sc_file_system): Likewise.
1472         (sc_prohibit_have_config_h): Likewise.
1473         (sc_require_config_h): Likewise.
1474         (sc_prohibit_HAVE_MBRTOWC): Likewise.
1475         (sc_obsolete_symbols): Likewise.
1476         (sc_changelog): Likewise.
1477         (sc_program_name): Likewise.
1478         (sc_the_the): Likewise.
1479         (sc_trailing_blank): Likewise.
1480         (sc_two_space_separator_in_usage): Likewise.
1481         (sc_useless_cpp_parens): Likewise.
1482         (sc_GPL_version): Likewise.
1483         (sc_GFDL_version): Likewise.
1484         (sc_texinfo_acronym): Likewise.
1485         (sc_prohibit_cvs_keyword): Likewise.
1486         (sc_prohibit_stat_st_blocks): Likewise.
1487         (sc_prohibit_S_IS_definition): Likewise.
1488         (sc_redundant_const): Likewise.
1489         (sc_makefile_TAB_only_indentation): Likewise.
1490         (sc_m4_quote_check): Likewise.
1491         (sc_makefile_path_separator_check): Likewise.
1492         (sc_copyright_check): Likewise.
1493         (sc_Wundef_boolean): Likewise.
1494         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
1495
1496         maint.mk: match 0 or more whitespace-before-function-call '('
1497         * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
1498         that have zero or two-and-more spaces between the function name
1499         and the open parenthesis.
1500         (sc_error_message_warn_fatal): Likewise.
1501         (sc_error_message_uppercase): Likewise.
1502         (sc_error_message_period): Likewise.
1503
1504 2010-03-31  Eric Blake  <eblake@redhat.com>
1505
1506         maint.mk: check for [ as well as test
1507         * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
1508         Based on a libvirt report by Matthias Bolte.
1509
1510         gnumakefile: don't squelch _version output
1511         * top/GNUmakefile (_version): Create one-shot dependency rather
1512         than using $(shell) when version must be regenerated.
1513         (_autoreconf): Run verbosely, by default.
1514
1515         sys_time: avoid compiler warnings
1516         * lib/sys_time.in.h (includes): Ensure gcc pragma is
1517         unconditional, fixing regression from 2010-03-29.
1518         Reported by Simon Josefsson.
1519
1520 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
1521
1522         maint.mk: s/_header_without_use/_sc_header_without_use/
1523         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
1524         (sc_prohibit_assert_without_use): Use the new name.
1525         (sc_prohibit_close_stream_without_use): Likewise.
1526         (sc_prohibit_getopt_without_use): Likewise.
1527         (sc_prohibit_quotearg_without_use): Likewise.
1528         (sc_prohibit_quote_without_use): Likewise.
1529         (sc_prohibit_long_options_without_use): Likewise.
1530         (sc_prohibit_inttostr_without_use): Likewise.
1531         (sc_prohibit_ignore_value_without_use): Likewise.
1532         (sc_prohibit_error_without_use): Likewise.
1533         (sc_prohibit_xalloc_without_use): Likewise.
1534         (sc_prohibit_hash_without_use): Likewise.
1535         (sc_prohibit_hash_pjw_without_use): Likewise.
1536         (sc_prohibit_safe_read_without_use): Likewise.
1537         (sc_prohibit_argmatch_without_use): Likewise.
1538         (sc_prohibit_canonicalize_without_use): Likewise.
1539         (sc_prohibit_root_dev_ino_without_use): Likewise.
1540         (sc_prohibit_openat_without_use): Likewise.
1541         (sc_prohibit_c_ctype_without_use): Likewise.
1542         (sc_prohibit_signal_without_use): Likewise.
1543         (sc_prohibit_intprops_without_use): Likewise.
1544
1545 2010-03-30  Eric Blake  <eblake@redhat.com>
1546
1547         maint: improve module indicators
1548         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
1549         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
1550         columns, and avoid extra macro expansion.
1551
1552         fdopendir: work around FreeBSD bug
1553         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
1554         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
1555         * modules/dirent (Makefile.am): Substitute it.
1556         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
1557         declaration.
1558         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
1559         fix.
1560         Reported by Christian Weisgerber <naddy@mips.inka.de>.
1561
1562 2010-03-29  Bruno Haible  <bruno@clisp.org>
1563
1564         Emit #pragma system_header after the inclusion guard, not before.
1565         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
1566         guard that spans the entire file, not before. This enables an
1567         optimization in GCC's preprocessor.
1568         * lib/ctype.in.h: Likewise.
1569         * lib/dirent.in.h: Likewise.
1570         * lib/errno.in.h: Likewise.
1571         * lib/float.in.h: Likewise.
1572         * lib/getopt.in.h: Likewise.
1573         * lib/iconv.in.h: Likewise.
1574         * lib/langinfo.in.h: Likewise.
1575         * lib/locale.in.h: Likewise.
1576         * lib/math.in.h: Likewise.
1577         * lib/netdb.in.h: Likewise.
1578         * lib/netinet_in.in.h: Likewise.
1579         * lib/pty.in.h: Likewise.
1580         * lib/sched.in.h: Likewise.
1581         * lib/se-selinux.in.h: Likewise.
1582         * lib/search.in.h: Likewise.
1583         * lib/spawn.in.h: Likewise.
1584         * lib/stdarg.in.h: Likewise.
1585         * lib/stdint.in.h: Likewise.
1586         * lib/string.in.h: Likewise.
1587         * lib/strings.in.h: Likewise.
1588         * lib/sys_file.in.h: Likewise.
1589         * lib/sys_ioctl.in.h: Likewise.
1590         * lib/sys_time.in.h: Likewise.
1591         * lib/sys_times.in.h: Likewise.
1592         * lib/sys_utsname.in.h: Likewise.
1593         * lib/sys_wait.in.h: Likewise.
1594         * lib/sysexits.in.h: Likewise.
1595         * lib/wctype.in.h: Likewise.
1596
1597 2010-03-28  James Youngman  <jay@gnu.org>
1598
1599         save-cwd: don't leak a file descriptor when the caller execs.
1600         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
1601         saved file descriptor.
1602         * modules/save-cwd (Depends-on): Depend on cloexec.
1603
1604 2010-03-29  Bruno Haible  <bruno@clisp.org>
1605
1606         Remove vestiges of fts-lgpl module.
1607         * lib/fts_.h: Assume GNULIB_FTS is 1.
1608         * lib/fts.c: Likewise.
1609         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
1610
1611 2010-03-28  Bruno Haible  <bruno@clisp.org>
1612
1613         Fix definition of tests witness macro.
1614         * gnulib-tool (func_import): Fix definition of witness macro.
1615
1616 2010-03-28  Bruno Haible  <bruno@clisp.org>
1617
1618         Fix ioctl's protoype on glibc systems.
1619         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
1620         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
1621         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
1622         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
1623         signature. If not, arrange to replace the ioctl function.
1624         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
1625         REPLACE_IOCTL.
1626         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
1627         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
1628         Reported by Ludovic Courtès <ludo@gnu.org>.
1629
1630 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
1631
1632         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
1633         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
1634         made it so grep -r --include=GLOB* ... did not work.
1635
1636 2010-03-26  Jim Meyering  <meyering@redhat.com>
1637             Eric Blake  <eblake@redhat.com>
1638
1639         maint.mk: prohibit use of test's -o and -a operators
1640         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
1641
1642 2010-03-28  Bruno Haible  <bruno@clisp.org>
1643
1644         Remove unused GNULIB_XYZ macro definitions.
1645         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
1646         invocation.
1647
1648 2010-03-28  Bruno Haible  <bruno@clisp.org>
1649
1650         Mark privileged tests modules.
1651         * modules/idpriv-drop-tests (Status): New section.
1652         * modules/idpriv-droptemp-tests (Status): New section.
1653
1654 2010-03-28  Bruno Haible  <bruno@clisp.org>
1655
1656         Split C++ tests into separate tests modules.
1657         * modules/dirent-c++-tests: New file, extracted from
1658         modules/dirent-tests.
1659         * modules/dirent-tests: Depend on it.
1660         * modules/fcntl-h-c++-tests: New file, extracted from
1661         modules/fcntl-h-tests.
1662         * modules/fcntl-h-tests: Depend on it.
1663         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
1664         * modules/glob-tests: Depend on it.
1665         * modules/iconv-h-c++-tests: New file, extracted from
1666         modules/iconv-h-tests.
1667         * modules/iconv-h-tests: Depend on it.
1668         * modules/langinfo-c++-tests: New file, extracted from
1669         modules/langinfo-tests.
1670         * modules/langinfo-tests: Depend on it.
1671         * modules/locale-c++-tests: New file, extracted from
1672         modules/locale-tests.
1673         * modules/locale-tests: Depend on it.
1674         * modules/math-c++-tests: New file, extracted from modules/math-tests.
1675         * modules/math-tests: Depend on it.
1676         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
1677         * modules/pty-tests: Depend on it.
1678         * modules/search-c++-tests: New file, extracted from
1679         modules/search-tests.
1680         * modules/search-tests: Depend on it.
1681         * modules/signal-c++-tests: New file, extracted from
1682         modules/signal-tests.
1683         * modules/signal-tests: Depend on it.
1684         * modules/spawn-c++-tests: New file, extracted from
1685         modules/spawn-tests.
1686         * modules/spawn-tests: Depend on it.
1687         * modules/stdio-c++-tests: New file, extracted from
1688         modules/stdio-tests.
1689         * modules/stdio-tests: Depend on it.
1690         * modules/stdlib-c++-tests: New file, extracted from
1691         modules/stdlib-tests.
1692         * modules/stdlib-tests: Depend on it.
1693         * modules/string-c++-tests: New file, extracted from
1694         modules/string-tests.
1695         * modules/string-tests: Depend on it.
1696         * modules/sys_ioctl-c++-tests: New file, extracted from
1697         modules/sys_ioctl-tests.
1698         * modules/sys_ioctl-tests: Depend on it.
1699         * modules/sys_select-c++-tests: New file, extracted from
1700         modules/sys_select-tests.
1701         * modules/sys_select-tests: Depend on it.
1702         * modules/sys_socket-c++-tests: New file, extracted from
1703         modules/sys_socket-tests.
1704         * modules/sys_socket-tests: Depend on it.
1705         * modules/sys_stat-c++-tests: New file, extracted from
1706         modules/sys_stat-tests.
1707         * modules/sys_stat-tests: Depend on it.
1708         * modules/sys_time-c++-tests: New file, extracted from
1709         modules/sys_time-tests.
1710         * modules/sys_time-tests: Depend on it.
1711         * modules/time-c++-tests: New file, extracted from modules/time-tests.
1712         * modules/time-tests: Depend on it.
1713         * modules/unistd-c++-tests: New file, extracted from
1714         modules/unistd-tests.
1715         * modules/unistd-tests: Depend on it.
1716         * modules/wchar-c++-tests: New file, extracted from
1717         modules/wchar-tests.
1718         * modules/wchar-tests: Depend on it.
1719         * modules/wctype-c++-tests: New file, extracted from
1720         modules/wctype-tests.
1721         * modules/wctype-tests: Depend on it.
1722         Reported by Simon Josefsson.
1723
1724 2010-03-28  Bruno Haible  <bruno@clisp.org>
1725
1726         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
1727         * gnulib-tool (func_exists_module): New function, extracted from
1728         func_verify_module.
1729         (func_verify_module): Use it.
1730         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
1731         'foo' only if 'foo' exists.
1732         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
1733         module.
1734
1735 2010-03-28  Bruno Haible  <bruno@clisp.org>
1736
1737         gnulib-tool: Add support for special categories of tests.
1738         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
1739         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
1740         (func_usage): Document them.
1741         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
1742         inc_unportable_tests, inc_all_tests): New variables.
1743         (func_acceptable): Consider these variables.
1744         (func_modules_transitive_closure): Make it work when the 'Status' field
1745         consists of multiple words.
1746         (func_import): Store and restore the values of inc_cxx_tests,
1747         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
1748         inc_all_tests in gnulib-comp.m4.
1749         (func_create_testdir): Set inc_all_tests to true.
1750         * doc/gnulib.texi (Extra tests modules): New section.
1751         Suggested by Jim Meyering.
1752
1753 2010-03-28  Bruno Haible  <bruno@clisp.org>
1754
1755         ansi-c++-opt: Allow turning off the C++ build by default.
1756         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
1757         gl_CXX_CHOICE_DEFAULT_NO is defined.
1758         Requested by Eric Blake.
1759
1760 2010-03-28  Bruno Haible  <bruno@clisp.org>
1761
1762         unistd: Avoid #define replacements in C++ mode.
1763         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
1764         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
1765         setsockopt, shutdown, select): In C++, attach a warning to the function
1766         if possible, rather than #defining the symbol to a dysfunctional alias.
1767         Reported by John W. Eaton <jwe@gnu.org>.
1768
1769 2010-03-28  Bruno Haible  <bruno@clisp.org>
1770
1771         Fix link errors on mingw.
1772         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
1773         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
1774         $(LIBSOCKET).
1775         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
1776         $(LIBSOCKET).
1777
1778 2010-03-28  Bruno Haible  <bruno@clisp.org>
1779             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1780
1781         lib-ignore: Determine different options for different compilers.
1782         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
1783         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
1784         Add comments.
1785         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
1786         * NEWS: Mention the change.
1787
1788 2010-03-27  Bruno Haible  <bruno@clisp.org>
1789
1790         Remove unused GNULIB_XYZ macro definitions.
1791         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
1792         * modules/fseek (configure.ac): Likewise.
1793         * modules/ioctl (configure.ac): Likewise.
1794         * modules/open (configure.ac): Likewise.
1795         * modules/stdlib-safer (configure.ac): Likewise.
1796
1797 2010-03-27  Bruno Haible  <bruno@clisp.org>
1798
1799         Add a remark about certain modules.
1800         * modules/malloc (Comment): New section.
1801         * modules/realloc (Comment): Likewise.
1802         * modules/sigpipe (Comment): Likewise.
1803
1804 2010-03-27  Bruno Haible  <bruno@clisp.org>
1805
1806         Resolve conflict between the two kinds of module indicators.
1807         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
1808         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
1809         * modules/canonicalize (configure.ac): Invoke
1810         gl_MODULE_INDICATOR_FOR_TESTS.
1811         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
1812         GNULIB_XYZ.
1813         * tests/test-dirent-c++.cc: Likewise.
1814         * tests/test-dirent-safer.c: Likewise.
1815         * tests/test-dup2.c: Likewise.
1816         * tests/test-fchdir.c: Likewise.
1817         * tests/test-fcntl-h-c++.cc: Likewise.
1818         * tests/test-getopt.c: Likewise.
1819         * tests/test-getopt.h: Likewise.
1820         * tests/test-langinfo-c++.cc: Likewise.
1821         * tests/test-locale-c++.cc: Likewise.
1822         * tests/test-math-c++.cc: Likewise.
1823         * tests/test-pty-c++.cc: Likewise.
1824         * tests/test-search-c++.cc: Likewise.
1825         * tests/test-signal-c++.cc: Likewise.
1826         * tests/test-spawn-c++.cc: Likewise.
1827         * tests/test-stdio-c++.cc: Likewise.
1828         * tests/test-stdlib-c++.cc: Likewise.
1829         * tests/test-string-c++.cc: Likewise.
1830         * tests/test-sys_ioctl-c++.cc: Likewise.
1831         * tests/test-sys_select-c++.cc: Likewise.
1832         * tests/test-sys_socket-c++.cc: Likewise.
1833         * tests/test-sys_stat-c++.cc: Likewise.
1834         * tests/test-sys_time-c++.cc: Likewise.
1835         * tests/test-time-c++.cc: Likewise.
1836         * tests/test-unistd-c++.cc: Likewise.
1837         * tests/test-wchar-c++.cc: Likewise.
1838         * tests/uninorm/test-u8-nfc.c: Likewise.
1839         * tests/uninorm/test-u8-nfd.c: Likewise.
1840         * tests/uninorm/test-u8-nfkc.c: Likewise.
1841         * tests/uninorm/test-u8-nfkd.c: Likewise.
1842         * tests/uninorm/test-u16-nfc.c: Likewise.
1843         * tests/uninorm/test-u16-nfd.c: Likewise.
1844         * tests/uninorm/test-u16-nfkc.c: Likewise.
1845         * tests/uninorm/test-u16-nfkd.c: Likewise.
1846         * tests/uninorm/test-u32-nfc.c: Likewise.
1847         * tests/uninorm/test-u32-nfc-big.c: Likewise.
1848         * tests/uninorm/test-u32-nfd.c: Likewise.
1849         * tests/uninorm/test-u32-nfd-big.c: Likewise.
1850         * tests/uninorm/test-u32-nfkc.c: Likewise.
1851         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
1852         * tests/uninorm/test-u32-nfkd.c: Likewise.
1853         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
1854         * tests/uninorm/test-u32-normalize-big.c: Likewise.
1855
1856 2010-03-27  Bruno Haible  <bruno@clisp.org>
1857
1858         Distinguish two kinds of module indicators.
1859         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
1860         gl_MODULE_INDICATOR.
1861         (gl_MODULE_INDICATOR): New macro.
1862         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1863         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
1864         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
1865         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
1866         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
1867         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
1868         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
1869         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
1870         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
1871         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
1872         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
1873         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
1874         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
1875         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
1876         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
1877         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
1878         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
1879         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
1880         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
1881         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
1882         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
1883         * modules/cloexec (configure.ac): Likewise.
1884         * modules/getopt-gnu (configure.ac): Likewise.
1885         * modules/uninorm/u8-normalize (configure.ac): Likewise.
1886         * modules/uninorm/u16-normalize (configure.ac): Likewise.
1887         * modules/uninorm/u32-normalize (configure.ac): Likewise.
1888         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
1889
1890 2010-03-27  Bruno Haible  <bruno@clisp.org>
1891
1892         New module description field 'Comment'.
1893         * gnulib-tool: New option --extract-comment.
1894         (func_usage): Document it.
1895         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
1896         (func_get_comment): New function.
1897         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
1898
1899 2010-03-27  Bruno Haible  <bruno@clisp.org>
1900
1901         Addendum to 2010-02-07 commit.
1902         * gnulib-tool (func_usage): Document --extract-applicability option.
1903
1904 2010-03-27  Bruno Haible  <bruno@clisp.org>
1905
1906         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
1907         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
1908         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
1909         rather than link errors.
1910
1911 2010-03-27  Bruno Haible  <bruno@clisp.org>
1912
1913         Avoid side effects from tests-related modules on the compilation of lib.
1914         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
1915         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
1916         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
1917         parameter. Emit into AM_CPPFLAGS a definition of the designated C
1918         macro.
1919         (func_import): Define a witness macro. Assign it a value that depends
1920         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
1921         tests-related modules.
1922         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
1923         Reported by Jim Meyering.
1924
1925 2010-03-27  Bruno Haible  <bruno@clisp.org>
1926
1927         Factorize common .m4 code.
1928         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
1929         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
1930         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
1931         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
1932         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
1933         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
1934         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
1935         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
1936         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
1937         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
1938         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
1939         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
1940         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
1941         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
1942         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
1943         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
1944         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
1945         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
1946         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
1947         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
1948         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
1949         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
1950         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
1951         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
1952         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
1953         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
1954         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
1955         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
1956         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
1957         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
1958         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
1959         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
1960
1961 2010-03-27  Bruno Haible  <bruno@clisp.org>
1962
1963         Fix a compilation error on Cygwin with g++ >= 4.3.
1964         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
1965         if it is undefined or if we alias it to chmod.
1966         (lstat): Don't warn about the use of this function if it is undefined
1967         or if we alias it to stat.
1968         Reported by Simon Josefsson.
1969
1970 2010-03-27  Bruno Haible  <bruno@clisp.org>
1971
1972         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
1973         * modules/getlogin (configure.ac): Update.
1974
1975         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
1976         * modules/getlogin_r (configure.ac): Update.
1977
1978         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
1979         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
1980         * modules/inet_ntop (configure.ac): Update.
1981
1982         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
1983         * modules/inet_pton (configure.ac): Update.
1984
1985         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
1986         * modules/mbslen (configure.ac): Update.
1987
1988         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
1989         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
1990         * modules/forkpty (configure.ac): Update.
1991         * modules/openpty (configure.ac): Update.
1992
1993 2010-03-26  Simon Josefsson  <simon@josefsson.org>
1994
1995         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
1996         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
1997
1998 2010-03-25  Eric Blake  <eblake@redhat.com>
1999
2000         maint: use pragma consistently across replacement headers
2001         * lib/ctype.in.h (system_header): Hoist for consistent placement.
2002         * lib/dirent.in.h (system_header): Likewise.
2003         * lib/errno.in.h (system_header): Likewise.
2004         * lib/float.in.h (system_header): Likewise.
2005         * lib/getopt.in.h (system_header): Likewise.
2006         * lib/iconv.in.h (system_header): Likewise.
2007         * lib/inttypes.in.h (system_header): Likewise.
2008         * lib/langinfo.in.h (system_header): Likewise.
2009         * lib/locale.in.h (system_header): Likewise.
2010         * lib/math.in.h (system_header): Likewise.
2011         * lib/netdb.in.h (system_header): Likewise.
2012         * lib/netinet_in.in.h (system_header): Likewise.
2013         * lib/pty.in.h (system_header): Likewise.
2014         * lib/sched.in.h (system_header): Likewise.
2015         * lib/se-selinux.in.h (system_header): Likewise.
2016         * lib/search.in.h (system_header): Likewise.
2017         * lib/spawn.in.h (system_header): Likewise.
2018         * lib/stdarg.in.h (system_header): Likewise.
2019         * lib/stdint.in.h (system_header): Likewise.
2020         * lib/string.in.h (system_header): Likewise.
2021         * lib/strings.in.h (system_header): Likewise.
2022         * lib/sys_file.in.h (system_header): Likewise.
2023         * lib/sys_ioctl.in.h (system_header): Likewise.
2024         * lib/sys_socket.in.h (system_header): Likewise.
2025         * lib/sys_times.in.h (system_header): Likewise.
2026         * lib/sys_utsname.in.h (system_header): Likewise.
2027         * lib/sys_wait.in.h (system_header): Likewise.
2028         * lib/sysexits.in.h (system_header): Likewise.
2029         * lib/unistd.in.h (system_header): Likewise.
2030         * lib/wctype.in.h (system_header): Likewise.
2031
2032         arpa/inet: fix mingw compilation warning
2033         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
2034         Reported by Matthew Bolte.
2035
2036 2010-03-25  Bruno Haible  <bruno@clisp.org>
2037
2038         Avoid collision between gnulib wrapper and libintl wrapper.
2039         * lib/printf.c (printf): Don't define if a printf wrapper is already
2040         defined in intl/printf.c.
2041         Reported by Michel Boaventura <michel@michelboaventura.com>.
2042
2043 2010-03-25  Bruno Haible  <bruno@clisp.org>
2044
2045         Use ANSI C.
2046         * lib/readutmp.h (getutent): Provide ANSI C prototype.
2047
2048 2010-03-25  Bruno Haible  <bruno@clisp.org>
2049
2050         Minor formatting changes.
2051         * lib/acosl.c: Insert space before function argument list.
2052         * lib/argz.c: Likewise.
2053         * lib/asinl.c: Likewise.
2054         * lib/expl.c: Likewise.
2055         * lib/gen-uni-tables.c: Likewise.
2056         * lib/gettext.h: Likewise.
2057         * lib/glthread/lock.h: Likewise.
2058         * lib/tanl.c: Likewise.
2059         * lib/uniname/uniname.c: Likewise.
2060         * tests/test-idpriv-drop.c: Likewise.
2061         * tests/test-idpriv-droptemp.c: Likewise.
2062         * tests/test-lock.c: Likewise.
2063         * tests/test-tls.c: Likewise.
2064         * lib/argp-help.c: Insert space before function-like macro argument
2065         list.
2066         * lib/memcmp.c: Likewise.
2067         * tests/test-base64.c: Likewise.
2068         * lib/localename.c: Insert space before sizeof's argument list.
2069         * lib/safe-alloc.h: Likewise.
2070         * lib/file-set.h: Insert space before macro argument list.
2071         * tests/test-argp.c: Likewise.
2072         * lib/argp-namefrob.h: Insert space before function parameter list.
2073         * lib/getaddrinfo.c: Likewise.
2074         * lib/netdb.in.h: Likewise.
2075         * lib/parse-duration.h: Likewise.
2076         * lib/parse-duration.c: Likewise.
2077         * lib/poll.c: Likewise.
2078         * lib/select.c: Likewise.
2079         * lib/trim.h: Likewise.
2080         * tests/test-usleep.c: Likewise.
2081         * lib/ldexpl.c: Insert space before function parameter list and before
2082         function argument list.
2083         * lib/logl.c: Likewise.
2084         * lib/sqrtl.c: Likewise.
2085         * lib/trim.c: Likewise.
2086         * lib/cosl.c: Use GNU style indentation. Insert space before function
2087         argument list.
2088         * lib/sinl.c: Likewise.
2089         * lib/tsearch.c: Insert space after 'for'.
2090         Reported by Jim Meyering.
2091
2092 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
2093
2094         * maint.mk (sc_Wundef_boolean): Check for the presence of the
2095         config header before grepping, as it's not present before
2096         autoreconf/configure are run.  Reported by Simon Josefsson.
2097
2098 2010-03-23  Bruno Haible  <bruno@clisp.org>
2099
2100         pt_chown: Make it work with automake < 1.11.
2101         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
2102         Reported by Simon Josefsson.
2103
2104 2010-03-23  Bruno Haible  <bruno@clisp.org>
2105
2106         pt_chown: Don't depend on GPLed modules.
2107         * lib/pt_chown.c: Don't include idpriv.h.
2108         (main): Don't drop privileges.
2109         * modules/pt_chown (Depends-on): Remove idpriv-drop.
2110         Reported by Simon Josefsson.
2111
2112 2010-03-24  Simon Josefsson  <simon@josefsson.org>
2113
2114         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
2115         suggestions from karl@freefriends.org (Karl Berry).
2116
2117 2010-03-22  Eric Blake  <eblake@redhat.com>
2118
2119         gethostname: further tweaks
2120         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
2121         are overriding gethostname.
2122         Suggested by Bruno Haible.
2123
2124 2010-03-21  Bruno Haible  <bruno@clisp.org>
2125
2126         Fix comments.
2127         * lib/forkpty.c (rpl_forkpty): Fix comment.
2128         * lib/openpty.c (rpl_openpty): Likewise.
2129         Reported by Eric Blake.
2130
2131 2010-03-22  Eric Blake  <eblake@redhat.com>
2132
2133         gethostname: fix build on mingw
2134         * lib/unistd.in.h (includes): Work around fact that mingw
2135         <winsock2.h> re-includes <unistd.h>, by avoiding any
2136         redeclarations if we are being included by <winsock2.h>.
2137         Reported by Matthias Bolte.
2138
2139 2010-03-21  Bruno Haible  <bruno@clisp.org>
2140
2141         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
2142         * lib/forkpty.c (forkpty): New replacement function, from glibc with
2143         modifications.
2144         * lib/pty.in.h (forkpty): Update declaration. Add comments.
2145         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
2146         provide the replacement.
2147         * modules/forkpty (Depends-on): Add openpty, login_tty.
2148         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
2149         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
2150         * doc/glibc-functions/forkpty.texi: More supported platforms.
2151         * config/srclist.txt: Add forkpty.c (commented).
2152
2153 2010-03-21  Bruno Haible  <bruno@clisp.org>
2154
2155         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
2156         (Makefile.am): Verify that PTY_LIB is defined.
2157
2158         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
2159
2160 2010-03-21  Bruno Haible  <bruno@clisp.org>
2161
2162         Tests for module 'login_tty'.
2163         * modules/login_tty-tests: New file.
2164         * tests/test-login_tty.c: New file.
2165
2166         New module 'login_tty'.
2167         * lib/login_tty.c: New file.
2168         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
2169         * modules/login_tty: New file.
2170         * doc/glibc-functions/login_tty.texi: Mention the new module.
2171
2172 2010-03-21  Bruno Haible  <bruno@clisp.org>
2173
2174         login_tty: Documentation.
2175         * doc/glibc-functions/login_tty.texi: New file.
2176         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
2177
2178 2010-03-21  Bruno Haible  <bruno@clisp.org>
2179
2180         pty: Consistent macro naming.
2181         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
2182         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
2183         * modules/pty (configure.ac): Update.
2184
2185 2010-03-21  Bruno Haible  <bruno@clisp.org>
2186
2187         Tests for openpty: Make stricter.
2188         * tests/test-openpty.c (main): Add test of canonical processing and
2189         erase.
2190         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
2191
2192         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
2193         * lib/openpty.c (openpty): New replacement function.
2194         * lib/pty.in.h: Include <termios.h>.
2195         (openpty): Update declaration. Add comments.
2196         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
2197         is not declared, arrange to provide the replacement. Check for _getpty
2198         and posix_openpt.
2199         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
2200         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
2201         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
2202         * modules/pty-tests (test_pty_c___LDADD): New variable.
2203         * doc/glibc-functions/openpty.texi: More supported platforms.
2204
2205 2010-03-21  Bruno Haible  <bruno@clisp.org>
2206
2207         setenv: Tweaks.
2208         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
2209         the test program.
2210         * doc/posix-functions/setenv.texi: Update platforms list.
2211
2212 2010-03-21  Bruno Haible  <bruno@clisp.org>
2213
2214         New module 'unlockpt'.
2215         * lib/unlockpt.c: New file, from glibc with modifications.
2216         * m4/unlockpt.m4: New file.
2217         * modules/unlockpt: New file.
2218         * lib/stdlib.in.h (unlockpt): New declaration.
2219         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
2220         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
2221         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
2222         HAVE_UNLOCKPT.
2223         * doc/posix-functions/unlockpt.texi: Mention the new module.
2224         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
2225         * config/srclist.txt: Add unlockpt.c (commented).
2226
2227 2010-03-21  Jim Meyering  <meyering@redhat.com>
2228
2229         maint.mk: prohibit inclusion of "intprops.h" without use
2230         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
2231
2232 2010-03-21  Bruno Haible  <bruno@clisp.org>
2233
2234         New module 'grantpt'.
2235         * lib/grantpt.c: New file, from glibc with modifications.
2236         * m4/grantpt.m4: New file.
2237         * modules/grantpt: New file.
2238         * lib/stdlib.in.h (grantpt): New declaration.
2239         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
2240         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
2241         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
2242         HAVE_GRANTPT.
2243         * doc/posix-functions/grantpt.texi: Mention the new module.
2244         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
2245         * config/srclist.txt: Add grantpt.c (commented).
2246
2247 2010-03-21  Bruno Haible  <bruno@clisp.org>
2248
2249         New module 'pt_chown'.
2250         * lib/pt_chown.c: New file, from glibc with modifications.
2251         * lib/pty-private.h: New file, from glibc with modifications.
2252         * modules/pt_chown: New file.
2253         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
2254
2255 2010-03-21  Bruno Haible  <bruno@clisp.org>
2256
2257         Tests for module 'ptsname'.
2258         * modules/ptsname-tests: New file.
2259         * tests/test-ptsname.c: New file.
2260
2261         New module 'ptsname'.
2262         * lib/ptsname.c: New file, from glibc with modifications.
2263         * m4/ptsname.m4: New file.
2264         * modules/ptsname: New file.
2265         * lib/stdlib.in.h (ptsname): New declaration.
2266         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
2267         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
2268         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
2269         HAVE_PTSNAME.
2270         * doc/posix-functions/ptsname.texi: Mention the new module.
2271         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
2272         * config/srclist.txt: Add ptsname.c (commented).
2273
2274 2010-03-21  Bruno Haible  <bruno@clisp.org>
2275
2276         Tests for module 'ttyname_r'.
2277         * modules/ttyname_r-tests: New file.
2278         * tests/test-ttyname_r.c: New file.
2279
2280         New module 'ttyname_r'.
2281         * lib/ttyname_r.c: New file.
2282         * m4/ttyname_r.m4: New file.
2283         * modules/ttyname_r: New file.
2284         * lib/unistd.in.h (ttyname_r): New declaration.
2285         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
2286         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
2287         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
2288         HAVE_TTYNAME_R.
2289         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
2290         * doc/posix-functions/ttyname_r.texi: Mention the new module.
2291
2292 2010-03-20  Bruno Haible  <bruno@clisp.org>
2293
2294         signal: Undefine macro definitions in C++ mode.
2295         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
2296         sigfillset): Undefine macro definitions from the system header in C++
2297         mode.
2298         Reported by John W. Eaton <jwe@gnu.org>.
2299
2300 2010-03-20  Bruno Haible  <bruno@clisp.org>
2301
2302         Ensure no #include statements inside extern "C" { ... }.
2303         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
2304         contain #include statements.
2305         * lib/time.in.h: Likewise.
2306
2307 2010-03-20  Bruno Haible  <bruno@clisp.org>
2308
2309         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
2310         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
2311         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
2312         Reported by John W. Eaton <jwe@gnu.org>.
2313
2314 2010-03-20  Bruno Haible  <bruno@clisp.org>
2315
2316         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
2317         Reported by Jim Meyering.
2318
2319 2010-03-20  Bruno Haible  <bruno@clisp.org>
2320
2321         pipe: Set errno upon failure.
2322         * lib/pipe.h: Specify that when -1 is returned, errno is set.
2323         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
2324         errno value in error message.
2325
2326 2010-03-20  Bruno Haible  <bruno@clisp.org>
2327             Jim Meyering  <meyering@redhat.com>
2328
2329         lchown: Avoid "unused variable" warning.
2330         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
2331
2332 2010-03-20  Bruno Haible  <bruno@clisp.org>
2333
2334         Work around unlink() bug on MacOS X 10.5.6.
2335         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
2336         attempting to unlink a parent directory.
2337         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
2338         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
2339         activate for the replacement function.
2340         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
2341
2342 2010-03-20  Bruno Haible  <bruno@clisp.org>
2343
2344         Fix link errors on Solaris 8.
2345         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
2346         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
2347
2348 2010-03-19  Jim Meyering  <meyering@redhat.com>
2349
2350         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
2351         The _LIBC implementation of build_range_exp correctly honors the
2352         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
2353         However, the non-_LIBC implementation would ignore that syntax-bit
2354         flag and return REG_ERANGE unconditionally.
2355         This change makes it honor that flag.
2356         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
2357         Make two pointer parameters "const".
2358         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
2359         (parse_bracket_exp): Update caller.
2360
2361         regex.m4: correct the reversed range endpoint ([b-a]) test
2362         * m4/regex.m4: When requiring that [b-a] evoke failure,
2363         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
2364         test pass once again for x86-based systems.
2365
2366 2010-03-19  Bruno Haible  <bruno@clisp.org>
2367
2368         scandir: Fix link error on Solaris 8.
2369         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
2370         macros.
2371
2372 2010-03-19  Bruno Haible  <bruno@clisp.org>
2373
2374         getusershell: Fix documentation.
2375         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
2376         module.
2377         * doc/glibc-functions/setusershell.texi: Likewise.
2378
2379         getusershell: Provide declaration, missing on Solaris 9.
2380         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
2381         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
2382         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
2383         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
2384         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
2385         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
2386         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
2387         HAVE_GETUSERSHELL.
2388         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
2389
2390 2010-03-19  Bruno Haible  <bruno@clisp.org>
2391
2392         wctype: Provide iswblank function.
2393         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
2394         exists and is fine.
2395         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
2396         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
2397         * tests/test-wctype.c (main): Re-enable the iswblank tests.
2398         * doc/posix-functions/iswblank.texi: Update.
2399
2400 2010-03-19  Bruno Haible  <bruno@clisp.org>
2401
2402         Tests of module 'pty' in C++ mode.
2403         * modules/pty-tests: New file.
2404         * tests/test-pty-c++.cc: New file.
2405         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
2406
2407 2010-03-19  Eric Blake  <eblake@redhat.com>
2408
2409         logb: fix documentation
2410         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
2411         1.5 declaration bug.
2412
2413         forkpty, openpty: prefer glibc's const-safe prototype
2414         * lib/forkpty.c (rpl_forkpty): New file.
2415         * lib/openpty.c (rpl_openpty): Likewise.
2416         * modules/forkpty (Files): Distribute it.
2417         * modules/openpty (Files): Likewise.
2418         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
2419         check...
2420         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
2421         replacement for for non-const BSD signature.
2422         * modules/pty (Makefile.am): Substitute witnesses.
2423         * lib/pty.in.h (forkpty, openpty): Declare replacements.
2424         * tests/test-forkpty.c: Update signature check.
2425         * tests/test-openpty.c: Likewise.
2426         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
2427         * doc/glibc-functions/openpty.texi (openpty): Likewise.
2428
2429         forkpty, openpty: split functions into new modules
2430         * modules/pty (Makefile.am): Substitute new witnesses.
2431         (Libraries): Move library detection...
2432         * modules/forkpty: ...into new module.
2433         * modules/openpty: Another new module.
2434         * modules/pty-tests: Rename and split...
2435         * modules/forkpty-tests: ...to this...
2436         * modules/openpty-tests: ...and this.
2437         * tests/test-pty.c: Rename and split...
2438         * tests/test-forkpty.c: ...to this...
2439         * tests/test-openpty.c: ...and this.
2440         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
2441         (gl_PTY): Split library searching...
2442         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
2443         (gl_FORKPTY, gl_OPENPTY): New macros.
2444         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
2445         * NEWS: Mention the split.
2446         * MODULES.html.sh (Misc): Document the modules.
2447         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
2448         * doc/glibc-functions/openpty.texi (openpty): Likewise.
2449
2450         pty: improve replacement header
2451         * lib/pty.in.h: New file.
2452         * modules/pty (Files): Ship it.
2453         (Makefile.am): Always build replacement.
2454         * m4/pty.m4: Rename...
2455         * m4/pty_h.m4: ...to this.
2456         (gl_PTY): Modernize setting of witness macros; update check of
2457         forkpty to take proper advantage of cache.
2458         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
2459
2460         getopt: avoid compiler warning
2461         * lib/getopt.c (attribute_hidden): Remove unused macro.
2462
2463 2010-03-18  Bruno Haible  <bruno@clisp.org>
2464
2465         Fix link errors on Solaris 8.
2466         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
2467         * modules/search-tests (test_search_c___LDADD): Likewise.
2468         * modules/signal-tests (test_signal_c___LDADD): Likewise.
2469         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
2470         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
2471         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
2472         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
2473         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
2474         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
2475
2476 2010-03-18  Bruno Haible  <bruno@clisp.org>
2477
2478         Fix bug introduced on 2010-03-14.
2479         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
2480         (gl_SPAWN_H): Require it.
2481         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
2482         Reported by Simon Josefsson.
2483
2484 2010-03-18  Bruno Haible  <bruno@clisp.org>
2485
2486         Fix typo introduced on 2009-12-31.
2487         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
2488         posix_spawn_file_actions_adddup2.
2489
2490 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
2491         and Eric Blake  <eblake@redhat.com>
2492
2493         test-vc-list-files-git: make more robust
2494         * tests/test-vc-list-files-git.sh: Unset problematic environment
2495         variables.  Chain commands together.
2496
2497 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
2498
2499         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
2500         `AC_CHECK_DECL' invocation.
2501
2502 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
2503
2504         * lib/inttostr.c (inttostr): Make sure the invocation of verify
2505         appears before executable statements. Suggested by Petr Sumbera
2506         <Petr.Sumbera@Sun.COM>.
2507
2508 2010-03-14  Bruno Haible  <bruno@clisp.org>
2509
2510         * tests/test-flock.c (test_exclusive): Comment out a test that causes
2511         portability problems. Instead use a simpler test.
2512         (main): Check that invalid arguments are rejected only on Linux.
2513
2514 2010-03-14  Bruno Haible  <bruno@clisp.org>
2515
2516         Fix bug introduced on 2009-12-31.
2517         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
2518         gl_PREREQ_SYS_H_WINSOCK2 always.
2519         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
2520         SYS_SOCKET_H variable.
2521         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
2522         Update comments.
2523         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
2524         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
2525         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
2526         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
2527         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
2528
2529 2010-03-14  Bruno Haible  <bruno@clisp.org>
2530
2531         Fix values returned by sinl, cosl.
2532         * lib/trigl.h: Add specification comments.
2533         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
2534         that combines the values from the precomputed table with the values of
2535         the Chebyshev polynomials.
2536
2537 2010-03-14  Bruno Haible  <bruno@clisp.org>
2538
2539         Fix compilation error when modules 'posix_spawn[p]' are not used.
2540         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
2541         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
2542
2543 2010-03-14  Bruno Haible  <bruno@clisp.org>
2544
2545         Fix compilation error on mingw when module 'time_r' is not used.
2546         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
2547         is 1.
2548         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
2549         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
2550         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
2551         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
2552
2553 2010-03-14  Bruno Haible  <bruno@clisp.org>
2554
2555         Fix compilation error with Sun C.
2556         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
2557         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
2558         instead of GCC specific ULONG_LONG_MAX.
2559         * lib/xstrtoll.c: Likewise.
2560         * lib/xstrtoull.c: Likewise.
2561
2562 2010-03-13  Bruno Haible  <bruno@clisp.org>
2563
2564         Allow the user to disable C++ code and tests.
2565         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
2566         (gl_PROG_ANSI_CXX): Require it.
2567
2568 2010-03-13  Bruno Haible  <bruno@clisp.org>
2569
2570         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
2571         cases.
2572
2573 2010-03-13  Bruno Haible  <bruno@clisp.org>
2574
2575         Test that gnulib does not break the standard C++ headers.
2576         * tests/test-locale-c++2.cc: New file.
2577         * modules/locale-tests (Files): Add it.
2578         (Makefile.am): Compile it for test-locale-c++.
2579         * tests/test-math-c++2.cc: New file.
2580         * modules/math-tests (Files): Add it.
2581         (Makefile.am): Compile it for test-math-c++.
2582         * tests/test-signal-c++2.cc: New file.
2583         * modules/signal-tests (Files): Add it.
2584         (Makefile.am): Compile it for test-signal-c++.
2585         * tests/test-stdio-c++2.cc: New file.
2586         * modules/stdio-tests (Files): Add it.
2587         (Makefile.am): Compile it for test-stdio-c++.
2588         * tests/test-stdlib-c++2.cc: New file.
2589         * modules/stdlib-tests (Files): Add it.
2590         (Makefile.am): Compile it for test-stdlib-c++.
2591         * tests/test-string-c++2.cc: New file.
2592         * modules/string-tests (Files): Add it.
2593         (Makefile.am): Compile it for test-string-c++.
2594         * tests/test-time-c++2.cc: New file.
2595         * modules/time-tests (Files): Add it.
2596         (Makefile.am): Compile it for test-time-c++.
2597         Reported by John W. Eaton <jwe@gnu.org>.
2598
2599 2010-03-13  Bruno Haible  <bruno@clisp.org>
2600
2601         * gnulib-tool (func_usage): Clarify which options are available for
2602         --create-testdir and --create-megatestdir.
2603
2604 2010-03-13  Bruno Haible  <bruno@clisp.org>
2605
2606         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
2607         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
2608         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
2609         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
2610         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
2611         when appropriate.
2612         Reported by Jim Meyering.
2613
2614 2010-03-12  Simon Josefsson  <simon@josefsson.org>
2615
2616         * gnulib-tool (func_import): Explain origin of code.
2617
2618 2010-03-12  Bruno Haible  <bruno@clisp.org>
2619
2620         Fix problem with automake's definition of CXXLINK.
2621         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
2622         Reported by Simon Josefsson and Ludovic Courtès.
2623
2624 2010-03-12  Bruno Haible  <bruno@clisp.org>
2625
2626         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
2627         stable releases.
2628
2629 2010-03-11  Bruno Haible  <bruno@clisp.org>
2630
2631         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
2632         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
2633         whether the system provides one variant or multiple variants of the
2634         function.
2635         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
2636         C++ compilers.
2637         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
2638         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
2639         Reported by Jim Meyering.
2640
2641 2010-03-09  Simon Josefsson  <simon@josefsson.org>
2642
2643         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
2644
2645 2010-03-08  Bruno Haible  <bruno@clisp.org>
2646
2647         gnulib-tool: Add support for --libtool in --create-testdir.
2648         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
2649         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
2650
2651 2010-03-08  Eric Blake  <eblake@redhat.com>
2652
2653         gnulib-tool.texi: mention possibility of git submodule
2654         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
2655         submodules.
2656         * doc/.gitignore: Ignore another generated file.
2657
2658 2010-03-08  Karl Berry  <karl@gnu.org>
2659
2660         * doc/gnulib-tool.texi (VCS Issues): Mention third option
2661         of committing gnulib files while skipping others.
2662
2663 2010-03-07  Bruno Haible  <bruno@clisp.org>
2664
2665         Tests of module 'wctype' in C++ mode.
2666         * tests/test-wctype-c++.cc: New file.
2667         * modules/wctype-tests (Files): Add it and tests/signature.h.
2668         (Depends-on): Add ansi-c++-opt.
2669         (Makefile.am): Arrange to compile and run test-wctype-c++.
2670
2671         Tests of module 'wchar' in C++ mode.
2672         * tests/test-wchar-c++.cc: New file.
2673         * modules/wchar-tests (Files): Add it and tests/signature.h.
2674         (Depends-on): Add ansi-c++-opt.
2675         (Makefile.am): Arrange to compile and run test-wchar-c++.
2676         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
2677         gl_MODULE_INDICATOR.
2678
2679         Tests of module 'unistd' in C++ mode.
2680         * tests/test-unistd-c++.cc: New file.
2681         * modules/unistd-tests (Files): Add it and tests/signature.h.
2682         (Depends-on): Add ansi-c++-opt.
2683         (Makefile.am): Arrange to compile and run test-unistd-c++.
2684         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
2685         gl_MODULE_INDICATOR.
2686
2687         Tests of module 'time' in C++ mode.
2688         * tests/test-time-c++.cc: New file.
2689         * modules/time-tests (Files): Add it and tests/signature.h.
2690         (Depends-on): Add ansi-c++-opt.
2691         (Makefile.am): Arrange to compile and run test-time-c++.
2692         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
2693
2694         Tests of module 'sys_time' in C++ mode.
2695         * tests/test-sys_time-c++.cc: New file.
2696         * modules/sys_time-tests (Files): Add it and tests/signature.h.
2697         (Depends-on): Add ansi-c++-opt.
2698         (Makefile.am): Arrange to compile and run test-sys_time-c++.
2699         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
2700         gl_MODULE_INDICATOR.
2701
2702         Tests of module 'sys_stat' in C++ mode.
2703         * tests/test-sys_stat-c++.cc: New file.
2704         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
2705         (Depends-on): Add ansi-c++-opt.
2706         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
2707         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
2708         gl_MODULE_INDICATOR.
2709
2710         Tests of module 'sys_socket' in C++ mode.
2711         * tests/test-sys_socket-c++.cc: New file.
2712         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
2713         (Depends-on): Add ansi-c++-opt.
2714         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
2715         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
2716         gl_MODULE_INDICATOR.
2717
2718         Tests of module 'sys_select' in C++ mode.
2719         * tests/test-sys_select-c++.cc: New file.
2720         * modules/sys_select-tests (Files): Add it and tests/signature.h.
2721         (Depends-on): Add ansi-c++-opt.
2722         (Makefile.am): Arrange to compile and run test-sys_select-c++.
2723         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
2724         gl_MODULE_INDICATOR.
2725
2726         Tests of module 'sys_ioctl' in C++ mode.
2727         * tests/test-sys_ioctl-c++.cc: New file.
2728         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
2729         (Depends-on): Add ansi-c++-opt.
2730         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
2731         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
2732         gl_MODULE_INDICATOR.
2733
2734         Tests of module 'string' in C++ mode.
2735         * tests/test-string-c++.cc: New file.
2736         * modules/string-tests (Files): Add it and tests/signature.h.
2737         (Depends-on): Add ansi-c++-opt.
2738         (Makefile.am): Arrange to compile and run test-string-c++.
2739         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
2740         gl_MODULE_INDICATOR.
2741
2742         Tests of module 'stdlib' in C++ mode.
2743         * tests/test-stdlib-c++.cc: New file.
2744         * modules/stdlib-tests (Files): Add it and tests/signature.h.
2745         (Depends-on): Add ansi-c++-opt.
2746         (Makefile.am): Arrange to compile and run test-stdlib-c++.
2747         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
2748         gl_MODULE_INDICATOR.
2749
2750         Tests of module 'stdio' in C++ mode.
2751         * tests/test-stdio-c++.cc: New file.
2752         * modules/stdio-tests (Files): Add it and tests/signature.h.
2753         (Depends-on): Add ansi-c++-opt.
2754         (Makefile.am): Arrange to compile and run test-stdio-c++.
2755         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
2756         gl_MODULE_INDICATOR.
2757
2758         Tests of module 'spawn' in C++ mode.
2759         * tests/test-spawn-c++.cc: New file.
2760         * modules/spawn-tests (Files): Add it and tests/signature.h.
2761         (Depends-on): Add ansi-c++-opt.
2762         (Makefile.am): Arrange to compile and run test-spawn-c++.
2763         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
2764         gl_MODULE_INDICATOR.
2765
2766         Tests of module 'signal' in C++ mode.
2767         * tests/test-signal-c++.cc: New file.
2768         * modules/signal-tests (Files): Add it and tests/signature.h.
2769         (Depends-on): Add ansi-c++-opt.
2770         (Makefile.am): Arrange to compile and run test-signal-c++.
2771         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
2772         gl_MODULE_INDICATOR.
2773
2774         Tests of module 'search' in C++ mode.
2775         * tests/test-search-c++.cc: New file.
2776         * modules/search-tests (Files): Add it and tests/signature.h.
2777         (Depends-on): Add ansi-c++-opt.
2778         (Makefile.am): Arrange to compile and run test-search-c++.
2779         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
2780         gl_MODULE_INDICATOR.
2781
2782         Tests of module 'math' in C++ mode.
2783         * tests/test-math-c++.cc: New file.
2784         * modules/math-tests (Files): Add it and tests/signature.h.
2785         (Depends-on): Add ansi-c++-opt.
2786         (Makefile.am): Arrange to compile and run test-math-c++.
2787         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
2788
2789         Tests of module 'locale' in C++ mode.
2790         * tests/test-locale-c++.cc: New file.
2791         * modules/locale-tests (Files): Add it and tests/signature.h.
2792         (Depends-on): Add ansi-c++-opt.
2793         (Makefile.am): Arrange to compile and run test-locale-c++.
2794         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
2795         gl_MODULE_INDICATOR.
2796
2797         Tests of module 'langinfo' in C++ mode.
2798         * tests/test-langinfo-c++.cc: New file.
2799         * modules/langinfo-tests (Files): Add it and tests/signature.h.
2800         (Depends-on): Add ansi-c++-opt.
2801         (Makefile.am): Arrange to compile and run test-langinfo-c++.
2802         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
2803         gl_MODULE_INDICATOR.
2804
2805         Tests of module 'iconv-h' in C++ mode.
2806         * tests/test-iconv-h-c++.cc: New file.
2807         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
2808         (Depends-on): Add ansi-c++-opt.
2809         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
2810
2811         Tests of module 'glob' in C++ mode.
2812         * tests/test-glob-c++.cc: New file.
2813         * modules/glob-tests (Files): Add it.
2814         (Depends-on): Add ansi-c++-opt.
2815         (Makefile.am): Arrange to compile and run test-glob-c++.
2816
2817         Tests of module 'fcntl-h' in C++ mode.
2818         * tests/test-fcntl-h-c++.cc: New file.
2819         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
2820         (Depends-on): Add ansi-c++-opt.
2821         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
2822         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
2823         gl_MODULE_INDICATOR.
2824
2825         Tests of module 'dirent' in C++ mode.
2826         * tests/test-dirent-c++.cc: New file.
2827         * modules/dirent-tests (Files): Add it and tests/signature.h.
2828         (Depends-on): Add ansi-c++-opt.
2829         (Makefile.am): Arrange to compile and run test-dirent-c++.
2830         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
2831         gl_MODULE_INDICATOR.
2832
2833         New module 'ansi-c++-opt'.
2834         * modules/ansi-c++-opt: New file.
2835         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
2836
2837         Document C++ namespace mode.
2838         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
2839
2840         wctype: Avoid #define replacements in C++ mode.
2841         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
2842         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
2843         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
2844         In C++, define a namespaced alias symbol.
2845         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
2846         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
2847         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
2848         rule.
2849
2850         wchar: Avoid #define replacements in C++ mode.
2851         * lib/wchar.in.h: Include c++defs.h.
2852         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
2853         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
2854         symbol.
2855         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
2856         * modules/wchar (Depends-on): Add c++defs.
2857         (Makefile.am): Update wchar.h rule.
2858
2859         unistd: Avoid #define replacements in C++ mode.
2860         * lib/unistd.in.h: Include c++defs.h.
2861         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
2862         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
2863         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
2864         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
2865         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
2866         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
2867         symbol.
2868         (environ): Update.
2869         * modules/unistd (Depends-on): Add c++defs.
2870         (Makefile.am): Update unistd.h rule.
2871
2872         time: Avoid #define replacements in C++ mode.
2873         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
2874         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
2875         define a namespaced alias symbol.
2876         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
2877         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
2878         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
2879         * modules/time (Depends-on): Add c++defs, warn-on-use.
2880         (Makefile.am): Update time.h rule.
2881         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
2882         * modules/nanosleep (configure.ac): Likewise.
2883         * modules/strptime (configure.ac): Likewise.
2884         * modules/timegm (configure.ac): Likewise.
2885
2886         sys_time: Avoid #define replacements in C++ mode.
2887         * lib/sys_time.in.h: Include c++defs.h.
2888         (gettimeofday): In C++, define a namespaced alias symbol.
2889         * modules/sys_time (Depends-on): Add c++defs.
2890         (Makefile.am): Update sys/time.h rule.
2891
2892         sys_stat: Avoid #define replacements in C++ mode.
2893         * lib/sys_stat.in.h: Include c++defs.h.
2894         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
2895         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
2896         namespaced alias symbol.
2897         In C++, define a namespaced alias symbol.
2898         * modules/sys_stat (Depends-on): Add c++defs.
2899         (Makefile.am): Update sys/stat.h rule.
2900
2901         sys_socket: Avoid #define replacements in C++ mode.
2902         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
2903         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
2904         definitions also when the system has a <sys/socket.h>.
2905         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
2906         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
2907         In C++, define a namespaced alias symbol.
2908         * modules/sys_socket (Depends-on): Add c++defs.
2909         (Makefile.am): Update sys/socket.h rule.
2910
2911         sys_select: Avoid #define replacements in C++ mode.
2912         * lib/sys_select.in.h: Include c++defs.h. Enable the function
2913         definitions also when the system has a <sys/select.h>.
2914         (select): In C++, define a namespaced alias symbol.
2915         * modules/sys_select (Depends-on): Add c++defs.
2916         (Makefile.am): Update sys/select.h rule.
2917
2918         sys_ioctl: Avoid #define replacements in C++ mode.
2919         * lib/sys_ioctl.in.h: Include c++defs.h.
2920         (ioctl): In C++, define a namespaced alias symbol.
2921         * modules/sys_ioctl (Depends-on): Add c++defs.
2922         (Makefile.am): Update sys/ioctl.h rule.
2923
2924         string: Avoid #define replacements in C++ mode.
2925         * lib/string.in.h: Include c++defs.h.
2926         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
2927         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
2928         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
2929         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
2930         strsignal, strverscmp): In C++, define a namespaced alias symbol.
2931         * modules/string (Depends-on): Add c++defs.
2932         (Makefile.am): Update string.h rule.
2933
2934         stdlib: Avoid #define replacements in C++ mode.
2935         * lib/stdlib.in.h: Include c++defs.h.
2936         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
2937         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
2938         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
2939         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
2940         symbol.
2941         * modules/stdlib (Depends-on): Add c++defs.
2942         (Makefile.am): Update stdlib.h rule.
2943
2944         stdio: Avoid #define replacements in C++ mode.
2945         * lib/stdio.in.h: Include c++defs.h.
2946         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
2947         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
2948         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
2949         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
2950         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
2951         namespaced alias symbol.
2952         * modules/stdio (Depends-on): Add c++defs.
2953         (Makefile.am): Update stdio.h rule.
2954
2955         spawn: Avoid #define replacements in C++ mode.
2956         * lib/spawn.in.h: Include c++defs.h.
2957         (posix_spawn, posix_spawnp, posix_spawnattr_init,
2958         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
2959         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
2960         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
2961         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
2962         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
2963         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
2964         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
2965         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
2966         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
2967         In C++, define a namespaced alias symbol.
2968         * modules/spawn (Depends-on): Add c++defs.
2969         (Makefile.am): Update spawn.h rule.
2970
2971         signal: Avoid #define replacements in C++ mode.
2972         * lib/signal.in.h: Include c++defs.h.
2973         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
2974         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
2975         namespaced alias symbol.
2976         * modules/signal (Depends-on): Add c++defs.
2977         (Makefile.am): Update signal.h rule.
2978
2979         search: Avoid #define replacements in C++ mode.
2980         * lib/search.in.h: Include c++defs.h.
2981         (_gl_search_compar_fn, _gl_search_action_fn): New types.
2982         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
2983         symbol.
2984         * modules/search (Depends-on): Add c++defs.
2985         (Makefile.am): Update search.h rule.
2986
2987         math: Avoid #define replacements in C++ mode.
2988         * lib/math.in.h: Include c++defs.h.
2989         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
2990         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
2991         trunc, truncl): In C++, define a namespaced alias symbol.
2992         * modules/math (Depends-on): Add c++defs.
2993         (Makefile.am): Update math.h rule.
2994
2995         locale: Avoid #define replacements in C++ mode.
2996         * lib/locale.in.h: Include c++defs.h.
2997         (duplocale): In C++, define a namespaced alias symbol.
2998         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
2999         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
3000         * modules/locale (Depends-on): Add c++defs.
3001         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
3002
3003         langinfo: Avoid #define replacements in C++ mode.
3004         * lib/langinfo.in.h: Include c++defs.h.
3005         (nl_langinfo): In C++, define a namespaced alias symbol.
3006         * modules/langinfo (Depends-on): Add c++defs.
3007         (Makefile.am): Update langinfo.h rule.
3008
3009         iconv-h: Avoid #define replacements in C++ mode.
3010         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
3011         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
3012         symbol.
3013         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
3014         whenever iconv is present.
3015         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
3016         (Makefile.am): Update iconv.h rule.
3017
3018         glob: Avoid #define replacements in C++ mode.
3019         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
3020         (_gl_glob_errfunc_fn): New type.
3021         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
3022         symbol.
3023         * modules/glob (Depends-on): Add c++defs, warn-on-use.
3024         (Makefile.am): Update glob.h rule.
3025
3026         fcntl-h: Avoid #define replacements in C++ mode.
3027         * lib/fcntl.in.h: Include c++defs.h.
3028         (fcntl, open, openat): In C++, define a namespaced alias symbol.
3029         * modules/fcntl-h (Depends-on): Add c++defs.
3030         (Makefile.am): Update fcntl.h rule.
3031
3032         dirent: Avoid #define replacements in C++ mode.
3033         * lib/dirent.in.h: Include c++defs.h.
3034         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
3035         namespaced alias symbol.
3036         (dirfd): Update declaration.
3037         * modules/dirent (Depends-on): Add c++defs.
3038         (Makefile.am): Update dirent.h rule.
3039
3040         ctype: Make it usable in C++ code.
3041         * lib/ctype.in.h: Include c++defs.h.
3042         (isblank): Declare as extern "C".
3043         * modules/ctype (Depends-on): Add c++defs.
3044         (Makefile.am): Update ctype.h rule.
3045
3046         New module 'c++defs'.
3047         * modules/c++defs: New file.
3048         * build-aux/c++defs.h: New file.
3049         Reported by John W. Eaton <jwe@gnu.org>.
3050
3051 2010-03-07  Bruno Haible  <bruno@clisp.org>
3052
3053         logb: Provide missing declaration for Cygwin.
3054         * lib/math.in.h (logb): New declaration.
3055         * m4/logb.m4: New file.
3056         * modules/logb (Files): Add m4/logb.m4.
3057         (Depends-on): Add math.
3058         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
3059         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
3060         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
3061         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
3062         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
3063
3064 2010-03-07  Bruno Haible  <bruno@clisp.org>
3065
3066         Fix test-cond link error.
3067         * tests/test-cond.c: Include <stdio.h>.
3068
3069 2010-03-07  Bruno Haible  <bruno@clisp.org>
3070
3071         Fix test-dirent-safer link error.
3072         * modules/dirent-safer-tests (Makefile.am): Define
3073         test_dirent_safer_LDADD.
3074
3075 2010-03-07  Bruno Haible  <bruno@clisp.org>
3076
3077         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
3078         among default module list.
3079
3080 2010-03-07  Bruno Haible  <bruno@clisp.org>
3081
3082         Fix link error on platforms with GNU libiconv.
3083         * modules/unistr/u8-strcoll-tests (Makefile): Define
3084         test_u8_strcoll_LDADD.
3085         * modules/unistr/u16-strcoll-tests (Makefile): Define
3086         test_u16_strcoll_LDADD.
3087         * modules/unistr/u32-strcoll-tests (Makefile): Define
3088         test_u32_strcoll_LDADD.
3089
3090 2010-03-07  Bruno Haible  <bruno@clisp.org>
3091
3092         Use POSIX declarations for socket functions.
3093         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
3094         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
3095         rpl_sendto): Change declaration to match POSIX.
3096         * lib/connect.c (rpl_connect): Likewise.
3097         * lib/accept.c (rpl_accept): Likewise.
3098         * lib/bind.c (rpl_bind): Likewise.
3099         * lib/getpeername.c (rpl_getpeername): Likewise.
3100         * lib/getsockname.c (rpl_getsockname): Likewise.
3101         * lib/recv.c (rpl_recv): Likewise.
3102         * lib/send.c (rpl_send): Likewise.
3103         * lib/recvfrom.c (rpl_recvfrom): Likewise.
3104         * lib/sendto.c (rpl_sendto): Likewise.
3105
3106 2010-03-06  Bruno Haible  <bruno@clisp.org>
3107
3108         Clarify access, euidaccess, faccessat.
3109         * doc/posix-functions/faccessat.texi: Mention security problem under
3110         "Other problems", not "Portability problems".
3111         * doc/posix-functions/access.texi: Likewise. Mention a related security
3112         problem.
3113         * doc/glibc-functions/euidaccess.texi: Mention security problems.
3114         * lib/euidaccess.c: Add comments about platforms.
3115         * lib/unistd.in.h (access, euidaccess): Add warnings.
3116
3117 2010-03-07  Bruno Haible  <bruno@clisp.org>
3118
3119         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
3120         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
3121         (POSIX_SPAWN_SETSCHEDULER): Likewise.
3122         (POSIX_SPAWN_USEVFORK): Define in a way that works when
3123         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
3124         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
3125         declare when POSIX_SPAWN_SETSCHEDULER is zero.
3126         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
3127         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
3128         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
3129         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
3130         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
3131         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
3132         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
3133         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
3134         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
3135         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
3136         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
3137         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
3138         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
3139         Likewise.
3140         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
3141         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
3142         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
3143         Likewise.
3144         * tests/test-spawn.c (main): Make it work when
3145         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
3146
3147 2010-03-07  Bruno Haible  <bruno@clisp.org>
3148
3149         Fix incorrect Makefile.am generation in German locale.
3150         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3151         Execute sed command with character range in C locale.
3152
3153 2010-03-06  Bruno Haible  <bruno@clisp.org>
3154
3155         Tests for module 'iconv-h'.
3156         * modules/iconv-h-tests: New file.
3157         * tests/test-iconv-h.c: New file.
3158
3159         New module 'iconv-h'.
3160         * modules/iconv-h: New file.
3161         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
3162         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
3163         (configure.ac): Remove gl_ICONV_H.
3164         (Makefile.am): Remove rule for iconv.h.
3165
3166 2010-03-06  Bruno Haible  <bruno@clisp.org>
3167
3168         More consistent naming of *.m4 files.
3169         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
3170         * modules/wctype (Files): Update.
3171
3172         More consistent naming of *.m4 files.
3173         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
3174         * modules/wchar (Files): Update.
3175
3176 2010-03-06  Jim Meyering  <meyering@redhat.com>
3177
3178         euidaccess: relax license to LGPLv2+
3179         * modules/euidaccess (License): Relax to LGPLv2+.
3180
3181 2010-03-06  Bruno Haible  <bruno@clisp.org>
3182
3183         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
3184         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
3185         (Makefile.am): Augment lib_SOURCES instead.
3186
3187 2010-03-04  Jim Meyering  <meyering@redhat.com>
3188
3189         utime: remove obsolete module
3190         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
3191         unnecessary for years, and has been marked as obsolete for 10 months.
3192         * modules/utime: Remove file.
3193         * lib/utime.c: Remove file.
3194         * m4/utime.m4: Remove file.
3195         * m4/utimes-null.m4: Remove file.
3196         * doc/posix-functions/utime.texi (utime): Remove reference to
3197         the module.  Move the sole "fixed by gnulib" item into the
3198         "problems not fixed by Gnulib" list.
3199         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
3200
3201 2010-03-05  Simon Josefsson  <simon@josefsson.org>
3202
3203         * modules/exit (License): Relax license to LGPLv2+.
3204         (Status): Mark as obsolete.
3205         * NEWS: Mention deprecated 'exit' module.
3206         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
3207         of now obsolete 'exit'.
3208
3209 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3210
3211         fts-lgpl: remove unused module
3212         * modules/fts-lgpl: Remove.
3213         * MODULES.html.sh (func_all_modules): Adjust.
3214         * check-module (find_included_lib_files): Adjust.
3215         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
3216
3217 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
3218
3219         copy-acl: enhance Solaris ACL error handling
3220         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
3221         * lib/set-mode-acl.c (qset_acl): Likewise.
3222
3223 2010-03-02  Bruno Haible  <bruno@clisp.org>
3224
3225         spawn: Don't override the system defined values on FreeBSD 8.
3226         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
3227         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
3228         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
3229         if HAVE_POSIX_SPAWN is 1.
3230         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
3231
3232 2010-03-01  Bruno Haible  <bruno@clisp.org>
3233
3234         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
3235         regarding Automake.
3236
3237 2010-02-25  Bruno Haible  <bruno@clisp.org>
3238
3239         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
3240         * gnulib-tool: Define 'echo' as a function only before the ksh alias
3241         setting, not afterwards.
3242         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
3243
3244 2010-02-24  Eric Blake  <eblake@redhat.com>
3245
3246         bootstrap, git-version-gen: use timestamp
3247         * build-aux/git-version-gen (scriptversion): Force UTC.
3248         * build-aux/bootstrap (scriptversion): New variable.
3249
3250         bootstrap: allow older git
3251         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
3252         older than 1.6.4.  Requested by the libvirt project.
3253
3254 2010-02-23  Eric Blake  <eblake@redhat.com>
3255
3256         warn-on-use: work with old autoconf
3257         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
3258         AS_VAR semantics of autoconf 2.60.
3259         Reported by Bruno Haible.
3260
3261         bootstrap: improve some comments
3262         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
3263         clarification comments.
3264
3265         gettimeofday: provide correct function
3266         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
3267         when replacement is declared, otherwise provide gettimeofday.
3268         Reported by Michael Goffioul.
3269
3270 2010-02-23  Jim Meyering  <meyering@redhat.com>
3271
3272         lib-ignore: relax license to "unlimited", not LGPLv2+
3273         * modules/lib-ignore (License): Relax to "unlimited".
3274
3275 2010-02-23  Jim Meyering  <meyering@redhat.com>
3276
3277         lib-ignore: relax license to LGPLv2+
3278         * modules/lib-ignore (License): Relax to LGPLv2+.
3279
3280 2010-02-22  Eric Blake  <eblake@redhat.com>
3281
3282         lseek: avoid bash 3.2 broken pipe bug
3283         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
3284         warning from bash 3.2.
3285         Reported by Ben Pfaff, with analysis from Bruno Haible.
3286
3287         bootstrap: support non-FSF copyright holder
3288         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
3289         bootstrap.conf override of COPYRIGHT_HOLDER.
3290         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
3291
3292         bootstrap: interoperate with gettext 0.14.1
3293         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
3294
3295         bootstrap: allow for alternate submodule location
3296         * build-aux/bootstrap (gnulib_path): New variable; use instead of
3297         hardcoding submodule location.
3298         (gnulib_mk): Allow direct use of Makefile.am.
3299
3300         bootstrap: use GNULIB_SRCDIR to reduce disk usage
3301         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
3302         rather than reconfiguring where the submodule points.
3303
3304         gettimeofday: restore support for platforms that lack function
3305         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
3306         replacement if function is missing.
3307         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
3308         * modules/sys_time (Makefile.am): Substitute it.
3309         * lib/sys_time.in.h (gettimeofday): Check it.
3310         Reported by Michael Goffioul.
3311
3312 2010-02-21  Bruno Haible  <bruno@clisp.org>
3313
3314         * lib/stdio.in.h (obstack_printf): Fix typo.
3315
3316 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
3317
3318         vc-list-files: use bzr ls's -R option
3319         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
3320         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
3321
3322 2010-02-21  Jim Meyering  <meyering@redhat.com>
3323
3324         init.sh: fix EXEEXT shims to work also for names like test-prog
3325         * tests/init.sh: Re-exec a better shell, when needed.
3326         If the current shell lacks support for posix $(...), an init.sh-using
3327         test will now try to find a shell that supports that.  If EXEEXT is
3328         nonempty, we also require support for hyphen-in-alias-name and shell
3329         substitutions like ${var#glob}.  Failure to find such a shell results
3330         in a skipped test.
3331
3332 2010-02-21  Bruno Haible  <bruno@clisp.org>
3333
3334         Really work around around "broken pipe" error message from bash 3.2.
3335         * gnulib-tool (func_reset_sigpipe): Remove function.
3336         (echo): In bash 3.2, define to a function that uses printf.
3337         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
3338
3339 2010-02-20  Bruno Haible  <bruno@clisp.org>
3340
3341         Restore support for automake 1.9.6 with autoconf 2.61.
3342         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
3343         Reported by James Youngman <jay@gnu.org>.
3344
3345 2010-02-20  Bruno Haible  <bruno@clisp.org>
3346
3347         Improve *printf warning condition.
3348         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
3349         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
3350         and the function is overridden due to SIGPIPE emulation.
3351
3352 2010-02-20  Bruno Haible  <bruno@clisp.org>
3353
3354         * lib/stdio.in.h: Tweak comments.
3355
3356 2010-02-19  Bruno Haible  <bruno@clisp.org>
3357
3358         Make it easier to find modules. New gnulib-tool option '--find'.
3359         * gnulib-tool: New option --find.
3360         (func_usage): Document it.
3361         (func_sanitize_modulelist): New function, extracted from
3362         func_all_modules.
3363         (func_all_modules): Invoke it.
3364         * doc/gnulib-tool.texi (Which modules?): New node.
3365
3366 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
3367
3368         * lib/sys_select.in.h: Provide select replacement even if
3369         sys/select.h exists on a system, for Interix.
3370
3371 2010-02-18  Jim Meyering  <meyering@redhat.com>
3372
3373         init.sh: don't use $(...) just yet
3374         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
3375         to accommodate e.g., Solaris' /bin/sh.
3376
3377 2010-02-17  Bruno Haible  <bruno@clisp.org>
3378
3379         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
3380         Reported by Ludovic Courtès <ludo@gnu.org>.
3381
3382 2010-02-16  Simon Josefsson  <simon@josefsson.org>
3383
3384         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
3385         linking with -lintl.
3386
3387 2010-02-17  Simon Josefsson  <simon@josefsson.org>
3388
3389         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
3390         if not provided by the system's netdb.h.  Reported by
3391         ludo@gnu.org (Ludovic Courtès).
3392
3393 2010-02-15  Jim Meyering  <meyering@redhat.com>
3394
3395         init.sh: improve portability and efficiency
3396         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
3397         "dummy" in a for loop.
3398         Use '!', not '^' to select the complement of a character set used
3399         in a "case" statement.
3400         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
3401         Suggestions from Eric Blake.
3402
3403         init.sh: automatically accommodate programs with the .exe suffix
3404         Automatically arrange for an invocation of "prog" to execute the
3405         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
3406         may use the simpler "prog", yet still work when built on a system
3407         that requires specifying the added suffix.
3408         Do this by constructing a function named "prog" that invokes
3409         "prog.exe" for each .exe file in selected directories.
3410         * tests/init.sh (find_exe_basenames_): New function.
3411         (create_exe_shim_functions_): New function.
3412         (path_prepend_): Use it.
3413
3414         maint.mk: mark syntax-check sc_*.m rules as .PHONY
3415         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
3416         "make -t syntax-check" doesn't create a ton of sc_*.m files.
3417
3418 2010-02-14  Jim Meyering  <meyering@redhat.com>
3419
3420         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
3421         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
3422         (sc_prohibit_hash_pjw_without_use): New rule.
3423
3424         maint.mk: allow the default upload destination dir to be overridden
3425         * top/maint.mk (upload_dest_dir_): Define with a default that
3426         preserves the status quo.
3427         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
3428         Reported by Peter Simons.
3429
3430         maint.mk: prohibit inclusion of "hash.h" without_use
3431         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
3432
3433 2010-02-10  Jim Meyering  <meyering@redhat.com>
3434
3435         maint.mk: prohibit inclusion of "ignore-value.h" without_use
3436         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
3437
3438 2010-02-09  Eric Blake  <ebb9@byu.net>
3439         and Bruno Haible  <bruno@clisp.org>
3440
3441         obstack-printf-posix: ensure declaration
3442         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
3443         extracted from gl_FUNC_OBSTACK_PRINTF.
3444         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
3445         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
3446         Likewise.
3447         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
3448         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
3449         0.
3450
3451 2010-02-08  Bruno Haible  <bruno@clisp.org>
3452
3453         gnulib-tool: Fix typo in 2010-02-07 commit.
3454         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
3455         Reported by Eric Blake.
3456
3457 2010-02-07  Bruno Haible  <bruno@clisp.org>
3458
3459         gnulib-tool: Fix up caching patches.
3460         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
3461         option --no-cache. Use associative arrays when supported by the shell.
3462         (sed_comments): New variable.
3463         (modcache): Renamed from do_cache.
3464         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
3465         abbreviate unnecessarily.
3466         (have_associative): New variable.
3467         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
3468         way also for ksh and zsh.
3469         (func_init_sed_convert_to_cache_statements): New function, extracted
3470         from func_cache_lookup_module. Add support for associative arrays.
3471         Don't set the c_MODULE_cached variable here. Ignore all lines before
3472         the first field header. Remove only the final newline, not all trailing
3473         newlines. Support empty fields correctly. Limit the use of 'eval' to
3474         assignments.
3475         (func_get_description, func_get_status, func_get_notice,
3476         func_get_applicability, func_get_filelist, func_get_dependencies,
3477         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
3478         func_get_automake_snippet, func_get_include_directive,
3479         func_get_link_directive, func_get_license, func_get_maintainer):
3480         Update documentation. List the unoptimized code first. Add support for
3481         associative arrays. Limit the use of 'eval' to assignments.
3482         (func_get_applicability): Undo stylistic pessimisations.
3483         (func_get_automake_snippet, func_get_include_directive): Reduce code
3484         duplication.
3485         (func_modules_transitive_closure, func_modules_add_dummy,
3486         func_modules_notice, func_modules_to_filelist, func_add_file,
3487         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
3488         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
3489         func_create_testdir, func_create_megatestdir): Update documentation.
3490
3491 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3492
3493         * gnulib-tool (func_cache_lookup_module): Store the module name
3494         belonging to the cache variable; error out if two different
3495         module names map to the same cache variable name.
3496
3497 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3498
3499         gnulib-tool: Make caching optional.
3500         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
3501         Update matching short versions of --no-changelog.
3502         (func_usage): Update.
3503         (sed_extract_cache_prog): Renamed from ...
3504         (sed_extract_prog): ... this; revert to old extraction script.
3505         (func_get_description, func_get_status)
3506         (func_get_notice, func_get_applicability, func_get_filelist)
3507         (func_get_dependencies, func_get_autoconf_early_snippet)
3508         (func_get_autoconf_snippet, func_get_automake_snippet)
3509         (func_get_include_directive, func_get_link_directive)
3510         (func_get_license, func_get_maintainer): If $do_cache is false,
3511         use old, non-caching extraction scripts.
3512         Suggestion by Bruno Haible.
3513
3514 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3515
3516         gnulib-tool: cache module metainformation.
3517         * gnulib-tool (sed_extract_prog): Match newline before each
3518         header, and rewrite header to a shell variable suffix.
3519         (func_cache_var, func_cache_lookup_module): New functions,
3520         to turn a module name into a cache variable prefix, and to
3521         look up and cache module metainformation.
3522         (func_get_description, func_get_status)
3523         (func_get_notice, func_get_applicability, func_get_filelist)
3524         (func_get_dependencies, func_get_autoconf_early_snippet)
3525         (func_get_autoconf_snippet, func_get_automake_snippet)
3526         (func_get_include_directive, func_get_link_directive)
3527         (func_get_license, func_get_maintainer): Use
3528         func_cache_lookup_module.
3529
3530 2010-02-07  Bruno Haible  <bruno@clisp.org>
3531
3532         fnctl: Fix missing dependency.
3533         * modules/fcntl (Depends-on): Add getdtablesize.
3534         Reported by John W. Eaton <jwe@gnu.org>.
3535
3536 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
3537
3538         Argp: fix recognition of short alias options.
3539
3540         * lib/argp-parse.c (convert_options): Fix improper use of
3541         `|' between character values.
3542         * tests/test-argp.c (group1_option): New alias option
3543         --read (-r).
3544         (group1_parser): Special handling for 'r'.
3545         (test15): New test case.
3546         (test_fun): Add test15.
3547         * tests/test-argp-2.sh: Update expected --help and --usage
3548         outputs.
3549
3550 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
3551
3552         * tests/test-argp.c: Fix indentation.
3553
3554 2010-02-04  Eric Blake  <ebb9@byu.net>
3555
3556         gettimeofday: expose type of second argument
3557         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
3558         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
3559         * tests/test-gettimeofday.c: Use it to silence warning.
3560         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
3561         the issue.
3562
3563 2010-02-03  Jim Meyering  <meyering@redhat.com>
3564
3565         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
3566         * lib/regcomp.c (TYPE_SIGNED): Define.
3567         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
3568
3569         regcomp.c: avoid a new -Wshadow warning
3570         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
3571
3572 2010-02-01  Jim Meyering  <meyering@redhat.com>
3573
3574         removing useless parentheses in cpp #define directives
3575         For motivation, see commit c0221df4, "define STREQ(a,b)
3576         consistently, removing useless parentheses"
3577         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
3578         * lib/mountlist.c (MNT_IGNORE): Likewise.
3579         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
3580
3581 2010-02-01  Eric Blake  <ebb9@byu.net>
3582
3583         sys_time: use link-warning
3584         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
3585         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
3586         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
3587         * modules/sys_time (Depends-on): Add warn-on-use.
3588         (Makefile.am): Always build replacement.
3589         (configure.ac): Update substitutions.
3590         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
3591         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
3592         bother with SYS_TIME_H.
3593         * modules/gettimeofday (configure.ac): Declare indicator.
3594         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
3595         in use.
3596
3597         closein-tests: silence compiler warning
3598         * tests/test-closein.c (main): Ignore fread result.
3599         * modules/closein-tests (Depends-on): Add ignore-value.
3600
3601         tests: silence warning about system return
3602         * tests/test-areadlink-with-size.c (main): Ignore system result.
3603         * tests/test-areadlink.c (main): Likewise.
3604         * tests/test-areadlinkat-with-size.c (main): Likewise.
3605         * tests/test-areadlinkat.c (main): Likewise.
3606         * tests/test-canonicalize-lgpl.c (main): Likewise.
3607         * tests/test-canonicalize.c (main): Likewise.
3608         * tests/test-chown.c (main): Likewise.
3609         * tests/test-fchownat.c (main): Likewise.
3610         * tests/test-fdutimensat.c (main): Likewise.
3611         * tests/test-fstatat.c (main): Likewise.
3612         * tests/test-futimens.c (main): Likewise.
3613         * tests/test-lchown.c (main): Likewise.
3614         * tests/test-link.c (main): Likewise.
3615         * tests/test-linkat.c (main): Likewise.
3616         * tests/test-lstat.c (main): Likewise.
3617         * tests/test-mkdir.c (main): Likewise.
3618         * tests/test-mkdirat.c (main): Likewise.
3619         * tests/test-mkfifo.c (main): Likewise.
3620         * tests/test-mkfifoat.c (main): Likewise.
3621         * tests/test-mknod.c (main): Likewise.
3622         * tests/test-readlink.c (main): Likewise.
3623         * tests/test-remove.c (main): Likewise.
3624         * tests/test-rename.c (main): Likewise.
3625         * tests/test-renameat.c (main): Likewise.
3626         * tests/test-rmdir.c (main): Likewise.
3627         * tests/test-symlink.c (main): Likewise.
3628         * tests/test-symlinkat.c (main): Likewise.
3629         * tests/test-unlink.c (main): Likewise.
3630         * tests/test-unlinkat.c (main): Likewise.
3631         * tests/test-utimens.c (main): Likewise.
3632         * tests/test-utimensat.c (main): Likewise.
3633         * modules/areadlink-tests (Depends-on): Add ignore-value.
3634         * modules/areadlink-with-size-tests (Depends-on): Likewise.
3635         * modules/areadlinkat-tests (Depends-on): Likewise.
3636         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
3637         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3638         * modules/canonicalize-tests (Depends-on): Likewise.
3639         * modules/chown-tests (Depends-on): Likewise.
3640         * modules/fdutimensat-tests (Depends-on): Likewise.
3641         * modules/futimens-tests (Depends-on): Likewise.
3642         * modules/lchown-tests (Depends-on): Likewise.
3643         * modules/link-tests (Depends-on): Likewise.
3644         * modules/linkat-tests (Depends-on): Likewise.
3645         * modules/lstat-tests (Depends-on): Likewise.
3646         * modules/mkdir-tests (Depends-on): Likewise.
3647         * modules/mkfifo-tests (Depends-on): Likewise.
3648         * modules/mkfifoat-tests (Depends-on): Likewise.
3649         * modules/mknod-tests (Depends-on): Likewise.
3650         * modules/openat-tests (Depends-on): Likewise.
3651         * modules/readlink-tests (Depends-on): Likewise.
3652         * modules/remove-tests (Depends-on): Likewise.
3653         * modules/rename-tests (Depends-on): Likewise.
3654         * modules/renameat-tests (Depends-on): Likewise.
3655         * modules/rmdir-tests (Depends-on): Likewise.
3656         * modules/symlink-tests (Depends-on): Likewise.
3657         * modules/symlinkat-tests (Depends-on): Likewise.
3658         * modules/unlink-tests (Depends-on): Likewise.
3659         * modules/utimens-tests (Depends-on): Likewise.
3660         * modules/utimensat-tests (Depends-on): Likewise.
3661
3662 2010-01-31  Bruno Haible  <bruno@clisp.org>
3663
3664         Perform the same test for many <math.h> functions.
3665         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
3666         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
3667         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
3668         of gl_MATHFUNC.
3669         * modules/acos (configure.ac): Likewise.
3670         * modules/asin (configure.ac): Likewise.
3671         * modules/atan (configure.ac): Likewise.
3672         * modules/atan2 (configure.ac): Likewise.
3673         * modules/cbrt (configure.ac): Likewise.
3674         * modules/copysign (configure.ac): Likewise.
3675         * modules/cos (configure.ac): Likewise.
3676         * modules/cosh (configure.ac): Likewise.
3677         * modules/erf (configure.ac): Likewise.
3678         * modules/erfc (configure.ac): Likewise.
3679         * modules/exp (configure.ac): Likewise.
3680         * modules/fmod (configure.ac): Likewise.
3681         * modules/hypot (configure.ac): Likewise.
3682         * modules/j0 (configure.ac): Likewise.
3683         * modules/j1 (configure.ac): Likewise.
3684         * modules/jn (configure.ac): Likewise.
3685         * modules/lgamma (configure.ac): Likewise.
3686         * modules/log (configure.ac): Likewise.
3687         * modules/log10 (configure.ac): Likewise.
3688         * modules/log1p (configure.ac): Likewise.
3689         * modules/pow (configure.ac): Likewise.
3690         * modules/remainder (configure.ac): Likewise.
3691         * modules/sin (configure.ac): Likewise.
3692         * modules/sinh (configure.ac): Likewise.
3693         * modules/tan (configure.ac): Likewise.
3694         * modules/tanh (configure.ac): Likewise.
3695         * modules/y0 (configure.ac): Likewise.
3696         * modules/y1 (configure.ac): Likewise.
3697         * modules/yn (configure.ac): Likewise.
3698         Suggested by Paolo Bonzini.
3699
3700 2010-01-31  Bruno Haible  <bruno@clisp.org>
3701
3702         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
3703
3704 2010-01-31  Bruno Haible  <bruno@clisp.org>
3705
3706         Work around getdelim() bug on FreeBSD 8.0.
3707         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
3708         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
3709         not work.
3710         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
3711         is 1.
3712         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
3713         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
3714         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
3715         a non-zero size.
3716         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
3717
3718 2010-01-31  Bruno Haible  <bruno@clisp.org>
3719
3720         Work around getline() bug on FreeBSD 8.0.
3721         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
3722         and a non-zero size.
3723         * tests/test-getline.c (main): Likewise.
3724         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
3725         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
3726
3727 2010-01-28  Eric Blake  <ebb9@byu.net>
3728
3729         regex: fix build failure
3730         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
3731         platforms.
3732
3733 2010-01-28  Jim Meyering  <meyering@redhat.com>
3734
3735         regex: do not ignore memory allocation failure
3736         * lib/regex_internal.c (create_cd_newstate): Detect
3737         re_node_set_init_copy failure.   Extracted from glibc commit
3738         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
3739
3740         regex: sync more white-space changes from libc
3741         * lib/regex_internal.c: White-space only changes.
3742         * lib/regexec.c: Likewise.
3743
3744         regex: add many uses of __attribute_warn_unused_result__
3745         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
3746         * lib/regexec.c: Likewise.
3747         Extracted from a messy glibc commit.
3748
3749         regcomp.c: spelling and merge-artifact from glibc
3750         * lib/regcomp.c: Merge remainder of glibc's
3751         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
3752
3753         regcomp.c: sync white-space changes from glibc
3754         * lib/regcomp.c: Merge to accommodate white space
3755         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
3756
3757         regcomp.c: do not ignore internal return values
3758         * lib/regcomp.c: Do not ignore internal return values.
3759         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
3760         but without its white-space changes and spelling fixes.
3761
3762         regex_internal.h: define __attribute_warn_unused_result__
3763         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
3764
3765         maint: add a syntax-check rule to check for vulnerable Makefile.in
3766         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
3767
3768 2010-01-27  Jim Meyering  <meyering@redhat.com>
3769
3770         ncftpput-ftp: clean up spaces
3771         * build-aux/ncftpput-ftp: Make Copyright line consistent.
3772         Remove trailing blanks.
3773
3774 2010-01-27  Simon Josefsson  <simon@josefsson.org>
3775
3776         * build-aux/git-version-gen: Fix copyright statement.
3777         * build-aux/gnupload: Likewise.
3778         * tests/test-arcfour.c: Likewise.
3779         * tests/test-arctwo.c: Likewise.
3780         * tests/test-count-one-bits.c: Likewise.
3781         * tests/test-crc.c: Likewise.
3782         * tests/test-des.c: Likewise.
3783         * tests/test-gc-arcfour.c: Likewise.
3784         * tests/test-gc-arctwo.c: Likewise.
3785         * tests/test-gc-des.c: Likewise.
3786         * tests/test-gc-hmac-md5.c: Likewise.
3787         * tests/test-gc-hmac-sha1.c: Likewise.
3788         * tests/test-gc-md2.c: Likewise.
3789         * tests/test-gc-md4.c: Likewise.
3790         * tests/test-gc-md5.c: Likewise.
3791         * tests/test-gc-pbkdf2-sha1.c: Likewise.
3792         * tests/test-gc-rijndael.c: Likewise.
3793         * tests/test-gc-sha1.c: Likewise.
3794         * tests/test-gc.c: Likewise.
3795         * tests/test-gethostname.c: Likewise.
3796         * tests/test-gettimeofday.c: Likewise.
3797         * tests/test-hash.c: Likewise.
3798         * tests/test-hmac-md5.c: Likewise.
3799         * tests/test-hmac-sha1.c: Likewise.
3800         * tests/test-md2.c: Likewise.
3801         * tests/test-md4.c: Likewise.
3802         * tests/test-md5.c: Likewise.
3803         * tests/test-memchr.c: Likewise.
3804         * tests/test-memchr2.c: Likewise.
3805         * tests/test-memcmp.c: Likewise.
3806         * tests/test-memmem.c: Likewise.
3807         * tests/test-memrchr.c: Likewise.
3808         * tests/test-rawmemchr.c: Likewise.
3809         * tests/test-read-file.c: Likewise.
3810         * tests/test-rijndael.c: Likewise.
3811         * tests/test-sockets.c: Likewise.
3812         * tests/test-strchrnul.c: Likewise.
3813         * tests/test-strstr.c: Likewise.
3814         * tests/test-strtod.c: Likewise.
3815         * build-aux/ncftpput-ftp: Likewise.
3816
3817 2010-01-26  Eric Blake  <ebb9@byu.net>
3818
3819         ignore-value: update recommended header name
3820         * modules/ignore-value (Include): Only use <> for headers that
3821         exist in glibc.
3822
3823 2010-01-26  Jim Meyering  <meyering@redhat.com>
3824
3825         test-userspec.c: avoid compiler warnings
3826         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
3827         and "initialization discards qualifiers..." warnings.
3828         Put the first "uid" in its own scope, and make char* members "const".
3829
3830 2010-01-25  Bruno Haible  <bruno@clisp.org>
3831
3832         gnulib-tool: Make warning diagnostics consistent.
3833         * gnulib-tool (func_warning): New function.
3834         Use it everywhere where gnulib-tool produces output to stderr and it is
3835         not a fatal error.
3836
3837 2010-01-25  Bruno Haible  <bruno@clisp.org>
3838
3839         Fix test dependencies.
3840         * modules/xstrtol-tests (Depends-on): Add inttypes.
3841         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
3842
3843 2010-01-25 Pádraig Brady <P@draigBrady.com>
3844
3845         syntax-check: detect incorrect boolean macro values in config.h
3846         * modules/maintainer-makefile (configure.ac): Parameterize the location
3847         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
3848         The logic is from Eric Blake and the location indicated by Jim Meyering.
3849         Note the more natural CONFIG_HEADER name is prohibited by automake
3850         for backwards compatibility reasons.
3851         * top/maint.mk (sc_Wundef_boolean): New rule.
3852
3853 2010-01-25  Jim Meyering  <meyering@redhat.com>
3854
3855         bootstrap: detect MacOS 10.6's shasum, too
3856         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
3857         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
3858
3859 2010-01-23  Jim Meyering  <meyering@redhat.com>
3860
3861         xstrtoll: new module
3862         * modules/xstrtoll: New file.
3863         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
3864         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
3865         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
3866         ./configure fails if you use this module and lack "long long".
3867         * modules/xstrtoll-tests: New module.
3868         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
3869         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
3870         new init.sh-based test framework.
3871
3872 2010-01-24  Bruno Haible  <bruno@clisp.org>
3873
3874         Tests for module 'yn'.
3875         * modules/yn-tests: New file.
3876         * tests/test-yn.c: New file.
3877
3878         Tests for module 'y1'.
3879         * modules/y1-tests: New file.
3880         * tests/test-y1.c: New file.
3881
3882         Tests for module 'y0'.
3883         * modules/y0-tests: New file.
3884         * tests/test-y0.c: New file.
3885
3886         Tests for module 'tanh'.
3887         * modules/tanh-tests: New file.
3888         * tests/test-tanh.c: New file.
3889
3890         Tests for module 'tan'.
3891         * modules/tan-tests: New file.
3892         * tests/test-tan.c: New file.
3893
3894         Tests for module 'sqrt'.
3895         * modules/sqrt-tests: New file.
3896         * tests/test-sqrt.c: New file.
3897
3898         Tests for module 'sinh'.
3899         * modules/sinh-tests: New file.
3900         * tests/test-sinh.c: New file.
3901
3902         Tests for module 'sin'.
3903         * modules/sin-tests: New file.
3904         * tests/test-sin.c: New file.
3905
3906         Tests for module 'rint'.
3907         * modules/rint-tests: New file.
3908         * tests/test-rint.c: New file.
3909
3910         Tests for module 'remainder'.
3911         * modules/remainder-tests: New file.
3912         * tests/test-remainder.c: New file.
3913
3914         Tests for module 'pow'.
3915         * modules/pow-tests: New file.
3916         * tests/test-pow.c: New file.
3917
3918         Tests for module 'nextafter'.
3919         * modules/nextafter-tests: New file.
3920         * tests/test-nextafter.c: New file.
3921
3922         Tests for module 'modf'.
3923         * modules/modf-tests: New file.
3924         * tests/test-modf.c: New file.
3925
3926         Tests for module 'logb'.
3927         * modules/logb-tests: New file.
3928         * tests/test-logb.c: New file.
3929
3930         Tests for module 'log1p'.
3931         * modules/log1p-tests: New file.
3932         * tests/test-log1p.c: New file.
3933
3934         Tests for module 'log10'.
3935         * modules/log10-tests: New file.
3936         * tests/test-log10.c: New file.
3937
3938         Tests for module 'log'.
3939         * modules/log-tests: New file.
3940         * tests/test-log.c: New file.
3941
3942         Tests for module 'lgamma'.
3943         * modules/lgamma-tests: New file.
3944         * tests/test-lgamma.c: New file.
3945
3946         Tests for module 'ldexp'.
3947         * modules/ldexp-tests: New file.
3948         * tests/test-ldexp.c: New file.
3949
3950         Tests for module 'jn'.
3951         * modules/jn-tests: New file.
3952         * tests/test-jn.c: New file.
3953
3954         Tests for module 'j1'.
3955         * modules/j1-tests: New file.
3956         * tests/test-j1.c: New file.
3957
3958         Tests for module 'j0'.
3959         * modules/j0-tests: New file.
3960         * tests/test-j0.c: New file.
3961
3962         Tests for module 'hypot'.
3963         * modules/hypot-tests: New file.
3964         * tests/test-hypot.c: New file.
3965
3966         Tests for module 'fmod'.
3967         * modules/fmod-tests: New file.
3968         * tests/test-fmod.c: New file.
3969
3970         Tests for module 'fabs'.
3971         * modules/fabs-tests: New file.
3972         * tests/test-fabs.c: New file.
3973
3974         Tests for module 'exp'.
3975         * modules/exp-tests: New file.
3976         * tests/test-exp.c: New file.
3977
3978         Tests for module 'erfc'.
3979         * modules/erfc-tests: New file.
3980         * tests/test-erfc.c: New file.
3981
3982         Tests for module 'erf'.
3983         * modules/erf-tests: New file.
3984         * tests/test-erf.c: New file.
3985
3986         Tests for module 'cosh'.
3987         * modules/cosh-tests: New file.
3988         * tests/test-cosh.c: New file.
3989
3990         Tests for module 'cos'.
3991         * modules/cos-tests: New file.
3992         * tests/test-cos.c: New file.
3993
3994         Tests for module 'copysign'.
3995         * modules/copysign-tests: New file.
3996         * tests/test-copysign.c: New file.
3997
3998         Tests for module 'cbrt'.
3999         * modules/cbrt-tests: New file.
4000         * tests/test-cbrt.c: New file.
4001
4002         Tests for module 'atan2'.
4003         * modules/atan2-tests: New file.
4004         * tests/test-atan2.c: New file.
4005
4006         Tests for module 'atan'.
4007         * modules/atan-tests: New file.
4008         * tests/test-atan.c: New file.
4009
4010         Tests for module 'asin'.
4011         * modules/asin-tests: New file.
4012         * tests/test-asin.c: New file.
4013
4014         Tests for module 'acos'.
4015         * modules/acos-tests: New file.
4016         * tests/test-acos.c: New file.
4017
4018 2010-01-24  Bruno Haible  <bruno@clisp.org>
4019
4020         Fix tests for common <math.h> functions.
4021         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
4022         code snippet that references the function pointer, rather than merely
4023         calling the function. Substitute the FUNC_LIBM variable.
4024         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
4025         * modules/acos (configure.ac): Likewise.
4026         * modules/asin (configure.ac): Likewise.
4027         * modules/atan (configure.ac): Likewise.
4028         * modules/atan2 (configure.ac): Likewise.
4029         * modules/cbrt (configure.ac): Likewise.
4030         * modules/copysign (configure.ac): Likewise.
4031         * modules/cos (configure.ac): Likewise.
4032         * modules/cosh (configure.ac): Likewise.
4033         * modules/erf (configure.ac): Likewise.
4034         * modules/erfc (configure.ac): Likewise.
4035         * modules/exp (configure.ac): Likewise.
4036         * modules/fabs (configure.ac): Likewise.
4037         * modules/fmod (configure.ac): Likewise.
4038         * modules/hypot (configure.ac): Likewise.
4039         * modules/j0 (configure.ac): Likewise.
4040         * modules/j1 (configure.ac): Likewise.
4041         * modules/jn (configure.ac): Likewise.
4042         * modules/ldexp (configure.ac): Likewise.
4043         * modules/lgamma (configure.ac): Likewise.
4044         * modules/log (configure.ac): Likewise.
4045         * modules/log10 (configure.ac): Likewise.
4046         * modules/log1p (configure.ac): Likewise.
4047         * modules/logb (configure.ac): Likewise.
4048         * modules/modf (configure.ac): Likewise.
4049         * modules/nextafter (configure.ac): Likewise.
4050         * modules/pow (configure.ac): Likewise.
4051         * modules/remainder (configure.ac): Likewise.
4052         * modules/rint (configure.ac): Likewise.
4053         * modules/sin (configure.ac): Likewise.
4054         * modules/sinh (configure.ac): Likewise.
4055         * modules/tan (configure.ac): Likewise.
4056         * modules/tanh (configure.ac): Likewise.
4057         * modules/y0 (configure.ac): Likewise.
4058         * modules/y1 (configure.ac): Likewise.
4059         * modules/yn (configure.ac): Likewise.
4060
4061 2010-01-24  Bruno Haible  <bruno@clisp.org>
4062
4063         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
4064         * tests/test-acosl.c (x): New variable.
4065         (main): Store argument in x and fetch it from x.
4066         * tests/test-asinl.c (x): New variable.
4067         (main): Store argument in x and fetch it from x.
4068         * tests/test-atanl.c (x): New variable.
4069         (main): Store argument in x and fetch it from x.
4070         * tests/test-cosl.c (x): New variable.
4071         (main): Store argument in x and fetch it from x.
4072         * tests/test-expl.c (x): New variable.
4073         (main): Store argument in x and fetch it from x.
4074         * tests/test-logl.c (x): New variable.
4075         (main): Store argument in x and fetch it from x.
4076         * tests/test-sinl.c (x): New variable.
4077         (main): Store argument in x and fetch it from x.
4078         * tests/test-sqrtl.c (x): New variable.
4079         (main): Store argument in x and fetch it from x.
4080         * tests/test-tanl.c (x): New variable.
4081         (main): Store argument in x and fetch it from x.
4082
4083 2010-01-24  Bruno Haible  <bruno@clisp.org>
4084
4085         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
4086         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
4087         assignments to the initial TESTS_ENVIRONMENT.
4088         * doc/gnulib.texi (Unit test modules): Document it.
4089         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
4090         TESTS_ENVIRONMENT.
4091         * modules/btowc-tests (Makefile.am): Likewise.
4092         * modules/c-stack-tests (Makefile.am): Likewise.
4093         * modules/c-strcase-tests (Makefile.am): Likewise.
4094         * modules/copy-file-tests (Makefile.am): Likewise.
4095         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
4096         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
4097         * modules/mbrtowc-tests (Makefile.am): Likewise.
4098         * modules/mbscasecmp-tests (Makefile.am): Likewise.
4099         * modules/mbscasestr-tests (Makefile.am): Likewise.
4100         * modules/mbschr-tests (Makefile.am): Likewise.
4101         * modules/mbscspn-tests (Makefile.am): Likewise.
4102         * modules/mbsinit-tests (Makefile.am): Likewise.
4103         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
4104         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
4105         * modules/mbspbrk-tests (Makefile.am): Likewise.
4106         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
4107         * modules/mbsrchr-tests (Makefile.am): Likewise.
4108         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
4109         * modules/mbsspn-tests (Makefile.am): Likewise.
4110         * modules/mbsstr-tests (Makefile.am): Likewise.
4111         * modules/nl_langinfo-tests (Makefile.am): Likewise.
4112         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
4113         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
4114         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
4115         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
4116         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
4117         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
4118         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
4119         * modules/wcrtomb-tests (Makefile.am): Likewise.
4120         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
4121         * modules/wcsrtombs-tests (Makefile.am): Likewise.
4122         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
4123         assignments from TESTS_ENVIRONMENT.
4124         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
4125         augmentation.
4126         * modules/argp-version-etc-tests (Makefile.am): Likewise.
4127         * modules/atexit-tests (Makefile.am): Likewise.
4128         * modules/binary-io-tests (Makefile.am): Likewise.
4129         * modules/closein-tests (Makefile.am): Likewise.
4130         * modules/dprintf-posix-tests (Makefile.am): Likewise.
4131         * modules/exclude-tests (Makefile.am): Likewise.
4132         * modules/fflush-tests (Makefile.am): Likewise.
4133         * modules/fpending-tests (Makefile.am): Likewise.
4134         * modules/fprintf-posix-tests (Makefile.am): Likewise.
4135         * modules/freadahead-tests (Makefile.am): Likewise.
4136         * modules/freadptr-tests (Makefile.am): Likewise.
4137         * modules/freadseek-tests (Makefile.am): Likewise.
4138         * modules/fseek-tests (Makefile.am): Likewise.
4139         * modules/fseeko-tests (Makefile.am): Likewise.
4140         * modules/ftell-tests (Makefile.am): Likewise.
4141         * modules/ftello-tests (Makefile.am): Likewise.
4142         * modules/idpriv-drop-tests (Makefile.am): Likewise.
4143         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
4144         * modules/lseek-tests (Makefile.am): Likewise.
4145         * modules/parse-duration-tests (Makefile.am): Likewise.
4146         * modules/perror-tests (Makefile.am): Likewise.
4147         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
4148         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
4149         * modules/pipe-tests (Makefile.am): Likewise.
4150         * modules/pread-tests (Makefile.am): Likewise.
4151         * modules/printf-posix-tests (Makefile.am): Likewise.
4152         * modules/select-tests (Makefile.am): Likewise.
4153         * modules/sigpipe-tests (Makefile.am): Likewise.
4154         * modules/tsearch-tests (Makefile.am): Likewise.
4155         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
4156         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
4157         * modules/uniname/uniname-tests (Makefile.am): Likewise.
4158         * modules/uniwidth/width-tests (Makefile.am): Likewise.
4159         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
4160         * modules/version-etc-tests (Makefile.am): Likewise.
4161         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
4162         * modules/vprintf-posix-tests (Makefile.am): Likewise.
4163         * modules/xalloc-die-tests (Makefile.am): Likewise.
4164         * modules/xprintf-posix-tests (Makefile.am): Likewise.
4165         * modules/xstrtoimax-tests (Makefile.am): Likewise.
4166         * modules/xstrtol-tests (Makefile.am): Likewise.
4167         * modules/xstrtoumax-tests (Makefile.am): Likewise.
4168         * modules/yesno-tests (Makefile.am): Likewise.
4169         Suggested by Jim Meyering.
4170
4171 2010-01-24  Bruno Haible  <bruno@clisp.org>
4172
4173         More documentation.
4174         * doc/gnulib.texi (Writing modules): New chapter.
4175         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
4176         the new chapter.
4177
4178 2010-01-24  Jim Meyering  <meyering@redhat.com>
4179
4180         maint.mk: do not prepend "./" after filtering
4181         * top/maint.mk (_prepend_srcdir_prefix): New variable
4182         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
4183         "./" when $(srcdir) is ".".
4184
4185         define STREQ(a,b) consistently, removing useless parentheses
4186         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
4187         since the only risk is that "a" or "b" contains an unparenthesized
4188         comma, but if either did that, STREQ would have 3 or more arguments.
4189         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
4190         * lib/fts.c (STREQ): Remove unnecessary parentheses.
4191         * lib/hash-triple.c (STREQ): Likewise.
4192         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
4193         * lib/getugroups.c (STREQ): Likewise.
4194
4195 2010-01-23  Jim Meyering  <meyering@redhat.com>
4196
4197         maint.mk: fix syntax-check in a non-srcdir build directory
4198         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
4199         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
4200
4201 2010-01-22  Jim Meyering  <meyering@redhat.com>
4202
4203         userspec: add unit tests
4204         * tests/test-userspec.c: New file.
4205         * modules/userspec-tests: Likewise.
4206
4207 2010-01-21  Jim Meyering  <meyering@redhat.com>
4208
4209         maint.mk: handle source file names containing "." robustly
4210         * top/maint.mk (_dot_escaped_srcdir): Define.
4211         (VC_LIST): Use it in LHS of sed substitution.
4212
4213 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
4214
4215         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
4216         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
4217         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
4218         from a non-srcdir build.
4219
4220 2010-01-20  Eric Blake  <ebb9@byu.net>
4221
4222         warn-on-use: use instead of link-warning
4223         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
4224         * modules/unistd (Depends-on, Makefile.am): Likewise.
4225         * modules/arpa_inet (Depends-on): Replace link-warning with
4226         warn-on-use.
4227         (Makefile.am): Update rules accordingly.
4228         * modules/ctype (Depends-on, Makefile.am): Likewise.
4229         * modules/dirent (Depends-on, Makefile.am): Likewise.
4230         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
4231         * modules/inttypes (Depends-on, Makefile.am): Likewise.
4232         * modules/langinfo (Depends-on, Makefile.am): Likewise.
4233         * modules/locale (Depends-on, Makefile.am): Likewise.
4234         * modules/math (Depends-on, Makefile.am): Likewise.
4235         * modules/search (Depends-on, Makefile.am): Likewise.
4236         * modules/signal (Depends-on, Makefile.am): Likewise.
4237         * modules/spawn (Depends-on, Makefile.am): Likewise.
4238         * modules/stdlib (Depends-on, Makefile.am): Likewise.
4239         * modules/string (Depends-on, Makefile.am): Likewise.
4240         * modules/strings (Depends-on, Makefile.am): Likewise.
4241         * modules/sys_file (Depends-on, Makefile.am): Likewise.
4242         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
4243         * modules/sys_select (Depends-on, Makefile.am): Likewise.
4244         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
4245         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
4246         * modules/sys_times (Depends-on, Makefile.am): Likewise.
4247         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
4248         * modules/wchar (Depends-on, Makefile.am): Likewise.
4249         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
4250         should be poisoned.
4251         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
4252         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
4253         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
4254         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4255         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
4256         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
4257         * m4/math_h.m4 (gl_MATH_H): Likewise.
4258         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
4259         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
4260         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
4261         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
4262         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
4263         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
4264         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
4265         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
4266         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
4267         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4268         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
4269         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
4270         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
4271         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
4272         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
4273         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
4274         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
4275         GL_LINK_WARNING.
4276         * lib/ctype.in.h: Likewise.
4277         * lib/dirent.in.h: Likewise.
4278         * lib/fcntl.in.h: Likewise.
4279         * lib/inttypes.in.h: Likewise.
4280         * lib/langinfo.in.h: Likewise.
4281         * lib/locale.in.h: Likewise.
4282         * lib/math.in.h: Likewise.
4283         * lib/search.in.h: Likewise.
4284         * lib/signal.in.h: Likewise.
4285         * lib/spawn.in.h: Likewise.
4286         * lib/stdio.in.h: Likewise.
4287         * lib/stdlib.in.h: Likewise.
4288         * lib/string.in.h: Likewise.
4289         * lib/strings.in.h: Likewise.
4290         * lib/sys_file.in.h: Likewise.
4291         * lib/sys_ioctl.in.h: Likewise.
4292         * lib/sys_select.in.h: Likewise.
4293         * lib/sys_socket.in.h: Likewise.
4294         * lib/sys_stat.in.h: Likewise.
4295         * lib/sys_times.in.h: Likewise.
4296         * lib/sys_utsname.in.h: Likewise.
4297         * lib/unistd.in.h: Likewise.
4298         * lib/wchar.in.h: Likewise.
4299
4300 2010-01-20  Bruno Haible  <bruno@clisp.org>
4301
4302         Avoid duplicate -lm.
4303         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
4304         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
4305         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
4306         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
4307         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
4308         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
4309         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
4310         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
4311         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
4312         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
4313         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
4314         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
4315         Reported by Paolo Bonzini.
4316
4317 2010-01-19  Bruno Haible  <bruno@clisp.org>
4318
4319         langinfo, nl_langinfo: Relicense under LGPLv2+.
4320         * modules/langinfo (License): Change to LGPLv2+.
4321         * modules/nl_langinfo (License): Likewise.
4322         Patch by David Lutterkort <lutter@redhat.com>.
4323
4324 2010-01-19  Bruno Haible  <bruno@clisp.org>
4325
4326         Avoid compilation error with cc on OSF/1 5.1.
4327         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
4328         statement, not before.
4329         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4330
4331 2010-01-18  Bruno Haible  <bruno@clisp.org>
4332
4333         Avoid a link error due to the __printf__ symbol.
4334         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
4335         and 2.6.x.
4336         (__format__, __printf__): Remove definitions.
4337         * lib/argp-fmtstream.h: Likewise.
4338         * lib/argp.h: Likewise.
4339         * lib/error.h: Likewise.
4340         * lib/vasnprintf.h: Likewise.
4341         * lib/xprintf.h: Likewise.
4342         * lib/xvasprintf.h: Likewise.
4343         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4344
4345 2010-01-18  Bruno Haible  <bruno@clisp.org>
4346
4347         Tests for module 'tanl'.
4348         * modules/tanl-tests: New file.
4349         * tests/test-tanl.c: New file.
4350
4351         Tests for module 'sqrtl'.
4352         * modules/sqrtl-tests: New file.
4353         * tests/test-sqrtl.c: New file.
4354
4355         Tests for module 'sinl'.
4356         * modules/sinl-tests: New file.
4357         * tests/test-sinl.c: New file.
4358
4359         Tests for module 'logl'.
4360         * modules/logl-tests: New file.
4361         * tests/test-logl.c: New file.
4362
4363         Tests for module 'expl'.
4364         * modules/expl-tests: New file.
4365         * tests/test-expl.c: New file.
4366
4367         Tests for module 'cosl'.
4368         * modules/cosl-tests: New file.
4369         * tests/test-cosl.c: New file.
4370
4371         Tests for module 'atanl'.
4372         * modules/atanl-tests: New file.
4373         * tests/test-atanl.c: New file.
4374
4375         Tests for module 'asinl'.
4376         * modules/asinl-tests: New file.
4377         * tests/test-asinl.c: New file.
4378
4379         Tests for module 'acosl'.
4380         * modules/acosl-tests: New file.
4381         * tests/test-acosl.c: New file.
4382
4383         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
4384         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
4385         tanl): Use the standard gnulib idiom.
4386         * lib/cosl.c: Don't include trigl.c and sincosl.c.
4387         * lib/sinl.c: Likewise.
4388         * lib/tanl.c: Don't include trigl.c.
4389         (kernel_tanl): Make static.
4390         * lib/sincosl.c: Include trigl.h first.
4391         * lib/trigl.c: Likewise.
4392         * m4/acosl.m4: New file.
4393         * m4/asinl.m4: New file.
4394         * m4/atanl.m4: New file.
4395         * m4/cosl.m4: New file.
4396         * m4/expl.m4: New file.
4397         * m4/logl.m4: New file.
4398         * m4/sinl.m4: New file.
4399         * m4/sqrtl.m4: New file.
4400         * m4/tanl.m4: New file.
4401         * m4/mathl.m4: Remove file.
4402         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
4403         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
4404         Don't initialize GNULIB_MATHL.
4405         * modules/acosl: New file.
4406         * modules/asinl: New file.
4407         * modules/atanl: New file.
4408         * modules/cosl: New file.
4409         * modules/expl: New file.
4410         * modules/logl: New file.
4411         * modules/sinl: New file.
4412         * modules/sqrtl: New file.
4413         * modules/tanl: New file.
4414         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
4415         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
4416         substitute GNULIB_MATHL.
4417         * modules/mathl: Rewritten.
4418         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
4419         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
4420         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
4421         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
4422         * doc/posix-functions/expl.texi: Mention the 'expl' module.
4423         * doc/posix-functions/logl.texi: Mention the 'logl' module.
4424         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
4425         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
4426         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
4427
4428 2010-01-18  Bruno Haible  <bruno@clisp.org>
4429
4430         sqrt: Make gl_FUNC_SQRT requirable.
4431         * m4/sqrt.m4: New file.
4432         * modules/sqrt (Files): Add it.
4433         (configure.ac): Invoke gl_FUNC_SQRT.
4434
4435 2010-01-18  Bruno Haible  <bruno@clisp.org>
4436
4437         New modules for common <math.h> functions.
4438         * m4/mathfunc.m4: New file.
4439         * modules/acos: New file.
4440         * modules/asin: New file.
4441         * modules/atan: New file.
4442         * modules/atan2: New file.
4443         * modules/cbrt: New file.
4444         * modules/copysign: New file.
4445         * modules/cos: New file.
4446         * modules/cosh: New file.
4447         * modules/erf: New file.
4448         * modules/erfc: New file.
4449         * modules/exp: New file.
4450         * modules/fabs: New file.
4451         * modules/fmod: New file.
4452         * modules/hypot: New file.
4453         * modules/j0: New file.
4454         * modules/j1: New file.
4455         * modules/jn: New file.
4456         * modules/ldexp: New file.
4457         * modules/lgamma: New file.
4458         * modules/log: New file.
4459         * modules/log10: New file.
4460         * modules/log1p: New file.
4461         * modules/logb: New file.
4462         * modules/modf: New file.
4463         * modules/nextafter: New file.
4464         * modules/pow: New file.
4465         * modules/remainder: New file.
4466         * modules/rint: New file.
4467         * modules/sin: New file.
4468         * modules/sinh: New file.
4469         * modules/sqrt: New file.
4470         * modules/tan: New file.
4471         * modules/tanh: New file.
4472         * modules/y0: New file.
4473         * modules/y1: New file.
4474         * modules/yn: New file.
4475         * doc/posix-functions/acos.texi: Mention the 'acos' module.
4476         * doc/posix-functions/asin.texi: Mention the 'asin' module.
4477         * doc/posix-functions/atan.texi: Mention the 'atan' module.
4478         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
4479         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
4480         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
4481         * doc/posix-functions/cos.texi: Mention the 'cos' module.
4482         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
4483         * doc/posix-functions/erf.texi: Mention the 'erf' module.
4484         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
4485         * doc/posix-functions/exp.texi: Mention the 'exp' module.
4486         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
4487         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
4488         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
4489         * doc/posix-functions/j0.texi: Mention the 'j0' module.
4490         * doc/posix-functions/j1.texi: Mention the 'j1' module.
4491         * doc/posix-functions/jn.texi: Mention the 'jn' module.
4492         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
4493         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
4494         * doc/posix-functions/log.texi: Mention the 'log' module.
4495         * doc/posix-functions/log10.texi: Mention the 'log10' module.
4496         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
4497         * doc/posix-functions/logb.texi: Mention the 'logb' module.
4498         * doc/posix-functions/modf.texi: Mention the 'modf' module.
4499         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
4500         * doc/posix-functions/pow.texi: Mention the 'pow' module.
4501         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
4502         * doc/posix-functions/rint.texi: Mention the 'rint' module.
4503         * doc/posix-functions/sin.texi: Mention the 'sin' module.
4504         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
4505         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
4506         * doc/posix-functions/tan.texi: Mention the 'tan' module.
4507         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
4508         * doc/posix-functions/y0.texi: Mention the 'y0' module.
4509         * doc/posix-functions/y1.texi: Mention the 'y1' module.
4510         * doc/posix-functions/yn.texi: Mention the 'yn' module.
4511
4512 2010-01-18  Jim Meyering  <meyering@redhat.com>
4513
4514         ignore-value: relax license to LGPLv2+
4515         * modules/ignore-value (License): Relax to LGPLv2+.
4516
4517         getdate: don't leak when TZ contains two or more '"'s
4518         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
4519         double quote in TZ after the first one.
4520
4521         readtokens: do not leak internal token_lengths buffer
4522         * lib/readtokens.c (readtokens): Free the local, lengths,
4523         when the supplied "token_lengths" parameter is NULL.
4524
4525 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4526
4527         Fix a couple of missing LIBTHREAD link failures on AIX.
4528         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
4529         $(LIBTHREAD).
4530         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
4531
4532         Link test-poll against INET_PTON_LIB.
4533         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
4534         for inet_pton on Solaris 10.
4535
4536 2010-01-17  Bruno Haible  <bruno@clisp.org>
4537
4538         unistdio/*-sprintf: Fix typo in module description.
4539         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
4540         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
4541         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
4542         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
4543         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
4544         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
4545         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
4546         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4547
4548 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4549
4550         gnulib-tool: fix filelist for AIX, HP-UX ksh.
4551         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
4552         variables in shell case patterns, for AIX and HP-UX ksh.
4553
4554         Split large sed scripts, for HP-UX sed.
4555         * modules/stdio: Split sed scripts around 50 sed commands,
4556         to avoid HP-UX limit of 99 commands, in the near future.
4557         * modules/string: Likewise.
4558         * modules/unistd: Likewise.
4559
4560         gnulib-tool: avoid writing in the current directory.
4561         * gnulib-tool (func_emit_lib_Makefile_am)
4562         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
4563         not in the current directory, so concurrent gnulib-tool
4564         instances do not interfere.
4565
4566 2010-01-16  Jim Meyering  <meyering@redhat.com>
4567
4568         doc: update users.txt
4569         * users.txt: Add grep.
4570         (diffutils, gzip): Update URLs.
4571
4572 2010-01-12  Bruno Haible  <bruno@clisp.org>
4573
4574         posix_spawn: Avoid test failure on Cygwin.
4575         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
4576         characters.
4577         Reported by Simon Josefsson.
4578
4579 2010-01-12  Bruno Haible  <bruno@clisp.org>
4580
4581         * tests/test-cond.c (main): When skipping the test, show the reason.
4582
4583 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4584
4585         * lib/striconv.c (str_cd_iconv): Avoid if before free.
4586
4587 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4588
4589         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
4590         VC_LIST_ALWAYS_EXCLUDE_REGEX.
4591
4592 2010-01-12  Eric Blake  <ebb9@byu.net>
4593
4594         build: guarantee AS_VAR_IF
4595         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
4596         (gl_AS_VAR_IF): Move...
4597         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
4598         Reported by Simon Josefsson.
4599
4600 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4601
4602         * lib/stdio.in.h: Fix typo.
4603
4604 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4605
4606         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
4607         libgpg-error.
4608
4609 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4610
4611         * tests/test-xalloc-die.sh: Use $EXEEXT.
4612
4613 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4614             Bruno Haible  <bruno@clisp.org>
4615
4616         getlogin, getlogin_r: Avoid test failure.
4617         * tests/test-getlogin.c: Include <stdio.h>.
4618         (main): Skip the test when the function fails because stdin is not a
4619         tty.
4620         * tests/test-getlogin_r.c: Include <stdio.h>.
4621         (main): Skip the test when the function fails because stdin is not a
4622         tty.
4623
4624 2010-01-11  Eric Blake  <ebb9@byu.net>
4625
4626         tests: avoid more large file warnings
4627         * tests/test-fflush.c: Avoid warning about ftell use.
4628         * tests/test-fseek.c: Avoid warning about fseek use.
4629
4630 2010-01-10  Bruno Haible  <bruno@clisp.org>
4631
4632         nproc: Work better on Linux when /proc and /sys are not mounted.
4633         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
4634         as lower bound when, on glibc/Linux systems,
4635         sysconf (_SC_NPROCESSORS_CONF) returns 1.
4636         Suggested by Pádraig Brady <P@draigbrady.com>.
4637         Reported by Dmitry V. Levin <ldv@altlinux.org>.
4638
4639         nproc: Refactor.
4640         * lib/nproc.c (num_processors_via_affinity_mask): New function,
4641         extracted from num_processors.
4642         (num_processors): Call it.
4643
4644 2010-01-11  Jim Meyering  <meyering@redhat.com>
4645
4646         utimecmp: avoid new warning from upcoming gcc-4.5.0
4647         * lib/utimecmp.c (BILLION): Define using #define rather than an
4648         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
4649
4650 2010-01-11  Eric Blake  <ebb9@byu.net>
4651
4652         math: add portability warnings for classification macros
4653         * modules/math (Depends-on): Add warn-on-use.
4654         (Makefile.am): Provide new substitutions.
4655         * m4/math_h.m4 (gl_MATH_H): Require inline.
4656         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
4657         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
4658         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
4659         implement warnings.
4660
4661         unistd: warn on use of environ without module
4662         * modules/unistd (Depends-on): Add warn-on-use.
4663         (Makefile.am): Provide new substitutions.
4664         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
4665         * lib/unistd.in.h (environ): Wrap with a warning helper function.
4666
4667         stdio: warn on suspicious uses
4668         * modules/stdio (Depends-on): Add warn-on-use.
4669         (Makefile.am): Provide new substitutions.
4670         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
4671         fseeko.
4672         * lib/stdio.in.h (gets): Always warn on use.
4673         (fseek, ftell): Adjust when warnings are issued, and honor
4674         _GL_NO_LARGE_FILES as a way to silence the warning.
4675         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
4676         any warning about large file offsets.
4677         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
4678         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
4679         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
4680         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
4681         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
4682         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
4683         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
4684         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
4685
4686         warn-on-use: new module
4687         * modules/warn-on-use: New file.
4688         * build-aux/warn-on-use.h: Likewise.
4689         * m4/warn-on-use.m4: Likewise.
4690         * MODULES.html.sh (Support for building): Mention it.
4691
4692 2010-01-10  Bruno Haible  <bruno@clisp.org>
4693
4694         Tests for module 'unistr/u32-strdup'.
4695         * modules/unistr/u32-strdup-tests: New file.
4696         * tests/unistr/test-u32-strdup.c: New file.
4697
4698         Tests for module 'unistr/u16-strdup'.
4699         * modules/unistr/u16-strdup-tests: New file.
4700         * tests/unistr/test-u16-strdup.c: New file.
4701
4702         Tests for module 'unistr/u8-strdup'.
4703         * modules/unistr/u8-strdup-tests: New file.
4704         * tests/unistr/test-u8-strdup.c: New file.
4705         * tests/unistr/test-strdup.h: New file.
4706
4707         Tests for module 'unistr/u32-strncmp'.
4708         * modules/unistr/u32-strncmp-tests: New file.
4709         * tests/unistr/test-u32-strncmp.c: New file.
4710
4711         Tests for module 'unistr/u16-strncmp'.
4712         * modules/unistr/u16-strncmp-tests: New file.
4713         * tests/unistr/test-u16-strncmp.c: New file.
4714
4715         Tests for module 'unistr/u8-strncmp'.
4716         * modules/unistr/u8-strncmp-tests: New file.
4717         * tests/unistr/test-u8-strncmp.c: New file.
4718         * tests/unistr/test-strncmp.h: New file.
4719
4720         Tests for module 'unistr/u32-strcoll'.
4721         * modules/unistr/u32-strcoll-tests: New file.
4722         * tests/unistr/test-u32-strcoll.c: New file.
4723
4724         Tests for module 'unistr/u16-strcoll'.
4725         * modules/unistr/u16-strcoll-tests: New file.
4726         * tests/unistr/test-u16-strcoll.c: New file.
4727
4728         Tests for module 'unistr/u8-strcoll'.
4729         * modules/unistr/u8-strcoll-tests: New file.
4730         * tests/unistr/test-u8-strcoll.c: New file.
4731
4732         Tests for module 'unistr/u32-strcmp'.
4733         * modules/unistr/u32-strcmp-tests: New file.
4734         * tests/unistr/test-u32-strcmp.c: New file.
4735         * tests/unistr/test-u32-strcmp.h: New file.
4736
4737         Tests for module 'unistr/u16-strcmp'.
4738         * modules/unistr/u16-strcmp-tests: New file.
4739         * tests/unistr/test-u16-strcmp.c: New file.
4740         * tests/unistr/test-u16-strcmp.h: New file.
4741
4742         Tests for module 'unistr/u8-strcmp'.
4743         * modules/unistr/u8-strcmp-tests: New file.
4744         * tests/unistr/test-u8-strcmp.c: New file.
4745         * tests/unistr/test-u8-strcmp.h: New file.
4746         * tests/unistr/test-strcmp.h: New file.
4747
4748         Tests for module 'unistr/u32-strncat'.
4749         * modules/unistr/u32-strncat-tests: New file.
4750         * tests/unistr/test-u32-strncat.c: New file.
4751
4752         Tests for module 'unistr/u16-strncat'.
4753         * modules/unistr/u16-strncat-tests: New file.
4754         * tests/unistr/test-u16-strncat.c: New file.
4755
4756         Tests for module 'unistr/u8-strncat'.
4757         * modules/unistr/u8-strncat-tests: New file.
4758         * tests/unistr/test-u8-strncat.c: New file.
4759         * tests/unistr/test-strncat.h: New file.
4760
4761         Tests for module 'unistr/u32-strcat'.
4762         * modules/unistr/u32-strcat-tests: New file.
4763         * tests/unistr/test-u32-strcat.c: New file.
4764
4765         Tests for module 'unistr/u16-strcat'.
4766         * modules/unistr/u16-strcat-tests: New file.
4767         * tests/unistr/test-u16-strcat.c: New file.
4768
4769         Tests for module 'unistr/u8-strcat'.
4770         * modules/unistr/u8-strcat-tests: New file.
4771         * tests/unistr/test-u8-strcat.c: New file.
4772         * tests/unistr/test-strcat.h: New file.
4773
4774         Tests for module 'unistr/u32-stpncpy'.
4775         * modules/unistr/u32-stpncpy-tests: New file.
4776         * tests/unistr/test-u32-stpncpy.c: New file.
4777
4778         Tests for module 'unistr/u16-stpncpy'.
4779         * modules/unistr/u16-stpncpy-tests: New file.
4780         * tests/unistr/test-u16-stpncpy.c: New file.
4781
4782         Tests for module 'unistr/u8-stpncpy'.
4783         * modules/unistr/u8-stpncpy-tests: New file.
4784         * tests/unistr/test-u8-stpncpy.c: New file.
4785         * tests/unistr/test-stpncpy.h: New file.
4786
4787         Tests for module 'unistr/u32-strncpy'.
4788         * modules/unistr/u32-strncpy-tests: New file.
4789         * tests/unistr/test-u32-strncpy.c: New file.
4790
4791         Tests for module 'unistr/u16-strncpy'.
4792         * modules/unistr/u16-strncpy-tests: New file.
4793         * tests/unistr/test-u16-strncpy.c: New file.
4794
4795         Tests for module 'unistr/u8-strncpy'.
4796         * modules/unistr/u8-strncpy-tests: New file.
4797         * tests/unistr/test-u8-strncpy.c: New file.
4798         * tests/unistr/test-strncpy.h: New file.
4799
4800         Tests for module 'unistr/u32-stpcpy'.
4801         * modules/unistr/u32-stpcpy-tests: New file.
4802         * tests/unistr/test-u32-stpcpy.c: New file.
4803
4804         Tests for module 'unistr/u16-stpcpy'.
4805         * modules/unistr/u16-stpcpy-tests: New file.
4806         * tests/unistr/test-u16-stpcpy.c: New file.
4807
4808         Tests for module 'unistr/u8-stpcpy'.
4809         * modules/unistr/u8-stpcpy-tests: New file.
4810         * tests/unistr/test-u8-stpcpy.c: New file.
4811         * tests/unistr/test-stpcpy.h: New file.
4812
4813         Tests for module 'unistr/u32-strcpy'.
4814         * modules/unistr/u32-strcpy-tests: New file.
4815         * tests/unistr/test-u32-strcpy.c: New file.
4816
4817         Tests for module 'unistr/u16-strcpy'.
4818         * modules/unistr/u16-strcpy-tests: New file.
4819         * tests/unistr/test-u16-strcpy.c: New file.
4820
4821         Tests for module 'unistr/u8-strcpy'.
4822         * modules/unistr/u8-strcpy-tests: New file.
4823         * tests/unistr/test-u8-strcpy.c: New file.
4824         * tests/unistr/test-strcpy.h: New file.
4825
4826         Tests for module 'unistr/u32-strnlen'.
4827         * modules/unistr/u32-strnlen-tests: New file.
4828         * tests/unistr/test-u32-strnlen.c: New file.
4829
4830         Tests for module 'unistr/u16-strnlen'.
4831         * modules/unistr/u16-strnlen-tests: New file.
4832         * tests/unistr/test-u16-strnlen.c: New file.
4833
4834         Tests for module 'unistr/u8-strnlen'.
4835         * modules/unistr/u8-strnlen-tests: New file.
4836         * tests/unistr/test-u8-strnlen.c: New file.
4837         * tests/unistr/test-strnlen.h: New file.
4838
4839         Tests for module 'unistr/u32-strlen'.
4840         * modules/unistr/u32-strlen-tests: New file.
4841         * tests/unistr/test-u32-strlen.c: New file.
4842
4843         Tests for module 'unistr/u16-strlen'.
4844         * modules/unistr/u16-strlen-tests: New file.
4845         * tests/unistr/test-u16-strlen.c: New file.
4846
4847         Tests for module 'unistr/u8-strlen'.
4848         * modules/unistr/u8-strlen-tests: New file.
4849         * tests/unistr/test-u8-strlen.c: New file.
4850
4851         Tests for module 'unistr/u32-prev'.
4852         * modules/unistr/u32-prev-tests: New file.
4853         * tests/unistr/test-u32-prev.c: New file.
4854
4855         Tests for module 'unistr/u16-prev'.
4856         * modules/unistr/u16-prev-tests: New file.
4857         * tests/unistr/test-u16-prev.c: New file.
4858
4859         Tests for module 'unistr/u8-prev'.
4860         * modules/unistr/u8-prev-tests: New file.
4861         * tests/unistr/test-u8-prev.c: New file.
4862
4863         Tests for module 'unistr/u32-next'.
4864         * modules/unistr/u32-next-tests: New file.
4865         * tests/unistr/test-u32-next.c: New file.
4866
4867         Tests for module 'unistr/u16-next'.
4868         * modules/unistr/u16-next-tests: New file.
4869         * tests/unistr/test-u16-next.c: New file.
4870
4871         Tests for module 'unistr/u8-next'.
4872         * modules/unistr/u8-next-tests: New file.
4873         * tests/unistr/test-u8-next.c: New file.
4874
4875         Tests for module 'unistr/u32-strmbtouc'.
4876         * modules/unistr/u32-strmbtouc-tests: New file.
4877         * tests/unistr/test-u32-strmbtouc.c: New file.
4878
4879         Tests for module 'unistr/u16-strmbtouc'.
4880         * modules/unistr/u16-strmbtouc-tests: New file.
4881         * tests/unistr/test-u16-strmbtouc.c: New file.
4882
4883         Tests for module 'unistr/u8-strmbtouc'.
4884         * modules/unistr/u8-strmbtouc-tests: New file.
4885         * tests/unistr/test-u8-strmbtouc.c: New file.
4886
4887         Tests for module 'unistr/u32-strmblen'.
4888         * modules/unistr/u32-strmblen-tests: New file.
4889         * tests/unistr/test-u32-strmblen.c: New file.
4890
4891         Tests for module 'unistr/u16-strmblen'.
4892         * modules/unistr/u16-strmblen-tests: New file.
4893         * tests/unistr/test-u16-strmblen.c: New file.
4894
4895         Tests for module 'unistr/u8-strmblen'.
4896         * modules/unistr/u8-strmblen-tests: New file.
4897         * tests/unistr/test-u8-strmblen.c: New file.
4898
4899         Tests for module 'unistr/u32-cpy-alloc'.
4900         * modules/unistr/u32-cpy-alloc-tests: New file.
4901         * tests/unistr/test-u32-cpy-alloc.c: New file.
4902
4903         Tests for module 'unistr/u16-cpy-alloc'.
4904         * modules/unistr/u16-cpy-alloc-tests: New file.
4905         * tests/unistr/test-u16-cpy-alloc.c: New file.
4906
4907         Tests for module 'unistr/u8-cpy-alloc'.
4908         * modules/unistr/u8-cpy-alloc-tests: New file.
4909         * tests/unistr/test-u8-cpy-alloc.c: New file.
4910         * tests/unistr/test-cpy-alloc.h: New file.
4911
4912         Tests for module 'unistr/u32-mbsnlen'.
4913         * modules/unistr/u32-mbsnlen-tests: New file.
4914         * tests/unistr/test-u32-mbsnlen.c: New file.
4915
4916         Tests for module 'unistr/u16-mbsnlen'.
4917         * modules/unistr/u16-mbsnlen-tests: New file.
4918         * tests/unistr/test-u16-mbsnlen.c: New file.
4919
4920         Tests for module 'unistr/u8-mbsnlen'.
4921         * modules/unistr/u8-mbsnlen-tests: New file.
4922         * tests/unistr/test-u8-mbsnlen.c: New file.
4923
4924         Tests for module 'unistr/u32-chr'.
4925         * modules/unistr/u32-chr-tests: New file.
4926         * tests/unistr/test-u32-chr.c: New file.
4927
4928         Tests for module 'unistr/u16-chr'.
4929         * modules/unistr/u16-chr-tests: New file.
4930         * tests/unistr/test-u16-chr.c: New file.
4931
4932         Tests for module 'unistr/u8-chr'.
4933         * modules/unistr/u8-chr-tests: New file.
4934         * tests/unistr/test-u8-chr.c: New file.
4935         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
4936
4937         Tests for module 'unistr/u32-cmp2'.
4938         * modules/unistr/u32-cmp2-tests: New file.
4939         * tests/unistr/test-u32-cmp2.c: New file.
4940
4941         Tests for module 'unistr/u16-cmp2'.
4942         * modules/unistr/u16-cmp2-tests: New file.
4943         * tests/unistr/test-u16-cmp2.c: New file.
4944
4945         Tests for module 'unistr/u8-cmp2'.
4946         * modules/unistr/u8-cmp2-tests: New file.
4947         * tests/unistr/test-u8-cmp2.c: New file.
4948         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
4949
4950         Tests for module 'unistr/u32-cmp'.
4951         * modules/unistr/u32-cmp-tests: New file.
4952         * tests/unistr/test-u32-cmp.c: New file.
4953
4954         Tests for module 'unistr/u16-cmp'.
4955         * modules/unistr/u16-cmp-tests: New file.
4956         * tests/unistr/test-u16-cmp.c: New file.
4957
4958         Tests for module 'unistr/u8-cmp'.
4959         * modules/unistr/u8-cmp-tests: New file.
4960         * tests/unistr/test-u8-cmp.c: New file.
4961         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
4962
4963         Tests for module 'unistr/u32-set'.
4964         * modules/unistr/u32-set-tests: New file.
4965         * tests/unistr/test-u32-set.c: New file.
4966
4967         Tests for module 'unistr/u16-set'.
4968         * modules/unistr/u16-set-tests: New file.
4969         * tests/unistr/test-u16-set.c: New file.
4970
4971         Tests for module 'unistr/u8-set'.
4972         * modules/unistr/u8-set-tests: New file.
4973         * tests/unistr/test-u8-set.c: New file.
4974         * tests/unistr/test-set.h: New file.
4975
4976         Tests for module 'unistr/u32-move'.
4977         * modules/unistr/u32-move-tests: New file.
4978         * tests/unistr/test-u32-move.c: New file.
4979
4980         Tests for module 'unistr/u16-move'.
4981         * modules/unistr/u16-move-tests: New file.
4982         * tests/unistr/test-u16-move.c: New file.
4983
4984         Tests for module 'unistr/u8-move'.
4985         * modules/unistr/u8-move-tests: New file.
4986         * tests/unistr/test-u8-move.c: New file.
4987         * tests/unistr/test-move.h: New file.
4988
4989         Tests for module 'unistr/u32-cpy'.
4990         * modules/unistr/u32-cpy-tests: New file.
4991         * tests/unistr/test-u32-cpy.c: New file.
4992
4993         Tests for module 'unistr/u16-cpy'.
4994         * modules/unistr/u16-cpy-tests: New file.
4995         * tests/unistr/test-u16-cpy.c: New file.
4996
4997         Tests for module 'unistr/u8-cpy'.
4998         * modules/unistr/u8-cpy-tests: New file.
4999         * tests/unistr/test-u8-cpy.c: New file.
5000         * tests/unistr/test-cpy.h: New file.
5001
5002 2010-01-09  Bruno Haible  <bruno@clisp.org>
5003
5004         Tests for module 'unistr/u32-uctomb'.
5005         * modules/unistr/u32-uctomb-tests: New file.
5006         * tests/unistr/test-u32-uctomb.c: New file.
5007
5008         Tests for module 'unistr/u16-uctomb'.
5009         * modules/unistr/u16-uctomb-tests: New file.
5010         * tests/unistr/test-u16-uctomb.c: New file.
5011
5012         Tests for module 'unistr/u8-uctomb'.
5013         * modules/unistr/u8-uctomb-tests: New file.
5014         * tests/unistr/test-u8-uctomb.c: New file.
5015
5016         Tests for module 'unistr/u32-mbtoucr'.
5017         * modules/unistr/u32-mbtoucr-tests: New file.
5018         * tests/unistr/test-u32-mbtoucr.c: New file.
5019
5020         Tests for module 'unistr/u16-mbtoucr'.
5021         * modules/unistr/u16-mbtoucr-tests: New file.
5022         * tests/unistr/test-u16-mbtoucr.c: New file.
5023
5024         Tests for module 'unistr/u8-mbtoucr'.
5025         * modules/unistr/u8-mbtoucr-tests: New file.
5026         * tests/unistr/test-u8-mbtoucr.c: New file.
5027
5028         Tests for module 'unistr/u32-mbtouc'.
5029         * modules/unistr/u32-mbtouc-tests: New file.
5030         * tests/unistr/test-u32-mbtouc.c: New file.
5031
5032         Tests for module 'unistr/u16-mbtouc'.
5033         * modules/unistr/u16-mbtouc-tests: New file.
5034         * tests/unistr/test-u16-mbtouc.c: New file.
5035
5036         Tests for module 'unistr/u8-mbtouc'.
5037         * modules/unistr/u8-mbtouc-tests: New file.
5038         * tests/unistr/test-u8-mbtouc.c: New file.
5039
5040         Tests for module 'unistr/u32-mbtouc-unsafe'.
5041         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
5042         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
5043         * tests/unistr/test-u32-mbtouc.h: New file.
5044
5045         Tests for module 'unistr/u16-mbtouc-unsafe'.
5046         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
5047         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
5048         * tests/unistr/test-u16-mbtouc.h: New file.
5049
5050         Tests for module 'unistr/u8-mbtouc-unsafe'.
5051         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
5052         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
5053         * tests/unistr/test-u8-mbtouc.h: New file.
5054
5055         Tests for module 'unistr/u32-mblen'.
5056         * modules/unistr/u32-mblen-tests: New file.
5057         * tests/unistr/test-u32-mblen.c: New file.
5058
5059         Tests for module 'unistr/u16-mblen'.
5060         * modules/unistr/u16-mblen-tests: New file.
5061         * tests/unistr/test-u16-mblen.c: New file.
5062
5063         Tests for module 'unistr/u8-mblen'.
5064         * modules/unistr/u8-mblen-tests: New file.
5065         * tests/unistr/test-u8-mblen.c: New file.
5066
5067         Tests for module 'unistr/u32-to-u16'.
5068         * modules/unistr/u32-to-u16-tests: New file.
5069         * tests/unistr/test-u32-to-u16.c: New file.
5070
5071         Tests for module 'unistr/u32-to-u8'.
5072         * modules/unistr/u32-to-u8-tests: New file.
5073         * tests/unistr/test-u32-to-u8.c: New file.
5074
5075         Tests for module 'unistr/u16-to-u32'.
5076         * modules/unistr/u16-to-u32-tests: New file.
5077         * tests/unistr/test-u16-to-u32.c: New file.
5078
5079         Tests for module 'unistr/u16-to-u8'.
5080         * modules/unistr/u16-to-u8-tests: New file.
5081         * tests/unistr/test-u16-to-u8.c: New file.
5082
5083         Tests for module 'unistr/u8-to-u32'.
5084         * modules/unistr/u8-to-u32-tests: New file.
5085         * tests/unistr/test-u8-to-u32.c: New file.
5086
5087         Tests for module 'unistr/u8-to-u16'.
5088         * modules/unistr/u8-to-u16-tests: New file.
5089         * tests/unistr/test-u8-to-u16.c: New file.
5090
5091         Tests for module 'unistr/u32-check'.
5092         * modules/unistr/u32-check-tests: New file.
5093         * tests/unistr/test-u32-check.c: New file.
5094
5095         Tests for module 'unistr/u16-check'.
5096         * modules/unistr/u16-check-tests: New file.
5097         * tests/unistr/test-u16-check.c: New file.
5098
5099         Tests for module 'unistr/u8-check'.
5100         * modules/unistr/u8-check-tests: New file.
5101         * tests/unistr/test-u8-check.c: New file.
5102
5103         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
5104         (category_equals): New function.
5105         (main): Add more tests.
5106         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
5107
5108         * tests/unictype/test-bidi_byname.c (main): Add more tests.
5109
5110 2010-01-10  Bruno Haible  <bruno@clisp.org>
5111
5112         unistr/u*-strcoll: Try harder to distinguish different strings.
5113         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
5114         compare s1 and s2 to see if they are different.
5115
5116 2010-01-10  Bruno Haible  <bruno@clisp.org>
5117
5118         unistr/u*-stpncpy: Fix the return value.
5119         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
5120         description of the return value consistent with stpncpy in glibc.
5121         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
5122         written non-NUL unit.
5123
5124 2010-01-10  Bruno Haible  <bruno@clisp.org>
5125
5126         unistr/u*-next: Add missing dependencies.
5127         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
5128         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
5129         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
5130
5131 2010-01-10  Bruno Haible  <bruno@clisp.org>
5132
5133         unistr/u8-mbsnlen: Fix return value for incomplete character.
5134         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
5135         u8_mblen.
5136         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
5137         Remove unistr/u8-mblen.
5138         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
5139         u16_mblen.
5140         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
5141         Remove unistr/u16-mblen.
5142
5143 2010-01-10  Bruno Haible  <bruno@clisp.org>
5144
5145         wchar: Fix compilation error when <wchar.h> is used from coreutils.
5146         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
5147         Reported by Brian Gough <bjg@gnu.org> and
5148         Chris Clayton <chris2553@googlemail.com> via
5149         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
5150
5151 2010-01-09  Bruno Haible  <bruno@clisp.org>
5152
5153         unistr/u16-to-u32: Reject invalid input.
5154         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
5155         u16_mbtouc.
5156         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
5157         Remove unistr/u16-mbtouc.
5158
5159         unistr/u16-to-u8: Reject invalid input.
5160         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
5161         u16_mbtouc.
5162         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
5163         Remove unistr/u16-mbtouc.
5164
5165         unistr/u8-to-u32: Reject invalid input.
5166         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
5167         u8_mbtouc.
5168         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
5169         Remove unistr/u8-mbtouc.
5170
5171         unistr/u8-to-u16: Reject invalid input.
5172         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
5173         u8_mbtouc.
5174         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
5175         Remove unistr/u8-mbtouc.
5176
5177 2010-01-09  Bruno Haible  <bruno@clisp.org>
5178
5179         Tests for module 'getlogin'.
5180         * modules/getlogin-tests: New file.
5181         * tests/test-getlogin.c: New file.
5182
5183         New module 'getlogin'.
5184         * lib/unistd.in.h (getlogin): New declaration.
5185         * lib/getlogin.c: New file.
5186         * m4/getlogin.m4: New file.
5187         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
5188         HAVE_GETLOGIN.
5189         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
5190         HAVE_GETLOGIN.
5191         * modules/getlogin: New file.
5192         * doc/posix-functions/getlogin.texi: Mention the new module.
5193         Reported by John W. Eaton <jwe@gnu.org>.
5194
5195 2010-01-09  Bruno Haible  <bruno@clisp.org>
5196
5197         getlogin_r: Support for native Windows.
5198         * lib/getlogin_r.c: Include <windows.h>
5199         (getlogin_r): Implement for native Windows.
5200         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
5201         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
5202         via John W. Eaton <jwe@gnu.org>.
5203
5204 2010-01-09  Bruno Haible  <bruno@clisp.org>
5205
5206         getlogin_r: Small fixes.
5207         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
5208         succeeds.
5209         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
5210         before testing whether getlogin_r is declared. No need to set
5211         HAVE_DECL_GETLOGIN_R to 1.
5212         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
5213
5214 2010-01-09  Bruno Haible  <bruno@clisp.org>
5215
5216         * lib/unistd.in.h (getlogin_r): Add comment.
5217
5218 2010-01-09  Bruno Haible  <bruno@clisp.org>
5219
5220         Tests for module 'getlogin_r'.
5221         * modules/getlogin_r-tests: New file.
5222         * tests/test-getlogin_r.c: New file.
5223
5224 2010-01-09  Jim Meyering  <meyering@redhat.com>
5225
5226         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
5227         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
5228         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
5229
5230 2010-01-08  Simon Josefsson  <simon@josefsson.org>
5231
5232         * lib/dup2.c (rpl_dup2): Improve comment.
5233
5234 2010-01-08  Eric Blake  <ebb9@byu.net>
5235
5236         maint.mk: allow packages to add makefile @@ exceptions
5237         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
5238         (sc_makefile_check): Rename...
5239         (sc_makefile_at_at_check): ...to this, and use hook.
5240
5241         dup2: work around mingw bug
5242         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
5243         Reported by Simon Josefsson.
5244
5245 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
5246
5247         glob: Fix C++ compilation.
5248         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
5249         C++.
5250
5251 2010-01-07  Bruno Haible  <bruno@clisp.org>
5252
5253         Fix indentation of wctype.in.h, broken since 2007-01-06.
5254         * lib/wctype.in.h: Fix indentation of preprocessor directives.
5255
5256 2010-01-07  Bruno Haible  <bruno@clisp.org>
5257
5258         mbslen: Avoid collision with system function.
5259         * lib/string.in.h [MirBSD]: Include <wchar.h>.
5260         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
5261         * m4/mbslen.m4: New file.
5262         * modules/mbslen (Files): Add it.
5263         (configure.ac): Invoke gl_MBSLEN.
5264         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
5265         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
5266         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
5267         via Ian Beckwith <ianb@erislabs.net>.
5268
5269 2010-01-07  Bruno Haible  <bruno@clisp.org>
5270
5271         dirent: Document the last fix.
5272         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
5273
5274 2010-01-07  Bruno Haible  <bruno@clisp.org>
5275
5276         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
5277         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
5278         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
5279         va_list are defined.
5280         * doc/posix-headers/stdio.texi: Document the bug of missing types.
5281         Reported by Eric Blake.
5282
5283 2010-01-07  Bruno Haible  <bruno@clisp.org>
5284
5285         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
5286         * modules/xlist (Depends-on): Add 'list',
5287         * modules/xoset (Depends-on): Add 'oset'.
5288         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5289
5290 2010-01-07  Bruno Haible  <bruno@clisp.org>
5291
5292         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
5293         * doc/posix-functions/strncasecmp.texi: Likewise.
5294
5295 2010-01-07  Bruno Haible  <bruno@clisp.org>
5296
5297         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
5298
5299 2010-01-07  John W. Eaton  <jwe@octave.org>
5300
5301         wctype: allow C++ use
5302         * lib/wctype.in.h: Add extern "C" block for C++.
5303
5304 2010-01-06  Eric Blake  <ebb9@byu.net>
5305
5306         maint.mk: detect incorrect GFDL usage
5307         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
5308
5309 2010-01-06  Jim Meyering  <meyering@redhat.com>
5310         and Eric Blake  <ebb9@byu.net>
5311
5312         maint.mk: ignore multi-line copyright in NEWS
5313         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
5314
5315 2010-01-06  Eric Blake  <ebb9@byu.net>
5316
5317         select: add missing dependency
5318         * modules/select-tests (Depends-on): Move sockets dependency...
5319         * modules/select (Depends-on): ...here.
5320         Reported by Ian Beckwith.
5321
5322         doc: regenerate INSTALL
5323         * doc/INSTALL: Reflect recent autoconf update.
5324         * doc/INSTALL.ISO: Likewise.
5325         * doc/INSTALL.UTF-8: Likewise.
5326
5327         pread: fix compilation on glibc
5328         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
5329         Reported by Ralf Wildenhues.
5330
5331         dirent: fix test failure
5332         * lib/dirent.in.h (includes): Guarantee ino_t.
5333         Reported by Ralf Wildenhues.
5334
5335 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
5336
5337         linkat, renameat: avoid bad free
5338         * lib/at-func2.c (at_func2): Fix typo.
5339         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
5340
5341 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5342
5343         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
5344         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
5345         to avoid failure of symlink test later.
5346
5347 2010-01-06  Eric Blake  <ebb9@byu.net>
5348
5349         stdio, unistd: guarantee ssize_t
5350         * lib/unistd.in.h (includes): Ensure that types required by POSIX
5351         2008 are exposed when needed.
5352         * lib/stdio.in.h (includes): Likewise.
5353         Reported by Ralf Wildenhues.
5354
5355 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
5356
5357         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
5358         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
5359         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
5360
5361 2010-01-06  Jim Meyering  <meyering@redhat.com>
5362
5363         readtokens: this module *does* require xalloc.h
5364         It uses only functions that were omitted by the old syntax-check rule.
5365         * lib/readtokens.c: Include "xalloc.h" once again.
5366         * modules/readtokens (Depends-on): Add xalloc.
5367         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
5368
5369 2010-01-05  Eric Blake  <ebb9@byu.net>
5370
5371         maint: support 'make announcement' from a VPATH build
5372         * top/maint.mk (announcement): Look for correct NEWS file.
5373
5374 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
5375
5376         utimens (fdutimens): ignore a negative FD, per contract
5377         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
5378         when we have a valid file descriptor.  Otherwise, using a brand
5379         new glibc (with just-patched futimens that now fails with EBADF)
5380         would cause this function to fail with ENOSYS.
5381         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
5382         See also http://bugzilla.redhat.com/552320.
5383
5384 2010-01-05  Eric Blake  <ebb9@byu.net>
5385
5386         strcase: document what it provides
5387         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
5388         gnulib module.
5389         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
5390         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
5391
5392 2010-01-05  Jim Meyering  <meyering@redhat.com>
5393
5394         maint: remove useless inclusions of "xalloc.h"
5395         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
5396         * lib/readtokens.c: Likewise.
5397         * lib/same.c: Likewise.
5398         * modules/getloadavg (Depends-on): Remove xalloc.
5399         * modules/readtokens: Likewise.
5400         * modules/same: Likewise.
5401
5402         maint.mk: include 4 more function names in alloca.h-checking regexp
5403         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
5404         regexp.  Before, we would give a false-positive (saying alloca.h
5405         is included unnecessarily) when the only uses involved omitted symbols.
5406
5407         xalloc.h: use consistent formatting
5408         * lib/xalloc.h: Move declarations to start in the first column.
5409
5410 2010-01-05  Eric Blake  <ebb9@byu.net>
5411
5412         mkdir: avoid xalloc
5413         * lib/mkdir.c (includes): Drop unused header.
5414         Reported by John W. Eaton.
5415
5416 2010-01-04  Jim Meyering  <meyering@redhat.com>
5417
5418         nl_langinfo: avoid configure-time syntax error
5419         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
5420         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
5421         the empty string.  Don't let that provoke a shell syntax error.
5422
5423         regcomp, regexec, fnmatch: avoid array bounds read error
5424         * lib/regcomp.c (build_equiv_class): From glibc:
5425         Use only the low 24 bits of a findidx return value as an index
5426         into the weights array.  Patch by Ulrich Drepper:
5427         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
5428         * lib/regexec.c (check_node_accept_bytes): Likewise.
5429         * lib/fnmatch_loop.c (FCT): Likewise.
5430
5431         regcomp: skip collseq lookup when there are no rules
5432         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
5433         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
5434
5435         regcomp: recognize ill-formed { } expressions
5436         * lib/regcomp.c (parse_dup_op): From glibc:
5437         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
5438
5439         regcomp: fix typo in comment
5440         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
5441         s/satisfy/satisfies/.
5442
5443         regcomp: sync from glibc: remove dead store
5444         * lib/regcomp.c (duplicate_node_closure): Remove useless
5445         search_duplicated_node call and dead store.
5446
5447         regcomp: sync from glibc; always use nl_langinfo
5448         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
5449         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
5450         * modules/regex (Depends-on): Add nl_langinfo.
5451
5452 2010-01-04  Eric Blake  <ebb9@byu.net>
5453
5454         fdopendir: fix configure test
5455         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
5456
5457 2010-01-01  Bruno Haible  <bruno@clisp.org>
5458
5459         wchar: Remove unused configure check.
5460         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
5461
5462 2010-01-01  Eric Blake  <ebb9@byu.net>
5463
5464         headers: make check of system header explicit
5465         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
5466         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
5467         ourselves.
5468         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
5469         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
5470         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
5471         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
5472         internals.
5473         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
5474         missing.
5475         Suggested by Bruno Haible.
5476
5477 2010-01-01  Jim Meyering  <meyering@redhat.com>
5478
5479         ChangeLog: tweak to eliminate unnecessary copyright line
5480         * ChangeLog: Remove a copyright line that was mistakenly updated
5481         by today's update-copyright run.  Reported by Eric Blake.
5482
5483         test-update-copyright: don't let envvar setting cause test failure
5484         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
5485
5486 2010-01-01  Bruno Haible  <bruno@clisp.org>
5487
5488         localename: Avoid gcc warning.
5489         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
5490         function if it is not used.
5491
5492 2010-01-01  Jim Meyering  <meyering@redhat.com>
5493
5494         update nearly all FSF copyright year lists to include 2010
5495         Use the same procedure as for 2009, outlined in
5496         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
5497
5498         version-etc: set COPYRIGHT_YEAR to 2010
5499         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
5500
5501 2009-12-31  Eric Blake  <ebb9@byu.net>
5502
5503         doc: correct availability of cygwin 1.5.x getopt
5504         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
5505         variables.
5506         * doc/posix-functions/opterr.texi (opterr): Likewise.
5507         * doc/posix-functions/optind.texi (optind): Likewise.
5508         * doc/posix-functions/optopt.texi (optopt): Likewise.
5509         * doc/posix-functions/tzname.texi (tzname): Likewise.
5510
5511         openat: update maintainer
5512         * modules/openat (Maintainer): Add myself.
5513
5514         utimens: avoid shadowing warning
5515         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
5516         buffers into one, to avoid shadowing, as well as avoiding a
5517         redundant stat.
5518         Reported by Jim Meyering.
5519
5520         test-dup2: avoid compiler warning
5521         * tests/test-dup2.c (is_inheritable): Only define if used.
5522
5523 2010-01-01  Bruno Haible  <bruno@clisp.org>
5524
5525         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
5526         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
5527         defined, use wctomb instead of wcrtomb.
5528
5529 2010-01-01  Bruno Haible  <bruno@clisp.org>
5530
5531         iconv: Reject native Solaris iconv.
5532         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
5533         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
5534
5535 2009-12-31  Bruno Haible  <bruno@clisp.org>
5536
5537         * tests/test-signal.c (main): Remove test of 'SIG'.
5538
5539 2009-12-31  Bruno Haible  <bruno@clisp.org>
5540
5541         spawn: Fix incomplete fix.
5542         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
5543         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
5544         warnings for GNULIB_POSIXCHECK again.
5545         Reported by Eric Blake.
5546
5547 2009-12-31  Bruno Haible  <bruno@clisp.org>
5548
5549         Avoid namespace pollution on glibc systems.
5550         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
5551         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
5552         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
5553         glibc systems.
5554
5555 2009-12-31  Bruno Haible  <bruno@clisp.org>
5556
5557         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
5558         (gl_REPLACE_WCHAR_H): Turn into a no-op.
5559         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
5560         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
5561         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
5562         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
5563         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
5564
5565 2009-12-31  Bruno Haible  <bruno@clisp.org>
5566
5567         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
5568         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
5569         afterwards.
5570
5571 2009-12-31  Bruno Haible  <bruno@clisp.org>
5572
5573         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
5574         SYS_UTSNAME_H.
5575
5576 2009-12-31  Bruno Haible  <bruno@clisp.org>
5577
5578         spawn: Fix misapplied patch.
5579         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
5580         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
5581         warnings for GNULIB_POSIXCHECK.
5582
5583 2009-12-31  Bruno Haible  <bruno@clisp.org>
5584
5585         times: Update after sys_times changed.
5586         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
5587         * modules/times (Files): Add it.
5588         (configure.ac): Invoke gl_FUNC_TIMES.
5589
5590 2009-12-31  Bruno Haible  <bruno@clisp.org>
5591
5592         Use AC_C_INLINE where necessary.
5593         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
5594         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
5595         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
5596         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
5597         * m4/mbfile.m4 (gl_MBFILE): Likewise.
5598         * m4/mbiter.m4 (gl_MBITER): Likewise.
5599         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
5600         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
5601         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
5602         * modules/u64 (configure.ac): Likewise.
5603
5604 2009-12-31  Bruno Haible  <bruno@clisp.org>
5605
5606         Use AC_C_INLINE instead of module 'inline' where possible.
5607         * modules/inline (Description): Clarify purpose.
5608         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
5609         * modules/count-one-bits (Depends-on): Remove inline.
5610         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
5611         * modules/openat (Depends-on): Remove inline.
5612         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
5613         instead of depending on module 'inline'.
5614         * modules/filevercmp (Depends-on, configure.ac): Likewise.
5615         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
5616         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
5617         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
5618         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
5619         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
5620         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
5621         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
5622         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
5623         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
5624         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
5625         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
5626         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
5627         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
5628         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
5629         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
5630         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
5631         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
5632         Likewise.
5633         * modules/unictype/property-ascii-hex-digit (Depends-on,
5634         configure.ac): Likewise.
5635         * modules/unictype/property-bidi-arabic-digit (Depends-on,
5636         configure.ac): Likewise.
5637         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
5638         configure.ac): Likewise.
5639         * modules/unictype/property-bidi-block-separator (Depends-on,
5640         configure.ac): Likewise.
5641         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
5642         configure.ac): Likewise.
5643         * modules/unictype/property-bidi-common-separator (Depends-on,
5644         configure.ac): Likewise.
5645         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
5646         Likewise.
5647         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
5648         configure.ac): Likewise.
5649         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
5650         configure.ac): Likewise.
5651         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
5652         configure.ac): Likewise.
5653         * modules/unictype/property-bidi-european-digit (Depends-on,
5654         configure.ac): Likewise.
5655         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
5656         configure.ac): Likewise.
5657         * modules/unictype/property-bidi-left-to-right (Depends-on,
5658         configure.ac): Likewise.
5659         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
5660         configure.ac): Likewise.
5661         * modules/unictype/property-bidi-other-neutral (Depends-on,
5662         configure.ac): Likewise.
5663         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
5664         Likewise.
5665         * modules/unictype/property-bidi-segment-separator (Depends-on,
5666         configure.ac): Likewise.
5667         * modules/unictype/property-bidi-whitespace (Depends-on,
5668         configure.ac): Likewise.
5669         * modules/unictype/property-combining (Depends-on, configure.ac):
5670         Likewise.
5671         * modules/unictype/property-composite (Depends-on, configure.ac):
5672         Likewise.
5673         * modules/unictype/property-currency-symbol (Depends-on,
5674         configure.ac): Likewise.
5675         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
5676         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
5677         Likewise.
5678         * modules/unictype/property-default-ignorable-code-point (Depends-on,
5679         configure.ac): Likewise.
5680         * modules/unictype/property-deprecated (Depends-on, configure.ac):
5681         Likewise.
5682         * modules/unictype/property-diacritic (Depends-on, configure.ac):
5683         Likewise.
5684         * modules/unictype/property-extender (Depends-on, configure.ac):
5685         Likewise.
5686         * modules/unictype/property-format-control (Depends-on, configure.ac):
5687         Likewise.
5688         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
5689         Likewise.
5690         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
5691         Likewise.
5692         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
5693         Likewise.
5694         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
5695         Likewise.
5696         * modules/unictype/property-hyphen (Depends-on, configure.ac):
5697         Likewise.
5698         * modules/unictype/property-id-continue (Depends-on, configure.ac):
5699         Likewise.
5700         * modules/unictype/property-id-start (Depends-on, configure.ac):
5701         Likewise.
5702         * modules/unictype/property-ideographic (Depends-on, configure.ac):
5703         Likewise.
5704         * modules/unictype/property-ids-binary-operator (Depends-on,
5705         configure.ac): Likewise.
5706         * modules/unictype/property-ids-trinary-operator (Depends-on,
5707         configure.ac): Likewise.
5708         * modules/unictype/property-ignorable-control (Depends-on,
5709         configure.ac): Likewise.
5710         * modules/unictype/property-iso-control (Depends-on, configure.ac):
5711         Likewise.
5712         * modules/unictype/property-join-control (Depends-on, configure.ac):
5713         Likewise.
5714         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
5715         Likewise.
5716         * modules/unictype/property-line-separator (Depends-on, configure.ac):
5717         Likewise.
5718         * modules/unictype/property-logical-order-exception (Depends-on,
5719         configure.ac): Likewise.
5720         * modules/unictype/property-lowercase (Depends-on, configure.ac):
5721         Likewise.
5722         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
5723         * modules/unictype/property-non-break (Depends-on, configure.ac):
5724         Likewise.
5725         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
5726         Likewise.
5727         * modules/unictype/property-numeric (Depends-on, configure.ac):
5728         Likewise.
5729         * modules/unictype/property-other-alphabetic (Depends-on,
5730         configure.ac): Likewise.
5731         * modules/unictype/property-other-default-ignorable-code-point
5732         (Depends-on, configure.ac): Likewise.
5733         * modules/unictype/property-other-grapheme-extend (Depends-on,
5734         configure.ac): Likewise.
5735         * modules/unictype/property-other-id-continue (Depends-on,
5736         configure.ac): Likewise.
5737         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
5738         Likewise.
5739         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
5740         Likewise.
5741         * modules/unictype/property-other-math (Depends-on, configure.ac):
5742         Likewise.
5743         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
5744         Likewise.
5745         * modules/unictype/property-paired-punctuation (Depends-on,
5746         configure.ac): Likewise.
5747         * modules/unictype/property-paragraph-separator (Depends-on,
5748         configure.ac): Likewise.
5749         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
5750         Likewise.
5751         * modules/unictype/property-pattern-white-space (Depends-on,
5752         configure.ac): Likewise.
5753         * modules/unictype/property-private-use (Depends-on, configure.ac):
5754         Likewise.
5755         * modules/unictype/property-punctuation (Depends-on, configure.ac):
5756         Likewise.
5757         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
5758         Likewise.
5759         * modules/unictype/property-radical (Depends-on, configure.ac):
5760         Likewise.
5761         * modules/unictype/property-sentence-terminal (Depends-on,
5762         configure.ac): Likewise.
5763         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
5764         Likewise.
5765         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
5766         * modules/unictype/property-terminal-punctuation (Depends-on,
5767         configure.ac): Likewise.
5768         * modules/unictype/property-titlecase (Depends-on, configure.ac):
5769         Likewise.
5770         * modules/unictype/property-unassigned-code-value (Depends-on,
5771         configure.ac): Likewise.
5772         * modules/unictype/property-unified-ideograph (Depends-on,
5773         configure.ac): Likewise.
5774         * modules/unictype/property-uppercase (Depends-on, configure.ac):
5775         Likewise.
5776         * modules/unictype/property-variation-selector (Depends-on,
5777         configure.ac): Likewise.
5778         * modules/unictype/property-white-space (Depends-on, configure.ac):
5779         Likewise.
5780         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
5781         Likewise.
5782         * modules/unictype/property-xid-start (Depends-on, configure.ac):
5783         Likewise.
5784         * modules/unictype/property-zero-width (Depends-on, configure.ac):
5785         Likewise.
5786         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
5787         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
5788         Likewise.
5789
5790 2009-12-31  Bruno Haible  <bruno@clisp.org>
5791
5792         Remove unnecessary AC_C_INLINE invocation.
5793         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
5794         since 2009-08-21.
5795
5796 2009-12-31  Jim Meyering  <meyering@redhat.com>
5797
5798         maint.mk: don't require explicit gpg_key_ID in cfg.mk
5799         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
5800         With this change, we can all remove the gpg_key_ID = ... definition
5801         from our respective cfg.mk files.
5802
5803         maint.mk: create announcement template in ~/, not in /tmp
5804         * top/maint.mk (emit_upload_commands): Adjust.
5805         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
5806         Remove temporary file, .ci-msg.
5807
5808 2009-12-31  Eric Blake  <ebb9@byu.net>
5809
5810         link-warning: always build headers with link warnings
5811         * modules/arpa_inet (Makefile.am): Always build replacement
5812         header.
5813         * modules/ctype (Makefile.am): Likewise.
5814         * modules/dirent (Makefile.am): Likewise.
5815         * modules/inttypes (Makefile.am): Likewise.
5816         * modules/langinfo (Makefile.am): Likewise.
5817         * modules/locale (Makefile.am): Likewise.
5818         * modules/spawn (Makefile.am): Likewise.
5819         * modules/sys_file (Makefile.am): Likewise.
5820         * modules/sys_ioctl (Makefile.am): Likewise.
5821         * modules/sys_select (Makefile.am): Likewise.
5822         * modules/sys_socket (Makefile.am): Likewise.
5823         * modules/sys_times (Makefile.am): Likewise.
5824         * modules/sys_utsname (Makefile.am): Likewise.
5825         * modules/sys_wait (Makefile.am): Likewise.
5826         * modules/wchar (Makefile.am): Likewise.
5827         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
5828         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
5829         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
5830         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
5831         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
5832         Likewise.
5833         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
5834         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
5835         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
5836         Likewise.
5837         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
5838         Likewise.
5839         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
5840         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
5841         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
5842         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
5843         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
5844         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
5845         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
5846         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
5847         (gl_WCHAR_H_DEFAULTS): Likewise.
5848
5849 2009-12-31  Eric Blake  <ebb9@byu.net>
5850
5851         signal, spawn: use link warnings
5852         * lib/signal.in.h (sigset_t): Make unconditional.
5853         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
5854         (sigpending, sigprocmask, sigaction): Add link warnings.
5855         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
5856         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
5857         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
5858         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
5859         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
5860         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
5861         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
5862         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
5863         (posix_spawn_file_actions_destroy)
5864         (posix_spawn_file_actions_addopen)
5865         (posix_spawn_file_actions_addclose)
5866         (posix_spawn_file_actions_adddup2): Likewise.
5867         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
5868         * tests/test-signal.c (main): Enhance test.
5869
5870         spawn: improve wrapper support
5871         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
5872         (gl_SPAWN_H_DEFAULTS): New defaults.
5873         * modules/spawn (Makefile.am): Substitute them.
5874         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
5875         Only declare if missing or broken.
5876
5877         sys_times, sys_utsname: use include_next
5878         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
5879         header.
5880         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
5881         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
5882         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
5883         * modules/sys_times (Depends-on): Add include_next.
5884         (Makefile.am): Substitute additional values.
5885         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
5886         * lib/sys_times.in.h (includes): Include native header, if
5887         available.
5888         * lib/sys_utsname.in.h (includes): Likewise.
5889         * tests/test-sys_times.c (main): Enhance test.
5890
5891         fdutimensat: revert prior patch
5892         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
5893         utimens.h.
5894         Reported by Bruno Haible.
5895
5896 2009-12-30  Eric Blake  <ebb9@byu.net>
5897
5898         sys_wait: drop link-warning dependency
5899         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
5900         link-warning efforts.
5901         * lib/sys_wait.in.h: Likewise.
5902
5903         fdutimensat: remove bogus dependency
5904         * modules/fdutimensat (Depends-on): Drop inline.
5905
5906         unistd: fix typo
5907         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
5908
5909 2009-12-30  Bruno Haible  <bruno@clisp.org>
5910
5911         Fix compilation error with Solaris cc.
5912         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
5913         * lib/unicase/u16-is-invariant.c: Likewise.
5914         * lib/unicase/u32-is-invariant.c: Likewise.
5915         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
5916
5917 2009-12-30  Bruno Haible  <bruno@clisp.org>
5918
5919         Fix test crash.
5920         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
5921         locales.
5922         Reported by Simon Josefsson <simon@josefsson.org>.
5923
5924 2009-12-30  Bruno Haible  <bruno@clisp.org>
5925
5926         Fix compilation error on most platforms.
5927         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
5928         Reported by Simon Josefsson <simon@josefsson.org>
5929         and Nelson H. F. Beebe <beebe@math.utah.edu>.
5930
5931 2009-12-30  Eric Blake  <ebb9@byu.net>
5932
5933         futimens, utimensat: work around ntfs-3g bug
5934         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
5935         a ctime bug is present, and expand workaround to cover ntfs-3g.
5936         * lib/utimens.c (fdutimens, lutimens): Likewise.
5937         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
5938         (validate_timespec): Adjust return value.
5939         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
5940         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
5941         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
5942
5943 2009-12-29  Eric Blake  <ebb9@byu.net>
5944
5945         link-warning: make usage consistent
5946         * modules/ctype (Depends-on): Add link-warning.
5947         (Makefile.am): Update rules accordingly.
5948         * modules/langinfo (Depends-on, Makefile.am): Likewise.
5949         * modules/locale (Depends-on, Makefile.am): Likewise.
5950         * modules/sys_file (Makefile.am): Likewise.
5951         * modules/getopt-posix (Makefile.am): Delete unused link warning
5952         efforts.
5953         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
5954         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
5955         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
5956         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
5957
5958         stdio: remove unused variables
5959         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
5960         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
5961         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
5962
5963         tests: test more substitute headers
5964         * modules/ctype-tests: New file.
5965         * modules/dirent-tests: Likewise.
5966         * modules/spawn-tests: Likewise.
5967         * modules/sys_file-tests: Likewise.
5968         * modules/sys_ioctl-tests: Likewise.
5969         * modules/sys_wait-tests: Likewise.
5970         * tests/test-ctype.c: Likewise.
5971         * tests/test-dirent.c: Likewise.
5972         * tests/test-spawn.c: Likewise.
5973         * tests/test-sys_file.c: Likewise.
5974         * tests/test-sys_ioctl.c: Likewise.
5975         * tests/test-sys_wait.c: Likewise.
5976         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
5977         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
5978         whether or not flock is in use.
5979
5980         tests: remove License section from module
5981         * modules/arpa_inet-tests: Remove unneeded section.
5982         * modules/byteswap-tests: Likewise.
5983         * modules/ceilf-tests: Likewise.
5984         * modules/ceill-tests: Likewise.
5985         * modules/crypto/des-tests: Likewise.
5986         * modules/crypto/gc-arcfour-tests: Likewise.
5987         * modules/crypto/gc-arctwo-tests: Likewise.
5988         * modules/crypto/gc-des-tests: Likewise.
5989         * modules/crypto/gc-hmac-md5-tests: Likewise.
5990         * modules/crypto/gc-hmac-sha1-tests: Likewise.
5991         * modules/crypto/gc-md2-tests: Likewise.
5992         * modules/crypto/gc-md4-tests: Likewise.
5993         * modules/crypto/gc-md5-tests: Likewise.
5994         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
5995         * modules/crypto/gc-rijndael-tests: Likewise.
5996         * modules/crypto/gc-sha1-tests: Likewise.
5997         * modules/crypto/gc-tests: Likewise.
5998         * modules/crypto/md2-tests: Likewise.
5999         * modules/crypto/md4-tests: Likewise.
6000         * modules/fcntl-h-tests: Likewise.
6001         * modules/floorf-tests: Likewise.
6002         * modules/floorl-tests: Likewise.
6003         * modules/frexp-nolibm-tests: Likewise.
6004         * modules/frexp-tests: Likewise.
6005         * modules/frexpl-nolibm-tests: Likewise.
6006         * modules/frexpl-tests: Likewise.
6007         * modules/getaddrinfo-tests: Likewise.
6008         * modules/inttypes-tests: Likewise.
6009         * modules/isfinite-tests: Likewise.
6010         * modules/isinf-tests: Likewise.
6011         * modules/ldexpl-tests: Likewise.
6012         * modules/locale-tests: Likewise.
6013         * modules/math-tests: Likewise.
6014         * modules/netdb-tests: Likewise.
6015         * modules/netinet_in-tests: Likewise.
6016         * modules/printf-frexp-tests: Likewise.
6017         * modules/printf-frexpl-tests: Likewise.
6018         * modules/priv-set-tests: Likewise.
6019         * modules/random_r-tests: Likewise.
6020         * modules/round-tests: Likewise.
6021         * modules/roundf-tests: Likewise.
6022         * modules/roundl-tests: Likewise.
6023         * modules/search-tests: Likewise.
6024         * modules/select-tests: Likewise.
6025         * modules/signal-tests: Likewise.
6026         * modules/stdbool-tests: Likewise.
6027         * modules/stddef-tests: Likewise.
6028         * modules/stdint-tests: Likewise.
6029         * modules/stdio-tests: Likewise.
6030         * modules/stdlib-tests: Likewise.
6031         * modules/string-tests: Likewise.
6032         * modules/strings-tests: Likewise.
6033         * modules/sys_select-tests: Likewise.
6034         * modules/sys_socket-tests: Likewise.
6035         * modules/sys_stat-tests: Likewise.
6036         * modules/sys_time-tests: Likewise.
6037         * modules/sys_utsname-tests: Likewise.
6038         * modules/sysexits-tests: Likewise.
6039         * modules/time-tests: Likewise.
6040         * modules/trunc-tests: Likewise.
6041         * modules/truncf-tests: Likewise.
6042         * modules/truncl-tests: Likewise.
6043         * modules/tsearch-tests: Likewise.
6044         * modules/unistd-tests: Likewise.
6045         * modules/wchar-tests: Likewise.
6046         * modules/wctype-tests: Likewise.
6047
6048         tests: fix license on several tests
6049         * tests/test-des.c: Update to GPLv3+.
6050         * tests/test-flock.c: Likewise.
6051         * tests/test-fsync.c: Likewise.
6052         * tests/test-futimens.h: Likewise.
6053         * tests/test-gc-arcfour.c: Likewise.
6054         * tests/test-gc-arctwo.c: Likewise.
6055         * tests/test-gc-des.c: Likewise.
6056         * tests/test-gc-hmac-md5.c: Likewise.
6057         * tests/test-gc-hmac-sha1.c: Likewise.
6058         * tests/test-gc-md2.c: Likewise.
6059         * tests/test-gc-md4.c: Likewise.
6060         * tests/test-gc-md5.c: Likewise.
6061         * tests/test-gc-pbkdf2-sha1.c: Likewise.
6062         * tests/test-gc-rijndael.c: Likewise.
6063         * tests/test-gc-sha1.c: Likewise.
6064         * tests/test-gc.c: Likewise.
6065         * tests/test-getcwd.c: Likewise.
6066         * tests/test-link.c: Likewise.
6067         * tests/test-link.h: Likewise.
6068         * tests/test-lutimens.h: Likewise.
6069         * tests/test-md2.c: Likewise.
6070         * tests/test-md4.c: Likewise.
6071         * tests/test-mkdir.h: Likewise.
6072         * tests/test-rename.c: Likewise.
6073         * tests/test-rename.h: Likewise.
6074         * tests/test-safe-alloc.c: Likewise.
6075         * tests/test-utimens-common.h: Likewise.
6076         * tests/test-utimens.h: Likewise.
6077
6078         maint: sync license texts
6079         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
6080         * doc/gpl-3.0.texi: Revert copyright year update.
6081         * doc/lgpl-3.0.texi: Likewise.
6082
6083 2009-12-29  Jim Meyering  <meyering@redhat.com>
6084
6085         update nearly all FSF copyright year lists to include 2009
6086         The files named by the following are exempted:
6087             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
6088               test -f "$dst" && { echo "$dst"; continue; }
6089               test -d "$dst" || continue
6090               echo "$dst"/$(basename "$src")
6091             done > exempt
6092             git ls-files tests/unictype >> exempt
6093         In the remaining files, convert to all-interval notation if
6094         - there is already at least one year interval like 2000-2003
6095         - the file is maintained by me
6096         - the file is in lib/uni*/, where that style already prevails
6097         Otherwise, use update-copyright's default.
6098
6099 2009-12-29  Simon Josefsson  <simon@josefsson.org>
6100         and Eric Blake  <ebb9@byu.net>
6101
6102         tests: don't require debug system() to pass
6103         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
6104         * tests/test-rmdir.h (test_rmdir_func): Likewise.
6105         * tests/test-unlink.h (test_unlink_func): Likewise.
6106         * tests/test-fstatat.c (main): ...into callers.
6107         * tests/test-lstat.c (main): Likewise.
6108         * tests/test-rmdir.c (main): Likewise.
6109         * tests/test-unlink.c (main): Likewise.
6110         * tests/test-unlinkat.c (main): Likewise.
6111         * tests/test-areadlink-with-size.c (main): Don't require a
6112         debug-only system call to pass, aiding cross-testing to mingw.
6113         * tests/test-areadlink.c (main): Likewise.
6114         * tests/test-areadlinkat-with-size.c (main): Likewise.
6115         * tests/test-areadlinkat.c (main): Likewise.
6116         * tests/test-canonicalize-lgpl.c (main): Likewise.
6117         * tests/test-canonicalize.c (main): Likewise.
6118         * tests/test-chown.c (main): Likewise.
6119         * tests/test-fchownat.c (main): Likewise.
6120         * tests/test-lchown.c (main): Likewise.
6121         * tests/test-fdutimensat.c (main): Likewise.
6122         * tests/test-futimens.c (main): Likewise.
6123         * tests/test-link.c (main): Likewise.
6124         * tests/test-linkat.c (main): Likewise.
6125         * tests/test-mkdir.c (main): Likewise.
6126         * tests/test-mkdirat.c (main): Likewise.
6127         * tests/test-mkfifo.c (main): Likewise.
6128         * tests/test-mkfifoat.c (main): Likewise.
6129         * tests/test-mknod.c (main): Likewise.
6130         * tests/test-readlink.c (main): Likewise.
6131         * tests/test-remove.c (main): Likewise.
6132         * tests/test-rename.c (main): Likewise.
6133         * tests/test-renameat.c (main): Likewise.
6134         * tests/test-symlink.c (main): Likewise.
6135         * tests/test-symlinkat.c (main): Likewise.
6136         * tests/test-utimens.c (main): Likewise.
6137         * tests/test-utimensat.c (main): Likewise.
6138
6139 2009-12-29  Simon Josefsson  <simon@josefsson.org>
6140
6141         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
6142         on $(UNUSED_PARAMETER_H) to avoid build failure.
6143
6144 2009-12-28  Jim Meyering  <meyering@redhat.com>
6145
6146         update-copyright: you may specify a max. line length other than 72
6147         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
6148
6149         maint: use consistent FSF copyright line syntax
6150         * lib/posixtm.c: Add missing comma in FSF copyright line.
6151         * lib/posixtm.h: Likewise.
6152         * lib/getugroups.c: Add missing ", Inc.".
6153
6154         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
6155         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
6156         FSF copyright line.  Remove trailing blanks.
6157
6158 2009-12-28  Eric Blake  <ebb9@byu.net>
6159
6160         test-dup2: reduce dependencies
6161         * modules/cloexec (Configure.ac): Set witness.
6162         * modules/dup2-tests (Depends-on): Drop cloexec.
6163         * tests/test-dup2.c (main): Skip portion of test if cloexec module
6164         not present.
6165         Suggested by Bruno Haible.
6166
6167 2009-12-26  Bruno Haible  <bruno@clisp.org>
6168
6169         Remove an unneeded dependency.
6170         * modules/fseterr (Depends-on): Remove dup2.
6171
6172 2009-12-26  Eric Blake  <ebb9@byu.net>
6173
6174         tests: use macros.h in more places
6175         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
6176         (ASSERT_STREAM): Provide default of stderr.
6177         * tests/test-dirent-safer.c: Include macros.h, using alternate
6178         stream for assertions.
6179         * tests/test-dup-safer.c: Likewise.
6180         * tests/test-freopen-safer.c: Likewise.
6181         * tests/test-getopt.c: Likewise.
6182         * tests/test-openat-safer.c: Likewise.
6183         * tests/test-pipe.c: Likewise.
6184         * tests/test-popen-safer.c: Likewise.
6185         * modules/dirent-safer-tests (Files): Include macros.h.
6186         * modules/unistd-safer-tests (Files): Likewise.
6187         * modules/freopen-safer-tests (Files): Likewise.
6188         * modules/getopt-posix-tests (Files): Likewise.
6189         * modules/openat-safer-tests (Files): Likewise.
6190         * modules/pipe-tests (Files): Likewise.
6191
6192 2009-12-26  Bruno Haible  <bruno@clisp.org>
6193
6194         javacomp: Portability fix.
6195         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
6196         that it also works on Solaris.
6197
6198 2009-12-26  Bruno Haible  <bruno@clisp.org>
6199
6200         localename: Fix storage allocation of gl_locale_name_thread's result.
6201         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
6202         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
6203         all platforms that have 'uselocale'.
6204         (gl_locale_name_thread_unsafe): New function, extracted from
6205         gl_locale_name_thread.
6206         (gl_locale_name_thread): Call struniq on all platforms that have
6207         'uselocale'.
6208         * tests/test-localename.c (test_locale_name_thread): Check that the
6209         resulting strings are permanently allocated.
6210         * modules/localename-tests (Depends-on): Add strdup.
6211
6212 2009-12-26  Bruno Haible  <bruno@clisp.org>
6213
6214         * tests/test-localename.c (categories): Fill in the strings.
6215
6216 2009-12-26  Jim Meyering  <meyering@redhat.com>
6217
6218         isdir: complete the removal of m4/isdir.m4
6219         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
6220
6221         isdir: clean up, since at least grep still uses it
6222         * lib/isdir.c: Include "isdir.h".
6223         (S_ISDIR): Remove now-unneeded definition.
6224         * modules/isdir (Files): Add lib/isdir.h.
6225         * lib/isdir.h: New file, with declaration.
6226         * m4/isdir.m4: Remove file -- unneeded.
6227
6228 2009-12-25  Bruno Haible  <bruno@clisp.org>
6229
6230         selinux-h: Make generated .h files standalone.
6231         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
6232         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
6233         * lib/se-selinux.in.h: Likewise.
6234         * modules/selinux-h (Depends-on): Add unused-parameter.
6235         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
6236         selinux/selinux.h and selinux/context.h.
6237         Suggested by Eric Blake.
6238
6239 2009-12-25  Bruno Haible  <bruno@clisp.org>
6240
6241         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
6242         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
6243         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
6244         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
6245         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
6246
6247 2009-12-24  Bruno Haible  <bruno@clisp.org>
6248
6249         openat: Fix warning.
6250         * lib/openat-proc.c: Include <unistd.h>.
6251
6252 2009-12-24  Bruno Haible  <bruno@clisp.org>
6253
6254         New module 'unused-parameter'.
6255         * build-aux/unused-parameter.h: New file, extracted from earlier
6256         gnulib-common.m4.
6257         * modules/unused-parameter: New file.
6258         * lib/unistr.h: Include unused-parameter.h.
6259         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
6260         _GL_UNUSED.
6261         * modules/unistr/base (Depends-on): Add unused-parameter.
6262
6263 2009-12-24  Bruno Haible  <bruno@clisp.org>
6264
6265         Add missing dependencies to 'extensions' module.
6266         * m4/extensions.m4: Add comment.
6267         * modules/accept4 (Depends-on): Add extensions.
6268         * modules/dup3 (Depends-on): Likewise.
6269         * modules/fcntl (Depends-on): Likewise.
6270         * modules/futimens (Depends-on): Likewise.
6271         * modules/mknod (Depends-on): Likewise.
6272         * modules/pipe2 (Depends-on): Likewise.
6273         * modules/stat-time (Depends-on): Likewise.
6274         * modules/strcasestr-simple (Depends-on): Likewise.
6275         * modules/strsignal (Depends-on): Likewise.
6276         * modules/utimensat (Depends-on): Likewise.
6277         * modules/localcharset (Depends-on): Likewise. Needed because of
6278         gl_FCNTL_O_FLAGS.
6279         * modules/wcrtomb (Depends-on): Likewise. Needed because of
6280         AC_TYPE_MBSTATE_T.
6281         * modules/wcsnrtombs (Depends-on): Likewise.
6282         * modules/wcsrtombs (Depends-on): Likewise.
6283
6284 2009-12-24  Bruno Haible  <bruno@clisp.org>
6285
6286         binary-io: Avoid gcc warning due to SET_BINARY.
6287         * lib/binary-io.h (SET_BINARY): Cast the result to void.
6288         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
6289
6290 2009-12-24  Bruno Haible  <bruno@clisp.org>
6291
6292         Avoid future namespace pollution on glibc systems.
6293         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
6294         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
6295         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
6296         glibc systems.
6297
6298 2009-12-24  Bruno Haible  <bruno@clisp.org>
6299
6300         Refactor common macros used in tests.
6301         * tests/macros.h: New file.
6302         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
6303         and/or <stdlib.h>, if appropriate.
6304         (ASSERT, SIZEOF): Remove macros.
6305         * tests/test-areadlink-with-size.c: Likewise.
6306         * tests/test-areadlinkat.c: Likewise.
6307         * tests/test-areadlinkat-with-size.c: Likewise.
6308         * tests/test-argmatch.c: Likewise.
6309         * tests/test-argv-iter.c: Likewise.
6310         * tests/test-array-mergesort.c: Likewise.
6311         * tests/test-array_list.c: Likewise.
6312         * tests/test-array_oset.c: Likewise.
6313         * tests/test-avltree_list.c: Likewise.
6314         * tests/test-avltree_oset.c: Likewise.
6315         * tests/test-avltreehash_list.c: Likewise.
6316         * tests/test-base64.c: Likewise.
6317         * tests/test-binary-io.c: Likewise.
6318         * tests/test-bitrotate.c: Likewise.
6319         * tests/test-btowc.c: Likewise.
6320         * tests/test-byteswap.c: Likewise.
6321         * tests/test-c-ctype.c: Likewise.
6322         * tests/test-c-stack.c: Likewise.
6323         * tests/test-c-strcasecmp.c: Likewise.
6324         * tests/test-c-strcasestr.c: Likewise.
6325         * tests/test-c-strncasecmp.c: Likewise.
6326         * tests/test-c-strstr.c: Likewise.
6327         * tests/test-canonicalize-lgpl.c: Likewise.
6328         * tests/test-canonicalize.c: Likewise.
6329         * tests/test-carray_list.c: Likewise.
6330         * tests/test-ceilf1.c: Likewise.
6331         * tests/test-ceilf2.c: Likewise.
6332         * tests/test-ceill.c: Likewise.
6333         * tests/test-chown.c: Likewise.
6334         * tests/test-cloexec.c: Likewise.
6335         * tests/test-copy-acl.c: Likewise.
6336         * tests/test-copy-file.c: Likewise.
6337         * tests/test-count-one-bits.c: Likewise.
6338         * tests/test-dprintf-posix.c: Likewise.
6339         * tests/test-dup2.c: Likewise.
6340         * tests/test-dup3.c: Likewise.
6341         * tests/test-duplocale.c: Likewise.
6342         * tests/test-fbufmode.c: Likewise.
6343         * tests/test-fchdir.c: Likewise.
6344         * tests/test-fchownat.c: Likewise.
6345         * tests/test-fcntl-safer.c: Likewise.
6346         * tests/test-fcntl.c: Likewise.
6347         * tests/test-fdopendir.c: Likewise.
6348         * tests/test-fdutimensat.c: Likewise.
6349         * tests/test-fflush2.c: Likewise.
6350         * tests/test-file-has-acl.c: Likewise.
6351         * tests/test-filevercmp.c: Likewise.
6352         * tests/test-flock.c: Likewise.
6353         * tests/test-floorf1.c: Likewise.
6354         * tests/test-floorf2.c: Likewise.
6355         * tests/test-floorl.c: Likewise.
6356         * tests/test-fnmatch.c: Likewise.
6357         * tests/test-fopen.h: Likewise.
6358         * tests/test-fpending.c: Likewise.
6359         * tests/test-fprintf-posix.c: Likewise.
6360         * tests/test-fpurge.c: Likewise.
6361         * tests/test-freadable.c: Likewise.
6362         * tests/test-freadahead.c: Likewise.
6363         * tests/test-freading.c: Likewise.
6364         * tests/test-freadptr.c: Likewise.
6365         * tests/test-freadptr2.c: Likewise.
6366         * tests/test-freadseek.c: Likewise.
6367         * tests/test-freopen.c: Likewise.
6368         * tests/test-frexp.c: Likewise.
6369         * tests/test-frexpl.c: Likewise.
6370         * tests/test-fseek.c: Likewise.
6371         * tests/test-fseeko.c: Likewise.
6372         * tests/test-fstatat.c: Likewise.
6373         * tests/test-fstrcmp.c: Likewise.
6374         * tests/test-fsync.c: Likewise.
6375         * tests/test-ftell.c: Likewise.
6376         * tests/test-ftello.c: Likewise.
6377         * tests/test-func.c: Likewise.
6378         * tests/test-futimens.c: Likewise.
6379         * tests/test-fwritable.c: Likewise.
6380         * tests/test-fwriting.c: Likewise.
6381         * tests/test-getcwd.c: Likewise.
6382         * tests/test-getdate.c: Likewise.
6383         * tests/test-getdelim.c: Likewise.
6384         * tests/test-getdtablesize.c: Likewise.
6385         * tests/test-getgroups.c: Likewise.
6386         * tests/test-getline.c: Likewise.
6387         * tests/test-getndelim2.c: Likewise.
6388         * tests/test-glob.c: Likewise.
6389         * tests/test-hash.c: Likewise.
6390         * tests/test-i-ring.c: Likewise.
6391         * tests/test-iconv-utf.c: Likewise.
6392         * tests/test-iconv.c: Likewise.
6393         * tests/test-idpriv-drop.c: Likewise.
6394         * tests/test-idpriv-droptemp.c: Likewise.
6395         * tests/test-inet_ntop.c: Likewise.
6396         * tests/test-inet_pton.c: Likewise.
6397         * tests/test-isblank.c: Likewise.
6398         * tests/test-isfinite.c: Likewise.
6399         * tests/test-isinf.c: Likewise.
6400         * tests/test-isnan.c: Likewise.
6401         * tests/test-isnand.h: Likewise.
6402         * tests/test-isnanf.h: Likewise.
6403         * tests/test-isnanl.h: Likewise.
6404         * tests/test-lchown.c: Likewise.
6405         * tests/test-ldexpl.c: Likewise.
6406         * tests/test-link.c: Likewise.
6407         * tests/test-linkat.c: Likewise.
6408         * tests/test-linked_list.c: Likewise.
6409         * tests/test-linkedhash_list.c: Likewise.
6410         * tests/test-localename.c: Likewise.
6411         * tests/test-lseek.c: Likewise.
6412         * tests/test-lstat.c: Likewise.
6413         * tests/test-mbmemcasecmp.c: Likewise.
6414         * tests/test-mbmemcasecoll.c: Likewise.
6415         * tests/test-mbrtowc.c: Likewise.
6416         * tests/test-mbscasecmp.c: Likewise.
6417         * tests/test-mbscasestr1.c: Likewise.
6418         * tests/test-mbscasestr2.c: Likewise.
6419         * tests/test-mbscasestr3.c: Likewise.
6420         * tests/test-mbscasestr4.c: Likewise.
6421         * tests/test-mbschr.c: Likewise.
6422         * tests/test-mbscspn.c: Likewise.
6423         * tests/test-mbsinit.c: Likewise.
6424         * tests/test-mbsncasecmp.c: Likewise.
6425         * tests/test-mbsnrtowcs.c: Likewise.
6426         * tests/test-mbspbrk.c: Likewise.
6427         * tests/test-mbspcasecmp.c: Likewise.
6428         * tests/test-mbsrchr.c: Likewise.
6429         * tests/test-mbsrtowcs.c: Likewise.
6430         * tests/test-mbsspn.c: Likewise.
6431         * tests/test-mbsstr1.c: Likewise.
6432         * tests/test-mbsstr2.c: Likewise.
6433         * tests/test-mbsstr3.c: Likewise.
6434         * tests/test-memchr.c: Likewise.
6435         * tests/test-memchr2.c: Likewise.
6436         * tests/test-memcmp.c: Likewise.
6437         * tests/test-memmem.c: Likewise.
6438         * tests/test-memrchr.c: Likewise.
6439         * tests/test-mkdir.c: Likewise.
6440         * tests/test-mkdirat.c: Likewise.
6441         * tests/test-mkfifo.c: Likewise.
6442         * tests/test-mkfifoat.c: Likewise.
6443         * tests/test-mknod.c: Likewise.
6444         * tests/test-nanosleep.c: Likewise.
6445         * tests/test-nl_langinfo.c: Likewise.
6446         * tests/test-obstack-printf.c: Likewise.
6447         * tests/test-open.c: Likewise.
6448         * tests/test-openat.c: Likewise.
6449         * tests/test-pipe-filter-gi1.c: Likewise.
6450         * tests/test-pipe-filter-gi2-main.c: Likewise.
6451         * tests/test-pipe-filter-ii1.c: Likewise.
6452         * tests/test-pipe-filter-ii2-main.c: Likewise.
6453         * tests/test-pipe2.c: Likewise.
6454         * tests/test-popen.h: Likewise.
6455         * tests/test-posixtm.c: Likewise.
6456         * tests/test-pread.c: Likewise.
6457         * tests/test-printf-frexp.c: Likewise.
6458         * tests/test-printf-frexpl.c: Likewise.
6459         * tests/test-printf-posix.c: Likewise.
6460         * tests/test-priv-set.c: Likewise.
6461         * tests/test-quotearg.c: Likewise.
6462         * tests/test-random_r.c: Likewise.
6463         * tests/test-rawmemchr.c: Likewise.
6464         * tests/test-rbtree_list.c: Likewise.
6465         * tests/test-rbtree_oset.c: Likewise.
6466         * tests/test-rbtreehash_list.c: Likewise.
6467         * tests/test-readlink.c: Likewise.
6468         * tests/test-remove.c: Likewise.
6469         * tests/test-rename.c: Likewise.
6470         * tests/test-renameat.c: Likewise.
6471         * tests/test-rmdir.c: Likewise.
6472         * tests/test-round1.c: Likewise.
6473         * tests/test-roundf1.c: Likewise.
6474         * tests/test-roundl.c: Likewise.
6475         * tests/test-safe-alloc.c: Likewise.
6476         * tests/test-sameacls.c: Likewise.
6477         * tests/test-set-mode-acl.c: Likewise.
6478         * tests/test-setenv.c: Likewise.
6479         * tests/test-sigaction.c: Likewise.
6480         * tests/test-signbit.c: Likewise.
6481         * tests/test-sleep.c: Likewise.
6482         * tests/test-snprintf-posix.c: Likewise.
6483         * tests/test-snprintf.c: Likewise.
6484         * tests/test-sprintf-posix.c: Likewise.
6485         * tests/test-stat-time.c: Likewise.
6486         * tests/test-stat.c: Likewise.
6487         * tests/test-strcasestr.c: Likewise.
6488         * tests/test-strchrnul.c: Likewise.
6489         * tests/test-strerror.c: Likewise.
6490         * tests/test-striconv.c: Likewise.
6491         * tests/test-striconveh.c: Likewise.
6492         * tests/test-striconveha.c: Likewise.
6493         * tests/test-strsignal.c: Likewise.
6494         * tests/test-strstr.c: Likewise.
6495         * tests/test-strtod.c: Likewise.
6496         * tests/test-strverscmp.c: Likewise.
6497         * tests/test-symlink.c: Likewise.
6498         * tests/test-symlinkat.c: Likewise.
6499         * tests/test-trunc1.c: Likewise.
6500         * tests/test-trunc2.c: Likewise.
6501         * tests/test-truncf1.c: Likewise.
6502         * tests/test-truncf2.c: Likewise.
6503         * tests/test-truncl.c: Likewise.
6504         * tests/test-uname.c: Likewise.
6505         * tests/test-unlink.c: Likewise.
6506         * tests/test-unlinkat.c: Likewise.
6507         * tests/test-unsetenv.c: Likewise.
6508         * tests/test-usleep.c: Likewise.
6509         * tests/test-utimens.c: Likewise.
6510         * tests/test-utimensat.c: Likewise.
6511         * tests/test-vasnprintf-posix.c: Likewise.
6512         * tests/test-vasnprintf-posix2.c: Likewise.
6513         * tests/test-vasnprintf.c: Likewise.
6514         * tests/test-vasprintf-posix.c: Likewise.
6515         * tests/test-vasprintf.c: Likewise.
6516         * tests/test-vdprintf-posix.c: Likewise.
6517         * tests/test-vfprintf-posix.c: Likewise.
6518         * tests/test-vprintf-posix.c: Likewise.
6519         * tests/test-vsnprintf-posix.c: Likewise.
6520         * tests/test-vsnprintf.c: Likewise.
6521         * tests/test-vsprintf-posix.c: Likewise.
6522         * tests/test-wcrtomb.c: Likewise.
6523         * tests/test-wcsnrtombs.c: Likewise.
6524         * tests/test-wcsrtombs.c: Likewise.
6525         * tests/test-wctype.c: Likewise.
6526         * tests/test-wcwidth.c: Likewise.
6527         * tests/test-xfprintf-posix.c: Likewise.
6528         * tests/test-xmemdup0.c: Likewise.
6529         * tests/test-xprintf-posix.c: Likewise.
6530         * tests/test-xvasprintf.c: Likewise.
6531         * tests/unicase/test-locale-language.c: Likewise.
6532         * tests/unicase/test-mapping-part1.h: Likewise.
6533         * tests/unicase/test-predicate-part1.h: Likewise.
6534         * tests/unicase/test-u8-casecmp.c: Likewise.
6535         * tests/unicase/test-u8-casecoll.c: Likewise.
6536         * tests/unicase/test-u8-casefold.c: Likewise.
6537         * tests/unicase/test-u8-is-cased.c: Likewise.
6538         * tests/unicase/test-u8-is-casefolded.c: Likewise.
6539         * tests/unicase/test-u8-is-lowercase.c: Likewise.
6540         * tests/unicase/test-u8-is-titlecase.c: Likewise.
6541         * tests/unicase/test-u8-is-uppercase.c: Likewise.
6542         * tests/unicase/test-u8-tolower.c: Likewise.
6543         * tests/unicase/test-u8-totitle.c: Likewise.
6544         * tests/unicase/test-u8-toupper.c: Likewise.
6545         * tests/unicase/test-u16-casecmp.c: Likewise.
6546         * tests/unicase/test-u16-casecoll.c: Likewise.
6547         * tests/unicase/test-u16-casefold.c: Likewise.
6548         * tests/unicase/test-u16-is-cased.c: Likewise.
6549         * tests/unicase/test-u16-is-casefolded.c: Likewise.
6550         * tests/unicase/test-u16-is-lowercase.c: Likewise.
6551         * tests/unicase/test-u16-is-titlecase.c: Likewise.
6552         * tests/unicase/test-u16-is-uppercase.c: Likewise.
6553         * tests/unicase/test-u16-tolower.c: Likewise.
6554         * tests/unicase/test-u16-totitle.c: Likewise.
6555         * tests/unicase/test-u16-toupper.c: Likewise.
6556         * tests/unicase/test-u32-casecmp.c: Likewise.
6557         * tests/unicase/test-u32-casecoll.c: Likewise.
6558         * tests/unicase/test-u32-casefold.c: Likewise.
6559         * tests/unicase/test-u32-is-cased.c: Likewise.
6560         * tests/unicase/test-u32-is-casefolded.c: Likewise.
6561         * tests/unicase/test-u32-is-lowercase.c: Likewise.
6562         * tests/unicase/test-u32-is-titlecase.c: Likewise.
6563         * tests/unicase/test-u32-is-uppercase.c: Likewise.
6564         * tests/unicase/test-u32-tolower.c: Likewise.
6565         * tests/unicase/test-u32-totitle.c: Likewise.
6566         * tests/unicase/test-u32-toupper.c: Likewise.
6567         * tests/unicase/test-ulc-casecmp.c: Likewise.
6568         * tests/unicase/test-ulc-casecoll.c: Likewise.
6569         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
6570         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
6571         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
6572         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
6573         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
6574         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
6575         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
6576         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
6577         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
6578         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
6579         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
6580         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
6581         * tests/unictype/test-bidi_byname.c: Likewise.
6582         * tests/unictype/test-bidi_name.c: Likewise.
6583         * tests/unictype/test-bidi_of.c: Likewise.
6584         * tests/unictype/test-bidi_test.c: Likewise.
6585         * tests/unictype/test-block_list.c: Likewise.
6586         * tests/unictype/test-block_of.c: Likewise.
6587         * tests/unictype/test-block_test.c: Likewise.
6588         * tests/unictype/test-categ_and.c: Likewise.
6589         * tests/unictype/test-categ_and_not.c: Likewise.
6590         * tests/unictype/test-categ_byname.c: Likewise.
6591         * tests/unictype/test-categ_name.c: Likewise.
6592         * tests/unictype/test-categ_none.c: Likewise.
6593         * tests/unictype/test-categ_of.c: Likewise.
6594         * tests/unictype/test-categ_or.c: Likewise.
6595         * tests/unictype/test-categ_test_withtable.c: Likewise.
6596         * tests/unictype/test-combining.c: Likewise.
6597         * tests/unictype/test-decdigit.c: Likewise.
6598         * tests/unictype/test-digit.c: Likewise.
6599         * tests/unictype/test-mirror.c: Likewise.
6600         * tests/unictype/test-numeric.c: Likewise.
6601         * tests/unictype/test-pr_byname.c: Likewise.
6602         * tests/unictype/test-pr_test.c: Likewise.
6603         * tests/unictype/test-predicate-part1.h: Likewise.
6604         * tests/unictype/test-scripts.c: Likewise.
6605         * tests/unictype/test-sy_c_ident.c: Likewise.
6606         * tests/unictype/test-sy_java_ident.c: Likewise.
6607         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
6608         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
6609         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
6610         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
6611         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
6612         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
6613         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
6614         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
6615         * tests/uninorm/test-canonical-decomposition.c: Likewise.
6616         * tests/uninorm/test-compat-decomposition.c: Likewise.
6617         * tests/uninorm/test-composition.c: Likewise.
6618         * tests/uninorm/test-decomposing-form.c: Likewise.
6619         * tests/uninorm/test-decomposition.c: Likewise.
6620         * tests/uninorm/test-u8-nfc.c: Likewise.
6621         * tests/uninorm/test-u8-nfd.c: Likewise.
6622         * tests/uninorm/test-u8-nfkc.c: Likewise.
6623         * tests/uninorm/test-u8-nfkd.c: Likewise.
6624         * tests/uninorm/test-u8-normcmp.c: Likewise.
6625         * tests/uninorm/test-u8-normcoll.c: Likewise.
6626         * tests/uninorm/test-u16-nfc.c: Likewise.
6627         * tests/uninorm/test-u16-nfd.c: Likewise.
6628         * tests/uninorm/test-u16-nfkc.c: Likewise.
6629         * tests/uninorm/test-u16-nfkd.c: Likewise.
6630         * tests/uninorm/test-u16-normcmp.c: Likewise.
6631         * tests/uninorm/test-u16-normcoll.c: Likewise.
6632         * tests/uninorm/test-u32-nfc.c: Likewise.
6633         * tests/uninorm/test-u32-nfd.c: Likewise.
6634         * tests/uninorm/test-u32-nfkc.c: Likewise.
6635         * tests/uninorm/test-u32-nfkd.c: Likewise.
6636         * tests/uninorm/test-u32-normalize-big.c: Likewise.
6637         * tests/uninorm/test-u32-normcmp.c: Likewise.
6638         * tests/uninorm/test-u32-normcoll.c: Likewise.
6639         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
6640         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
6641         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
6642         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
6643         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
6644         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
6645         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
6646         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
6647         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
6648         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
6649         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
6650         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
6651         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
6652         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
6653         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
6654         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
6655         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
6656         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
6657         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
6658         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
6659         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
6660         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
6661         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
6662         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
6663         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
6664         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
6665         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
6666         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
6667         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
6668         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
6669         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
6670         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
6671         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
6672         * tests/uniwidth/test-u8-strwidth.c: Likewise.
6673         * tests/uniwidth/test-u8-width.c: Likewise.
6674         * tests/uniwidth/test-u16-strwidth.c: Likewise.
6675         * tests/uniwidth/test-u16-width.c: Likewise.
6676         * tests/uniwidth/test-u32-strwidth.c: Likewise.
6677         * tests/uniwidth/test-u32-width.c: Likewise.
6678         * tests/uniwidth/test-uc_width.c: Likewise.
6679         * tests/uniwidth/test-uc_width2.c: Likewise.
6680         * modules/acl-tests (Files): Add tests/macros.h.
6681         * modules/areadlink-tests (Files): Likewise.
6682         * modules/areadlink-with-size-tests (Files): Likewise.
6683         * modules/areadlinkat-tests (Files): Likewise.
6684         * modules/areadlinkat-with-size-tests (Files): Likewise.
6685         * modules/argmatch-tests (Files): Likewise.
6686         * modules/argv-iter-tests (Files): Likewise.
6687         * modules/array-list-tests (Files): Likewise.
6688         * modules/array-mergesort-tests (Files): Likewise.
6689         * modules/array-oset-tests (Files): Likewise.
6690         * modules/avltree-list-tests (Files): Likewise.
6691         * modules/avltree-oset-tests (Files): Likewise.
6692         * modules/avltreehash-list-tests (Files): Likewise.
6693         * modules/base64-tests (Files): Likewise.
6694         * modules/binary-io-tests (Files): Likewise.
6695         * modules/bitrotate-tests (Files): Likewise.
6696         * modules/btowc-tests (Files): Likewise.
6697         * modules/byteswap-tests (Files): Likewise.
6698         * modules/c-ctype-tests (Files): Likewise.
6699         * modules/c-stack-tests (Files): Likewise.
6700         * modules/c-strcase-tests (Files): Likewise.
6701         * modules/c-strcasestr-tests (Files): Likewise.
6702         * modules/c-strstr-tests (Files): Likewise.
6703         * modules/canonicalize-lgpl-tests (Files): Likewise.
6704         * modules/canonicalize-tests (Files): Likewise.
6705         * modules/carray-list-tests (Files): Likewise.
6706         * modules/ceilf-tests (Files): Likewise.
6707         * modules/ceill-tests (Files): Likewise.
6708         * modules/chown-tests (Files): Likewise.
6709         * modules/cloexec-tests (Files): Likewise.
6710         * modules/copy-file-tests (Files): Likewise.
6711         * modules/count-one-bits-tests (Files): Likewise.
6712         * modules/dprintf-posix-tests (Files): Likewise.
6713         * modules/dup2-tests (Files): Likewise.
6714         * modules/dup3-tests (Files): Likewise.
6715         * modules/duplocale-tests (Files): Likewise.
6716         * modules/fbufmode-tests (Files): Likewise.
6717         * modules/fchdir-tests (Files): Likewise.
6718         * modules/fcntl-safer-tests (Files): Likewise.
6719         * modules/fcntl-tests (Files): Likewise.
6720         * modules/fdopendir-tests (Files): Likewise.
6721         * modules/fdutimensat-tests (Files): Likewise.
6722         * modules/fflush-tests (Files): Likewise.
6723         * modules/filevercmp-tests (Files): Likewise.
6724         * modules/flock-tests (Files): Likewise.
6725         * modules/floorf-tests (Files): Likewise.
6726         * modules/floorl-tests (Files): Likewise.
6727         * modules/fnmatch-tests (Files): Likewise.
6728         * modules/fopen-safer-tests (Files): Likewise.
6729         * modules/fopen-tests (Files): Likewise.
6730         * modules/fpending-tests (Files): Likewise.
6731         * modules/fprintf-posix-tests (Files): Likewise.
6732         * modules/fpurge-tests (Files): Likewise.
6733         * modules/freadable-tests (Files): Likewise.
6734         * modules/freadahead-tests (Files): Likewise.
6735         * modules/freading-tests (Files): Likewise.
6736         * modules/freadptr-tests (Files): Likewise.
6737         * modules/freadseek-tests (Files): Likewise.
6738         * modules/freopen-tests (Files): Likewise.
6739         * modules/frexp-nolibm-tests (Files): Likewise.
6740         * modules/frexp-tests (Files): Likewise.
6741         * modules/frexpl-nolibm-tests (Files): Likewise.
6742         * modules/frexpl-tests (Files): Likewise.
6743         * modules/fseek-tests (Files): Likewise.
6744         * modules/fseeko-tests (Files): Likewise.
6745         * modules/fstrcmp-tests (Files): Likewise.
6746         * modules/fsync-tests (Files): Likewise.
6747         * modules/ftell-tests (Files): Likewise.
6748         * modules/ftello-tests (Files): Likewise.
6749         * modules/func-tests (Files): Likewise.
6750         * modules/futimens-tests (Files): Likewise.
6751         * modules/fwritable-tests (Files): Likewise.
6752         * modules/fwriting-tests (Files): Likewise.
6753         * modules/getcwd-tests (Files): Likewise.
6754         * modules/getdate-tests (Files): Likewise.
6755         * modules/getdelim-tests (Files): Likewise.
6756         * modules/getdtablesize-tests (Files): Likewise.
6757         * modules/getgroups-tests (Files): Likewise.
6758         * modules/getline-tests (Files): Likewise.
6759         * modules/getndelim2-tests (Files): Likewise.
6760         * modules/glob-tests (Files): Likewise.
6761         * modules/hash-tests (Files): Likewise.
6762         * modules/i-ring-tests (Files): Likewise.
6763         * modules/iconv-tests (Files): Likewise.
6764         * modules/iconv_open-utf-tests (Files): Likewise.
6765         * modules/idpriv-drop-tests (Files): Likewise.
6766         * modules/idpriv-droptemp-tests (Files): Likewise.
6767         * modules/inet_ntop-tests (Files): Likewise.
6768         * modules/inet_pton-tests (Files): Likewise.
6769         * modules/isblank-tests (Files): Likewise.
6770         * modules/isfinite-tests (Files): Likewise.
6771         * modules/isinf-tests (Files): Likewise.
6772         * modules/isnan-tests (Files): Likewise.
6773         * modules/isnand-nolibm-tests (Files): Likewise.
6774         * modules/isnand-tests (Files): Likewise.
6775         * modules/isnanf-nolibm-tests (Files): Likewise.
6776         * modules/isnanf-tests (Files): Likewise.
6777         * modules/isnanl-nolibm-tests (Files): Likewise.
6778         * modules/isnanl-tests (Files): Likewise.
6779         * modules/lchown-tests (Files): Likewise.
6780         * modules/ldexpl-tests (Files): Likewise.
6781         * modules/link-tests (Files): Likewise.
6782         * modules/linkat-tests (Files): Likewise.
6783         * modules/linked-list-tests (Files): Likewise.
6784         * modules/linkedhash-list-tests (Files): Likewise.
6785         * modules/localename-tests (Files): Likewise.
6786         * modules/lseek-tests (Files): Likewise.
6787         * modules/lstat-tests (Files): Likewise.
6788         * modules/mbmemcasecmp-tests (Files): Likewise.
6789         * modules/mbmemcasecoll-tests (Files): Likewise.
6790         * modules/mbrtowc-tests (Files): Likewise.
6791         * modules/mbscasecmp-tests (Files): Likewise.
6792         * modules/mbscasestr-tests (Files): Likewise.
6793         * modules/mbschr-tests (Files): Likewise.
6794         * modules/mbscspn-tests (Files): Likewise.
6795         * modules/mbsinit-tests (Files): Likewise.
6796         * modules/mbsncasecmp-tests (Files): Likewise.
6797         * modules/mbsnrtowcs-tests (Files): Likewise.
6798         * modules/mbspbrk-tests (Files): Likewise.
6799         * modules/mbspcasecmp-tests (Files): Likewise.
6800         * modules/mbsrchr-tests (Files): Likewise.
6801         * modules/mbsrtowcs-tests (Files): Likewise.
6802         * modules/mbsspn-tests (Files): Likewise.
6803         * modules/mbsstr-tests (Files): Likewise.
6804         * modules/memchr-tests (Files): Likewise.
6805         * modules/memchr2-tests (Files): Likewise.
6806         * modules/memcmp-tests (Files): Likewise.
6807         * modules/memmem-tests (Files): Likewise.
6808         * modules/memrchr-tests (Files): Likewise.
6809         * modules/mkdir-tests (Files): Likewise.
6810         * modules/mkfifo-tests (Files): Likewise.
6811         * modules/mkfifoat-tests (Files): Likewise.
6812         * modules/mknod-tests (Files): Likewise.
6813         * modules/nanosleep-tests (Files): Likewise.
6814         * modules/nl_langinfo-tests (Files): Likewise.
6815         * modules/obstack-printf-tests (Files): Likewise.
6816         * modules/open-tests (Files): Likewise.
6817         * modules/openat-tests (Files): Likewise.
6818         * modules/pipe-filter-gi-tests (Files): Likewise.
6819         * modules/pipe-filter-ii-tests (Files): Likewise.
6820         * modules/pipe2-tests (Files): Likewise.
6821         * modules/popen-safer-tests (Files): Likewise.
6822         * modules/popen-tests (Files): Likewise.
6823         * modules/posixtm-tests (Files): Likewise.
6824         * modules/pread-tests (Files): Likewise.
6825         * modules/printf-frexp-tests (Files): Likewise.
6826         * modules/printf-frexpl-tests (Files): Likewise.
6827         * modules/printf-posix-tests (Files): Likewise.
6828         * modules/priv-set-tests (Files): Likewise.
6829         * modules/quotearg-tests (Files): Likewise.
6830         * modules/random_r-tests (Files): Likewise.
6831         * modules/rawmemchr-tests (Files): Likewise.
6832         * modules/rbtree-list-tests (Files): Likewise.
6833         * modules/rbtree-oset-tests (Files): Likewise.
6834         * modules/rbtreehash-list-tests (Files): Likewise.
6835         * modules/readlink-tests (Files): Likewise.
6836         * modules/remove-tests (Files): Likewise.
6837         * modules/rename-tests (Files): Likewise.
6838         * modules/renameat-tests (Files): Likewise.
6839         * modules/rmdir-tests (Files): Likewise.
6840         * modules/round-tests (Files): Likewise.
6841         * modules/roundf-tests (Files): Likewise.
6842         * modules/roundl-tests (Files): Likewise.
6843         * modules/safe-alloc-tests (Files): Likewise.
6844         * modules/setenv-tests (Files): Likewise.
6845         * modules/sigaction-tests (Files): Likewise.
6846         * modules/signbit-tests (Files): Likewise.
6847         * modules/sleep-tests (Files): Likewise.
6848         * modules/snprintf-posix-tests (Files): Likewise.
6849         * modules/snprintf-tests (Files): Likewise.
6850         * modules/sprintf-posix-tests (Files): Likewise.
6851         * modules/stat-tests (Files): Likewise.
6852         * modules/stat-time-tests (Files): Likewise.
6853         * modules/strcasestr-tests (Files): Likewise.
6854         * modules/strchrnul-tests (Files): Likewise.
6855         * modules/strerror-tests (Files): Likewise.
6856         * modules/striconv-tests (Files): Likewise.
6857         * modules/striconveh-tests (Files): Likewise.
6858         * modules/striconveha-tests (Files): Likewise.
6859         * modules/strsignal-tests (Files): Likewise.
6860         * modules/strstr-tests (Files): Likewise.
6861         * modules/strtod-tests (Files): Likewise.
6862         * modules/strverscmp-tests (Files): Likewise.
6863         * modules/symlink-tests (Files): Likewise.
6864         * modules/symlinkat-tests (Files): Likewise.
6865         * modules/trunc-tests (Files): Likewise.
6866         * modules/truncf-tests (Files): Likewise.
6867         * modules/truncl-tests (Files): Likewise.
6868         * modules/uname-tests (Files): Likewise.
6869         * modules/unicase/cased-tests (Files): Likewise.
6870         * modules/unicase/ignorable-tests (Files): Likewise.
6871         * modules/unicase/locale-language-tests (Files): Likewise.
6872         * modules/unicase/tolower-tests (Files): Likewise.
6873         * modules/unicase/totitle-tests (Files): Likewise.
6874         * modules/unicase/toupper-tests (Files): Likewise.
6875         * modules/unicase/u8-casecmp-tests (Files): Likewise.
6876         * modules/unicase/u8-casecoll-tests (Files): Likewise.
6877         * modules/unicase/u8-casefold-tests (Files): Likewise.
6878         * modules/unicase/u8-is-cased-tests (Files): Likewise.
6879         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
6880         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
6881         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
6882         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
6883         * modules/unicase/u8-tolower-tests (Files): Likewise.
6884         * modules/unicase/u8-totitle-tests (Files): Likewise.
6885         * modules/unicase/u8-toupper-tests (Files): Likewise.
6886         * modules/unicase/u16-casecmp-tests (Files): Likewise.
6887         * modules/unicase/u16-casecoll-tests (Files): Likewise.
6888         * modules/unicase/u16-casefold-tests (Files): Likewise.
6889         * modules/unicase/u16-is-cased-tests (Files): Likewise.
6890         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
6891         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
6892         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
6893         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
6894         * modules/unicase/u16-tolower-tests (Files): Likewise.
6895         * modules/unicase/u16-totitle-tests (Files): Likewise.
6896         * modules/unicase/u16-toupper-tests (Files): Likewise.
6897         * modules/unicase/u32-casecmp-tests (Files): Likewise.
6898         * modules/unicase/u32-casecoll-tests (Files): Likewise.
6899         * modules/unicase/u32-casefold-tests (Files): Likewise.
6900         * modules/unicase/u32-is-cased-tests (Files): Likewise.
6901         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
6902         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
6903         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
6904         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
6905         * modules/unicase/u32-tolower-tests (Files): Likewise.
6906         * modules/unicase/u32-totitle-tests (Files): Likewise.
6907         * modules/unicase/u32-toupper-tests (Files): Likewise.
6908         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
6909         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
6910         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
6911         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
6912         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
6913         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
6914         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
6915         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
6916         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
6917         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
6918         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
6919         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
6920         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
6921         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
6922         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
6923         * modules/unictype/bidicategory-name-tests (Files): Likewise.
6924         * modules/unictype/bidicategory-of-tests (Files): Likewise.
6925         * modules/unictype/bidicategory-test-tests (Files): Likewise.
6926         * modules/unictype/block-list-tests (Files): Likewise.
6927         * modules/unictype/block-of-tests (Files): Likewise.
6928         * modules/unictype/block-test-tests (Files): Likewise.
6929         * modules/unictype/category-C-tests (Files): Likewise.
6930         * modules/unictype/category-Cc-tests (Files): Likewise.
6931         * modules/unictype/category-Cf-tests (Files): Likewise.
6932         * modules/unictype/category-Cn-tests (Files): Likewise.
6933         * modules/unictype/category-Co-tests (Files): Likewise.
6934         * modules/unictype/category-Cs-tests (Files): Likewise.
6935         * modules/unictype/category-L-tests (Files): Likewise.
6936         * modules/unictype/category-Ll-tests (Files): Likewise.
6937         * modules/unictype/category-Lm-tests (Files): Likewise.
6938         * modules/unictype/category-Lo-tests (Files): Likewise.
6939         * modules/unictype/category-Lt-tests (Files): Likewise.
6940         * modules/unictype/category-Lu-tests (Files): Likewise.
6941         * modules/unictype/category-M-tests (Files): Likewise.
6942         * modules/unictype/category-Mc-tests (Files): Likewise.
6943         * modules/unictype/category-Me-tests (Files): Likewise.
6944         * modules/unictype/category-Mn-tests (Files): Likewise.
6945         * modules/unictype/category-N-tests (Files): Likewise.
6946         * modules/unictype/category-Nd-tests (Files): Likewise.
6947         * modules/unictype/category-Nl-tests (Files): Likewise.
6948         * modules/unictype/category-No-tests (Files): Likewise.
6949         * modules/unictype/category-P-tests (Files): Likewise.
6950         * modules/unictype/category-Pc-tests (Files): Likewise.
6951         * modules/unictype/category-Pd-tests (Files): Likewise.
6952         * modules/unictype/category-Pe-tests (Files): Likewise.
6953         * modules/unictype/category-Pf-tests (Files): Likewise.
6954         * modules/unictype/category-Pi-tests (Files): Likewise.
6955         * modules/unictype/category-Po-tests (Files): Likewise.
6956         * modules/unictype/category-Ps-tests (Files): Likewise.
6957         * modules/unictype/category-S-tests (Files): Likewise.
6958         * modules/unictype/category-Sc-tests (Files): Likewise.
6959         * modules/unictype/category-Sk-tests (Files): Likewise.
6960         * modules/unictype/category-Sm-tests (Files): Likewise.
6961         * modules/unictype/category-So-tests (Files): Likewise.
6962         * modules/unictype/category-Z-tests (Files): Likewise.
6963         * modules/unictype/category-Zl-tests (Files): Likewise.
6964         * modules/unictype/category-Zp-tests (Files): Likewise.
6965         * modules/unictype/category-Zs-tests (Files): Likewise.
6966         * modules/unictype/category-and-not-tests (Files): Likewise.
6967         * modules/unictype/category-and-tests (Files): Likewise.
6968         * modules/unictype/category-byname-tests (Files): Likewise.
6969         * modules/unictype/category-name-tests (Files): Likewise.
6970         * modules/unictype/category-none-tests (Files): Likewise.
6971         * modules/unictype/category-of-tests (Files): Likewise.
6972         * modules/unictype/category-or-tests (Files): Likewise.
6973         * modules/unictype/category-test-withtable-tests (Files): Likewise.
6974         * modules/unictype/combining-class-tests (Files): Likewise.
6975         * modules/unictype/ctype-alnum-tests (Files): Likewise.
6976         * modules/unictype/ctype-alpha-tests (Files): Likewise.
6977         * modules/unictype/ctype-blank-tests (Files): Likewise.
6978         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
6979         * modules/unictype/ctype-digit-tests (Files): Likewise.
6980         * modules/unictype/ctype-graph-tests (Files): Likewise.
6981         * modules/unictype/ctype-lower-tests (Files): Likewise.
6982         * modules/unictype/ctype-print-tests (Files): Likewise.
6983         * modules/unictype/ctype-punct-tests (Files): Likewise.
6984         * modules/unictype/ctype-space-tests (Files): Likewise.
6985         * modules/unictype/ctype-upper-tests (Files): Likewise.
6986         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
6987         * modules/unictype/decimal-digit-tests (Files): Likewise.
6988         * modules/unictype/digit-tests (Files): Likewise.
6989         * modules/unictype/mirror-tests (Files): Likewise.
6990         * modules/unictype/numeric-tests (Files): Likewise.
6991         * modules/unictype/property-alphabetic-tests (Files): Likewise.
6992         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
6993         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
6994         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
6995         Likewise.
6996         * modules/unictype/property-bidi-block-separator-tests (Files):
6997         Likewise.
6998         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
6999         Likewise.
7000         * modules/unictype/property-bidi-common-separator-tests (Files):
7001         Likewise.
7002         * modules/unictype/property-bidi-control-tests (Files): Likewise.
7003         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
7004         Likewise.
7005         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
7006         Likewise.
7007         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
7008         Likewise.
7009         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
7010         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
7011         Likewise.
7012         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
7013         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
7014         Likewise.
7015         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
7016         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
7017         * modules/unictype/property-bidi-segment-separator-tests (Files):
7018         Likewise.
7019         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
7020         * modules/unictype/property-byname-tests (Files): Likewise.
7021         * modules/unictype/property-combining-tests (Files): Likewise.
7022         * modules/unictype/property-composite-tests (Files): Likewise.
7023         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
7024         * modules/unictype/property-dash-tests (Files): Likewise.
7025         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
7026         * modules/unictype/property-default-ignorable-code-point-tests (Files):
7027         Likewise.
7028         * modules/unictype/property-deprecated-tests (Files): Likewise.
7029         * modules/unictype/property-diacritic-tests (Files): Likewise.
7030         * modules/unictype/property-extender-tests (Files): Likewise.
7031         * modules/unictype/property-format-control-tests (Files): Likewise.
7032         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
7033         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
7034         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
7035         * modules/unictype/property-hex-digit-tests (Files): Likewise.
7036         * modules/unictype/property-hyphen-tests (Files): Likewise.
7037         * modules/unictype/property-id-continue-tests (Files): Likewise.
7038         * modules/unictype/property-id-start-tests (Files): Likewise.
7039         * modules/unictype/property-ideographic-tests (Files): Likewise.
7040         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
7041         * modules/unictype/property-ids-trinary-operator-tests (Files):
7042         Likewise.
7043         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
7044         * modules/unictype/property-iso-control-tests (Files): Likewise.
7045         * modules/unictype/property-join-control-tests (Files): Likewise.
7046         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
7047         * modules/unictype/property-line-separator-tests (Files): Likewise.
7048         * modules/unictype/property-logical-order-exception-tests (Files):
7049         Likewise.
7050         * modules/unictype/property-lowercase-tests (Files): Likewise.
7051         * modules/unictype/property-math-tests (Files): Likewise.
7052         * modules/unictype/property-non-break-tests (Files): Likewise.
7053         * modules/unictype/property-not-a-character-tests (Files): Likewise.
7054         * modules/unictype/property-numeric-tests (Files): Likewise.
7055         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
7056         * modules/unictype/property-other-default-ignorable-code-point-tests
7057         (Files): Likewise.
7058         * modules/unictype/property-other-grapheme-extend-tests (Files):
7059         Likewise.
7060         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
7061         * modules/unictype/property-other-id-start-tests (Files): Likewise.
7062         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
7063         * modules/unictype/property-other-math-tests (Files): Likewise.
7064         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
7065         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
7066         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
7067         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
7068         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
7069         * modules/unictype/property-private-use-tests (Files): Likewise.
7070         * modules/unictype/property-punctuation-tests (Files): Likewise.
7071         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
7072         * modules/unictype/property-radical-tests (Files): Likewise.
7073         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
7074         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
7075         * modules/unictype/property-space-tests (Files): Likewise.
7076         * modules/unictype/property-terminal-punctuation-tests (Files):
7077         Likewise.
7078         * modules/unictype/property-test-tests (Files): Likewise.
7079         * modules/unictype/property-titlecase-tests (Files): Likewise.
7080         * modules/unictype/property-unassigned-code-value-tests (Files):
7081         Likewise.
7082         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
7083         * modules/unictype/property-uppercase-tests (Files): Likewise.
7084         * modules/unictype/property-variation-selector-tests (Files): Likewise.
7085         * modules/unictype/property-white-space-tests (Files): Likewise.
7086         * modules/unictype/property-xid-continue-tests (Files): Likewise.
7087         * modules/unictype/property-xid-start-tests (Files): Likewise.
7088         * modules/unictype/property-zero-width-tests (Files): Likewise.
7089         * modules/unictype/scripts-tests (Files): Likewise.
7090         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
7091         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
7092         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
7093         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
7094         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
7095         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
7096         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
7097         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
7098         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
7099         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
7100         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
7101         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
7102         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
7103         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
7104         * modules/uninorm/composition-tests (Files): Likewise.
7105         * modules/uninorm/decomposing-form-tests (Files): Likewise.
7106         * modules/uninorm/decomposition-tests (Files): Likewise.
7107         * modules/uninorm/filter-tests (Files): Likewise.
7108         * modules/uninorm/nfc-tests (Files): Likewise.
7109         * modules/uninorm/nfd-tests (Files): Likewise.
7110         * modules/uninorm/nfkc-tests (Files): Likewise.
7111         * modules/uninorm/nfkd-tests (Files): Likewise.
7112         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
7113         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
7114         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
7115         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
7116         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
7117         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
7118         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
7119         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
7120         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
7121         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
7122         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
7123         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
7124         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
7125         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
7126         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
7127         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
7128         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
7129         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
7130         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
7131         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
7132         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
7133         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
7134         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
7135         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
7136         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
7137         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
7138         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
7139         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
7140         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
7141         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
7142         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
7143         * modules/uniwidth/u8-width-tests (Files): Likewise.
7144         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
7145         * modules/uniwidth/u16-width-tests (Files): Likewise.
7146         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
7147         * modules/uniwidth/u32-width-tests (Files): Likewise.
7148         * modules/uniwidth/width-tests (Files): Likewise.
7149         * modules/unlink-tests (Files): Likewise.
7150         * modules/unsetenv-tests (Files): Likewise.
7151         * modules/usleep-tests (Files): Likewise.
7152         * modules/utimens-tests (Files): Likewise.
7153         * modules/utimensat-tests (Files): Likewise.
7154         * modules/vasnprintf-posix-tests (Files): Likewise.
7155         * modules/vasnprintf-tests (Files): Likewise.
7156         * modules/vasprintf-posix-tests (Files): Likewise.
7157         * modules/vasprintf-tests (Files): Likewise.
7158         * modules/vdprintf-posix-tests (Files): Likewise.
7159         * modules/vfprintf-posix-tests (Files): Likewise.
7160         * modules/vprintf-posix-tests (Files): Likewise.
7161         * modules/vsnprintf-posix-tests (Files): Likewise.
7162         * modules/vsnprintf-tests (Files): Likewise.
7163         * modules/vsprintf-posix-tests (Files): Likewise.
7164         * modules/wcrtomb-tests (Files): Likewise.
7165         * modules/wcsnrtombs-tests (Files): Likewise.
7166         * modules/wcsrtombs-tests (Files): Likewise.
7167         * modules/wctype-tests (Files): Likewise.
7168         * modules/wcwidth-tests (Files): Likewise.
7169         * modules/xmemdup0-tests (Files): Likewise.
7170         * modules/xprintf-posix-tests (Files): Likewise.
7171         * modules/xvasprintf-tests (Files): Likewise.
7172
7173 2009-12-24  Eric Blake  <ebb9@byu.net>
7174
7175         test-nanosleep: fix typo
7176         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
7177         patch.
7178         Reported by Bruno Haible.
7179
7180 2009-12-24  Bruno Haible  <bruno@clisp.org>
7181
7182         Reduce namespace pollution on glibc systems.
7183         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
7184         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
7185         systems.
7186         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
7187         <getopt.h> on glibc systems.
7188         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
7189         systems.
7190         * lib/fcntl.c: Include <unistd.h> here instead.
7191
7192 2009-12-24  Bruno Haible  <bruno@clisp.org>
7193
7194         * lib/stdlib.in.h (includes): Fix typo in today's commit.
7195
7196 2009-12-24  Eric Blake  <ebb9@byu.net>
7197
7198         tests: add signature checks
7199         * tests/signature.h (SIGNATURE_CHECK): New file.
7200         * modules/atexit-tests (Files): Use it.
7201         * modules/btowc-tests (Files): Likewise.
7202         * modules/canonicalize-lgpl-tests (Files): Likewise.
7203         * modules/ceilf-tests (Files): Likewise.
7204         * modules/ceill-tests (Files): Likewise.
7205         * modules/chown-tests (Files): Likewise.
7206         * modules/dprintf-posix-tests (Files): Likewise.
7207         * modules/dup2-tests (Files): Likewise.
7208         * modules/dup3-tests (Files): Likewise.
7209         * modules/duplocale-tests (Files): Likewise.
7210         * modules/fchdir-tests (Files): Likewise.
7211         * modules/fcntl-tests (Files): Likewise.
7212         * modules/fdopendir-tests (Files): Likewise.
7213         * modules/fflush-tests (Files): Likewise.
7214         * modules/flock-tests (Files): Likewise.
7215         * modules/floorf-tests (Files): Likewise.
7216         * modules/floorl-tests (Files): Likewise.
7217         * modules/fnmatch-tests (Files): Likewise.
7218         * modules/fopen-tests (Files): Likewise.
7219         * modules/fprintf-posix-tests (Files): Likewise.
7220         * modules/freopen-tests (Files): Likewise.
7221         * modules/frexp-nolibm-tests (Files): Likewise.
7222         * modules/frexp-tests (Files): Likewise.
7223         * modules/frexpl-nolibm-tests (Files): Likewise.
7224         * modules/frexpl-tests (Files): Likewise.
7225         * modules/fseek-tests (Files): Likewise.
7226         * modules/fseeko-tests (Files): Likewise.
7227         * modules/fsync-tests (Files): Likewise.
7228         * modules/ftell-tests (Files): Likewise.
7229         * modules/ftello-tests (Files): Likewise.
7230         * modules/futimens-tests (Files): Likewise.
7231         * modules/getaddrinfo-tests (Files): Likewise.
7232         * modules/getcwd-tests (Files): Likewise.
7233         * modules/getdelim-tests (Files): Likewise.
7234         * modules/getdtablesize-tests (Files): Likewise.
7235         * modules/getgroups-tests (Files): Likewise.
7236         * modules/gethostname-tests (Files): Likewise.
7237         * modules/getline-tests (Files): Likewise.
7238         * modules/getopt-posix-tests (Files): Likewise.
7239         * modules/gettimeofday-tests (Files): Likewise.
7240         * modules/glob-tests (Files): Likewise.
7241         * modules/iconv-tests (Files): Likewise.
7242         * modules/inet_ntop-tests (Files): Likewise.
7243         * modules/inet_pton-tests (Files): Likewise.
7244         * modules/isblank-tests (Files): Likewise.
7245         * modules/lchown-tests (Files): Likewise.
7246         * modules/ldexpl-tests (Files): Likewise.
7247         * modules/link-tests (Files): Likewise.
7248         * modules/linkat-tests (Files): Likewise.
7249         * modules/lseek-tests (Files): Likewise.
7250         * modules/lstat-tests (Files): Likewise.
7251         * modules/mbrtowc-tests (Files): Likewise.
7252         * modules/mbsinit-tests (Files): Likewise.
7253         * modules/mbsnrtowcs-tests (Files): Likewise.
7254         * modules/mbsrtowcs-tests (Files): Likewise.
7255         * modules/memchr-tests (Files): Likewise.
7256         * modules/memcmp-tests (Files): Likewise.
7257         * modules/memmem-tests (Files): Likewise.
7258         * modules/memrchr-tests (Files): Likewise.
7259         * modules/mkdir-tests (Files): Likewise.
7260         * modules/mkfifo-tests (Files): Likewise.
7261         * modules/mkfifoat-tests (Files): Likewise.
7262         * modules/mknod-tests (Files): Likewise.
7263         * modules/nanosleep-tests (Files): Likewise.
7264         * modules/nl_langinfo-tests (Files): Likewise.
7265         * modules/obstack-printf-tests (Files): Likewise.
7266         * modules/open-tests (Files): Likewise.
7267         * modules/openat-tests (Files): Likewise.
7268         * modules/perror-tests (Files): Likewise.
7269         * modules/pipe2-tests (Files): Likewise.
7270         * modules/poll-tests (Files): Likewise.
7271         * modules/popen-tests (Files): Likewise.
7272         * modules/posix_spawn-tests (Files): Likewise.
7273         * modules/posix_spawnp-tests (Files): Likewise.
7274         * modules/pread-tests (Files): Likewise.
7275         * modules/printf-posix-tests (Files): Likewise.
7276         * modules/pty-tests (Files): Likewise.
7277         * modules/random_r-tests (Files): Likewise.
7278         * modules/rawmemchr-tests (Files): Likewise.
7279         * modules/readlink-tests (Files): Likewise.
7280         * modules/remove-tests (Files): Likewise.
7281         * modules/rename-tests (Files): Likewise.
7282         * modules/renameat-tests (Files): Likewise.
7283         * modules/rmdir-tests (Files): Likewise.
7284         * modules/round-tests (Files): Likewise.
7285         * modules/roundf-tests (Files): Likewise.
7286         * modules/roundl-tests (Files): Likewise.
7287         * modules/select-tests (Files): Likewise.
7288         * modules/setenv-tests (Files): Likewise.
7289         * modules/sigaction-tests (Files): Likewise.
7290         * modules/sleep-tests (Files): Likewise.
7291         * modules/snprintf-posix-tests (Files): Likewise.
7292         * modules/snprintf-tests (Files): Likewise.
7293         * modules/sprintf-posix-tests (Files): Likewise.
7294         * modules/stat-tests (Files): Likewise.
7295         * modules/strcasestr-tests (Files): Likewise.
7296         * modules/strchrnul-tests (Files): Likewise.
7297         * modules/strerror-tests (Files): Likewise.
7298         * modules/strsignal-tests (Files): Likewise.
7299         * modules/strstr-tests (Files): Likewise.
7300         * modules/strtod-tests (Files): Likewise.
7301         * modules/strverscmp-tests (Files): Likewise.
7302         * modules/symlink-tests (Files): Likewise.
7303         * modules/symlinkat-tests (Files): Likewise.
7304         * modules/times-tests (Files): Likewise.
7305         * modules/trunc-tests (Files): Likewise.
7306         * modules/truncf-tests (Files): Likewise.
7307         * modules/truncl-tests (Files): Likewise.
7308         * modules/tsearch-tests (Files): Likewise.
7309         * modules/uname-tests (Files): Likewise.
7310         * modules/unlink-tests (Files): Likewise.
7311         * modules/unsetenv-tests (Files): Likewise.
7312         * modules/usleep-tests (Files): Likewise.
7313         * modules/utimensat-tests (Files): Likewise.
7314         * modules/vasprintf-tests (Files): Likewise.
7315         * modules/vdprintf-posix-tests (Files): Likewise.
7316         * modules/vfprintf-posix-tests (Files): Likewise.
7317         * modules/vprintf-posix-tests (Files): Likewise.
7318         * modules/vsnprintf-posix-tests (Files): Likewise.
7319         * modules/vsnprintf-tests (Files): Likewise.
7320         * modules/vsprintf-posix-tests (Files): Likewise.
7321         * modules/wcrtomb-tests (Files): Likewise.
7322         * modules/wcsnrtombs-tests (Files): Likewise.
7323         * modules/wcsrtombs-tests (Files): Likewise.
7324         * modules/wcwidth-tests (Files): Likewise.
7325         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
7326         * tests/test-isinf.c (isinf): Likewise.
7327         * tests/test-isnan.c (isnan): Likewise.
7328         * tests/test-signbit.c (signbit): Likewise.
7329         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
7330         declaration, either as macro or with correct signature.
7331         (select): Ensure function under test is declared with correct
7332         signature in correct header.
7333         * tests/test-atexit.c (atexit): Likewise.
7334         * tests/test-btowc.c (btowc): Likewise.
7335         * tests/test-canonicalize-lgpl.c (realpath)
7336         (canonicalize_file_name): Likewise.
7337         * tests/test-ceilf1.c (ceilf): Likewise.
7338         * tests/test-ceill.c (ceill): Likewise.
7339         * tests/test-chown.c (chown): Likewise.
7340         * tests/test-dprintf-posix.c (dprintf): Likewise.
7341         * tests/test-dup2.c (dup2): Likewise.
7342         * tests/test-dup3.c (dup3): Likewise.
7343         * tests/test-duplocale.c (duplocale): Likewise.
7344         * tests/test-fchdir.c (fchdir): Likewise.
7345         * tests/test-fchownat.c (fchownat): Likewise.
7346         * tests/test-fcntl.c (fcntl): Likewise.
7347         * tests/test-fdopendir.c (fdopendir): Likewise.
7348         * tests/test-fflush.c (fflush): Likewise.
7349         * tests/test-flock.c (flock): Likewise.
7350         * tests/test-floorf1.c (floorf): Likewise.
7351         * tests/test-floorl.c (floorl): Likewise.
7352         * tests/test-fnmatch.c (fnmatch): Likewise.
7353         * tests/test-fopen.c (fopen): Likewise.
7354         * tests/test-fprintf-posix.c (fprintf): Likewise.
7355         * tests/test-freopen.c (freopen): Likewise.
7356         * tests/test-frexp.c (frexp): Likewise.
7357         * tests/test-frexpl.c (frexpl): Likewise.
7358         * tests/test-fseek.c (fseek): Likewise.
7359         * tests/test-fseeko.c (fseeko): Likewise.
7360         * tests/test-fstatat.c (fstatat): Likewise.
7361         * tests/test-fsync.c (fsync): Likewise.
7362         * tests/test-ftell.c (ftell): Likewise.
7363         * tests/test-ftello.c (ftello): Likewise.
7364         * tests/test-futimens.c (futimens): Likewise.
7365         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
7366         (gai_strerror): Likewise.
7367         * tests/test-getcwd.c (getcwd): Likewise.
7368         * tests/test-getdelim.c (getdelim): Likewise.
7369         * tests/test-getdtablesize.c (getdtablesize): Likewise.
7370         * tests/test-getgroups.c (getgroups): Likewise.
7371         * tests/test-gethostname.c (gethostname): Likewise.
7372         * tests/test-getline.c (getline): Likewise.
7373         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
7374         Likewise.
7375         * tests/test-gettimeofday.c (gettimeofday): Likewise.
7376         * tests/test-glob.c (glob, globfree): Likewise.
7377         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
7378         * tests/test-inet_ntop.c (inet_ntop): Likewise.
7379         * tests/test-inet_pton.c (inet_pton): Likewise.
7380         * tests/test-isblank.c (isblank): Likewise.
7381         * tests/test-lchown.c (lchown): Likewise.
7382         * tests/test-ldexpl.c (ldexpl): Likewise.
7383         * tests/test-link.c (link): Likewise.
7384         * tests/test-linkat.c (linkat): Likewise.
7385         * tests/test-lseek.c (lseek): Likewise.
7386         * tests/test-lstat.c (lstat): Likewise.
7387         * tests/test-mbrtowc.c (mbrtowc): Likewise.
7388         * tests/test-mbsinit.c (mbsinit): Likewise.
7389         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
7390         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
7391         * tests/test-memchr.c (memchr): Likewise.
7392         * tests/test-memcmp.c (memcmp): Likewise.
7393         * tests/test-memmem.c (memmem): Likewise.
7394         * tests/test-memrchr.c (memrchr): Likewise.
7395         * tests/test-mkdir.c (mkdir): Likewise.
7396         * tests/test-mkdirat.c (mkdirat): Likewise.
7397         * tests/test-mkfifo.c (mkfifo): Likewise.
7398         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
7399         * tests/test-mknod.c (mknod): Likewise.
7400         * tests/test-nanosleep.c (nanosleep): Likewise.
7401         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
7402         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
7403         Likewise.
7404         * tests/test-open.c (open): Likewise.
7405         * tests/test-openat.c (openat): Likewise.
7406         * tests/test-perror.c (perror): Likewise.
7407         * tests/test-pipe2.c (pipe2): Likewise.
7408         * tests/test-poll.c (poll): Likewise.
7409         * tests/test-popen.c (popen, pclose): Likewise.
7410         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
7411         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
7412         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
7413         (posix_spawn_file_actions_destroy)
7414         (posix_spawn_file_actions_addclose)
7415         (posix_spawn_file_actions_addopen)
7416         (posix_spawn_file_actions_adddup2): Likewise.
7417         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
7418         * tests/test-pread.c (pread): Likewise.
7419         * tests/test-printf-posix.c (printf): Likewise.
7420         * tests/test-pty.c (openpty, forkpty): Likewise.
7421         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
7422         (random_r): Likewise.
7423         * tests/test-rawmemchr.c (rawmemchr): Likewise.
7424         * tests/test-readlink.c (readlink): Likewise.
7425         * tests/test-remove.c (remove): Likewise.
7426         * tests/test-rename.c (rename): Likewise.
7427         * tests/test-renameat.c (renameat): Likewise.
7428         * tests/test-rmdir.c (rmdir): Likewise.
7429         * tests/test-round1.c (round): Likewise.
7430         * tests/test-roundf1.c (roundf): Likewise.
7431         * tests/test-roundl.c (roundl): Likewise.
7432         * tests/test-setenv.c (setenv): Likewise.
7433         * tests/test-sigaction.c (sigaction): Likewise.
7434         * tests/test-sleep.c (sleep): Likewise.
7435         * tests/test-snprintf.c (snprintf): Likewise.
7436         * tests/test-sprintf-posix.c (sprintf): Likewise.
7437         * tests/test-stat.c (stat): Likewise.
7438         * tests/test-stpncpy.c (stpncpy): Likewise.
7439         * tests/test-strcasestr.c (strcasestr): Likewise.
7440         * tests/test-strchrnul.c (strchrnul): Likewise.
7441         * tests/test-strerror.c (strerror): Likewise.
7442         * tests/test-strsignal.c (strsignal): Likewise.
7443         * tests/test-strstr.c (strstr): Likewise.
7444         * tests/test-strtod.c (strtod): Likewise.
7445         * tests/test-strverscmp.c (strverscmp): Likewise.
7446         * tests/test-symlink.c (symlink): Likewise.
7447         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
7448         * tests/test-times.c (times): Likewise.
7449         * tests/test-trunc1.c (trunc): Likewise.
7450         * tests/test-truncf1.c (truncf): Likewise.
7451         * tests/test-truncl.c (truncl): Likewise.
7452         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
7453         Likewise.
7454         * tests/test-uname.c (uname): Likewise.
7455         * tests/test-unlink.c (unlink): Likewise.
7456         * tests/test-unlinkat.c (unlinkat): Likewise.
7457         * tests/test-unsetenv.c (unsetenv): Likewise.
7458         * tests/test-usleep.c (usleep): Likewise.
7459         * tests/test-utimensat.c (utimensat): Likewise.
7460         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
7461         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
7462         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
7463         * tests/test-vprintf-posix.c (vprintf): Likewise.
7464         * tests/test-vsnprintf.c (vsnprintf): Likewise.
7465         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
7466         * tests/test-wcrtomb.c (wcrtomb): Likewise.
7467         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
7468         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
7469         * tests/test-wcwidth.c (wcwidth): Likewise.
7470
7471         build: pull in conditional headers during GNULIB_POSIXCHECK
7472         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
7473         definitions from any conditionally-included headers.
7474         * lib/stdlib.in.h (includes): Likewise.
7475         * lib/unistd.in.h (includes): Likewise.
7476
7477 2009-12-24  Bruno Haible  <bruno@clisp.org>
7478
7479         * tests/test-argv-iter.c: Include header file being tested immediately
7480         after config.h.
7481         * tests/test-base64.c: Likewise.
7482         * tests/test-flock.c: Likewise.
7483         * tests/test-fsync.c: Likewise.
7484         * tests/test-getdate.c: Likewise.
7485         * tests/test-getndelim2.c: Likewise.
7486         * tests/test-isfinite.c: Likewise.
7487         * tests/test-isinf.c: Likewise.
7488         * tests/test-strerror.c: Likewise.
7489         * tests/test-strsignal.c: Likewise.
7490
7491 2009-12-23  Eric Blake  <ebb9@byu.net>
7492
7493         unistd: work around cygwin bug
7494         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
7495         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
7496         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
7497
7498 2009-12-23  Bruno Haible  <bruno@clisp.org>
7499
7500         localename: More tests.
7501         * tests/test-localename.c (SIZEOF): New macro.
7502         (categories): New variable.
7503         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
7504         test_locale_name_default): Add test w.r.t. thread locale.
7505         (test_locale_name_thread): New function.
7506         (main): Invoke it.
7507
7508         localename: Make aware of thread locale.
7509         * lib/localename.h (gl_locale_name_thread): New declaration.
7510         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
7511         behaviour with respect to thread locale.
7512         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
7513         <langinfo.h>, glthread/lock.h.
7514         (SIZE_BITS): New macro.
7515         (string_hash): New function.
7516         (struct hash_node): New type.
7517         (HASH_TABLE_SIZE): New macro.
7518         (struniq_hash_table, struniq_lock): New variables.
7519         (struniq): New function.
7520         (gl_locale_name_thread): New function.
7521         (gl_locale_name): Invoke it.
7522         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
7523         * modules/localename (Depends-on): Add lock.
7524         Reported by Mike Gran <spk121@yahoo.com>.
7525
7526 2009-12-23  Eric Blake  <ebb9@byu.net>
7527
7528         va-args: new module
7529         * modules/va-args: New file.
7530         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
7531         * MODULES.html.sh (Core language properties): Mention it.
7532
7533         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
7534         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
7535         named alias for __attribute__((__unused__)).
7536         * lib/chown.c: Update client.
7537         * lib/fchmodat.c: Likewise.
7538         * lib/fts.c: Likewise.
7539         * lib/getdate.y: Likewise.
7540         * lib/getgroups.c: Likewise.
7541         * lib/getopt.c: Likewise.
7542         * lib/getugroups.c: Likewise.
7543         * lib/mkdir.c: Likewise.
7544         * lib/mkfifo.c: Likewise.
7545         * lib/mkfifoat.c: Likewise.
7546         * lib/mknod.c: Likewise.
7547         * lib/mknodat.c: Likewise.
7548         * lib/readlink.c: Likewise.
7549         * lib/se-context.in.h: Likewise.
7550         * lib/se-selinux.in.h: Likewise.
7551         * lib/sockets.c: Likewise.
7552         * lib/symlink.c: Likewise.
7553         * lib/symlinkat.c: Likewise.
7554         * lib/unicodeio.c: Likewise.
7555         * lib/unistr.h: Likewise.
7556         * tests/test-areadlink.c: Likewise.
7557         * tests/test-areadlinkat.c: Likewise.
7558         * tests/test-filenamecat.c: Likewise.
7559         * tests/test-fseeko.c: Likewise.
7560         * tests/test-ftello.c: Likewise.
7561         * tests/test-getdate.c: Likewise.
7562         * tests/test-getgroups.c: Likewise.
7563         * tests/test-gethostname.c: Likewise.
7564         * tests/test-quotearg.c: Likewise.
7565         * tests/test-version-etc.c: Likewise.
7566         * tests/test-xalloc-die.c: Likewise.
7567         * tests/test-xfprintf-posix.c: Likewise.
7568         * tests/test-xprintf-posix.c: Likewise.
7569         * tests/test-xvasprintf.c: Likewise.
7570
7571         tests: avoid compiler warnings
7572         * tests/test-fcntl.c (main): Delete unused parameters.
7573         * tests/test-freopen-safer.c (main): Likewise.
7574         * tests/test-xalloc-die.c (main): Mark unused parameters.
7575         * tests/test-fseeko.c (main): Likewise.
7576         * tests/test-ftello.c (main): Likewise.
7577         * tests/test-nanosleep.c (main): Avoid declaration warning.
7578         * tests/test-sleep.c (main): Likewise.
7579         * tests/test-unsetenv.c (main): Silence warning about string
7580         literal.
7581         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
7582
7583 2009-12-23  Bruno Haible  <bruno@clisp.org>
7584
7585         * tests/test-localename.c (test_locale_name): New function, extracted
7586         from main. Also test mixed situations.
7587         (test_locale_name_posix, test_locale_name_environ,
7588         test_locale_name_default): New functions.
7589         (main): Invoke them all.
7590         * modules/localename-tests (configure.ac): Test for newlocale.
7591
7592 2009-12-23  Bruno Haible  <bruno@clisp.org>
7593
7594         unistd: Ensure getcwd gets declared before being overridden.
7595         * lib/unistd.in.h: Conditionally include <io.h>.
7596
7597 2009-12-22  Bruno Haible  <bruno@clisp.org>
7598
7599         wchar: Diagnose broken combination of glibc and gcc versions and flags.
7600         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
7601         (gl_WCHAR_H): Invoke it.
7602         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
7603         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
7604         Reported by Karl Berry <karl@freefriends.org>.
7605
7606 2009-12-22  Eric Blake  <ebb9@byu.net>
7607
7608         math, unistd: avoid redundant includes
7609         * lib/math.in.h (isnan): No need to re-include <math.h>.
7610         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
7611
7612         getsubopt: work around cygwin bug
7613         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
7614         avoid conflicting with system getsubopt.
7615         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
7616         bug.
7617
7618         getopt: synchronize from glibc
7619         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
7620         parameter order.  Adjust all callers.
7621         (_getopt_internal_r, main): Adjust quoting in error messages.
7622         Drop considerations for outdated POSIX 1003.2 error message.
7623         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
7624         callers.
7625         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
7626
7627         test-getopt: test stderr behavior
7628         * modules/getopt-posix-tests (Depends-on): Add dup2.
7629         * tests/test-getopt.c (ASSERT): Avoid stderr.
7630         (main): Move stderr to a temporary file.
7631         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
7632         Instead, add parameter to inform caller if output occurred.
7633         (test_getopt): Adjust all existing tests to expect silence, and
7634         add new tests of leading ":".
7635         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
7636         glibc shortcomings with leading "-:" or "+:" in optstring.
7637         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7638         Likewise.
7639         * doc/posix-functions/getopt.texi (getopt): Likewise.
7640
7641         test-getopt: enhance test
7642         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
7643         supports optind=0.
7644         * tests/test-getopt.c (OPTIND_MIN): Move...
7645         * tests/test-getopt.h (OPTIND_MIN): ...here.
7646         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
7647         Require that optind=0 works, since modern BSD supports it in
7648         addition to optreset, and since coreutils expects it.
7649         (test_getopt_long_only): New test.
7650         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
7651         glibc shortcomings with 'W;', and enforcement of optind=0.
7652         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7653         Likewise.
7654
7655 2009-12-21  Bruno Haible  <bruno@clisp.org>
7656
7657         localename: Improvements for MacOS X and Cygwin.
7658         * lib/localename.h (gl_locale_name_environ): New declaration.
7659         * lib/localename.c (gl_locale_name_environ): New function, extracted from
7660         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
7661         (gl_locale_name_posix): Invoke it.
7662         (gl_locale_name_default): Add comments. Use Windows native API also on
7663         Cygwin.
7664
7665 2009-12-21  Bruno Haible  <bruno@clisp.org>
7666
7667         Update list of Win32 locale ids.
7668         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
7669         (LANG_SAMI): Renamed from LANG_SAAMI.
7670         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
7671         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
7672         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
7673         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
7674         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
7675         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
7676         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
7677         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
7678         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
7679         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
7680         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
7681         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
7682         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
7683         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
7684         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
7685         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
7686         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
7687         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
7688         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
7689         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
7690         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
7691         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
7692         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
7693         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
7694         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
7695         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
7696         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
7697         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
7698         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
7699         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
7700         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
7701         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
7702         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
7703         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
7704         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
7705         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
7706         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
7707         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
7708         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
7709         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
7710         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
7711         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
7712         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
7713         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
7714         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
7715         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
7716         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
7717         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
7718         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
7719         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
7720         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
7721         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
7722         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
7723         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
7724         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
7725         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
7726         Add more languages and countries for Sami, Sorbian. Add more countries
7727         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
7728         for Pashto. Change country for Syriac, Tswana.
7729
7730 2009-12-21  Eric Blake  <ebb9@byu.net>
7731
7732         test-utimens: avoid spurious failure
7733         * tests/test-chown.h (nap): Factor...
7734         * tests/nap.h: ...into new file.
7735         * tests/test-lchown.h (nap): Avoid duplication.
7736         * tests/test-utimens-common.h (nap): Use shared implementation,
7737         necessary on file systems with 1-second resolution.
7738         * modules/chown-tests (Files): Include new file.
7739         * modules/fdutimensat-tests (Files): Likewise.
7740         * modules/futimens-tests (Files): Likewise.
7741         * modules/lchown-tests (Files): Likewise.
7742         * modules/openat-tests (Files): Likewise.
7743         * modules/utimens-tests (Files): Likewise.
7744         * modules/utimensat-tests (Files): Likewise.
7745
7746 2009-12-19  Eric Blake  <ebb9@byu.net>
7747
7748         futimens, utimensat: work around Linux bug
7749         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
7750         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
7751         * lib/utimensat.c (rpl_utimensat): Work around it.
7752         * lib/futimens.c (rpl_futimens): Adjust comment.
7753
7754         utimens: work around Linux ctime bug
7755         * lib/utimens.c (detect_ctime_bug): New helper function.
7756         (update_timespec): Differentiate between workaround needed for
7757         this bug vs. what is needed for systems that lack utimensat.
7758         (fdutimens, lutimens): Work around bug.
7759
7760         utimens: check for ctime update
7761         * tests/test-utimens-common.h (check_ctime): Define.
7762         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
7763         * tests/test-futimens.h (test_futimens): Likewise.
7764         * tests/test-lutimens.h (test_lutimens): Likewise.
7765         * doc/posix-functions/futimens.texi (futimens): Document the bug.
7766         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
7767
7768 2009-12-19  Bruno Haible  <bruno@clisp.org>
7769
7770         dprintf-posix: Check against memory leak fixed on 2009-12-15.
7771         * tests/test-dprintf-posix2.sh: New file.
7772         * tests/test-dprintf-posix2.c: New file.
7773         * modules/dprintf-posix-tests (Files): Add them.
7774         (configure.ac): Check for getrlimit and setrlimit.
7775         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
7776
7777 2009-12-19  Bruno Haible  <bruno@clisp.org>
7778
7779         fprintf-posix: Check against memory leak fixed on 2009-12-15.
7780         * tests/test-fprintf-posix3.sh: New file.
7781         * tests/test-fprintf-posix3.c: New file.
7782         * modules/fprintf-posix-tests (Files): Add them.
7783         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
7784
7785 2009-12-19  Eric Blake  <ebb9@byu.net>
7786
7787         dirfd: fix prototype
7788         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
7789         * lib/dirfd.c (dirfd): Likewise.
7790
7791         canonicalize: reduce memory usage
7792         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
7793         allocation to size.
7794         Reported by Solar Designer <solar@openwall.com>.
7795
7796 2009-12-19  Bruno Haible  <bruno@clisp.org>
7797
7798         New module attribute 'Applicability'.
7799         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
7800         * gnulib-tool: New option --extract-applicability.
7801         (func_usage): Document it.
7802         (sed_extract_prog): Recognize it.
7803         (func_get_applicability): New function.
7804         (func_import): Generalize handling of 'link-warning' module.
7805         * modules/link-warning (Applicability): New section.
7806         * modules/arg-nonnull (Applicability): New section.
7807         Repoted by Simon Josefsson <simon@josefsson.org>.
7808
7809 2009-12-19  Bruno Haible  <bruno@clisp.org>
7810
7811         fflush: tweak
7812         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
7813         * lib/fseeko.c (rpl_fseeko): Likewise.
7814
7815 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
7816
7817         * lib/gl_list.h: Fix typo in comment.
7818
7819 2009-12-16  Eric Blake  <ebb9@byu.net>
7820
7821         fcntl: use to simplify other modules
7822         * modules/cloexec (Depends-on): Add fcntl.
7823         * modules/fchdir (Depends-on): Likewise.
7824         * modules/fd-safer-flag (Depends-on): Likewise.
7825         * modules/unistd-safer (Depends-on): Likewise.
7826         * modules/dup3 (configure.ac): Set module indicator.
7827         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
7828         missing.
7829         * lib/fchdir.c (_gl_register_dup): Fix comment.
7830         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
7831         * lib/dup-safer.c (dup_safer): Likewise.
7832         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
7833         * lib/dup3.c (dup3): Likewise.
7834         * tests/test-fchdir.c (main): Enhance test.
7835         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
7836
7837         fcntl: port portions of fcntl to mingw
7838         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
7839         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
7840         replacement for mingw.
7841         * modules/fcntl (Description): Update.
7842         (Depends-on): Add dup2.
7843         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
7844         * modules/fcntl-h (Makefile.am): Substitute it.
7845         * lib/fcntl.in.h (fcntl): Update declaration.
7846         (F_DUPFD, F_GETFD): New macros, when needed.
7847         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
7848         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
7849         * tests/test-fcntl.c (check_flags, main): Enhance test for items
7850         we now guarantee.
7851
7852         fcntl: work around cygwin bug in F_DUPFD
7853         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
7854         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
7855         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
7856         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
7857         * doc/posix-functions/fcntl.texi (fcntl): Document it.
7858
7859         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
7860         * modules/fcntl (Files): List new files.
7861         (configure.ac): Run a test.
7862         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
7863         * lib/fcntl.c (rpl_fcntl): Likewise.
7864         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
7865         (gl_FCNTL_H): Always replace fcntl.h.
7866         * modules/fcntl-h (Makefile.am): Substitute witnesses.
7867         * lib/fcntl.in.h (fcntl): Declare replacement.
7868         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
7869         needed, plus a witness.
7870         * doc/posix-functions/fcntl.texi (fcntl): Document this.
7871         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
7872         * tests/test-fcntl.c: New file.
7873         * modules/fcntl-tests: Likewise.
7874
7875         binary-io: avoid potential compilation warning
7876         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
7877         directives.
7878
7879         fflush: avoid compilation error on NetBSD
7880         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
7881         between off_t and fpos_t, since the latter is sometimes a struct.
7882         * lib/fseeko.c (rpl_fseeko): Likewise.
7883         Reported by Alexander Nasonov <alnsn@yandex.ru>.
7884
7885 2009-12-15  Eric Blake  <ebb9@byu.net>
7886
7887         fcntl-h, stdio, sys_ioctl: fix declarations
7888         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
7889         function must not take arguments.
7890         * lib/sys_ioctl.in.h (ioctl): Likewise.
7891         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
7892         (open): Add a link warning.
7893
7894 2009-12-15  Jim Meyering  <meyering@redhat.com>
7895
7896         areadlink, areadlink-with-size: relax license to LGPLv2+
7897         * modules/areadlink (License): Relax to LGPLv2+.
7898         * modules/areadlink-with-size (License): Likewise.
7899
7900 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
7901             Bruno Haible  <bruno@clisp.org>
7902
7903         *printf: Fix memory leak.
7904         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
7905         * lib/vfprintf.c (vfprintf): Likewise.
7906         * lib/dprintf.c (dprintf): Likewise.
7907         * lib/vdprintf.c (vdprintf): Likewise.
7908
7909 2009-12-14  Eric Blake  <ebb9@byu.net>
7910
7911         accept4: adjust module dependencies
7912         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
7913
7914         utimens: one more try at avoiding compiler warning
7915         * lib/utimens.c (lutimens): Lower scope of result.
7916
7917 2009-12-13  Bruno Haible  <bruno@clisp.org>
7918
7919         Move the malloc checking from module 'list' to new module 'xlist'.
7920         * modules/xlist: New file.
7921         * lib/gl_xlist.h: New file.
7922         * lib/gl_xlist.c: New file.
7923         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
7924         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
7925         gl_list_add_last, gl_list_add_before, gl_list_add_after,
7926         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
7927         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
7928         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
7929         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
7930         gl_sortedlist_nx_add): New declarations.
7931         (struct gl_list_implementation): Rename and change methods accordingly.
7932         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
7933         (gl_list_nx_create): Renamed from gl_list_create.
7934         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
7935         (gl_list_nx_set_at): Renamed from gl_list_set_at.
7936         (gl_list_nx_add_first): Renamed from gl_list_add_first.
7937         (gl_list_nx_add_last): Renamed from gl_list_add_last.
7938         (gl_list_nx_add_before): Renamed from gl_list_add_before.
7939         (gl_list_nx_add_after): Renamed from gl_list_add_after.
7940         (gl_list_nx_add_at): Renamed from gl_list_add_at.
7941         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
7942         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
7943         gl_list_create_empty.
7944         (gl_list_nx_create): Renamed from gl_list_create.
7945         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
7946         (gl_list_nx_set_at): Renamed from gl_list_set_at.
7947         (gl_list_nx_add_first): Renamed from gl_list_add_first.
7948         (gl_list_nx_add_last): Renamed from gl_list_add_last.
7949         (gl_list_nx_add_before): Renamed from gl_list_add_before.
7950         (gl_list_nx_add_after): Renamed from gl_list_add_after.
7951         (gl_list_nx_add_at): Renamed from gl_list_add_at.
7952         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
7953         * lib/gl_array_list.c: Don't include xalloc.h.
7954         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
7955         NULL upon out-of-memory.
7956         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
7957         out-of-memory.
7958         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
7959         Change return type to 'int'.
7960         (gl_array_nx_set_at): Renamed from gl_array_set_at.
7961         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7962         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
7963         upon out-of-memory.
7964         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
7965         upon out-of-memory.
7966         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
7967         upon out-of-memory.
7968         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
7969         upon out-of-memory.
7970         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
7971         out-of-memory.
7972         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
7973         Update.
7974         (gl_array_list_implementation): Update.
7975         * lib/gl_carray_list.c: Don't include xalloc.h.
7976         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
7977         Return NULL upon out-of-memory.
7978         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
7979         out-of-memory.
7980         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
7981         Change return type to 'int'.
7982         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
7983         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7984         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
7985         upon out-of-memory.
7986         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
7987         upon out-of-memory.
7988         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
7989         out-of-memory.
7990         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
7991         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
7992         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
7993         Update.
7994         (gl_carray_list_implementation): Update.
7995         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
7996         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
7997         gl_linked_create_empty. Return NULL upon out-of-memory.
7998         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
7999         out-of-memory.
8000         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
8001         Change return type to 'int'. Return -1 upon out-of-memory.
8002         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
8003         out-of-memory.
8004         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
8005         upon out-of-memory.
8006         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
8007         upon out-of-memory.
8008         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
8009         NULL upon out-of-memory.
8010         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
8011         upon out-of-memory.
8012         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
8013         out-of-memory.
8014         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
8015         Update.
8016         * lib/gl_linked_list.c: Don't include xalloc.h.
8017         (gl_linked_list_implementation): Update.
8018         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
8019         (add_to_bucket): Change return type to 'int'.
8020         (gl_linkedhash_list_implementation): Update.
8021         * lib/gl_anytree_list1.h (free_subtree): New function.
8022         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
8023         gl_tree_create_empty. Return NULL upon out-of-memory.
8024         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
8025         Change return type to 'int'. Return -1 upon out-of-memory.
8026         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
8027         out-of-memory.
8028         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
8029         (gl_tree_remove_node): New function, moved here from
8030         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
8031         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
8032         Update.
8033         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
8034         malloc, not xmalloc. Return NULL upon out-of-memory.
8035         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
8036         out-of-memory.
8037         (gl_tree_remove_node_from_tree): New function, extracted from
8038         gl_tree_remove_node.
8039         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
8040         upon out-of-memory.
8041         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
8042         out-of-memory.
8043         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
8044         upon out-of-memory.
8045         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
8046         upon out-of-memory.
8047         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
8048         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
8049         not xmalloc. Return NULL upon out-of-memory.
8050         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
8051         out-of-memory.
8052         (gl_tree_remove_node_from_tree): New function, extracted from
8053         gl_tree_remove_node.
8054         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
8055         upon out-of-memory.
8056         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
8057         out-of-memory.
8058         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
8059         upon out-of-memory.
8060         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
8061         upon out-of-memory.
8062         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
8063         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
8064         gl_anytree_list1.h before gl_anyavltree_list2.h.
8065         (gl_avltree_list_implementation): Update.
8066         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
8067         gl_anytree_list1.h before gl_anyavltree_list2.h.
8068         (gl_rbtree_list_implementation): Update.
8069         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
8070         Change return type to 'int'. Return -1 upon out-of-memory. Use
8071         __builtin_expect.
8072         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
8073         (gl_avltreehash_list_implementation): Update.
8074         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
8075         (gl_rbtreehash_list_implementation): Update.
8076         * modules/array-list (Depends-on): Remove xalloc.
8077         * modules/carray-list (Depends-on): Likewise.
8078         * modules/linked-list (Depends-on): Likewise.
8079         * modules/linkedhash-list (Depends-on): Likewise.
8080         * modules/avltree-list (Depends-on): Likewise.
8081         * modules/rbtree-list (Depends-on): Likewise.
8082         * modules/avltreehash-list (Depends-on): Likewise.
8083         * modules/rbtreehash-list (Depends-on): Likewise.
8084
8085         * modules/xsublist: New file.
8086         * lib/gl_xsublist.h: New file.
8087         * lib/gl_xsublist.c: New file.
8088         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
8089         (gl_sublist_nx_create): New declaration.
8090         * lib/gl_sublist.c: Don't include xalloc.h.
8091         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
8092         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
8093         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
8094         Change return type to 'int'. Return -1 upon out-of-memory.
8095         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
8096         upon out-of-memory.
8097         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
8098         NULL upon out-of-memory.
8099         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
8100         upon out-of-memory.
8101         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
8102         NULL upon out-of-memory.
8103         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
8104         NULL upon out-of-memory.
8105         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
8106         upon out-of-memory.
8107         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
8108         (gl_sublist_list_implementation): Update.
8109         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
8110         upon out-of-memory.
8111         * modules/sublist (Depends-on): Remove xalloc.
8112
8113         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
8114         * tests/test-carray_list.c: Likewise.
8115         * tests/test-linked_list.c: Likewise.
8116         * tests/test-linkedhash_list.c: Likewise.
8117         * tests/test-avltree_list.c: Likewise.
8118         * tests/test-rbtree_list.c: Likewise.
8119         * tests/test-avltreehash_list.c: Likewise.
8120         * tests/test-rbtreehash_list.c: Likewise.
8121         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
8122         * modules/carray-list-tests (Makefile.am): Likewise.
8123         * modules/linked-list-tests (Makefile.am): Likewise.
8124         * modules/linkedhash-list-tests (Makefile.am): Likewise.
8125         * modules/avltree-list-tests (Makefile.am): Likewise.
8126         * modules/rbtree-list-tests (Makefile.am): Likewise.
8127         * modules/avltreehash-list-tests (Makefile.am): Likewise.
8128         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
8129
8130         * NEWS: Mention the changes.
8131
8132         * lib/clean-temp.c: Include gl_xlist.h.
8133         * modules/clean-temp (Depends-on): Add xlist.
8134
8135         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
8136         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
8137
8138         * tests/test-array_oset.c: Include gl_xlist.h.
8139         * modules/array-oset-tests (Depends-on): Add xlist.
8140
8141         Reported by José E. Marchesi <jemarch@gnu.org>.
8142
8143 2009-12-13  Bruno Haible  <bruno@clisp.org>
8144
8145         Move the malloc checking from module 'oset' to new module 'xoset'.
8146         * modules/xoset: New file.
8147         * lib/gl_xoset.h: New file.
8148         * lib/gl_xoset.c: New file.
8149         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
8150         declarations.
8151         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
8152         (struct gl_oset_implementation): Rename and change methods accordingly.
8153         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
8154         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
8155         'int'. Mark as __warn_unused_result__.
8156         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
8157         gl_oset_create_empty.
8158         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
8159         'int'.
8160         * lib/gl_array_oset.c: Don't include xalloc.h.
8161         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
8162         malloc, not xmalloc.
8163         (grow): Change return type to 'int'. Don't call xalloc_die.
8164         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
8165         to 'int'.
8166         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
8167         'int'.
8168         (gl_array_oset_implementation): Update.
8169         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
8170         gl_tree_create_empty.
8171         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
8172         'int'.
8173         * lib/gl_avltree_oset.c: Don't include xalloc.h.
8174         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
8175         xmalloc.
8176         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
8177         not xmalloc.
8178         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
8179         xmalloc.
8180         (gl_avltree_oset_implementation): Update.
8181         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
8182         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
8183         xmalloc.
8184         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
8185         not xmalloc.
8186         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
8187         xmalloc.
8188         (gl_rbtree_oset_implementation): Update.
8189         * modules/array-oset (Depends-on): Remove xalloc.
8190         * modules/avltree-oset (Depends-on): Likewise.
8191         * modules/rbtree-oset (Depends-on): Likewise.
8192         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
8193         * tests/test-avltree_oset.c: Likewise.
8194         * tests/test-rbtree_oset.c: Likewise.
8195         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
8196         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
8197         * modules/rbtree-oset-tests (Makefile.am): Likewise.
8198         * NEWS: Mention the change.
8199
8200 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
8201
8202         maint.mk: allow a project to override release-prep commands
8203         * top/maint.mk (alpha, beta, stable): Move release-preparatory
8204         commands into a new rule.
8205         (release-prep): New rule.
8206         (release-prep-hook): New overridable variable.
8207
8208 2009-12-13  Bruno Haible  <bruno@clisp.org>
8209
8210         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
8211
8212 2009-12-13  Jim Meyering  <meyering@redhat.com>
8213
8214         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
8215         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
8216
8217 2009-12-12  Bruno Haible  <bruno@clisp.org>
8218
8219         duplocale: Tweak.
8220         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
8221
8222 2009-12-12  Karl Berry  <karl@gnu.org>
8223
8224         * config/srclist.txt (strtoll.c): tab changes, no more sync.
8225
8226 2009-12-12  Bruno Haible  <bruno@clisp.org>
8227
8228         * m4/po.m4: Undo incorrect untabification.
8229
8230 2009-12-12  Bruno Haible  <bruno@clisp.org>
8231
8232         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
8233         * modules/c-strtod (Depends-on): Add locale.
8234         * modules/c-strtold (Depends-on): Likewise.
8235
8236 2009-12-12  Bruno Haible  <bruno@clisp.org>
8237
8238         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
8239
8240 2009-12-11  Eric Blake  <ebb9@byu.net>
8241
8242         setenv: relax requirement in light of POSIX ruling
8243         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
8244         not NULL.
8245         * tests/test-setenv.c (main): Relax test.
8246         * tests/test-unsetenv.c (main): Likewise.
8247         * doc/posix-functions/setenv.texi (setenv): Document this.
8248         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
8249
8250 2009-12-11  Bruno Haible  <bruno@clisp.org>
8251
8252         New module 'fd-safer-flag'.
8253         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
8254         * lib/dup-safer.c (dup_safer_flag): Remove function.
8255         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
8256         * lib/fd-safer.c (fd_safer_flag): Remove function.
8257         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
8258         * modules/cloexec (configure.ac): Drop indicator macro.
8259         * modules/fd-safer-flag: New file.
8260         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
8261         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
8262         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
8263
8264 2009-12-11  Bruno Haible  <bruno@clisp.org>
8265
8266         Tests for module 'nl_langinfo'.
8267         * modules/nl_langinfo-tests: New file.
8268         * tests/test-nl_langinfo.sh: New file.
8269         * tests/test-nl_langinfo.c: New file.
8270
8271         New module 'nl_langinfo'.
8272         * lib/nl_langinfo.c: New file.
8273         * m4/nl_langinfo.m4: New file.
8274         * modules/nl_langinfo: New file.
8275         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
8276
8277 2009-12-11  Bruno Haible  <bruno@clisp.org>
8278
8279         Tests for module 'langinfo'.
8280         * modules/langinfo-tests: New file.
8281         * tests/test-langinfo.c: New file.
8282
8283         New module 'langinfo'.
8284         * lib/langinfo.in.h: New file.
8285         * m4/langinfo_h.m4: New file.
8286         * modules/langinfo: New file.
8287         * doc/posix-headers/langinfo.texi: Mention the new module.
8288
8289 2009-12-11  Bruno Haible  <bruno@clisp.org>
8290
8291         * lib/config.charset: Untabify.
8292
8293 2009-12-11  Bruno Haible  <bruno@clisp.org>
8294
8295         * modules/unistd-safer (configure.ac): Drop indicator macro.
8296
8297 2009-12-11  Bruno Haible  <bruno@clisp.org>
8298
8299         Move pipe2-safer code to its own file.
8300         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
8301         * lib/pipe-safer.c (pipe2_safer): Remove function.
8302         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
8303         (Makefile.am): Add it to lib_SOURCES.
8304
8305 2009-12-10  Bruno Haible  <bruno@clisp.org>
8306
8307         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
8308
8309 2009-12-10  Bruno Haible  <bruno@clisp.org>
8310
8311         Declare which arguments expect non-NULL values, for GCC and clang.
8312         * build-aux/arg-nonnull.h: New file.
8313         * modules/arg-nonnull: New file.
8314         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
8315         (inet_ntop, inet_pton): Use it.
8316         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
8317         (closedir, dirfd, opendir, scandir, alphasort): Use it.
8318         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
8319         (open, openat): Use it.
8320         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
8321         (fnmatch): Use it.
8322         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
8323         (getopt, getopt_long, getopt_long_only): Use it.
8324         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
8325         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
8326         Use it.
8327         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
8328         (iconv_open): Use it.
8329         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
8330         (strtoimax, strtoumax): Use it.
8331         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
8332         (duplocale): Use it.
8333         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
8334         (frexp, frexpl): Use it.
8335         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
8336         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
8337         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
8338         (tsearch, tfind, tdelete, twalk): Use it.
8339         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
8340         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
8341         sigpending): Use it.
8342         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
8343         (posix_spawn, posix_spawnp, posix_spawnattr_init,
8344         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
8345         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
8346         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
8347         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
8348         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
8349         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
8350         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
8351         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
8352         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
8353         Use it.
8354         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
8355         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
8356         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
8357         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
8358         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
8359         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
8360         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
8361         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
8362         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
8363         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
8364         strtoull, unsetenv): Use it.
8365         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
8366         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
8367         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
8368         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
8369         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
8370         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
8371         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
8372         (strcasecmp, strncasecmp): Use it.
8373         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
8374         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
8375         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
8376         rpl_setsockopt): Use it.
8377         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
8378         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
8379         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
8380         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
8381         (gettimeofday): Use it.
8382         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
8383         (times): Use it.
8384         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
8385         (uname): Use it.
8386         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
8387         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
8388         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
8389         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
8390         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
8391         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
8392         unlinkat, write): Use it.
8393         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
8394         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
8395         * lib/argv-iter.h: Include arg-nonnull.h.
8396         (_ATTRIBUTE_NONNULL_): Remove macro.
8397         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
8398         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
8399         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
8400         optimization.
8401         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
8402         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
8403         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
8404         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
8405         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
8406         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
8407         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
8408         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
8409         * modules/arpa_inet (Depends-on): Add arg-nonnull.
8410         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
8411         * modules/dirent (Depends-on): Add arg-nonnull.
8412         (Makefile.am): Insert arg-nonnull.h into dirent.h.
8413         * modules/fcntl-h (Depends-on): Add arg-nonnull.
8414         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
8415         * modules/fnmatch (Depends-on): Add arg-nonnull.
8416         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
8417         * modules/getopt-posix (Depends-on): Add arg-nonnull.
8418         (Makefile.am): Insert arg-nonnull.h into getopt.h.
8419         * modules/glob (Depends-on): Add arg-nonnull.
8420         (Makefile.am): Insert arg-nonnull.h into glob.h.
8421         * modules/iconv_open (Depends-on): Add arg-nonnull.
8422         (Makefile.am): Insert arg-nonnull.h into iconv.h.
8423         * modules/inttypes (Depends-on): Add arg-nonnull.
8424         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
8425         * modules/locale (Depends-on): Add arg-nonnull.
8426         (Makefile.am): Insert arg-nonnull.h into locale.h.
8427         * modules/math (Depends-on): Add arg-nonnull.
8428         (Makefile.am): Insert arg-nonnull.h into math.h.
8429         * modules/netdb (Depends-on): Add arg-nonnull.
8430         (Makefile.am): Insert arg-nonnull.h into netdb.h.
8431         * modules/search (Depends-on): Add arg-nonnull.
8432         (Makefile.am): Insert arg-nonnull.h into search.h.
8433         * modules/signal (Depends-on): Add arg-nonnull.
8434         (Makefile.am): Insert arg-nonnull.h into signal.h.
8435         * modules/spawn (Depends-on): Add arg-nonnull.
8436         (Makefile.am): Insert arg-nonnull.h into spawn.h.
8437         * modules/stdio (Depends-on): Add arg-nonnull.
8438         (Makefile.am): Insert arg-nonnull.h into stdio.h.
8439         * modules/stdlib (Depends-on): Add arg-nonnull.
8440         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
8441         * modules/string (Depends-on): Add arg-nonnull.
8442         (Makefile.am): Insert arg-nonnull.h into string.h.
8443         * modules/strings (Depends-on): Add arg-nonnull.
8444         (Makefile.am): Insert arg-nonnull.h into strings.h.
8445         * modules/sys_socket (Depends-on): Add arg-nonnull.
8446         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
8447         * modules/sys_stat (Depends-on): Add arg-nonnull.
8448         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
8449         * modules/sys_time (Depends-on): Add arg-nonnull.
8450         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
8451         * modules/sys_times (Depends-on): Add arg-nonnull.
8452         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
8453         * modules/sys_utsname (Depends-on): Add arg-nonnull.
8454         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
8455         * modules/time (Depends-on): Add arg-nonnull.
8456         (Makefile.am): Insert arg-nonnull.h into time.h.
8457         * modules/unistd (Depends-on): Add arg-nonnull.
8458         (Makefile.am): Insert arg-nonnull.h into unistd.h.
8459         * modules/wchar (Depends-on): Add arg-nonnull.
8460         (Makefile.am): Insert arg-nonnull.h into wchar.h.
8461         * modules/argv-iter (Depends-on): Add arg-nonnull.
8462         * tests/test-canonicalize.c (null_ptr): New function.
8463         (main): Use it.
8464         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
8465         (main): Use it.
8466         * tests/test-memmem.c (null_ptr): New function.
8467         (main): Use it.
8468         Reported by Jim Meyering.
8469
8470 2009-12-10  Bruno Haible  <bruno@clisp.org>
8471
8472         Use spaces for indentation, not tabs.
8473         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
8474         * m4/*.m4: Untabify.
8475         * build-aux/*.h: Untabify.
8476         * tests/**/*.[hc]: Untabify.
8477         * README: New section "Indent with spaces, not TABs", based on
8478         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
8479         * NEWS: Mention the change.
8480
8481 2009-12-10  Bruno Haible  <bruno@clisp.org>
8482
8483         pty test: Fix link error.
8484         * modules/pty-tests (Makefile.am): Add the default LDADD value to
8485         test_pty_LDADD.
8486
8487 2009-12-07  Simon Josefsson  <simon@josefsson.org>
8488
8489         * modules/pty: New file.
8490         * modules/pty-tests: New file.
8491         * m4/pty.m4: New file.
8492         * tests/test-pty.c: New file.
8493         * doc/glibc-headers/pty.texi: Modified.
8494         * doc/glibc-functions/forkpty.texi: Modified.
8495         * doc/glibc-functions/openpty.texi: Modified.
8496
8497 2009-12-10  Bruno Haible  <bruno@clisp.org>
8498
8499         Avoid syntax error in C++ mode.
8500         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
8501
8502 2009-12-10  Bruno Haible  <bruno@clisp.org>
8503
8504         Use sed with option -e.
8505         * gnulib-tool (func_version, func_emit_copyright_notice,
8506         func_emit_initmacro_end, func_import, func_create_testdir): Pass
8507         option -e to sed.
8508         * modules/link-warning (Makefile.am): Likewise.
8509
8510 2009-12-10  Jim Meyering  <meyering@redhat.com>
8511
8512         mgetgroups: do not write bytes beyond end of malloc'd buffer
8513         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
8514         username, we call getgroups with a one-element-shorter buffer,
8515         but still told it the length was original, max_n_groups.
8516
8517 2009-12-09  Eric Blake  <ebb9@byu.net>
8518
8519         cloexec: relax license
8520         * modules/cloexec (Maintainer): Add myself.
8521         (License): Use LGPL, not GPL.
8522
8523         link-warning: optimize generation
8524         * modules/link-warning (Makefile.am): Reduce process usage.
8525
8526 2009-12-09  Bruno Haible  <bruno@clisp.org>
8527
8528         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
8529         workaround was added on 2009-11-17.
8530
8531 2009-12-09  Jim Meyering  <meyering@redhat.com>
8532             Bruno Haible  <bruno@clisp.org>
8533
8534         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
8535         * modules/link-warning (Makefile.am): Make the comment-removing sed
8536         command more robust in the face of bootstrap-prepended comment lines.
8537
8538 2009-12-09  Bruno Haible  <bruno@clisp.org>
8539
8540         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
8541         most one group.
8542
8543 2009-12-09  Simon Josefsson <simon@josefsson.org>
8544             Bruno Haible  <bruno@clisp.org>
8545
8546         * build-aux/link-warning.h: Add copyright notice.
8547         * modules/link-warning (Makefile.am): Generate link-warning.h from
8548         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
8549         * NEWS: Mention change in link-warning module.
8550         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
8551         * modules/dirent (Makefile.am): Add dependency to dirent.h.
8552         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
8553         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
8554         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
8555         * modules/math (Makefile.am): Add dependency to math.h.
8556         * modules/search (Makefile.am): Add dependency to search.h.
8557         * modules/signal (Makefile.am): Add dependency to signal.h.
8558         * modules/spawn (Makefile.am): Add dependency to spawn.h.
8559         * modules/stdio (Makefile.am): Add dependency to stdio.h.
8560         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
8561         * modules/string (Makefile.am): Add dependency to string.h.
8562         * modules/strings (Makefile.am): Add dependency to strings.h.
8563         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
8564         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
8565         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
8566         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
8567         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
8568         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
8569         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
8570         * modules/unistd (Makefile.am): Add dependency to unistd.h.
8571         * modules/wchar (Makefile.am): Add dependency to wchar.h.
8572
8573 2009-12-09  Bruno Haible  <bruno@clisp.org>
8574
8575         fchdir: Optimize away rpl_fstat when possible.
8576         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
8577         REPLACE_OPEN_DIRECTORY.
8578         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
8579
8580 2009-12-09  Bruno Haible  <bruno@clisp.org>
8581
8582         * lib/fchdir.c: Update comment.
8583
8584 2009-12-09  Bruno Haible  <bruno@clisp.org>
8585
8586         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
8587
8588 2009-12-08  Eric Blake  <ebb9@byu.net>
8589
8590         fchdir: avoid memory leak on re-registration.
8591         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
8592
8593 2009-12-08  Jim Meyering  <meyering@redhat.com>
8594
8595         init.sh: avoid Solaris 10 /bin/sh portability problem
8596         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
8597         sourced script:
8598           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
8599           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
8600           bar
8601         tests/init.sh relied on that, accepting a --set-path=DIR argument,
8602         and two tests used that idiom.
8603         * tests/init.sh: Update suggested usage comments.
8604         (path_prepend_): New function, to be used in place
8605         of the --src-path=DIR option.
8606         (setup_): Move PATH-prepending code into path_prepend_.
8607         * tests/test-pread.sh: Adapt to new usage.
8608         * tests/test-xalloc-die.sh: Likewise.
8609
8610 2009-12-08  Simon Josefsson  <simon@josefsson.org>
8611
8612         * doc/gnulib.texi (Glibc pty.h): Add.
8613         * doc/glibc-functions/forkpty.texi: Add.
8614         * doc/glibc-functions/openpty.texi: Add.
8615         Suggested by Bruno Haible.
8616
8617 2009-12-08  Eric Blake  <ebb9@byu.net>
8618
8619         fchdir: fix logic bugs
8620         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
8621         * tests/test-fchdir.c (main): Enhance test.
8622         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
8623         is in use.
8624
8625         dup2: fix logic bugs
8626         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
8627         REPLACE_DUP2 to decide when rpl_dup2 is needed.
8628         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
8629         exists.
8630         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
8631
8632 2009-12-07  Eric Blake  <ebb9@byu.net>
8633
8634         unlink: fix m4 detection
8635         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
8636
8637         unistd-safer: add unit test
8638         * modules/unistd-safer-tests: New file.
8639         * tests/test-dup-safer.c: Likewise.
8640         * tests/test-cloexec.c (setmode): Avoid compiler warning.
8641         * tests/test-dup2.c (setmode): Likewise.
8642         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
8643
8644         cloexec: preserve text vs. binary across dup_cloexec
8645         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
8646         mode.
8647         * modules/dup2-tests (Depends-on): Add binary-io.
8648         * modules/cloexec-tests (Depends-on): Likewise.
8649         * tests/test-dup2.c (setmode, is_mode): New helpers.
8650         (main): Add tests that translation mode is preserved.
8651         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
8652         Reported by Bruno Haible.
8653
8654         mgetgroups: reduce duplicate listings
8655         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
8656         resulting array.
8657         * tests/test-chown.h (test_chown): Simplify client.
8658         * tests/test-lchown.h (test_lchown): Likewise.
8659
8660 2009-12-06  Bruno Haible  <bruno@clisp.org>
8661
8662         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
8663         value.
8664
8665 2009-12-06  Bruno Haible  <bruno@clisp.org>
8666
8667         * lib/progname.c: Include stdio.h, stdlib.h.
8668         (set_program_name): Reject a NULL argument.
8669
8670 2009-12-05  Eric Blake  <ebb9@byu.net>
8671
8672         pipe2-safer: new module
8673         * modules/pipe2-safer: New file.
8674         * lib/unistd-safer.h (pipe2_safer): New prototype.
8675         * lib/unistd--.h (pipe2): New wrapper.
8676         * lib/pipe-safer.c (pipe2_safer): New function.
8677         * modules/pipe (Depends-on): Add pipe2-safer.
8678         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
8679
8680         stdlib-safer: preserve cloexec flag for mkostemp[s]
8681         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
8682         fd_safer_flag.
8683
8684         unistd-safer: allow preservation of cloexec status via flag
8685         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
8686         prototypes.
8687         * lib/dup-safer.c (dup_safer_flag): New function.
8688         * lib/fd-safer.c (fd_safer_flag): Likewise.
8689         * modules/cloexec (configure.ac): Set witness.
8690
8691         test-dup2: enhance test
8692         * modules/dup2-tests (Depends-on): Add cloexec.
8693         * tests/test-dup2.c (main): Enhance test.
8694
8695         cloexec: add dup_cloexec
8696         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
8697         header and comments.
8698         * lib/cloexec.c (set_cloexec_flag): Add comments.
8699         (dup_cloexec): New function, with mingw implementation borrowed
8700         from...
8701         * lib/w32spawn.h (dup_noinherit): ...here.
8702         * modules/execute (Depends-on): Add cloexec.
8703         * modules/pipe (Depends-on): Likewise.
8704         * modules/cloexec (Depends-on): Add dup2.
8705         * modules/cloexec-tests (Files): New file.
8706         * tests/test-cloexec.c: Likewise.
8707
8708         test-xalloc-die: fix test for mingw
8709         * modules/xalloc-die-tests (Files): Add tests/init.sh.
8710         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
8711         directory and .exe suffix off argv[0] output.
8712
8713         test-fseeko: fix test for mingw
8714         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
8715         than undefining fseek, so test will pass on mingw.
8716
8717 2009-12-05  Bruno Haible  <bruno@clisp.org>
8718
8719         * lib/progname.h (set_program_name): Clarify specification.
8720         * lib/progname.c (set_program_name): Likewise.
8721         Reported by Jim Meyering.
8722
8723 2009-12-05  Jim Meyering  <meyering@redhat.com>
8724
8725         maint.mk: backslash-escape parens in default regexp
8726         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
8727         backslash-escape the literal parentheses.
8728
8729         maint.mk: news-date-check: use grep -E
8730         * top/maint.mk (today): Define a Make variable, not a...
8731         (news-date-check): ...shell variable.
8732         (news-date-regexp): Use the Make variable.
8733         Use grep's -E option.  Change the failing diagnostic to mention
8734         the variable, $(news-date-regexp).
8735
8736 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
8737
8738         maintainer-makefile: allow customization of NEWS entry format
8739         * top/maint.mk (news-date-regexp): New overridable variable.
8740         (news-date-check): Use it.
8741
8742 2009-12-04  Eric Blake  <ebb9@byu.net>
8743
8744         mgetgroups: add xgetgroups, and avoid ENOSYS failures
8745         * lib/mgetgroups.h (xgetgroups): New prototype.
8746         * lib/mgetgroups.c (xgetgroups): New wrapper.
8747         (mgetgroups): Handle ENOSYS.
8748         * modules/mgetgroups (Depends-on): Add realloc.
8749         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
8750
8751         mgetgroups: avoid argument promotion issues with -1
8752         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
8753         for invalid gid_t.
8754         * tests/test-chown.h (getegid, test_chown): Likewise.
8755         * tests/test-lchown.h (getegid, test_lchown): Likewise.
8756
8757 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
8758
8759         exclude: Fix header file problems.
8760         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
8761
8762 2009-12-01  Jim Meyering  <meyering@redhat.com>
8763
8764         fts: fts_open: do not let an empty string cause immediate failure
8765         This is required in support of GNU rm, for which the command
8766         "rm A '' B" must process and remove both A and B, in spite of
8767         the empty string argument.
8768         * lib/fts.c (fts_open): Do not let the presence of an empty string
8769         cause fts_open to fail immediately.  Most fts-using tools must be
8770         able to process all arguments, in order, and can be expected to
8771         diagnose such arguments themselves.
8772
8773 2009-11-30  Eric Blake  <ebb9@byu.net>
8774
8775         utimens: fix compilation error
8776         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
8777         Declare variable at right scope.
8778
8779 2009-11-29  Jim Meyering  <meyering@redhat.com>
8780
8781         bootstrap: handle perl-5.11's changed --version output
8782         * build-aux/bootstrap (get_version): Handle perl separately,
8783         since perl-5.11's --version output is different.
8784
8785 2009-11-28  Jim Meyering  <meyering@redhat.com>
8786
8787         userspec: depend on the inttostr module, too
8788         * modules/userspec (Depends-on): Add inttostr.
8789
8790         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
8791         * lib/userspec.c (parse_with_separator): Do not accept a user ID
8792         number of MAXUID when it evaluates to (uid_t) -1.
8793         Likewise for group ID.  Reported by Matt McCutchen in
8794         <http://savannah.gnu.org/bugs/?28113>
8795
8796         userspec: reformat to use spaces, not TABs
8797         * lib/userspec.c: Expand TABs to spaces.
8798         Add Emacs' "indent-tabs-mode: nil" hint.
8799
8800 2009-11-27  Eric Blake  <ebb9@byu.net>
8801
8802         getopt-gnu: flush out another BSD bug
8803         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
8804         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
8805         flush out BSD bug.
8806         * tests/test-getopt.h (test_getopt): End lists with NULL.
8807         * tests/test-getopt_long.h (test_getopt_long): Likewise.
8808         (test_getopt_long_posix): Enhance test.
8809         * modules/getopt-posix-tests (Depends-on): Add stdbool.
8810         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
8811         getopt-gnu.
8812         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
8813         Likewise.
8814
8815 2009-11-27  Simon Josefsson  <simon@josefsson.org>
8816
8817         * modules/idpriv-droptemp-tests (Notice): Fix text.
8818
8819 2009-11-27  Jim Meyering  <meyering@redhat.com>
8820
8821         test-xalloc-die: avoid spurious failure due to libtool argv difference
8822         In a libtool-enabled project, this test would fail due to a difference
8823         in the emitted program name, e.g.,
8824         -test-xalloc-die: memory exhausted
8825         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
8826         Use program to avoid that.
8827         * modules/xalloc-die-tests (Depends-on): Add progname.
8828         * tests/test-xalloc-die.c: Include progname.h".
8829         (program_name): Remove decl.
8830         (main): Call set_program_name.
8831         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
8832
8833 2009-11-26  Richard Jones  <rjones@redhat.com>
8834
8835         w32sock: leave win32 error in place.
8836         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
8837
8838 2009-11-26  Eric Blake  <ebb9@byu.net>
8839
8840         init.sh: suggest to use skip_ and fail_ functions in comments
8841         * tests/init.sh: Add a sentence.
8842
8843 2009-11-25  Bruno Haible  <bruno@clisp.org>
8844
8845         init.sh: add documentation in comments
8846         * tests/init.sh: Add some developer and user documentation.
8847
8848 2009-11-26  Jim Meyering  <meyering@redhat.com>
8849
8850         init.sh: accommodate even those who specify bogus srcdir manually
8851         * tests/init.sh: Normally, srcdir is guaranteed by automake and
8852         configure-time tests to be sanitized, so that there is no need to
8853         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
8854         (with no double quotes) suffices.  However, since tests may be
8855         invoked manually, and since you may explicitly set srcdir to the
8856         name of a directory containing spaces, do quote its uses here.
8857         * tests/test-pread.sh: Likewise.
8858         Suggested by Bruno Haible.
8859
8860         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
8861         * tests/test-pread.sh: Write no data into the pipe, because
8862         test-pread actually reads none.  This avoids a diagnostic,
8863         "bash: echo: write error: Broken pipe", that arises in the unusual
8864         event something is ignoring SIGPIPE, and might be interpreted
8865         as some sort of failure.  Reported by Bruno Haible.
8866
8867 2009-11-25  Jim Meyering  <meyering@redhat.com>
8868
8869         test-pread: cover failure with ESPIPE and EINVAL
8870         * tests/test-pread.c (main): Test for failure, too.
8871         * tests/test-pread.sh: Invoke with stdin on a pipe.
8872         Suggested by Eric Blake.
8873
8874         pread: improvement and fix
8875         * modules/pread (Depends-on): Depend on lseek, for portability to
8876         e.g., mingw.  Suggested by Eric Blake.
8877         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
8878
8879         unistd.in.h: correct declaration of pread
8880         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
8881         Reported by Richard W.M. Jones.
8882
8883         test-pread.sh: distribute the test script
8884         * modules/pread-tests (Files): Include test-pread.sh.
8885
8886         test-pread.sh: clean up
8887         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
8888         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
8889         That is unnecessary, since it's always ".".
8890         Suggestion from Eric Blake.
8891
8892         test-pread.sh: make executable
8893         * tests/test-pread.sh: Set executable bit.
8894         Reported by Eric Blake.
8895
8896         correct typo in test-pread.sh
8897         * tests/test-pread.sh: Add #! line.
8898
8899         test pread
8900         * tests/test-pread.c: New file.
8901         * tests/test-pread.sh: Likewise.
8902         * modules/pread-tests: Likewise.
8903
8904         pread: new module
8905         * modules/pread: New file.
8906         * lib/unistd.in.h (pread): Define/declare.
8907         * lib/pread.c (pread): New file.
8908         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
8909         * modules/unistd (Makefile.am): Substitute witnesses.
8910         * doc/posix-functions/pread.texi (pread): Update.
8911         * MODULES.html.sh: Add pread.
8912
8913 2009-11-25  Jim Meyering  <meyering@redhat.com>
8914
8915         tests/init.sh: new file to be used via most *.sh tests
8916         * tests/init.sh: New file.
8917
8918 2009-11-25  Eric Blake  <ebb9@byu.net>
8919
8920         utimens: work around older Linux failure with symlinks
8921         * lib/utimens.c (lutimensat_works_really): New variable.
8922         (fdutimens, lutimens): Use it to manage kernels that support
8923         nanosecond times on files, but not on symlinks.
8924         Reported by OndÅ™ej Vašík.
8925
8926         utimes: fix configure grammar
8927         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
8928
8929 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
8930
8931         regex: Fix fastmap for multibyte character ranges.
8932         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
8933         characters when a multibyte character range is included.
8934
8935 2009-11-22  Andy Wingo  <wingo@pobox.com>
8936
8937         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
8938         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
8939
8940 2009-11-24  Bruno Haible  <bruno@clisp.org>
8941
8942         doc: Most *_l functions exist in MacOS X 10.5.
8943         * doc/posix-functions/duplocale.texi: Update platforms list.
8944         * doc/posix-functions/freelocale.texi: Likewise.
8945         * doc/posix-functions/newlocale.texi: Likewise.
8946         * doc/posix-functions/uselocale.texi: Likewise.
8947         * doc/posix-functions/isalnum_l.texi: Likewise.
8948         * doc/posix-functions/isalpha_l.texi: Likewise.
8949         * doc/posix-functions/isblank_l.texi: Likewise.
8950         * doc/posix-functions/iscntrl_l.texi: Likewise.
8951         * doc/posix-functions/isdigit_l.texi: Likewise.
8952         * doc/posix-functions/isgraph_l.texi: Likewise.
8953         * doc/posix-functions/islower_l.texi: Likewise.
8954         * doc/posix-functions/isprint_l.texi: Likewise.
8955         * doc/posix-functions/ispunct_l.texi: Likewise.
8956         * doc/posix-functions/isspace_l.texi: Likewise.
8957         * doc/posix-functions/isupper_l.texi: Likewise.
8958         * doc/posix-functions/iswalnum_l.texi: Likewise.
8959         * doc/posix-functions/iswalpha_l.texi: Likewise.
8960         * doc/posix-functions/iswblank_l.texi: Likewise.
8961         * doc/posix-functions/iswcntrl_l.texi: Likewise.
8962         * doc/posix-functions/iswctype_l.texi: Likewise.
8963         * doc/posix-functions/iswdigit_l.texi: Likewise.
8964         * doc/posix-functions/iswgraph_l.texi: Likewise.
8965         * doc/posix-functions/iswlower_l.texi: Likewise.
8966         * doc/posix-functions/iswprint_l.texi: Likewise.
8967         * doc/posix-functions/iswpunct_l.texi: Likewise.
8968         * doc/posix-functions/iswspace_l.texi: Likewise.
8969         * doc/posix-functions/iswupper_l.texi: Likewise.
8970         * doc/posix-functions/iswxdigit_l.texi: Likewise.
8971         * doc/posix-functions/isxdigit_l.texi: Likewise.
8972         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
8973         * doc/posix-functions/strcasecmp_l.texi: Likewise.
8974         * doc/posix-functions/strcoll_l.texi: Likewise.
8975         * doc/posix-functions/strfmon_l.texi: Likewise.
8976         * doc/posix-functions/strftime_l.texi: Likewise.
8977         * doc/posix-functions/strncasecmp_l.texi: Likewise.
8978         * doc/posix-functions/strxfrm_l.texi: Likewise.
8979         * doc/posix-functions/tolower_l.texi: Likewise.
8980         * doc/posix-functions/toupper_l.texi: Likewise.
8981         * doc/posix-functions/towctrans_l.texi: Likewise.
8982         * doc/posix-functions/towlower_l.texi: Likewise.
8983         * doc/posix-functions/towupper_l.texi: Likewise.
8984         * doc/posix-functions/wcscoll_l.texi: Likewise.
8985         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
8986         * doc/posix-functions/wctrans_l.texi: Likewise.
8987         * doc/posix-functions/wctype_l.texi: Likewise.
8988         * doc/glibc-functions/strptime_l.texi: Likewise.
8989         * doc/glibc-functions/strtod_l.texi: Likewise.
8990         * doc/glibc-functions/strtof_l.texi: Likewise.
8991         * doc/glibc-functions/strtol_l.texi: Likewise.
8992         * doc/glibc-functions/strtold_l.texi: Likewise.
8993         * doc/glibc-functions/strtoll_l.texi: Likewise.
8994         * doc/glibc-functions/strtoul_l.texi: Likewise.
8995         * doc/glibc-functions/strtoull_l.texi: Likewise.
8996         * doc/glibc-functions/wcsftime_l.texi: Likewise.
8997         * doc/glibc-functions/wcstod_l.texi: Likewise.
8998         * doc/glibc-functions/wcstof_l.texi: Likewise.
8999         * doc/glibc-functions/wcstol_l.texi: Likewise.
9000         * doc/glibc-functions/wcstold_l.texi: Likewise.
9001         * doc/glibc-functions/wcstoll_l.texi: Likewise.
9002         * doc/glibc-functions/wcstoul_l.texi: Likewise.
9003         * doc/glibc-functions/wcstoull_l.texi: Likewise.
9004
9005 2009-11-24  Bruno Haible  <bruno@clisp.org>
9006
9007         duplocale: Fix logic bug.
9008         * lib/duplocale.c: Don't include <langinfo.h>.
9009         (_NL_LOCALE_NAME): Remove macro.
9010         (rpl_duplocale): Use setlocale instead of nl_langinfo.
9011         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
9012
9013 2009-11-23  Jim Meyering  <meyering@redhat.com>
9014
9015         test-update-copyright: don't hard-code /usr/bin/perl
9016         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
9017         perl to print the current year.  Gilles Espinasse reported that
9018         the replaced use of perl was hard-coded as /usr/bin/perl.
9019
9020 2009-11-23  Bruno Haible  <bruno@clisp.org>
9021
9022         duplocale: Add support for glibc 2.3.x.
9023         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
9024
9025 2009-11-22  Bruno Haible  <bruno@clisp.org>
9026
9027         vasnprintf: Tiny optimization.
9028         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
9029         MacOS X.
9030
9031 2009-11-22  Bruno Haible  <bruno@clisp.org>
9032
9033         Tests for module 'duplocale'.
9034         * modules/duplocale-tests: New file.
9035         * tests/test-duplocale.c: New file.
9036
9037         New module 'duplocale'.
9038         * m4/duplocale.m4: New file.
9039         * lib/locale.in.h (duplocale): New declaration.
9040         * lib/duplocale.c: New file.
9041         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
9042         gl_LOCALE_H_DEFAULTS): New macros.
9043         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
9044         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
9045         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
9046         REPLACE_DUPLOCALE.
9047         * modules/duplocale: New file.
9048         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
9049
9050 2009-11-22  Bruno Haible  <bruno@clisp.org>
9051
9052         * modules/locale-tests (configure.ac): Test for newlocale function.
9053         * tests/test-locale.c: When the system has extended locale functions,
9054         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
9055
9056         locale: Make locale_t available when possible.
9057         * lib/locale.in.h: Include <xlocale.h> when it exists.
9058         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
9059         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
9060         * modules/locale (Depends-on): Add extensions.
9061         (Makefile.am): Also substitute HAVE_XLOCALE_H.
9062         * doc/posix-headers/locale.texi: Document the problem with locale_t.
9063
9064 2009-11-22  Bruno Haible  <bruno@clisp.org>
9065
9066         Add comments.
9067         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
9068         invocation.
9069         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
9070         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
9071         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
9072
9073 2009-11-22  Bruno Haible  <bruno@clisp.org>
9074
9075         error: account for the possibility of freopen (stdout).
9076         * lib/error.c: Include <unistd.h>.
9077         (flush_stdout): New function, extracted from error and error_at_line.
9078         Determine stdout's fd dynamically.
9079         (error, error_at_line): Invoke flush_stdout.
9080         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
9081         * modules/error (Depends-on): Add unistd.
9082
9083 2009-11-22  Bruno Haible  <bruno@clisp.org>
9084
9085         diffseq: Add comment.
9086         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
9087
9088 2009-11-22  Jim Meyering  <meyering@redhat.com>
9089
9090         c-stack: avoid defining an unused static function
9091         * lib/c-stack.c (find_stack_direction): Do not define this function
9092         when it will not be used.
9093
9094         diffseq: avoid spurious gcc warnings
9095         * lib/diffseq.h (IF_LINT2): Define.
9096         (compareseq): Use it to initialize two members of "part".
9097         This avoids two used-uninitialized warnings.
9098
9099 2009-11-21  Jim Meyering  <meyering@redhat.com>
9100
9101         c-stack: avoid "ignoring return value of `write'" warning
9102         * lib/c-stack.c: Include "ignore-value.h".
9103         (die): Explicitly ignore each write return value.
9104         * modules/c-stack (Depends-on): Add ignore-value.
9105
9106 2009-11-21  Bruno Haible  <bruno@clisp.org>
9107
9108         diffseq: reduce scope of variable 'best'.
9109         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
9110         variable, earlier used for two different purposes.
9111
9112 2009-11-21  Jim Meyering  <meyering@redhat.com>
9113
9114         diffseq: remove useless assignment to "best"
9115         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
9116         assignment.  At that point "best" is already guaranteed to be zero.
9117
9118 2009-11-20  Eric Blake  <ebb9@byu.net>
9119
9120         build: mention ftp redirector in release announcements
9121         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
9122         values that used to come from cfg.mk; mention FTP redirect URL.
9123         * build-aux/announce-gen: Mention the mirror list.
9124         Suggested by Karl Berry.
9125
9126         nanosleep: improve port to mingw
9127         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
9128         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
9129         LIB_NANOSLEEP, but only when needed.
9130         * modules/select (Link): Document LIBSOCKET.
9131         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
9132         enough.
9133
9134         nanosleep: work around cygwin bug
9135         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
9136         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
9137         bug.
9138         (getnow): Delete, not needed.
9139         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
9140         LIB_CLOCK_GETTIME.
9141         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
9142         clock-time, gettime.
9143         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
9144         bug.
9145         * modules/nanosleep-tests: New test.
9146         * tests/test-nanosleep.c: New file.
9147
9148         sleep: work around cygwin bug
9149         * lib/sleep.c (rpl_sleep): Work around the bug.
9150         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
9151         (gl_PREREQ_SLEEP): Delete unused macro.
9152         * modules/sleep (Depends-on): Add verify.
9153         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
9154         * modules/unistd (Makefile.am): Substitute witness.
9155         * lib/unistd.in.h (sleep): Update prototype.
9156         * doc/posix-functions/sleep.texi (sleep): Document the bug.
9157         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
9158         * modules/sleep-tests (Depends-on): Check for alarm.
9159
9160 2009-11-20  Jim Meyering  <meyering@redhat.com>
9161
9162         maint.mk: improve sc_prohibit_magic_number_exit
9163         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
9164         so it does not match uses like System.exit(1).
9165         Add comments showing how to correct all offenders.
9166
9167 2009-11-19  Eric Blake  <ebb9@byu.net>
9168
9169         xalloc-die-tests: add missing library
9170         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
9171
9172         test-xvasprintf: silence compiler warnings
9173         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
9174         empty string from gcc.
9175
9176 2009-11-19  Jim Meyering  <meyering@redhat.com>
9177
9178         xfreopen: new module, from coreutils
9179         * modules/xfreopen: New module.
9180         * lib/xfreopen.c: New file.
9181         * lib/xfreopen.h: New file.
9182         * MODULES.html.sh (File stream based Input/Output"): Add it.
9183
9184 2009-11-19  Eric Blake  <ebb9@byu.net>
9185
9186         manywarnings: depend on warnings
9187         * modules/manywarnings (Depends-on): Add warnings.
9188
9189         build: avoid compiler warnings
9190         * lib/select.c (rpl_select): Delete unused variable.
9191         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
9192
9193 2009-11-18  Eric Blake  <ebb9@byu.net>
9194
9195         tests: avoid false negative with --with-packager
9196         * tests/test-version-etc.sh: Discard packager information.
9197         * tests/test-argp-version-etc-1.sh: Likewise.
9198         Reported by Mike Frysinger.
9199
9200         utimens: fix regression on Solaris
9201         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
9202         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
9203         can only change fd timestamps via futimesat.  Instead, use an
9204         additional witness macro to avoid BSD bug.
9205         Reported by Jim Meyering.
9206
9207 2009-11-17  Eric Blake  <ebb9@byu.net>
9208
9209         usleep: use it to simplify tests
9210         * modules/stat-time-tests (Depends-on): Add usleep.
9211         (configure.ac): Drop usleep check.
9212         * modules/chown-tests (Depends-on, configure.ac): Likewise.
9213         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
9214         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
9215         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
9216         * modules/openat-tests (Depends-on, configure.ac): Likewise.
9217         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
9218         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
9219         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
9220         Likewise.
9221         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
9222         * tests/test-lchown.h (nap): Likewise.
9223         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
9224         * tests/test-stat-time.c (nap): Likewise.
9225         * tests/test-utimens-common.h (nap): Update comments.
9226
9227         usleep: new module
9228         * modules/usleep: New file.
9229         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
9230         * lib/usleep.c (usleep): Likewise.
9231         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
9232         * modules/unistd (Makefile.am): Substitute witnesses.
9233         * lib/unistd.in.h (usleep): Add declaration.
9234         * doc/pastposix-functions/usleep.texi (usleep): Document this.
9235         * MODULES.html.sh (Date and time): Likewise.
9236         * modules/usleep-tests (Depends-on): New test.
9237         * tests/test-usleep.c: New file.
9238
9239         chown: work around OpenBSD bug
9240         * lib/chown.c (rpl_chown): Work around the bug.
9241         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
9242         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
9243         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
9244         * modules/chown (Depends-on): Add stdbool.
9245         * modules/lchown (Depends-on): Likewise.
9246         * doc/posix-functions/chown.texi (chown): Document the bug.
9247         * doc/posix-functions/lchown.texi (lchown): Likewise.
9248         * tests/test-lchown.h (test_chown): Relax test.
9249
9250         mkstemp: avoid conflict with C++ keyword template
9251         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
9252         * lib/mkostemp.c (mkostemp): Likewise.
9253         * lib/mkostemps.c (mkostemps): Likewise.
9254         * lib/mkstemp.c (mkstemp): Likewise.
9255         * lib/mkstemps.c (mkstemps): Likewise.
9256
9257         xalloc-die-tests: optimize
9258         * tests/test-xalloc-die.sh: Reduce number of processes.
9259
9260 2009-11-17  Simon Josefsson  <simon@josefsson.org>
9261
9262         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
9263         patch from ludo@gnu.org (Ludovic Courtès).
9264
9265 2009-11-17  Jim Meyering  <meyering@redhat.com>
9266
9267         version-etc: use proper license string
9268         * modules/version-etc (License): Use LGPL, not LGPLv3+.
9269         * modules/version-etc-fsf: Likewise.
9270
9271 2009-11-17  Simon Josefsson  <simon@josefsson.org>
9272
9273         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
9274         printed to stdout.  Deal with EOL differences.
9275
9276 2009-11-17  Eric Blake  <ebb9@byu.net>
9277
9278         unsetenv: work around Solaris bug
9279         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
9280         * lib/unsetenv.c (rpl_unsetenv): Work around it.
9281         Reported by Jim Meyering.
9282
9283         vasnprintf: avoid compiler warnings
9284         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
9285         variables.
9286         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
9287
9288 2009-11-17  Simon Josefsson  <simon@josefsson.org>
9289
9290         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
9291         settings since xalloc-die is no longer the self test,
9292         xalloc-die.sh is.
9293
9294 2009-11-17  Jim Meyering  <meyering@redhat.com>
9295
9296         test-xalloc-die.sh: make the code agree with the commit log
9297         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
9298         at the end, just in case you happen to have a test-xalloc-die
9299         program in some other PATH directory.
9300
9301         test-xalloc-die.sh: fix a portability bug
9302         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
9303         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
9304         Otherwise, argv[0] (as often seen in diagnostics) would be too
9305         system-dependent, sometimes with, and sometimes without the leading "./".
9306
9307         version-etc-fsf: relax license to LGPLv3+
9308         * modules/version-etc-fsf (License): Relax license.
9309
9310 2009-11-16  Eric Blake  <ebb9@byu.net>
9311
9312         xalloc-die-tests: avoid printing null pointer
9313         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
9314         shell script.
9315         * tests/test-xalloc-die.c (program_name): Declare.
9316         * tests/test-xalloc-die.sh (tmpfiles): New file.
9317
9318         setenv, unsetenv: work around various bugs
9319         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
9320         (setenv) [HAVE_SETENV]: Work around bugs.
9321         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
9322         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
9323         for bugs.
9324         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
9325         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
9326         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
9327         * modules/stdlib (Makefile.am): Update substitutions.
9328         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
9329         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
9330         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
9331         * modules/setenv-tests: New test.
9332         * modules/unsetenv-tests: Likewise.
9333         * tests/test-setenv.c: New file.
9334         * tests/test-unsetenv.c: Likewise.
9335
9336 2009-11-16  Jim Meyering  <meyering@redhat.com>
9337
9338         version-etc: relax license to LGPLv3+
9339         * modules/version-etc (License): Relax license.
9340
9341         better AC_REQUIRE expanded-before-required-warning avoidance
9342         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
9343         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
9344         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
9345         which is no longer needed.
9346
9347 2009-11-16  Eric Blake  <ebb9@byu.net>
9348
9349         test-freading: clean up temporary file
9350         * tests/test-freading.c (main): Remove file on success, and use
9351         ASSERT more liberally.
9352         Reported by Jim Meyering.
9353
9354 2009-11-16  Jim Meyering  <meyering@redhat.com>
9355
9356         avoid new AC_REQUIRE expanded-before-required warnings
9357         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
9358         merely using it.
9359         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
9360         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
9361
9362 2009-11-15  Simon Josefsson  <simon@josefsson.org>
9363
9364         * tests/test-xalloc-die.c: New file.
9365         * modules/xalloc-die-tests: New file.
9366         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
9367         XFAIL_TESTS so it can be appended by modules.
9368
9369 2009-11-15  Simon Josefsson  <simon@josefsson.org>
9370
9371         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
9372         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
9373
9374 2009-11-14  Eric Blake  <ebb9@byu.net>
9375
9376         fnmatch: avoid compiler warning
9377         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
9378         to silence compiler warning about mismatch signedness in ?:.
9379         Reported by Robert Millan.
9380
9381         intprops: add double-inclusion guard
9382         * lib/intprops.h: Allow idempotent includes.
9383         Suggested by Bruce Korb.
9384
9385         openat: detect Solaris fchownat bug
9386         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
9387         penalizing glibc chownat when only lchownat is broken.
9388         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
9389         trailing slash bugs.
9390         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
9391         * modules/openat-tests (Files): Include more files.
9392         (Depends-on): Add mgetgroups, sleep, stat-time.
9393         (configure.ac): Add additional checks.
9394         (Makefile.am): Build new test.
9395         * tests/test-fchownat.c: New file.
9396
9397         lchown: detect Solaris and FreeBSD bug
9398         * lib/lchown.c (rpl_lchown): Work around bug.
9399         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
9400         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9401         * modules/unistd (Makefile.am): Populate it.
9402         * lib/unistd.in.h (lchown): Update declaration.
9403         * doc/posix-functions/lchown.texi (lchown): Document the bug.
9404         * modules/lchown-tests: New file.
9405         * tests/test-lchown.h (test_lchown): Likewise.
9406         * tests/test-lchown.c (main): Likewise.
9407
9408         chown: detect Solaris and FreeBSD bug
9409         * lib/chown.c (rpl_chown): Work around bug.
9410         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
9411         (gl_PREREQ_CHOWN): Delete.
9412         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9413         * modules/unistd (Makefile.am): Populate it.
9414         * lib/unistd.in.h (chown): Update declaration.
9415         * lib/lchown.c (chown): Update client.
9416         * modules/lchown (Depends-on): Add lstat.
9417         * doc/posix-functions/chown.texi (chown): Document the bug.
9418         * doc/posix-functions/getgroups.texi (getgroups): Document
9419         getgroups pitfall.
9420         * modules/chown-tests: New file.
9421         * tests/test-chown.h (test_chown): Likewise.
9422         * tests/test-chown.c (main): Likewise.
9423
9424 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
9425
9426         gnulib-tool: correctly detect absence of m4 directories
9427         * gnulib-tool: Avoid extra newline on data passed to wc -l.
9428
9429 2009-11-14  Jim Meyering  <meyering@redhat.com>
9430
9431         maint.mk: Prohibit inclusion of "xalloc.h" without use.
9432         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
9433
9434 2009-11-14  John W. Eaton  <jwe@gnu.org>
9435
9436         strftime.h: wrap funtion declaration in extern "C" block
9437         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
9438
9439 2009-11-13  Eric Blake  <ebb9@byu.net>
9440
9441         getgroups: avoid compiler warning
9442         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
9443
9444         getgroups: work around FreeBSD bug
9445         * lib/getgroups.c (rpl_getgroups): Work around the bug.
9446         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
9447         * doc/posix-functions/getgroups.texi (getgroups): Document it.
9448         * tests/test-getgroups.c (main): Fix buffer overrun.
9449
9450         getgroups: avoid compilation failure
9451         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
9452         * modules/getgroups (Depends-on): Add stdint.
9453
9454 2009-11-13  Jim Meyering  <meyering@redhat.com>
9455
9456         test-getgroups: avoid compilation failure
9457         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
9458
9459 2009-11-13  Eric Blake  <ebb9@byu.net>
9460
9461         mgetgroups: new module, taken from coreutils
9462         * modules/mgetgroups: New file.
9463         * lib/mgetgroups.h: Likewise.
9464         * lib/mgetgroups.c (mgetgroups): Likewise.
9465         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
9466         * MODULES.html.sh (Users and groups): Mention it.
9467
9468         getgroups: don't expose GETGROUPS_T to user
9469         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
9470         an element at a time if GETGROUPS_T is wrong size.
9471         * lib/getugroups.h (getugroups): Change signature.
9472         * lib/unistd.in.h (getgroups): Likewise.
9473         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
9474         signature needs fixing.
9475         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
9476         AC_TYPE_GETGROUPS.
9477         * modules/group-member (Depends-on): Add getgroups.
9478         * lib/group-member.c (group_info, get_group_info): Use gid_t.
9479         (group_member): Rely on getgroups replacement.
9480         * lib/getugroups.c (getugroups): Use gid_t.
9481         * tests/test-getgroups.c (main): Likewise.
9482         * NEWS: Mention the signature change.
9483         * doc/posix-functions/getgroups.texi (getgroups): Mention the
9484         problem with signature.
9485         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
9486         GETGROUPS_T is still useful for setgroups.
9487
9488         getgroups, getugroups: provide stubs for mingw
9489         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
9490         * lib/getugroups.c (getugroups): Likewise.
9491         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
9492         function.  Modernize replacement scheme.
9493         (gl_PREREQ_GETGROUPS): Delete.
9494         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
9495         * modules/getgroups (configure.ac): Declare witness.
9496         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
9497         * modules/unistd (Depends-on): Substitute witness.
9498         * lib/unistd.in.h (getgroups): Declare replacement.
9499
9500         getgroups: avoid calling exit
9501         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
9502         drop xalloc.
9503         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
9504         dependencies.
9505         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
9506         exiting, in the rare case of malloc failure.
9507
9508         getgroups: fix logic error
9509         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
9510         has more than 20 groups.
9511         * modules/getgroups-tests: New test.
9512         * tests/test-getgroups.c: New file.
9513
9514 2009-11-13  Simon Josefsson  <simon@josefsson.org>
9515
9516         * tests/test-base64.c: Improve.
9517
9518 2009-11-13  Simon Josefsson  <simon@josefsson.org>
9519
9520         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
9521         Blake <ebb9@byu.net>.
9522
9523 2009-11-13  Simon Josefsson  <simon@josefsson.org>
9524
9525         * tests/test-xvasprintf.c: Add %s%s related checks.
9526
9527 2009-11-12  Eric Blake  <ebb9@byu.net>
9528
9529         version-etc: match standards.texi style
9530         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
9531         and use <> only for URLs.
9532
9533 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
9534
9535         fts: do not fail on a submount during traversal
9536         * lib/fts.c (fts_build): Read the stat info again after opening
9537         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
9538         Original report at http://bugzilla.redhat.com/501848.
9539
9540 2009-11-12  Jim Meyering  <meyering@redhat.com>
9541
9542         bootstrap: sync from coreutils
9543         * build-aux/bootstrap (bootstrap_epilogue): New function.
9544         Use git_modules_config in one more place.  This make bootstrap's
9545         --gnulib-srcdir option more useful for testing.
9546
9547         bootstrap: generalize autoheader check
9548         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
9549         AC_CONFIG_HEADERS.
9550
9551 2009-11-11  Eric Blake  <ebb9@byu.net>
9552
9553         mkfifoat: use new modules for Solaris and BSD bugs
9554         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
9555         * lib/mkfifoat.c (mknodat): Split...
9556         * lib/mknodat.c (mknodat): ...into new file.
9557         * modules/mkfifoat (Files): Ship new file.
9558         (Depends-on): Add mkfifo, mknod.
9559         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
9560         (Depends-on): Add symlink.
9561         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
9562         redundant with test_mkfifo.h.
9563         (do_mkfifoat, do_mknodat): New helpers.
9564
9565         mknod: new module
9566         * modules/mknod: New file.
9567         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
9568         * lib/mknod.c (mknod): Likewise.
9569         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
9570         defaults.
9571         * modules/sys_stat (Makefile.am): Substitute them.
9572         * lib/sys_stat.in.h (mknod): Declare replacement.
9573         * MODULES.html.sh (Support for systems lacking POSIX:2008):
9574         Document it.
9575         * doc/posix-functions/mknod.texi (mknod): Likewise.
9576         * modules/mknod-tests: New test.
9577         * tests/test-mknod.c: Likewise.
9578
9579         mkfifo: new module
9580         * modules/mkfifo: New file.
9581         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
9582         * lib/mkfifo.c (mkfifo): Likewise.
9583         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
9584         defaults.
9585         * modules/sys_stat (Makefile.am): Substitute them.
9586         * lib/sys_stat.in.h (mkfifo): Declare replacement.
9587         * MODULES.html.sh (Support for systems lacking POSIX:2008):
9588         Document it.
9589         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
9590         * modules/mkfifo-tests: New test.
9591         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
9592         from test-mkfifoat.c.
9593         * tests/test-mkfifo.c: New file.
9594
9595         readlink: detect FreeBSD bug
9596         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
9597         slash on symlink.
9598         * doc/posix-functions/readlink.texi (readlink): Document the bug.
9599         * tests/test-readlink.h (test_readlink): Enhance test.
9600
9601         symlink: detect FreeBSD bug
9602         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
9603         slash on symlink.
9604         * doc/posix-functions/symlink.texi (symlink): Document the bug.
9605         * tests/test-symlink.h (test_symlink): Enhance test.
9606
9607 2009-11-10  Eric Blake  <ebb9@byu.net>
9608
9609         link: detect FreeBSD bug
9610         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
9611         symlink.
9612         * doc/posix-functions/link.texi (link): Document the bug.
9613         * tests/test-link.h (test_link): Enhance test.
9614         * tests/test-linkat.c (main): Update caller.
9615
9616         unlink, remove: detect FreeBSD bug
9617         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
9618         slash on symlink.
9619         * doc/posix-functions/unlink.texi (unlink): Document the bug.
9620         * doc/posix-functions/remove.texi (remove): Likewise.
9621         * tests/test-unlink.h (test_unlink): Enhance test.
9622         * tests/test-remove.c (main): Likewise.
9623
9624 2009-11-09  Eric Blake  <ebb9@byu.net>
9625
9626         rename: detect FreeBSD bug
9627         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
9628         slash on symlink.
9629         * modules/renameat-tests (Depends-on): Add filenamecat.
9630         * tests/test-rename.h (test_rename): Allow one more errno.
9631         * tests/test-renameat.c (main): Likewise.
9632         * doc/posix-functions/rename.texi (rename): Document the bug.
9633
9634         open: detect FreeBSD bug
9635         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
9636         symlink.
9637         * doc/posix-functions/open.texi (open): Document the bug.
9638         * doc/posix-functions/utimes.texi (utimes): Likewise.
9639         * tests/test-open.h (test_open): Add parameters, and test symlink
9640         handling.
9641         * tests/test-open.c (main): Adjust caller.
9642         * tests/test-fcntl-safer.c (main): Likewise.
9643         * modules/open-tests (Depends-on): Add stdbool, symlink.
9644         * modules/fcntl-safer-tests (Depends-on): Likewise.
9645         * tests/test-openat.c (main): Add test-open tests.
9646
9647         stat: detect FreeBSD bug
9648         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
9649         symlink.
9650         * doc/posix-functions/stat.texi (stat): Document the bug.
9651         * tests/test-stat.h (test_stat_func): Add argument.
9652         * tests/test-stat.c (main): Adjust caller.
9653         * tests/test-fstatat.c (main): Likewise.
9654         * modules/stat-tests (Depends-on): Add stdbool, symlink.
9655         Reported by Jim Meyering.
9656
9657 2009-11-09  James Youngman  <jay@gnu.org>
9658
9659         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
9660         * lib/strftime.c: Correct placement of #include "ignore-value.h".
9661
9662 2009-11-08  Jim Meyering  <meyering@redhat.com>
9663
9664         utimens: remove invalid futimesat call
9665         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
9666         It used the file descriptor of the target file as the DIR_FD
9667         parameter and NULL as the file name.  That caused failure with
9668         errno == EFAULT on FreeBSD-8.0-rc2
9669
9670 2009-11-07  Eric Blake  <ebb9@byu.net>
9671
9672         fflush, freadseek: use fseeko, not fseek
9673         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
9674         (clear_ungetc_buffer): Avoid potential problems on large files.
9675         * lib/freadseek.c (freadseek): Likewise.
9676         * modules/freadseek (Depends-on): Add fseeko.
9677         * modules/fseek (configure.ac): Set a witness.
9678         * tests/test-fflush.c (main): Use fseeko.
9679         * tests/test-fpurge.c (fseek): Disable link warning.
9680         * tests/test-freadable.c (fseek): Likewise.
9681         * tests/test-freading.c (fseek): Likewise.
9682         * tests/test-fseeko.c (fseek): Likewise.
9683         * tests/test-ftell.c (fseek): Likewise.
9684         * tests/test-ftello.c (fseek): Likewise.
9685         * tests/test-fwritable.c (fseek): Likewise.
9686         * tests/test-fwriting.c (fseek): Likewise.
9687
9688 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9689
9690         * modules/memchr (Depends-on): Drop getpagesize dependency.
9691
9692 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9693
9694         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
9695         Reported by Ludovic Courtès.
9696         * build-aux/pmccabe2html: Improve example usage.
9697         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
9698
9699 2009-11-06  Jim Meyering  <meyering@redhat.com>
9700
9701         do-release-commit-and-tag: New module.
9702         Automate the release-commit and tag process.
9703         * build-aux/do-release-commit-and-tag: New script, from coreutils.
9704         * modules/do-release-commit-and-tag: New file.
9705         * MODULES.html.sh (Support for maintaining and releasing): Add it.
9706
9707 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9708
9709         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
9710         because test-select.c uses inet_pton.
9711
9712 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9713
9714         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
9715         GETADDRINFO_LIB.  Bump serial number.
9716         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
9717         Suggested by Eric Blake <ebb9@byu.net>.
9718
9719 2009-11-05  Eric Blake  <ebb9@byu.net>
9720
9721         strtod: detect darwin bug
9722         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
9723         Reported by Leo Davis.
9724
9725         freopen-safer: new module
9726         * modules/freopen-safer: New module.
9727         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
9728         * lib/freopen-safer.c (freopen_safer): New file.
9729         * lib/stdio-safer.h (freopen_safer): New declaration.
9730         * lib/stdio--.h (freopen): New override.
9731         * MODULES.html.sh (File stream based Input/Output): Mention it.
9732         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
9733         freopen-safer module.
9734         * doc/posix-functions/stderr.texi (stderr): Likewise.
9735         * doc/posix-functions/stdin.texi (stdin): Likewise.
9736         * doc/posix-functions/stdout.texi (stdout): Likewise.
9737         * modules/freopen-safer-tests: New test.
9738         * tests/test-reopen-safer.c: New file.
9739
9740 2009-11-05  Jim Meyering  <meyering@redhat.com>
9741
9742         maint.mk: Prohibit inclusion of "close-stream.h" without use.
9743         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
9744
9745 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9746
9747         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
9748
9749 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9750
9751         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
9752
9753 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9754
9755         Fix link error.
9756         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
9757         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
9758
9759 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9760
9761         * tests/test-func.c: Also test value of __func__.
9762
9763 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9764
9765         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
9766         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
9767
9768 2009-11-05  Bruno Haible  <bruno@clisp.org>
9769
9770         Fix link error.
9771         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
9772         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
9773         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
9774
9775 2009-11-05  Bruno Haible  <bruno@clisp.org>
9776
9777         Tests for module 'inet_pton'.
9778         * modules/inet_pton-tests: New file.
9779         * tests/test-inet_pton.c: New file.
9780
9781 2009-11-05  Bruno Haible  <bruno@clisp.org>
9782
9783         Tests for module 'inet_ntop'.
9784         * modules/inet_ntop-tests: New file.
9785         * tests/test-inet_ntop.c: New file.
9786
9787 2009-11-04  Eric Blake  <ebb9@byu.net>
9788
9789         stdlib-safer: wrap all mkstemp variants
9790         * modules/mkostemp (configure.ac): Set witness.
9791         * modules/mkostemps (configure.ac): Likewise.
9792         * modules/mkstemps (configure.ac): Likewise.
9793         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
9794         (mkstemps_safer): Wrap more functions.
9795         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
9796         wrapping.
9797         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
9798         (mkstemps_safer): Implement the wrappers.
9799
9800         mkstemps, mkostemps: new modules
9801         * modules/mkostemps: New module.
9802         * modules/mkstemps: Likewise.
9803         * lib/mkostemps.c (mkostemps): New file.
9804         * lib/mkstemps.c (mkstemps): Likewise.
9805         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
9806         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
9807         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
9808         * modules/stdlib (Makefile.am): Substitute them.
9809         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
9810         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
9811         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
9812         * doc/gnulib.texi (Glibc stdlib.h): Include them.
9813         * MODULES.html.sh (File system functions): Mention them.
9814
9815         tempname: resync from glibc
9816         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
9817         same values for __GT_FILE as glibc.  Abort even when assertions
9818         are disabled.
9819         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
9820         match its value otherwise.  Allow idempotent inclusion.
9821         * lib/mkdtemp.c (mkdtemp): Adjust caller.
9822         * lib/mkostemp.c (mkostemp): Likewise.
9823         * lib/mkstemp.c (mkstemp): Likewise.
9824         * lib/tmpfile.c (tmpfile): Likewise.
9825         * NEWS: Document this.
9826
9827         utimens: fix use of futimens on older Linux
9828         * lib/utimens.c (fdutimens): Use updated, rather than original,
9829         timespec to avoid bug in older Linux kernel.
9830         Reported by Simon Josefsson.
9831
9832 2009-11-04  Bruno Haible  <bruno@clisp.org>
9833
9834         Make num_processors more flexible and consistent.
9835         * lib/nproc.h (enum nproc_query): New type.
9836         (num_processors): Add a 'query' argument.
9837         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
9838         (num_processors): Add a 'query' argument. Test the value of the
9839         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
9840         mingw, count the number of CPUs available for the current process.
9841         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
9842         Check for sched_getaffinity and sched_getaffinity_np.
9843         * modules/nproc (Depends-on): Add c-ctype, extensions.
9844         * NEWS: Mention the change.
9845
9846 2009-11-03  Bruno Haible  <bruno@clisp.org>
9847
9848         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
9849
9850 2009-11-03  Jim Meyering  <meyering@redhat.com>
9851
9852         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
9853         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
9854         if it is defined.
9855
9856 2009-11-02  Eric Blake  <ebb9@byu.net>
9857
9858         mktime, timegm: share common declaration
9859         * lib/mktime-internal.h: New file.
9860         * lib/mktime.c: Use it rather than open-coding a declaration.
9861         * lib/timegm.c: Likewise.
9862         * modules/mktime (Files): Ship it.
9863         * modules/timegm (Files): Likewise.
9864         Suggested by Bruno Haible.
9865
9866         test-update-copyright: update test to match script changes
9867         * tests/test-update-copyright.sh: Avoid hard-coding perl
9868         location.  Don't update *.bak created by earlier runs.
9869
9870 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
9871             Simon Josefsson  <simon@josefsson.org>
9872             Bruno Haible  <bruno@clisp.org>
9873
9874         Fix link error on Solaris 8.
9875         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
9876         also in libnsl. Define also INET_PTON_LIB.
9877         * modules/inet_pton (Link): New section.
9878
9879 2009-11-02  Simon Josefsson  <simon@josefsson.org>
9880             Bruno Haible  <bruno@clisp.org>
9881
9882         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
9883         * modules/inet_ntop (Link): New section.
9884         Reported by Boyan Kasarov <bkasarov@gmail.com>.
9885
9886 2009-11-02  Eric Blake  <ebb9@byu.net>
9887
9888         maint: avoid compiler warnings in m4 macros
9889         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
9890         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
9891
9892 2009-11-02  Simon Josefsson  <simon@josefsson.org>
9893
9894         * m4/pmccabe2html.m4: Remove file.
9895         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
9896         function.  Change maintainer.
9897         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
9898         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
9899         Courtès).
9900
9901 2009-10-31  Eric Blake  <ebb9@byu.net>
9902
9903         fseeko: fix m4 regression
9904         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
9905         regression from 2009-10-27.
9906         Reported by Ralf Wildenhues.
9907
9908 2009-10-31  Jim Meyering  <meyering@redhat.com>
9909
9910         inttostr: aesthetics and improved (compile-time) safety
9911         Define inttype_is_signed rather than inttype_is_unsigned,
9912         since the sole use is via "#if inttype_is_signed".
9913         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
9914         inttype_is_unsigned.
9915         * lib/offtostr.c (inttype_is_signed): Likewise.
9916         * lib/uinttostr.c (inttype_is_signed): Likewise.
9917         * lib/umaxtostr.c (inttype_is_signed): Likewise.
9918         * lib/inttostr.c (inttostr): Use verify to cross-check the
9919         inttype_is_signed value and the signedness of the actual type.
9920         * modules/inttostr (Depends-on): Add verify.
9921
9922 2009-10-30  Eric Blake  <ebb9@byu.net>
9923
9924         build: avoid compiler warnings
9925         * lib/fchmodat.c (lchmod): Mark unused variables.
9926         * lib/getopt.c (_getopt_initialize): Likewise.
9927         * lib/mktime.c (__mktime_internal): Provide prototype.
9928         * lib/inttostr.c (inttostr): Avoid compiler warning even with
9929         older gcc that do not understand #pragma GCC diagnostic.
9930         * lib/uinttostr.c (inttype_is_unsigned): Define.
9931         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
9932
9933 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
9934
9935         stat: fix compilation on AIX
9936         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
9937         only see struct stat64.
9938
9939 2009-10-30  Eric Blake  <ebb9@byu.net>
9940
9941         exclude: make more robust
9942         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
9943         rather than masking a coding bug.
9944         Suggested by Bruno Haible.
9945
9946 2009-10-30  Jim Meyering  <meyering@redhat.com>
9947
9948         perl scripts: remove #!/usr/bin/perl in favor of more portable...
9949         Rather than putting #!/usr/bin/perl on the first line,
9950         start with a variant of what's recommended by "man perlrun" that
9951         invokes the first "perl" program from your shell's search path.
9952         * build-aux/gitlog-to-changelog: Replace #!... as above.
9953         Add a "Local Variables" perl mode setting.
9954         Prompted by a patch from Ludovic Courtès.
9955         Improved by Eric Blake.
9956         * build-aux/useless-if-before-free: Likewise.
9957         * build-aux/announce-gen: Likewise.
9958         * build-aux/update-copyright: Likewise.
9959
9960 2009-10-29  Eric Blake  <ebb9@byu.net>
9961
9962         filenamecat-lgpl: adjust clients
9963         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
9964         filenamecat.
9965         * modules/renameat (Depends-on): Likewise.
9966
9967         filenamecat: split into filenamecat-lgpl
9968         * modules/filenamecat-lgpl: New module.
9969         * modules/filenamecat (Files): Move library-safe files into
9970         filenamecat-lgpl.
9971         (Depends-on): Add filenamecat-lgpl.
9972         (configure.ac): Declare witness.
9973         * lib/filenamecat.h (file_name_concat): Only declare when using
9974         GPL module.
9975         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
9976         Move...
9977         * lib/filenamecat-lgpl.c: ...into new file.
9978         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
9979         (gl_FILE_NAME_CONCAT): Use it.
9980         * MODULES.html.sh (File system functions): Mention new module.
9981
9982         argp: avoid memory leak
9983         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
9984         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
9985         base_name, since the latter malloc()s and can call exit().
9986         Leak introduced 2006-07-03.
9987
9988         dirname-lgpl: adjust clients that don't need full dirname
9989         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
9990         * modules/filenamecat (Depends-on): Likewise.
9991         * modules/linkat (Depends-on): Likewise.
9992         * modules/mkancesdirs (Depends-on): Likewise.
9993         * modules/mkdir (Depends-on): Likewise.
9994         * modules/openat (Depends-on): Likewise.
9995         * modules/savewd (Depends-on): Likewise.
9996         * modules/rename (Depends-on): Likewise.
9997         (License): Relax license.
9998         * modules/mkdir-tests (Depends-on): Drop progname.
9999         (Makefile.am): Delete unneeded LDADD.
10000         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
10001
10002         dirname: split into dirname-lgpl
10003         * modules/dirname-lgpl: New module.
10004         * modules/dirname (Files): Move library-safe files into
10005         dirname-lgpl.
10006         (Depends-on): Add dirname-lgpl.
10007         (configure.ac): Declare witness.
10008         * modules/double-slash-root (License): Relax license.
10009         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
10010         module.
10011         * lib/dirname.c (dir_len, mdir_name): Move...
10012         * lib/dirname-lgpl.c: ...into new file.
10013         * lib/basename.c (last_component, base_len): Move...
10014         * lib/basename-lgpl.c: ...into new file.
10015         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
10016         (gl_DIRNAME): Use it.
10017         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
10018         Mention new module.
10019         * modules/dirname-tests (Depends-on): Add progname.
10020         * tests/test-dirname.c (program_name): Delete.
10021
10022         mkdir: make safe for libraries
10023         * modules/mkdir (Depends-on): Drop xalloc.
10024         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
10025         exit.
10026
10027         tests: avoid some compiler warnings
10028         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
10029         literals.
10030         * tests/test-memchr.c (main): Avoid type mismatch.
10031         * tests/test-arpa_inet.c (main): Avoid unused parameters.
10032         * tests/test-base64.c (main): Likewise.
10033         * tests/test-getdelim.c (main): Likewise.
10034         * tests/test-gethostname.c (main): Likewise.
10035         * tests/test-getline.c (main): Likewise.
10036         * tests/test-netinet_in.c (main): Likewise.
10037         * tests/test-select.c (open_server_socket, main): Likewise.
10038         * tests/test-select-stdin.c (main): Likewise.
10039         * tests/test-sockets.c (main): Likewise.
10040         * tests/test-strsignal.c (main): Likewise.
10041         * tests/test-sys_select.c (main): Likewise.
10042         * tests/test-sys_socket.c (main): Likewise.
10043         * tests/test-u64.c (main): Likewise.
10044         * tests/test-xfprintf-posix.c (main): Likewise.
10045         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
10046
10047         sockets: avoid compiler warning
10048         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
10049
10050         maint: detect usage(1) and other suspicious exits
10051         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
10052
10053 2009-10-29  Jim Meyering  <meyering@redhat.com>
10054
10055         timespec: long-to-int truncation could make timespec_cmp malfunction
10056         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
10057         a multiple of 2^32 nanoseconds as no difference.
10058
10059 2009-10-28  Jim Meyering  <meyering@redhat.com>
10060
10061         fprintftime: wrap macro code argument in "do {...} while(0)"
10062         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
10063         cpy macro must be a statement that can be followed by a semicolon.
10064         Now that the else clause contains a comment and is hence longer
10065         than one line, I require curly braces.  That in turn requires
10066         that we wrap this code block in the standard do...while(0).
10067
10068         fprintftime: remove stray semicolon from previous change
10069         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
10070
10071         fprintftime: avoid a warning about ignored fwrite return value
10072         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
10073         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
10074         that is unsafe.
10075         * modules/fprintftime (Depends-on): Add ignore-value.
10076
10077         exclude: avoid an unwarranted warning
10078         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
10079
10080 2009-10-27  Eric Blake  <ebb9@byu.net>
10081
10082         fseek: avoid compilation failure when fflush is replaced
10083         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
10084         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
10085         module is in use.
10086         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
10087         module is not in use; since REPLACE_FSEEK worked otherwise.
10088         (GNULIB_FTELLO): Likewise for ftell.
10089         Reported by Ian Beckwith and others.
10090
10091 2009-10-27  Bruno Haible  <bruno@clisp.org>
10092
10093         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
10094         Reported by Jim Meyering.
10095
10096 2009-10-27  Jim Meyering  <jim@meyering.net>
10097             Bruno Haible  <bruno@clisp.org>
10098
10099         Avoid warning despite dropping the return value of fwrite.
10100         * lib/unicodeio.c: Include ignore-value.h.
10101         (fwrite_success_callback): Explicitly ignore fwrite's return value.
10102         * modules/unicodeio (Depends-on): Add ignore-value.
10103
10104 2009-10-26  Eric Blake  <ebb9@byu.net>
10105
10106         areadlinkat: fix fallback path
10107         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
10108         pointer and zero.
10109
10110 2009-10-22  Pádraig Brady  <P@draigBrady.com>
10111
10112         Use a better IO block size for modern systems
10113         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
10114         * lib/md2.c: Likewise.
10115         * lib/md4.c: Likewise.
10116         * lib/md5.c: Likewise.
10117         * lib/sha1.c: Likewise.
10118         * lib/sha256.c: Likewise.
10119         * lib/sha512.c: Likewise.
10120
10121 2009-10-22  Eric Blake  <ebb9@byu.net>
10122
10123         tests: avoid several compiler warnings
10124         * tests/test-getcwd.c (main): Avoid buffer underflow.
10125         * tests/test-getdate.c (main): String literals are not safe with
10126         putenv, so use setenv.  Declare unused argument.
10127         * modules/getdate-tests (Depends-on): Add setenv.
10128         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
10129         problems with string literals in char *.
10130         * tests/test-hash.c (main): Avoid shadowing declaration.
10131         (insert_new): Treat string literals as char const *.
10132         * tests/test-getopt.h (test_getopt): Likewise.
10133         (getopt_loop): Alter types to minimize casting elsewhere.
10134         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
10135         (test_getopt_long_posix): Likewise.
10136         (do_getopt_long): Add wrapper to minimize casting.
10137         * tests/test-atexit.c (clear_temp_file): Use void.
10138         * tests/test-areadlink-with-size.c (main): Declare unused
10139         arguments.
10140         * tests/test-areadlink.c (main): Likewise.
10141         * tests/test-areadlinkat-with-size.c (main): Likewise.
10142         * tests/test-areadlinkat.c (main): Likewise.
10143         * tests/test-canonicalize-lgpl.c (main): Likewise.
10144         * tests/test-canonicalize.c (main): Likewise.
10145         * tests/test-dirent-safer.c (main): Likewise.
10146         * tests/test-dirname.c (main): Likewise.
10147         * tests/test-dup2.c (main): Likewise.
10148         * tests/test-fchdir.c (main): Likewise.
10149         * tests/test-fcntl-h.c (main): Likewise.
10150         * tests/test-fcntl-safer.c (main): Likewise.
10151         * tests/test-fdopendir.c (main): Likewise.
10152         * tests/test-fdutimensat.c (main): Likewise.
10153         * tests/test-fflush.c (main): Likewise.
10154         * tests/test-filenamecat.c (main): Likewise.
10155         * tests/test-filevercmp.c (main): Likewise.
10156         * tests/test-fopen-safer.c (main): Likewise.
10157         * tests/test-fopen.c (main): Likewise.
10158         * tests/test-fpending.c (main): Likewise.
10159         * tests/test-fpurge.c (main): Likewise.
10160         * tests/test-freading.c (main): Likewise.
10161         * tests/test-fstatat.c (main): Likewise.
10162         * tests/test-fsync.c (main): Likewise.
10163         * tests/test-futimens.c (main): Likewise.
10164         * tests/test-getndelim2.c (main): Likewise.
10165         * tests/test-gettimeofday.c (main): Likewise.
10166         * tests/test-getopt.c (main): Likewise.
10167         * tests/test-i-ring.c (main): Likewise.
10168         * tests/test-inttypes.c (main): Likewise.
10169         * tests/test-link.c (main): Likewise.
10170         * tests/test-lstat.c (main): Likewise.
10171         * tests/test-math.c (main): Likewise.
10172         * tests/test-md5.c (main): Likewise.
10173         * tests/test-memchr2.c (main): Likewise.
10174         * tests/test-memrchr.c (main): Likewise.
10175         * tests/test-mkdir.c (main): Likewise.
10176         * tests/test-mkdirat.c (main): Likewise.
10177         * tests/test-mkfifoat.c (main): Likewise.
10178         * tests/test-open.c (main): Likewise.
10179         * tests/test-openat-safer.c (main): Likewise.
10180         * tests/test-openat.c (main): Likewise.
10181         * tests/test-quotearg.c (main): Likewise.
10182         * tests/test-rawmemchr.c (main): Likewise.
10183         * tests/test-readlink.c (main): Likewise.
10184         * tests/test-remove.c (main): Likewise.
10185         * tests/test-rename.c (main): Likewise.
10186         * tests/test-renameat.c (main): Likewise.
10187         * tests/test-rmdir.c (main): Likewise.
10188         * tests/test-sha1.c (main): Likewise.
10189         * tests/test-signal.c (main): Likewise.
10190         * tests/test-sigaction.c (main): Likewise.
10191         * tests/test-stat.c (main): Likewise.
10192         * tests/test-stat-time.c (main): Likewise.
10193         * tests/test-stddef.c (main): Likewise.
10194         * tests/test-stdint.c (main): Likewise.
10195         * tests/test-stdio.c (main): Likewise.
10196         * tests/test-stdlib.c (main): Likewise.
10197         * tests/test-strchrnul.c (main): Likewise.
10198         * tests/test-strerror.c (main): Likewise.
10199         * tests/test-string.c (main): Likewise.
10200         * tests/test-strtod.c (main): Likewise.
10201         * tests/test-strverscmp.c (main): Likewise.
10202         * tests/test-symlink.c (main): Likewise.
10203         * tests/test-symlinkat.c (main): Likewise.
10204         * tests/test-sys_stat.c (main): Likewise.
10205         * tests/test-sys_time.c (main): Likewise.
10206         * tests/test-time.c (main): Likewise.
10207         * tests/test-unistd.c (main): Likewise.
10208         * tests/test-unlink.c (main): Likewise.
10209         * tests/test-unlinkat.c (main): Likewise.
10210         * tests/test-utimens.c (main): Likewise.
10211         * tests/test-utimensat.c (main): Likewise.
10212         * tests/test-version-etc.c (main): Likewise.
10213         * tests/test-wchar.c (main): Likewise.
10214         * tests/test-wctype.c (main): Likewise.
10215         * tests/test-xprintf-posix.c (main): Likewise.
10216         * tests/test-posixtm.c (main): Likewise.
10217         (STREQ): Delete unused macro.
10218         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
10219         shadowed variables.
10220         * tests/test-memchr.c (main): Likewise.
10221
10222 2009-10-21  Eric Blake  <ebb9@byu.net>
10223
10224         areadlinkat: avoid failure on older glibc
10225         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
10226         rather than mis-comparing 0 against FUNC_RESULT of char*.
10227
10228 2009-10-21  Bruno Haible  <bruno@clisp.org>
10229
10230         * modules/stpncpy (License): Relicense under LGPLv2+.
10231         Reported by David Lutterkort <lutter@redhat.com>.
10232
10233 2009-10-20  Eric Blake  <ebb9@byu.net>
10234
10235         utimensat: work around Solaris 9 bug
10236         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
10237         has trailing slash bugs.
10238         * tests/test-lutimens.h (test_lutimens): Enhance test.
10239         * tests/test-utimens.h (test_utimens): Likewise.
10240         * doc/posix-functions/utime.texi (utime): Enhance documentation.
10241         * doc/posix-functions/utimes.texi (utimes): Likewise.
10242         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
10243         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
10244         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
10245         * doc/posix-functions/futimens.texi (futimens): Likewise.
10246
10247         fdutimensat: new module
10248         * modules/fdutimensat: New file.
10249         * lib/fdutimensat.c (fdutimensat): Likewise.
10250         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
10251         * MODULES.html.sh (File system functions): Mention module.
10252         * modules/fdutimensat-tests: New test.
10253         * tests/test-fdutimensat.c: Likewise.
10254
10255         doc: regenerate INSTALL
10256         * doc/INSTALL: Reflect recent autoconf update.
10257         * doc/INSTALL.ISO: Likewise.
10258         * doc/INSTALL.UTF-8: Likewise.
10259
10260 2009-10-20  Pádraig Brady  <P@draigBrady.com>
10261
10262         acl: warn if ACL support is not detected
10263         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
10264
10265 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
10266
10267         * lib/nproc.h: Add extern "C" block for C++.
10268
10269 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
10270             Bruno Haible  <bruno@clisp.org>
10271
10272         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
10273         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
10274         * doc/posix-functions/isalpha.texi: Likewise.
10275         * doc/posix-functions/isblank.texi: Likewise.
10276         * doc/posix-functions/iscntrl.texi: Likewise.
10277         * doc/posix-functions/isdigit.texi: Likewise.
10278         * doc/posix-functions/isgraph.texi: Likewise.
10279         * doc/posix-functions/islower.texi: Likewise.
10280         * doc/posix-functions/isprint.texi: Likewise.
10281         * doc/posix-functions/ispunct.texi: Likewise.
10282         * doc/posix-functions/isspace.texi: Likewise.
10283         * doc/posix-functions/isupper.texi: Likewise.
10284         * doc/posix-functions/isxdigit.texi: Likewise.
10285
10286 2009-10-18  Bruno Haible  <bruno@clisp.org>
10287
10288         Tests for module 'isblank'.
10289         * modules/isblank-tests: New file.
10290         * tests/test-isblank.c: New file.
10291
10292         New module 'isblank'.
10293         * lib/isblank.c: New file.
10294         * m4/isblank.m4: New file.
10295         * modules/isblank: New file.
10296         * doc/posix-functions/isblank.texi: Mention the new module.
10297
10298 2009-10-18  Bruno Haible  <bruno@clisp.org>
10299
10300         New module 'ctype'.
10301         * lib/ctype.in.h: New file.
10302         * m4/ctype.m4: New file.
10303         * modules/ctype: New file.
10304         * doc/posix-headers/ctype.texi: Mention the new module.
10305
10306 2009-10-18  Jim Meyering  <meyering@redhat.com>
10307
10308         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
10309         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
10310         right after its initialization, rather than farther down.
10311         Keeping these in close proximity makes it easier to ensure
10312         that each such variable is initialized.  E.g.,
10313
10314             LIB_CLOCK_GETTIME=
10315             AC_SUBST([LIB_CLOCK_GETTIME])
10316
10317         This change also increments these serial numbers.
10318         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
10319         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
10320         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
10321
10322 2009-10-18  Bruno Haible  <bruno@clisp.org>
10323
10324         Don't let environment variables perturb build.
10325         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
10326         (gl_PREREQ_GETHRXTIME): ... not here.
10327
10328 2009-10-18  Bruno Haible  <bruno@clisp.org>
10329
10330         Avoid symlink attack in localcharset module.
10331         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
10332         (O_NOFOLLOW): Define fallback.
10333         (get_charset_aliases): Don't open the file if it is a symbolic link.
10334         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
10335         gl_FCNTL_H.
10336         (gl_FCNTL_H): Require it.
10337         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
10338         * modules/localcharset (Files): Add m4/fcntl_h.m4.
10339         Reported by Fergal Glynn <fglynn@veracode.com>.
10340
10341 2009-10-18  Bruno Haible  <bruno@clisp.org>
10342
10343         Implement nproc for mingw.
10344         * lib/nproc.c: Include <windows.h>
10345         (num_processors): On native Windows platforms, try GetSystemInfo.
10346
10347 2009-10-18  Bruno Haible  <bruno@clisp.org>
10348
10349         Implement nproc for IRIX.
10350         * lib/nproc.c: Include <sys/sysmp.h>.
10351         (num_processors): On IRIX systems, try sysmp.
10352         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
10353
10354 2009-10-18  Bruno Haible  <bruno@clisp.org>
10355
10356         Implement nproc for HP-UX.
10357         * lib/nproc.c: Include <sys/pstat.h>
10358         (num_processors): On HP-UX systems, try pstat_getdynamic.
10359         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
10360         pstat_getdynamic.
10361
10362 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
10363             Bruno Haible  <bruno@clisp.org>
10364
10365         Implement nproc for NetBSD, OpenBSD.
10366         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
10367         (ARRAY_SIZE): New macro.
10368         (num_processors): On BSD systems, try sysctl of HW_NCPU.
10369         * m4/nproc.m4: New file.
10370         * modules/nproc (Files): Add m4/nproc.m4.
10371         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
10372         (Makefile.am): Instead, augment lib_SOURCES.
10373
10374 2009-10-18  Bruno Haible  <bruno@clisp.org>
10375
10376         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
10377         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
10378         sys/param.h.
10379
10380 2009-10-16  Eric Blake  <ebb9@byu.net>
10381
10382         utimensat: new module
10383         * modules/utimensat: New file.
10384         * lib/utimensat.c (utimensat): Likewise.
10385         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
10386         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
10387         so we can work around Linux bugs.
10388         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10389         * modules/sys_stat (Makefile.am): Substitute them.
10390         * lib/sys_stat.in.h (utimensat): Declare it.
10391         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10392         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
10393         * modules/utimensat-tests: New test.
10394         * tests/test-utimensat.c: Likewise.
10395
10396         utimens: let lutimens work on non-symlinks
10397         * lib/utimens.c (lutimens): Fall back to utimens rather than
10398         failing with ENOSYS, when file is not a symlink.
10399         (utimens): Reduce redirection.
10400         * tests/test-lutimens.h (test_lutimens): Update test to cover
10401         non-symlinks.
10402         * tests/test-utimens.h (test_utimens): Update test to cover
10403         symlinks.
10404         * tests/test-utimens.c (main): Update caller.
10405
10406         utimens: cache whether utimensat syscall works
10407         * lib/utimens.c (utimensat_works_really): New cache variable.
10408         (fdutimens, lutimens): Use it to avoid failing syscall.
10409
10410         test-stat-time, test-utimens: improve portability
10411         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
10412         ext4 on alpha, and for cygwin.
10413         * tests/test-utimens-common.h: New file.
10414         (nap): Factor delays into single function.
10415         * tests/test-lutimens.h (test_lutimens): Use new header.
10416         * tests/test-futimens.h (test_futimens): Likewise.
10417         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
10418         timestamps to occur from same machine, as was done previously for
10419         test_utimens.
10420         * modules/utimens-tests (Files): Ship new file.
10421         * modules/futimens-tests (Files): Likewise.
10422         Reported in part by Jim Meyering.
10423
10424         sys_stat: sort replacement declarations
10425         * lib/sys_stat.in.h: Sort declarations.
10426         * lib/futimens.c (futimens): Fix typo.
10427
10428 2009-10-15  Jim Meyering  <meyering@redhat.com>
10429
10430         don't let environment settings perturb build
10431         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
10432         could cause a configure-time and/or build-time malfunction.
10433         Typically, a configure-time function-in-library test is performed
10434         via code like this:
10435
10436           LIB_VAR=
10437           AC_SUBST([LIB_VAR])
10438           prefix_saved_LIBS=$LIBS
10439             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
10440                        [test "$ac_cv_search_FUNC" = "none required" ||
10441                         LIB_VAR=$ac_cv_search_FUNC])
10442           LIBS=$prefix_saved_LIBS
10443
10444         However, in each of the files affected by this change, the LIB_VAR=
10445         initialization was omitted.  Thus, when set in the environment, its
10446         value would propagate into generated Makefiles when FUNC is not found
10447         in LIB_NAME.
10448         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
10449         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
10450         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
10451
10452 2009-10-14  Eric Blake  <ebb9@byu.net>
10453
10454         fchdir: avoid infinite recursion in mingw
10455         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
10456         recursing.
10457
10458         test-stat-time: port to mingw
10459         * tests/test-stat-time.c (force_unlink): Return a value.
10460         (test_ctime) [W32]: Fix compilation error.
10461         (nap): Don't call usleep with too large an argument.  Use
10462         force_unlink.
10463         * doc/pastposix-functions/usleep.texi (usleep): Document the
10464         portability issue.
10465
10466 2009-10-13  Jim Meyering  <meyering@redhat.com>
10467
10468         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
10469         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
10470         * modules/pipe-filter-ii: Likewise.
10471         * modules/sys_socket-tests: Likewise.
10472         * modules/tsearch-tests: Likewise.
10473         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
10474         (check): Depend on it.
10475
10476 2009-10-12  Eric Blake  <ebb9@byu.net>
10477
10478         utimens-tests: port to NFS file systems
10479         * tests/test-utimens.h (test_utimens): Refactor utimecmp
10480         comparisons to avoid spurious failures from timestamp drift
10481         between NFS machines.
10482
10483 2009-10-12  Eric Blake  <ebb9@byu.net>
10484
10485         stat-time-tests: minor cleanups
10486         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
10487         * tests/test-stat-time.c (nap): Separate assignment from call.
10488         Suggested by Paolo Bonzini and Bruno Haible.
10489
10490         sys_stat: guarantee struct timespec
10491         * lib/sys_stat.in.h (includes): Always include <time.h>
10492         * modules/sys_stat (Depends-on): Add time.
10493         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
10494         mode_t permission values.
10495         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
10496         get at subsecond timestamps.
10497
10498 2009-10-10  Eric Blake  <ebb9@byu.net>
10499
10500         futimens: new module
10501         * modules/futimens: New file.
10502         * lib/futimens.c (futimens): Likewise.
10503         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
10504         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
10505         we can work around Linux bugs.
10506         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10507         * modules/sys_stat (Makefile.am): Substitute them.
10508         * lib/sys_stat.in.h (futimens): Declare it.
10509         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10510         * doc/posix-functions/futimens.texi (futimens): Likewise.
10511         * modules/futimens-tests: New test.
10512         * tests/test-futimens.c: Likewise.
10513
10514         utimens: introduce fdutimens
10515         * lib/utimens.h (fdutimens): New prototype.
10516         * lib/utimens.c (gl_futimens): Move guts...
10517         (fdutimens): ...to new interface.
10518         * tests/test-utimens.c (do_fdutimens): Use it.
10519
10520         utimens: add UTIME_NOW and UTIME_OMIT support
10521         * lib/utimens.c (validate_timespec, update_timespec): New helper
10522         functions.
10523         (gl_futimens, lutimens): Use them.
10524         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
10525         stdbool, sys_stat.
10526         (Link): Mention resulting library dependency.
10527         * modules/utimecmp (Link): Likewise.
10528         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
10529         (Makefile.am): Pick up library dependency.
10530         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
10531         definition.
10532         * tests/test-sys_stat.c: Test the definitions.
10533         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
10534         * NEWS: Document library dependency.
10535
10536         utimecmp: support symlink timestamps
10537         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
10538         hashing when possible.  Use pathconf when available.
10539         (SYSCALL_RESOLUTION): Recognize tighter resolution.
10540         * modules/utimecmp (Depends-on): Add lstat.
10541
10542         utimens: add lutimens interface
10543         * lib/utimens.c (lutimens): New function.
10544         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
10545         * lib/utimens.h (lutimens): Declare new interface.
10546         * tests/test-utimens.c (main): Enhance test.
10547         * tests/test-lutimens.h (test_lutimens): New file.
10548         * modules/utimens-tests (Files): Distribute it.
10549         (Depends-on): Add symlink.
10550         (configure.ac): Check for usleep.
10551
10552         utimens: validate futimens usage
10553         * lib/utimens.c (gl_futimens): Require valid fd up front, using
10554         fewer syscalls on failure later on.  Avoid compiler warning on
10555         mingw.
10556         * modules/utimens (Depends-on): Add dup2.
10557
10558         utimens: add test
10559         * modules/utimens-tests: New test.
10560         * tests/test-utimens.h: New file.
10561         * tests/test-futimens.h: Likewise.
10562         * tests/test-utimens.c: Likewise.
10563
10564         doc: mention timestamp portability issues
10565         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
10566         instead.
10567         * doc/posix-functions/utime.texi (utime): Likewise.
10568         * doc/posix-functions/utimes.texi (utimes): Likewise.
10569         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
10570         instead.
10571         * doc/posix-functions/futimens.texi (futimens): Mention utimens
10572         module.
10573         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
10574         Mention weakness with symlink timestamps.
10575         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
10576         to utimensat/futimens instead.
10577         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
10578
10579         test-dup2: enhance test
10580         * tests/test-dup2.c (main): Also check AT_FDCWD.
10581
10582         test-stat-time: avoid more spurious failures
10583         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
10584         xfs; and avoid race if the two timestamps cross quantization edge.
10585
10586         relocatable: prefer 'file system' over 'filesystem'
10587         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
10588         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
10589         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
10590         * doc/relocatable.texi (Enabling Relocatability): Likewise.
10591         * lib/relocatable.c (compute_curr_prefix): Likewise.
10592
10593 2009-10-10  Jim Meyering  <meyering@redhat.com>
10594
10595         stat-time-tests: check for the usleep function
10596         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
10597
10598 2009-10-10  Bruno Haible  <bruno@clisp.org>
10599
10600         * modules/xnanosleep: Put the Link section after the Include section.
10601
10602 2009-10-09  Eric Blake  <ebb9@byu.net>
10603
10604         dup2: work around FreeBSD 6.1 bug
10605         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
10606         * doc/posix-functions/dup2.texi (dup2): Document it.
10607         Reported by Nelson H. F. Beebe and Jim Meyering.
10608
10609         test-stat-time: port to buggy NFS clients
10610         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
10611         (test_ctime): Also skip test if mtime and ctime are skewed.
10612
10613         maint: prefer 'file system' over 'filesystem'
10614         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
10615         * doc/posix-functions/lstat.texi (lstat): Likewise.
10616         * lib/file-has-acl.c (file_has_acl): Likewise.
10617         * lib/fwriteerror.c [TEST]: Likewise.
10618         * tests/test-areadlink.h (test_areadlink): Likewise.
10619         * tests/test-areadlinkat-with-size.c (main): Likewise.
10620         * tests/test-areadlinkat.c (main): Likewise.
10621         * tests/test-canonicalize-lgpl.c (main): Likewise.
10622         * tests/test-canonicalize.c (main): Likewise.
10623         * tests/test-fstatat.c (main): Likewise.
10624         * tests/test-linkat.c (main): Likewise.
10625         * tests/test-lstat.h (test_lstat_func): Likewise.
10626         * tests/test-mkdir.h (test_mkdir): Likewise.
10627         * tests/test-readlink.h (test_readlink): Likewise.
10628         * tests/test-remove.c (main): Likewise.
10629         * tests/test-rename.h (test_rename): Likewise.
10630         * tests/test-renameat.c (main): Likewise.
10631         * tests/test-rmdir.h (test_rmdir_func): Likewise.
10632         * tests/test-symlink.h (test_symlink): Likewise.
10633         * tests/test-symlinkat.c (main): Likewise.
10634         * tests/test-unlink.h (test_unlink_func): Likewise.
10635         * tests/test-unlinkat.c (main): Likewise.
10636
10637         maint: make realtime library usage explicit
10638         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
10639         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
10640         * modules/settime (Link): Likewise.
10641         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
10642
10643         test-stat-time: speed up execution
10644         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
10645         warning on mingw.
10646         (nap): New helper function.
10647         (prepare_test): Use it to reduce sleep time.
10648         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
10649         execution.
10650         * modules/stat-time-tests (configure.ac): Check for usleep.
10651
10652 2009-10-09  Jim Meyering  <meyering@redhat.com>
10653
10654         selinux-h: always use getfilecon wrappers
10655         * lib/getfilecon.c: New file.
10656         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
10657         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
10658         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
10659         (fgetfilecon): Provide a stub.
10660         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
10661         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
10662         file unconditionally.
10663         When <selinux/selinux.h> is found, arrange to use wrappers.
10664         * modules/selinux-h (Files): Add getfilecon.c.
10665         (Makefile.am): Substitute include-next-related bits
10666         into the now-always-generated selinux/selinux.h file.
10667         * doc/glibc-functions/lgetfilecon.texi: New file.
10668         * doc/glibc-functions/fgetfilecon.texi: New file.
10669         * doc/glibc-functions/getfilecon.texi: New file.
10670         * doc/glibc-functions/getfilecon-desc.texi: New file.
10671         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
10672         which to pull in the new files.
10673         * MODULES.html.sh (Misc): Add selinux-h.
10674
10675 2009-10-08  Jim Meyering  <meyering@redhat.com>
10676
10677         unistd: fix comment typo
10678         * lib/unistd.in.h (euidaccess): Fix a comment typo.
10679
10680 2009-10-08  Eric Blake  <ebb9@byu.net>
10681
10682         areadlink: use SIZE_MAX consistently
10683         * modules/areadlink (Depends-on): Add stdint.
10684         * modules/areadlink-with-size (Depends-on): Likewise.
10685         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
10686         gives NULL; drop sys/types, since unistd gives size_t; and add
10687         stdint for SIZE_MAX.
10688         (SIZE_MAX): Rely on headers.
10689         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
10690         and add stdint.
10691         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
10692         (SIZE_MAX): Likewise.
10693         (INITIAL_BUF_SIZE): Turn into enum.
10694         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
10695
10696 2009-10-08  Jim Meyering  <meyering@redhat.com>
10697
10698         areadlinkat: avoid compilation failure
10699         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
10700         Fix typo in comment.
10701
10702 2009-10-07  Eric Blake  <ebb9@byu.net>
10703
10704         areadlinkat-with-size: new module
10705         * modules/areadlinkat-with-size: New module.
10706         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
10707         * lib/areadlink.h (areadlinkat): Declare it.
10708         * MODULES.html.sh (File system functions): Mention it.
10709         * modules/areadlinkat-with-size-tests: New test.
10710         * tests/test-areadlinkat-with-size.c: New file.
10711
10712         xreadlinkat: new module
10713         * modules/xreadlinkat: New module.
10714         * lib/xreadlinkat.c (xreadlinkat): New file.
10715         * lib/xreadlink.h (xreadlinkat): Declare it.
10716         * MODULES.html.sh (File system functions): Mention it.
10717
10718         areadlinkat: new module
10719         * lib/at-func.c (FUNC_FAIL): New define.
10720         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
10721         * modules/areadlinkat: New module.
10722         * lib/linkat.c (areadlinkat): Move...
10723         * lib/areadlinkat.c (areadlinkat): ...to new file.
10724         * lib/areadlink.h (areadlinkat): Declare it.
10725         * modules/linkat (Depends-on): Add areadlinkat.
10726         * MODULES.html.sh (File system functions): Mention it.
10727         * modules/areadlinkat-tests: New test.
10728         * tests/test-areadlinkat.c: New file.
10729
10730         areadlink, areadlink-with-size: add tests
10731         * modules/areadlink-tests: New test.
10732         * modules/areadlink-with-size-tests: Likewise.
10733         * tests/test-areadlink.h: New file.
10734         * tests/test-areadlink.c: Likewise.
10735         * tests/test-areadlink-with-size.c: Likewise.
10736
10737         maint: minor cleanups
10738         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
10739         _UNUSED_PARAMETER_ instead.
10740         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
10741         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
10742         * modules/linkat-tests (Files): Distribute test-link.h.
10743
10744         openat, utimens: whitespace cleanup
10745         * lib/openat.c: Prefer space throughout, rather than mix of 8
10746         spaces vs. tabs.
10747         * lib/at-func.c: Likewise.
10748         * lib/utimens.c: Likewise.
10749
10750         openat: avoid using wrong fd
10751         * lib/openat.c (openat_permissive): Reject user's fd if saving the
10752         working directory chooses same fd.
10753         * lib/at-func.c (AT_FUNC_NAME): Likewise.
10754
10755         mkdir, mkdirat: fix cygwin 1.5.x bug
10756         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
10757         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
10758         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
10759         bug.
10760         (gl_PREREQ_MKDIR): Delete unused macro.
10761         * modules/mkdir (Files): Track file rename.
10762         (configure.ac): Update macro name.
10763         * modules/openat (Depends-on): Add mkdir.
10764         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
10765
10766         mkdir, mkdirat: add tests
10767         * modules/mkdir-tests: New test.
10768         * tests/test-mkdir.h: New file.
10769         * tests/test-mkdir.c: Likewise.
10770         * tests/test-mkdirat.c: Likewise.
10771         * modules/openat-tests (Files): Add new files.
10772         (Makefile.am): Run new test.
10773
10774 2009-10-06  Eric Blake  <ebb9@byu.net>
10775
10776         doc: tweak *at function documentation
10777         * doc/posix-functions/faccessat.texi (faccessat): Mention
10778         known issue with replacement.
10779         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
10780         * doc/posix-functions/linkat.texi (linkat): Likewise.
10781         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
10782         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
10783         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10784         * doc/posix-functions/renameat.texi (renameat): Likewise.
10785         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
10786
10787         openat: fix GNU/Hurd bug in unlinkat
10788         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
10789         broken.
10790         * doc/posix-functions/unlink.texi (unlink): Document this.
10791         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
10792
10793         fdopendir: fix GNU/Hurd bug
10794         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
10795         allowing non-directory fds.
10796         * lib/fdopendir.c (rpl_fdopendir): Work around it.
10797         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
10798         * modules/dirent (Makefile.am): Substitute it.
10799         * lib/dirent.in.h (fdopendir): Declare replacement.
10800         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
10801         * tests/test-fdopendir.c (main): Test something other than
10802         /dev/null, since on Hurd that behaves like a directory.
10803
10804         test-symlink: port to GNU/Hurd
10805         * tests/test-symlink.h (test_symlink): Relax expected errno.
10806
10807         doc: tweak more cygwin information
10808         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
10809         now compatible with glibc.
10810         * doc/posix-functions/getopt.texi (getopt): Likewise.
10811
10812         getopt-gnu: add another test
10813         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
10814         guarantee behavior relied on by m4.
10815         * tests/test-getopt.c (main): Use it.
10816         * modules/getopt-posix-tests (Depends-on): Add setenv.
10817         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
10818
10819         getopt: fix compilation on darwin
10820         * lib/getopt.in.h (includes): Leave breadcrumbs during system
10821         include.
10822         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
10823         Reported by Ludovic Courtès.
10824
10825 2009-10-06  Bruno Haible  <bruno@clisp.org>
10826
10827         * modules/size_max (Description): Discourage its use.
10828         Reported by Simon Josefsson.
10829
10830 2009-10-06  Jim Meyering  <meyering@redhat.com>
10831
10832         linkat: avoid compilation failure
10833         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
10834
10835 2009-10-05  Eric Blake  <ebb9@byu.net>
10836
10837         linkat: support Linux 2.6.17
10838         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
10839         linkat on Linux, but allow cache variable override.
10840         * lib/linkat.c (rpl_linkat): Define override.
10841         * modules/linkat (Depends-on): Add symlinkat.
10842         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
10843         * modules/unistd (Makefile.am): Substitute it.
10844         * lib/unistd.in.h (linkat): Declare replacement.
10845         Reported by Pádraig Brady.
10846
10847         quotearg: port test to systems with C.UTF-8 locale
10848         * tests/test-quotearg.c (struct result_strings): Add another
10849         member, differentiating between C.ASCII and C.UTF-8 handling.
10850         (compare_strings): Add parameter.
10851         (main): Adjust all callers.
10852
10853         getopt: avoid clash with FreeBSD _getopt_internal
10854         * lib/getopt.in.h (_getopt_internal): Override the name.
10855         * lib/getopt_int.h (includes): Pick up any overrides.
10856         Reported by Reuben Thomas.
10857
10858         hash: allow C89 compilation
10859         * lib/hash.c (check_tuning): Move declaration before statement.
10860         Reported by Reuben Thomas.
10861
10862 2009-10-05  Karl Berry  <karl@gnu.org>
10863
10864         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
10865
10866 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
10867             Bruno Haible  <bruno@clisp.org>
10868
10869         * lib/uname.c (uname): Use a table-driven algorithm to compute
10870         Windows NT versions.
10871
10872 2009-10-04  Bruno Haible  <bruno@clisp.org>
10873
10874         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
10875         program_invocation_short_name.
10876         * modules/progname (configure.ac): Test for presence of
10877         program_invocation_short_name.
10878         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10879
10880 2009-10-04  Bruno Haible  <bruno@clisp.org>
10881
10882         * lib/progname.c (set_program_name): Fix comment.
10883         Reported by Jim Meyering.
10884
10885 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
10886             Bruno Haible  <bruno@clisp.org>
10887
10888         * lib/uname.c: Include <string.h>.
10889         (uname): Do only one call to GetVersionEx in the common case.
10890
10891 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
10892             Bruno Haible  <bruno@clisp.org>
10893
10894         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
10895         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
10896         (uname): Add support for Windows CE and various non-x86 CPU types.
10897
10898 2009-10-03  Bruno Haible  <bruno@clisp.org>
10899
10900         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
10901         invocation to tests/configure.ac.
10902         Reported by Ian Beckwith <ianb@erislabs.net>.
10903
10904 2009-10-02  Eric Blake  <ebb9@byu.net>
10905
10906         fchdir: avoid compiler warning
10907         * lib/fchdir.c (canonicalize_file_name)
10908         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
10909
10910         test-open: support mingw errno values
10911         * tests/test-open.h (test_open): Relax test.
10912         * tests/test-fopen.h (test_fopen): Likewise.
10913         * tests/test-openat-safer.c (main): Likewise.
10914
10915         open: fix opening directory on mingw
10916         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
10917
10918         test-open: on GNU/Hurd, /dev/null is a directory
10919         * tests/test-fopen.h (main): Rename...
10920         (test_fopen): ...to this.  Use a guaranteed non-directory when
10921         confirming open behavior on trailing slash.
10922         * tests/test-openat-safer.c (main): Likewise.
10923         * tests/test-open.h (main): Likewise....
10924         (test_open): ...to this.
10925         * tests/test-fopen.c (main): Adjust caller.
10926         * tests/test-fopen-safer.c (main): Likewise.
10927         * tests/test-open.c (main): Likewise.
10928         * tests/test-fcntl-safer.c (main): Likewise.
10929         Reported by Samuel Thibault.
10930
10931         rename, fchdir: don't ignore chdir failure
10932         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
10933         * lib/rename.c (rpl_rename) [W32]: Likewise.
10934         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
10935         an empty destination directory if source cannot be renamed,
10936         although there is still possibility for failure.
10937         * doc/posix-functions/rename.texi (rename): Document the race.
10938         Reported by Jim Meyering.
10939
10940         maint: cleanup whitespace in recent commits
10941         * lib/rename.c (rpl_rename): Remove tabs.
10942         * tests/test-link.h (test_link): Likewise.
10943         * lib/fchdir.c (get_name): Likewise.
10944         Reported by Jim Meyering.
10945
10946 2009-10-02  Ben Pfaff  <blp@gnu.org>
10947
10948         relocatable-prog-wrapper: Add missing dependency on
10949         double-slash-root.
10950         * modules/relocatable-prog-wrapper: Add dependency.
10951         Reported by Ian Beckwith <ianb@erislabs.net>.
10952
10953 2009-10-02  Eric Blake  <ebb9@byu.net>
10954
10955         renameat: fix Solaris bugs
10956         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
10957         needed fixing.
10958         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
10959         * modules/stdio (Makefile.am): Substitute it.
10960         * lib/stdio.in.h (renameat): Declare replacement.
10961         * lib/renameat.c (rpl_renameat): Implement fix.
10962
10963         renameat: new module
10964         * modules/renameat: New file.
10965         * lib/renameat.c (renameat): Likewise.
10966         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
10967         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
10968         * modules/stdio (Makefile.am): Substitute them.
10969         * lib/stdio.in.h (renameat): Declare it.
10970         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10971         * doc/posix-functions/renameat.texi (renameat): Likewise.
10972         * modules/renameat-tests: New test.
10973         * tests/test-renameat.c: Likewise.
10974
10975         rename: fix mingw bugs
10976         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
10977         directory overwrite bugs.
10978
10979         rename: fix another cygwin 1.5 bug
10980         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
10981         checks.
10982         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
10983         unnecessary cygwin workarounds.  Also work around bug with moving
10984         full directory onto an empty one.
10985         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
10986
10987         rename-dest-slash: merge into rename module
10988         * modules/rename-dest-slash (Status): Mark obsolete.
10989         (Depends-on): Add rename.
10990         (Files): Let rename do it all.
10991         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
10992         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
10993         * m4/rename-dest-slash.m4: ...so this file can be deleted.
10994         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
10995         * lib/rename.c (rpl_rename): Update comments.
10996
10997         rename: fix cygwin 1.5.x bugs
10998         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
10999         * lib/rename.c (rpl_rename): Work around them.
11000         * modules/rename (Depends-on): Add same-inode.
11001
11002         rename: fix Solaris 10 bug
11003         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
11004         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
11005         was the only bug.
11006
11007         rename: fix Solaris 9 bug
11008         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
11009         on non-directory.  Avoid calling exit.
11010         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
11011         strdup.
11012         * modules/rename-tests (Depends-on): Drop lstat.
11013         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
11014         (gl_PREREQ_RENAME): Delete unused macro.
11015
11016         rename-dest-slash: fix NetBSD bug
11017         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
11018         links.
11019         * modules/rename-dest-slash (Depends-on): Add same-inode.
11020
11021         rename-tests: new test, exposes several platform bugs
11022         * modules/rename-tests: New file.
11023         * tests/test-rename.h: Likewise.
11024         * tests/test-rename.c: Likewise.
11025         * doc/posix-functions/rename.texi (rename): Improve documentation,
11026         including bugs that will eventually be fixed in gnulib.
11027
11028 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
11029
11030         * lib/uname.c: Include <stdlib.h>
11031         (uname): Assume version info is available.
11032
11033 2009-10-02  Jim Meyering  <meyering@redhat.com>
11034
11035         gnu-web-doc-update: correct --help output
11036         * build-aux/gnu-web-doc-update: Make --help output relevant.
11037
11038         gnu-web-doc-update: add standard options
11039         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
11040
11041         gnu-web-doc-update: New module.
11042         Use this script to automatically update the on-line web documentation
11043         for your GNU project at http://www.gnu.org/software/$pkg/manual/
11044         * modules/gnu-web-doc-update: New file, from coreutils.
11045         * build-aux/gnu-web-doc-update: New script.
11046
11047 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
11048
11049         link: LoadLibrary is not needed.
11050         * lib/link.c: Use GetModuleHandle.
11051
11052 2009-10-01  Eric Blake  <ebb9@byu.net>
11053
11054         getopt: bump serial number
11055         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
11056         change.
11057
11058         tests: tighten link, rmdir, and remove tests
11059         * tests/test-link.h (includes): No need to use <config.h> here.
11060         Clean up if directory hard link was created, otherwise test for
11061         trailing '.'.
11062         * tests/test-linkat.c (main): Simplify.
11063         * tests/test-remove.c (main): Enhance test for trailing '.'.
11064         * tests/test-rmdir.h (test_rmdir_func): Likewise.
11065
11066 2009-10-01  Jim Meyering  <meyering@redhat.com>
11067
11068         maint.mk: requiring "make major" was annoying, for a "minor" release.
11069         What is intended is "stable", to contrast with alpha and beta,
11070         so require "make stable", not "make major".
11071         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
11072         (get_tool_versions): Likewise.
11073         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
11074
11075 2009-09-30  Ben Pfaff  <blp@gnu.org>
11076
11077         Fix broken build of replacement for Windows tmpfile().
11078         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
11079         flags argument added along with the 'mkostemp' module.
11080
11081 2009-09-28  Bruno Haible  <bruno@clisp.org>
11082
11083         Avoid identifier clash with POSIX function 'remove' defined as a macro.
11084         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
11085         to 'remove_elt'.
11086         (gl_list_remove): Update.
11087         * lib/gl_list.c (gl_list_remove): Update.
11088         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
11089         to 'remove_elt'.
11090         (gl_oset_remove): Update.
11091         * lib/gl_list.c (gl_oset_remove): Update.
11092         Reported by Eric Blake.
11093
11094 2009-09-28  Eric Blake  <ebb9@byu.net>
11095
11096         doc: mention yet more cygwin 1.7 status
11097         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
11098         cygwin.
11099         * doc/glibc-functions/execvpe.texi (execvpe): New file.
11100         * doc/gnulib.texi (Glibc unistd.h): Mention it.
11101
11102         argp: fix test failure
11103         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
11104         that are not upper-case.  Pass correct range to tolower.
11105
11106 2009-09-27  Jim Meyering  <meyering@redhat.com>
11107
11108         test-yesno: work around sparc-dash here-document infelicity
11109         Without this change, the literal \177 byte in a here document
11110         would make dash 0.5.5.1-3 access uninitialized memory.
11111         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
11112         Instead, use a marker, "@", and filter through tr to create the desired
11113         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
11114
11115 2009-09-27  Bruno Haible  <bruno@clisp.org>
11116
11117         Disable untested support for new flavours of ACLs on AIX.
11118         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
11119         progress.
11120         * lib/set-mode-acl.c (qset_acl): Likewise.
11121
11122 2008-12-07  Bruno Haible  <bruno@clisp.org>
11123
11124         Add support for new flavours of ACLs on AIX. (Untested.)
11125         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
11126         (file_has_acl): Add support for newer AIX.
11127         * lib/set-mode-acl.c (qset_acl): Likewise.
11128         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
11129         Rainer Tammer <tammer@tammer.net>.
11130
11131 2009-09-26  Eric Blake  <ebb9@byu.net>
11132
11133         argp: fix compilation of getopt
11134         * lib/getopt.in.h (includes): Use different guard than glibc.
11135         Reported by Sergey Poznyakoff.
11136
11137         doc: mention more cygwin 1.7 status
11138         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
11139         bug.
11140         * doc/posix-functions/execl.texi (execl): Likewise.
11141         * doc/posix-functions/execle.texi (execle): Likewise.
11142         * doc/posix-functions/execlp.texi (execlp): Likewise.
11143         * doc/posix-functions/execv.texi (execv): Likewise.
11144         * doc/posix-functions/execve.texi (execve): Likewise.
11145         * doc/posix-functions/execvp.texi (execvp): Likewise.
11146         * doc/glibc-functions/canonicalize_file_name.texi
11147         (canonicalize_file_name): Cygwin 1.7 now provides this.
11148         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
11149         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
11150         on AT_SYMLINK_NOFOLLOW.
11151
11152 2009-09-24  Eric Blake  <ebb9@byu.net>
11153
11154         test-linkat: make test more robust
11155         * tests/test-linkat.c (main): Avoid collision with EEXIST.
11156
11157         getopt: fix inclusion guards for cygwin
11158         * modules/getopt-posix (Depends-on): Add include-next.
11159         (Makefile.am): Substitute more items in replacement header.
11160         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
11161         <getopt.h>.
11162         * lib/getopt.in.h (includes): Use split inclusion guard, and
11163         prefer <getopt.h> over include <unistd.h> when one is present.
11164         (option): Also override name of 'struct option'.
11165
11166         same-inode: revert prior change; it is not yet ready
11167         * NEWS: Undo mention of this change.
11168         * lib/same-inode.h (same-inode.h): Undo tri-state change.
11169         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
11170         * lib/cycle-check.c (cycle_check): Likewise.
11171         * lib/same.c (same_name): Likewise.
11172         * lib/at-func2.c (at_func2): Likewise.
11173
11174 2009-09-23  Eric Blake  <ebb9@byu.net>
11175
11176         linkat: new module
11177         * modules/linkat: New file.
11178         * lib/at-func2.c (at_func2): Likewise.
11179         * lib/linkat.c (linkat): Likewise.
11180         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
11181         * lib/openat-priv.h (at_func2): Add declaration.
11182         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11183         * modules/unistd (Makefile.am): Substitute them.
11184         * lib/unistd.in.h (linkat): Declare it.
11185         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11186         * doc/posix-functions/linkat.texi (linkat): Likewise.
11187         * doc/posix-functions/link.texi (link): Tweak wording.
11188         * tests/test-link.c (main): Move guts...
11189         * tests/test-link.h (test_link): ...into new file.
11190         * modules/linkat-tests: New test.
11191         * tests/test-linkat.c: Likewise.
11192         * modules/link-tests (Files): Ship new file.
11193         (Depends-on): Add stdbool.
11194
11195         dirname: add library-safe mdir_name
11196         * lib/dirname.h (mdir_name): New prototype.
11197         * lib/dirname.c (dir_name): Move guts...
11198         (mdir_name): ...to new function that avoids xalloc_die.
11199
11200         fchdir: another mingw fix
11201         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
11202         * lib/fchdir.c (get_name): New helper method; skips canonicalize
11203         on mingw (where it has not yet been ported), and make it optional
11204         elsewhere.
11205         (_gl_register_fd): Use it.
11206
11207         same-inode: make SAME_INODE tri-state, to port to mingw
11208         * NEWS: Mention this change.
11209         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
11210         st_ino always being 0.
11211         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
11212         * lib/cycle-check.c (cycle_check): Likewise.
11213         * lib/same.c (same_name): Likewise.
11214
11215         lstat: avoid mingw compilation error
11216         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
11217         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
11218         lstat ourselves.
11219         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
11220         was adequate.
11221         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
11222         the checks for lstat.
11223         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
11224
11225         link: fix test failure on Solaris 9
11226         * lib/link.c (rpl_link): Don't assume link will catch bogus
11227         trailing slash on source.
11228
11229         test-symlinkat: enhance test
11230         * tests/test-readlink.c (main): Move guts...
11231         * tests/test-readlink.h (test_readlink): ...into new file.
11232         * tests/test-symlink.c (main): Move guts...
11233         * tests/test-symlink.h (test_symlink): ...into new file.
11234         * tests/test-symlinkat.c (main): Use new files for further
11235         coverage.
11236         (do_symlink, do_readlink): New helper functions.
11237         * modules/symlink-tests (Files): Ship new file.
11238         (Depends-on): Add stdbool.
11239         * modules/readlink-tests (Files): Ship new file.
11240         (Depends-on): Add stdbool.
11241         * modules/symlinkat-tests (Files): Use new files.
11242
11243 2009-09-23  Eric Blake  <ebb9@byu.net>
11244
11245         readlink: document portability issue with symlink length
11246         * doc/posix-functions/lstat.texi (lstat): Mention that some file
11247         systems have bogus st_size on symlinks, and mention the
11248         areadlink-with-size module.
11249         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
11250         * doc/posix-functions/readlink.texi (readlink): Mention the
11251         areadlink module, and ERANGE failure.
11252         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
11253         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
11254
11255         readlink: fix Solaris 9 bug with trailing slash
11256         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
11257         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
11258         * doc/posix-functions/readlink.texi (readlink): Document this.
11259         * modules/readlink-tests: New test.
11260         * tests/test-readlink.c: Likewise.
11261
11262         readlink: fix cygwin 1.5.x bug with return type
11263         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
11264         * lib/unistd.in.h (readlink): Use ssize_t.
11265         * lib/readlink.c (readlink): Likewise.
11266         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
11267         * modules/unistd (Makefile.am): Substitute it.
11268         * lib/unistd.in.h (readlink): Declare replacement.
11269         * doc/posix-functions/readlink.texi (readlink): Document this.
11270
11271         symlink: use throughout gnulib
11272         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
11273         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
11274         symlink is not used.
11275         * modules/symlinkat (Depends-on): Add symlink.
11276         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
11277         * modules/canonicalize-tests (Depends-on): Likewise.
11278         * modules/lstat-tests (Depends-on): Likewise.
11279         * modules/openat-tests (Depends-on): Likewise.
11280         * modules/remove-tests (Depends-on): Likewise.
11281         * modules/rmdir-tests (Depends-on): Likewise.
11282         * modules/unlink-tests (Depends-on): Likewise.
11283         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
11284         * tests/test-canonicalize.c (symlink): Likewise.
11285         * tests/test-fstatat.c (symlink): Likewise.
11286         * tests/test-lstat.c (symlink): Likewise.
11287         * tests/test-remove.c (symlink): Likewise.
11288         * tests/test-rmdir.c (symlink): Likewise.
11289         * tests/test-unlink.c (symlink): Likewise.
11290         * tests/test-unlinkat.c (symlink): Likewise.
11291
11292         symlink: new module, for Solaris 9 bug
11293         * modules/symlink: New file.
11294         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
11295         * lib/symlink.c: Likewise.
11296         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
11297         * modules/unistd (Makefile.am): Substitute them.
11298         * lib/unistd.in.h (symlink): Declare replacement.
11299         * MODULES.html.sh (File system functions): Mention it.
11300         * doc/posix-functions/symlink.texi (symlink): Likewise.
11301         * modules/symlink-tests: New test.
11302         * tests/test-symlink.c: Likewise.
11303
11304 2009-09-23  Bruno Haible  <bruno@clisp.org>
11305
11306         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
11307         when needed.
11308         Test case: gnulib-tool --import --with-tests atexit inttypes.
11309         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
11310
11311 2009-09-23  Bruno Haible  <bruno@clisp.org>
11312
11313         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
11314         subcommand, not in a subshell.
11315
11316 2009-09-22  Eric Blake  <ebb9@byu.net>
11317
11318         unistd: sort replacement declarations
11319         * lib/unistd.in.h: Sort declarations.
11320
11321         open, openat: minor optimization
11322         * lib/open.c (open): If open succeeded, len is non-zero.
11323         * lib/openat.c (rpl_openat): Likewise.
11324
11325         link-follow: ensure correct result
11326         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
11327         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
11328         distinguish between possible failures.
11329
11330 2009-09-21  Eric Blake  <ebb9@byu.net>
11331
11332         fts: avoid compiler warning
11333         * lib/fts.c (dirent_inode_sort_may_be_useful)
11334         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
11335
11336 2009-09-19  Bruno Haible  <bruno@clisp.org>
11337
11338         * lib/progreloc.c (canonicalize_file_name): New declaration.
11339
11340 2009-09-19  Eric Blake  <ebb9@byu.net>
11341
11342         link: fix quoting
11343         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
11344
11345         openat: fix openat bugs on Solaris 9
11346         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
11347         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
11348         * modules/openat (Depends-on): Add open.
11349         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
11350         * modules/fcntl-h (Makefile.am): Substitute it.
11351         * lib/fcntl.in.h (openat): Declare replacement.
11352         * doc/posix-functions/openat.texi (openat): Document this.
11353
11354         openat: move fstatat and unlinkat into correct files
11355         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
11356         compiled.
11357         * lib/openat.c (fstatat, unlinkat): Move...
11358         * lib/fstatat.c (fstatat): ...into correct files.
11359         * lib/unlinkat.c (unlinkat): Likewise.
11360
11361         openat: fix unlinkat bugs on Solaris 9
11362         * lib/unlinkat.c (unlinkat): New file.
11363         * modules/openat (Depends-on): Add unlink.
11364         (Files): Distribute it.
11365         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
11366         trailing slash behavior is broken.
11367         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
11368         * modules/unistd (Makefile.am): Substitute it.
11369         * lib/unistd.in.h (unlinkat): Declare replacement.
11370         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
11371
11372         openat: fix fstatat bugs on Solaris 9
11373         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
11374         stat.
11375         * doc/posix-functions/fstatat.texi (fstatat): Document this.
11376
11377         test-unlinkat: enhance test, to expose Solaris 9 bug
11378         * tests/test-unlink.c (main): Factor guts...
11379         * tests/test-unlink.h (test_rmdir_func): ...into new file.
11380         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
11381         * tests/test-rmdir.c (main): Adjust caller.
11382         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
11383         (unlinker): New helper function.
11384         (rmdirat): Enhance check.
11385         * modules/rmdir-tests (Depends-on): Add stdbool.
11386         * modules/unlink-tests (Depends-on): Likewise.
11387         (Files): Add test-unlink.h.
11388         * modules/openat-tests (Files): Likewise.
11389         (Depends-on): Add unlinkdir.
11390
11391         test-fstatat: new test, to expose Solaris 9 bugs
11392         * tests/test-stat.c (main): Factor guts...
11393         * tests/test-stat.h (test_stat_func): ...into new file.
11394         * tests/test-lstat.c (main): Factor guts...
11395         * tests/test-lstat.h (test_lstat_func): ...into new file.
11396         * tests/test-fstatat.c: New file.
11397         * modules/stat-tests (Files): Add test-stat.h.
11398         * modules/lstat-tests (Files): Add test-lstat.h.
11399         (Depends-on): Add stdbool.
11400         * modules/openat-tests (Depends-on): Add pathmax.
11401         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
11402         (Makefile.am): Run new test.
11403
11404         remove: new module, for mingw and Solaris 9 bugs
11405         * modules/remove: New file.
11406         * lib/remove.c: Likewise.
11407         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
11408         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
11409         * modules/stdio (Makefile.am): Use them.
11410         * lib/stdio.in.h (remove): Declare replacement.
11411         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11412         * doc/posix-functions/remove.texi (remove): Likewise.
11413         * modules/remove-tests: New test.
11414         * tests/test-remove.c: Likewise.
11415
11416         unlink: new module, for Solaris 9 bug
11417         * modules/unlink: New file.
11418         * lib/unlink.c: Likewise.
11419         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
11420         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11421         * modules/unistd (Makefile.am): Use them.
11422         * lib/unistd.in.h (stat): Declare replacement.
11423         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11424         * doc/posix-functions/unlink.texi (unlink): Likewise.
11425         * modules/unlink-tests: New test.
11426         * tests/test-unlink.c: Likewise.
11427
11428         lstat: fix Solaris 9 bug
11429         * lib/lstat.c (lstat): Also check for trailing slash on
11430         non-symlink, non-directories.  Use stat module to simplify logic.
11431         * doc/posix-functions/lstat.texi (lstat): Document it.
11432         * modules/lstat-tests (Depends-on): Add errno, same-inode.
11433         (configure.ac): Check for symlink.
11434         * tests/test-lstat.c (main): Add more tests.
11435
11436         stat: add as dependency to other modules
11437         * modules/chown (Depends-on): Add stat.
11438         * modules/euidaccess (Depends-on): Likewise.
11439         * modules/fchdir (Depends-on): Likewise.
11440         * modules/isdir (Depends-on): Likewise.
11441         * modules/link (Depends-on): Likewise.
11442         * modules/lstat (Depends-on): Likewise.
11443         * modules/mkdir-p (Depends-on): Likewise.
11444         * modules/modechange (Depends-on): Likewise.
11445         * modules/open (Depends-on): Likewise.
11446         * modules/readlink (Depends-on): Likewise.
11447         * modules/same (Depends-on): Likewise.
11448
11449         stat: fix Solaris 9 bug
11450         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
11451         slash.
11452         * lib/stat.c (rpl_stat): Work around it.
11453         * doc/posix-functions/stat.texi (stat): Update documentation.
11454
11455         stat: new module, for mingw bug
11456         * modules/stat: New file.
11457         * lib/stat.c: Likewise.
11458         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
11459         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
11460         * modules/sys_stat (Makefile.am): Use them.
11461         * lib/sys_stat.in.h (stat): Declare replacement.
11462         * lib/openat.c (fstatat): Deal with lstat and stat being function
11463         macros.
11464         * modules/openat (Depends-on): Add inline.
11465         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11466         * doc/posix-functions/stat.texi (stat): Likewise.
11467         * modules/stat-tests: New test.
11468         * tests/test-stat.c: Likewise.
11469
11470 2009-09-19  Jim Meyering  <meyering@redhat.com>
11471
11472         syntax-check: detect unnecessary inclusion of canonicalize.h
11473         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
11474
11475 2009-09-19  Eric Blake  <ebb9@byu.net>
11476
11477         canonicalize-lgpl: adjust clients to use correct header
11478         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
11479         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
11480         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
11481         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
11482         * lib/progreloc.c (includes): Likewise.
11483
11484 2009-09-19  Jim Meyering  <meyering@redhat.com>
11485
11486         test-posixtm.c: correct a comment
11487         * tests/test-posixtm.c: Correct first-line comment.
11488         Spotted by Eric Blake.
11489
11490 2009-09-16  Jim Meyering  <meyering@redhat.com>
11491
11492         posixtm-tests: make T const-correct; add a test case
11493         * tests/test-posixtm.c (T): Declare const.
11494         Add a test for -(2^31+1).
11495         Remove useless can-succeed-only-in-2002 test.
11496
11497         posixtm-tests: adjust the sole failing test
11498         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
11499         expected output matches what mktime now produces.  Cross-checked via
11500         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
11501
11502         posixtm: move #ifdef'd tests into a new module
11503         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
11504         * tests/test-posixtm.c: ... this new file.
11505         * modules/posixtm-tests: New module.
11506
11507 2009-09-19  Eric Blake  <ebb9@byu.net>
11508
11509         openat: simplify use of at-func.c
11510         * lib/at-func.c (includes): Include prerequisites here, to
11511         simplify requirements on client files.
11512         * lib/openat-priv.h: Add double-inclusion guard.
11513         * lib/faccessat.c (includes): Simplify.
11514         * lib/fchmodat.c (includes): Likewise.
11515         * lib/fchownat.c (includes): Likewise.
11516         * lib/mkdirat.c (includes): Likewise.
11517         * lib/mkfifoat.c (includes): Likewise.
11518         * lib/symlinkat.c (includes): Likewise.
11519
11520         openat: allow return of fd 0
11521         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
11522         * modules/save-cwd (Depends-on): Replace fcntl-safer with
11523         unistd-safer.
11524         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
11525         <fcntl.h>; this module does not leak fds.
11526         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
11527         must be allowed to return 0, leaving openat_safer to add the
11528         safety.
11529         (openat_permissive): Avoid writing to just-opened fd 2 if
11530         restoring the current directory fails.
11531         * lib/openat-die.c (openat_restore_fail): Add comment.
11532         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
11533         (save_cwd): Guarantee safe fd, but without use of open_safer.
11534         * tests/test-openat.c: New test.
11535         * modules/openat-tests (Files, Makefile.am): Distribute and build
11536         new file.
11537
11538         relocatable-prog-wrapper: fix build
11539         * modules/relocatable-prog-wrapper (Files): Update name of
11540         canonicalize m4 file, broken on 2009-09-17.
11541         Reported by emad hajjar <aleppos@hotmail.com>.
11542
11543 2009-09-19  Bruno Haible  <bruno@clisp.org>
11544
11545         * lib/safe-alloc.h: Use the standard header with GPL copyright.
11546         * lib/safe-alloc.c: Likewise.
11547         Reported by Ian Beckwith <ianb@erislabs.net>.
11548
11549 2009-09-18  Bruno Haible  <bruno@clisp.org>
11550
11551         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
11552         Reported by <erobles@sensacd.com.mx>.
11553
11554 2009-09-17  Eric Blake  <ebb9@byu.net>
11555
11556         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
11557         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
11558         slashes when checking if last component is missing.
11559         * tests/test-canonicalize.c (main): Test this.
11560
11561         canonicalize, canonicalize-lgpl: honor // if distinct from /
11562         * modules/canonicalize (Files): Add double-slash-root.m4.
11563         * modules/canonicalize-lgpl (Files): Likewise.
11564         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
11565         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
11566         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
11567         fallback definition.
11568         (canonicalize_filename_mode): Use it to protect //.
11569         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
11570         (__realpath): Likewise.
11571         * tests/test-canonicalize.c (main): Test this.
11572         * tests/test-canonicalize-lgpl.c (main): Likewise.
11573         * modules/canonicalize-tests (Depends-on): Add same-inode.
11574         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
11575
11576         canonicalize-lgpl: fix glibc bug with trailing slash
11577         * m4/canonicalize-lgpl.m4: Move contents...
11578         * m4/canonicalize.m4: ...here.
11579         (gl_CANONICALIZE_LGPL): Factor realpath check...
11580         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
11581         glibc 2.3.5 bug, fixed 2005-04-27.
11582         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
11583         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
11584         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
11585         * modules/canonicalize-lgpl (Files): Manage file rename.
11586         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
11587         * modules/stdlib (Makefile.am): Substitute witness.
11588         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
11589         is needed.
11590         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
11591         replacement is required.
11592         * lib/canonicalize.c (canonicalize_file_name): Likewise.
11593         * doc/glibc-functions/canonicalize_file_name.texi
11594         (canonicalize_file_name): Document this.
11595         * doc/posix-functions/realpath.texi (realpath): Likewise.
11596
11597         canonicalize-lgpl: reject non-directory with trailing slash
11598         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
11599         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
11600         catches failures in glibc 2.3.5.
11601         * tests/test-canonicalize.c (main): Likewise.
11602
11603         canonicalize-lgpl: use native realpath if it works
11604         * lib/canonicalize-lgpl.c (realpath): Guard with
11605         FUNC_REALPATH_WORKS.
11606         * lib/stdlib.in.h (realpath): Make declaration optional based on
11607         HAVE_REALPATH.
11608         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
11609         native realpath works.
11610         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
11611         * modules/stdlib (Makefile.am): Substitute witness.
11612
11613         canonicalize, canonicalize-lgpl: use <stdlib.h>
11614         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
11615         (Include): Mention <stdlib.h>.
11616         (configure.ac): Mention functions we provide.
11617         * modules/canonicalize (configure.ac): Likewise.
11618         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
11619         realpath if canonicalize_file_name is missing.
11620         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
11621         * modules/stdlib (Makefile.am): Substitute witnesses.
11622         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
11623         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
11624         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
11625         * NEWS: Document this.
11626         * doc/glibc-functions/canonicalize_file_name.texi
11627         (canonicalize_file_name): Likewise.
11628         * doc/posix-functions/realpath.texi (realpath): Likewise.
11629         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
11630
11631         test-canonicalize: consolidate into single C program
11632         * tests/test-canonicalize.sh: Delete; move setup into...
11633         * tests/test-canonicalize.c (main): ...the program, making it
11634         easier to run in debugger.  Add some tests.
11635         * modules/canonicalize-tests (Files): Remove unused file.
11636         (Depends-on): Add progname.
11637         (configure.ac, Makefile.am): Simplify.
11638
11639         test-canonicalize-lgpl: consolidate into single C program
11640         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
11641         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
11642         easier to run in debugger.  Add some tests.
11643         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
11644         (configure.ac, Makefile.am): Simplify.
11645
11646         canonicalize: avoid resolvepath
11647         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
11648         unnecessary checks.
11649         * lib/canonicalize.c (includes): Simplify.
11650         (canonicalize_file_name): Drop resolvepath implementation.
11651         * modules/canonicalize (Depends-on): Drop filenamecat.
11652
11653         canonicalize: don't lose errno
11654         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
11655         over calls to free.
11656
11657         canonicalize: simplify errno handling
11658         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
11659         assignment.
11660
11661         canonicalize, canonicalize-lgpl: update module dependencies
11662         * modules/canonicalize (Depends-on): Add extensions, lstat,
11663         pathmax, stdlib.
11664         (Files): Drop pathmax.h.
11665         (configure.ac): Adjust macro name.
11666         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
11667         lstat, stdlib, sys_stat.
11668         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
11669         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
11670         extensions.
11671         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
11672         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
11673         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
11674         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
11675         declaration, if available.
11676         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
11677         we can rely on the readlink module.
11678         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
11679         (includes): Use <unistd.h> unconditionally.
11680
11681 2009-09-17  Eric Blake  <ebb9@byu.net>
11682
11683         maint: make Include sections of modules consistent
11684         * modules/alloca: Use only header name; no need to list #include.
11685         * modules/alloca-opt: Likewise.
11686         * modules/arpa_inet: Likewise.
11687         * modules/canon-host: Likewise.
11688         * modules/configmake: Likewise.
11689         * modules/dirent: Likewise.
11690         * modules/eealloc: Likewise.
11691         * modules/environ: Likewise.
11692         * modules/fchdir: Likewise.
11693         * modules/fcntl: Likewise.
11694         * modules/fcntl-h: Likewise.
11695         * modules/gethrxtime: Likewise.
11696         * modules/gettime: Likewise.
11697         * modules/ignore-value: Likewise.
11698         * modules/inet_ntop: Likewise.
11699         * modules/inet_pton: Likewise.
11700         * modules/inttypes: Likewise.
11701         * modules/isnand-nolibm: Likewise.
11702         * modules/isnanf-nolibm: Likewise.
11703         * modules/mbchar: Likewise.
11704         * modules/mbfile: Likewise.
11705         * modules/mbiter: Likewise.
11706         * modules/mbuiter: Likewise.
11707         * modules/netdb: Likewise.
11708         * modules/netinet_in: Likewise.
11709         * modules/nproc: Likewise.
11710         * modules/pagealign_alloc: Likewise.
11711         * modules/poll: Likewise.
11712         * modules/printf-frexp: Likewise.
11713         * modules/pthread: Likewise.
11714         * modules/putenv: Likewise.
11715         * modules/random_r: Likewise.
11716         * modules/relocatable-prog: Likewise.
11717         * modules/search: Likewise.
11718         * modules/select: Likewise.
11719         * modules/selinux-h: Likewise.
11720         * modules/settime: Likewise.
11721         * modules/signal: Likewise.
11722         * modules/size_max: Likewise.
11723         * modules/socklen: Likewise.
11724         * modules/ssize_t: Likewise.
11725         * modules/stdarg: Likewise.
11726         * modules/stdbool: Likewise.
11727         * modules/stddef: Likewise.
11728         * modules/stdint: Likewise.
11729         * modules/stdio: Likewise.
11730         * modules/stdlib: Likewise.
11731         * modules/string: Likewise.
11732         * modules/strings: Likewise.
11733         * modules/sys_file: Likewise.
11734         * modules/sys_ioctl: Likewise.
11735         * modules/sys_select: Likewise.
11736         * modules/sys_socket: Likewise.
11737         * modules/sys_stat: Likewise.
11738         * modules/sys_time: Likewise.
11739         * modules/sys_times: Likewise.
11740         * modules/sys_utsname: Likewise.
11741         * modules/sys_wait: Likewise.
11742         * modules/sysexits: Likewise.
11743         * modules/time: Likewise.
11744         * modules/times: Likewise.
11745         * modules/tmpfile: Likewise.
11746         * modules/trim: Likewise.
11747         * modules/unistd: Likewise.
11748         * modules/wchar: Likewise.
11749         * modules/wctype: Likewise.
11750
11751 2009-09-17  Bruno Haible  <bruno@clisp.org>
11752
11753         Make getdate.y compile on QNX and NetBSD 5 / i386.
11754         * m4/getdate.m4 (gl_GETDATE): Conditionally define
11755         TIME_T_FITS_IN_LONG_INT.
11756         * lib/getdate.y (long_time_t): New type.
11757         (relative_time): Change type of 'seconds' field to long_time_t.
11758         (get_date): Update types of local variables. Check against overflow
11759         during conversion from long_time_t to time_t.
11760         Reported by Matt Kraai <kraai@ftbfs.org>
11761         and Hasso Tepper <hasso@netbsd.org>.
11762
11763 2009-09-17  Bruno Haible  <bruno@clisp.org>
11764
11765         * modules/COPYING: Update copyright years.
11766         * modules/README: Likeiwse.
11767         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
11768         Reported by Ian Beckwith <ianb@erislabs.net>.
11769
11770 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
11771
11772         * users.txt: Update references for gnuit package.
11773
11774 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
11775
11776         * m4/getdelim.m4: Fix typo in copyright line.
11777
11778 2009-09-17  Bruno Haible  <bruno@clisp.org>
11779
11780         * lib/atoll.c: Use the standard header with GPL copyright.
11781         * lib/argz.in.h: Likewise.
11782         * lib/glob.c: Likewise.
11783         * lib/glob-libc.h: Likewise.
11784         * lib/random_r.c: Likewise.
11785         * lib/siglist.h: Likewise.
11786         * lib/strsignal.c: Likewise.
11787         Reported by Ian Beckwith <ianb@erislabs.net>.
11788
11789 2009-09-17  Eric Blake  <ebb9@byu.net>
11790
11791         rmdir: ensure correct dependency order
11792         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
11793
11794 2009-09-17  Bruno Haible  <bruno@clisp.org>
11795
11796         Disable assertion that fails on NetBSD 5 / i386.
11797         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
11798         Reported by Sam Steingold <sds@gnu.org>
11799         and Hasso Tepper <hasso@netbsd.org>.
11800
11801 2009-09-16  Eric Blake  <ebb9@byu.net>
11802
11803         unlinkdir: port to mingw
11804         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
11805         on which no one can unlink a directory.
11806
11807         stdlib: sort witness names
11808         * modules/stdlib (Makefile.am): Sort replacements.
11809         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
11810         * lib/stdlib.in.h: Likewise.
11811
11812         parse-duration-tests: avoid link failure
11813         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
11814         LIBINTL.
11815         Reported by Tom G. Christensen.
11816
11817         openat-tests: ensure unlinkat behaves like rmdir
11818         * tests/test-rmdir.c (main): Factor guts...
11819         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
11820         * modules/rmdir-tests (Files): Ship new file.
11821         * modules/openat-tests: New test.
11822         * tests/test-unlinkat.c: Likewise.
11823
11824         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
11825         * modules/rmdir-errno (Status, Notice): Now obsolete.
11826
11827         rmdir: work around cygwin 1.5.x and mingw bugs
11828         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
11829         * lib/rmdir.c (rmdir): Work around it.
11830         * modules/rmdir (Status, Notice): No longer obsolete.
11831         (Files): Add dos.m4.
11832         (Depends-on): Add unistd.
11833         (configure.ac): Set witnesses.
11834         (License): Relax to LGPLv2+.
11835         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
11836         * modules/unistd (Makefile.am): Substitute witnesses.
11837         * lib/unistd.in.h (rmdir): Declare replacement.
11838         * doc/posix-functions/rmdir.texi (rmdir): Document this.
11839         * modules/rmdir-tests: New tests.
11840         * tests/test-rmdir.c: Likewise.
11841
11842 2009-09-15  Eric Blake  <ebb9@byu.net>
11843
11844         fchdir: improve use of replacement functions
11845         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
11846         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
11847         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
11848         REPLACE_CLOSEDIR.
11849         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
11850         * modules/sys_stat (Makefile.am): Substitute correct witness.
11851         * modules/dirent (Makefile.am): Likewise.
11852         * modules/unistd (Makefile.am): Likewise.
11853         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
11854         * lib/unistd.in.h (dup): Likewise.
11855         * lib/sys_stat.in.h (fstat): Likewise.
11856
11857         maint: ignore gnulib-tool temp files
11858         * .gitignore: Ignore files created during gnulib-tool --test.
11859
11860 2009-09-13  Jim Meyering  <meyering@redhat.com>
11861
11862         posixtm: don't reject a time that specify "60" as the number of seconds
11863         * lib/posixtm.c (posixtime): The code to reject invalid dates
11864         would also reject a time specified with the .60 suffix.
11865         But POSIX allows that, in order to accommodate leap seconds.
11866         So don't reject it.
11867         (main): Adjust tests accordingly.
11868         * modules/posixtm (Depends-on): Add stpcpy.
11869
11870 2009-09-11  Jim Meyering  <meyering@redhat.com>
11871
11872         announce-gen: include [$release_type] in emitted Subject:
11873         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
11874         e.g., [stable] in the emitted Subject: line.
11875
11876 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11877
11878         Remove obsolete macros from several modules.
11879         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
11880         obsolete Autoconf macros with their modern counterparts.
11881         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
11882         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
11883         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
11884         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
11885         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
11886         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
11887         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
11888         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
11889         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
11890         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
11891         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
11892         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
11893         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
11894         * m4/sockets.m4 (gl_SOCKETS): Likewise.
11895         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
11896         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
11897         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
11898         * m4/time_r.m4 (gl_TIME_R): Likewise.
11899         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
11900         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
11901         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
11902
11903         Fix copyright header in build-aux scripts.
11904         * build-aux/git-version-gen: Fix copyright header to match GPLv3
11905         recommendation.
11906         * build-aux/ncftpput-ftp: Likewise.
11907         * build-aux/update-copyright: Likewise.
11908
11909 2009-09-09  Eric Blake  <ebb9@byu.net>
11910
11911         test-link: allow Linux choice of errno
11912         * tests/test-link.c (main): Relax test for alternate error.
11913
11914         strndup: fix improper m4 caching
11915         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
11916         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
11917         (gl_PREREQ_STRNDUP): Delete.
11918         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
11919         * modules/string (Makefile.am): Substitute it.
11920         * lib/string.in.h (strndup): Modernize prototype.
11921
11922         getcwd: port to mingw
11923         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
11924         different from the POSIX assumptions made throughout the getcwd
11925         module; fortunately, the mingw getcwd does not need replacement.
11926         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
11927         * modules/getcwd-tests: New test.
11928         * tests/test-getcwd.c: Likewise.
11929
11930         link: fix platform bugs
11931         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
11932         * lib/link.c (link): Work around them.  Fix related mingw bug.
11933         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
11934         * modules/unistd (Makefile.am): Substitute it.
11935         * lib/unistd.in.h (link): Declare replacement.
11936         * doc/posix-functions/link.texi (link): Document this.
11937         * modules/link (Depends-on): Add strdup-posix, sys_stat.
11938
11939         test-link: consolidate into single C program, test more cases
11940         * tests/test-link.sh: Delete.
11941         * tests/test-link.c: Test more error conditions.  Exposes bugs on
11942         at least Cygwin and Solaris.
11943         * modules/link-tests (Files): Remove unused file.
11944         (Depends-on): Add errno, sys_stat.
11945         (Makefile.am): Simplify.
11946
11947 2009-09-08  Bruno Haible  <bruno@clisp.org>
11948
11949         Work around towlower, towupper bug on mingw.
11950         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
11951         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
11952         * doc/posix-functions/towlower.texi: Mention the mingw bug.
11953         * doc/posix-functions/towupper.texi: Likewise.
11954         Reported by Eric Blake.
11955
11956 2009-09-08  Jim Meyering  <meyering@redhat.com>
11957
11958         build: don't try to run autoheader if we don't use it
11959         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
11960         is not used in configure.ac.
11961
11962 2009-09-08  Eric Blake  <ebb9@byu.net>
11963
11964         euidaccess: fix compilation error
11965         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
11966
11967         rawmemchr: relax license
11968         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
11969         okay.
11970         Reported by Jim Meyering.
11971
11972         mkfifoat: new module
11973         * modules/mkfifoat: New file.
11974         * lib/mkfifoat.c: Likewise.
11975         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
11976         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
11977         * modules/sys_stat (Makefile.am): Use them.
11978         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
11979         * MODULES.html.sh (File system functions): Mention module.
11980         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
11981         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
11982         * modules/mkfifoat-tests: New test.
11983         * tests/test-mkfifoat.c: Likewise.
11984
11985         strchrnul: relax license
11986         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
11987         okay.
11988         Reported by Jim Meyering.
11989
11990 2009-09-08  Eric Blake  <ebb9@byu.net>
11991
11992         fstatat: fix compilation on Solaris
11993         * lib/fstatat.c (includes): Add fcntl.h.
11994         Reported by Pádraig Brady.
11995
11996 2009-09-07  Eric Blake  <ebb9@byu.net>
11997
11998         rename: modernize replacement
11999         * modules/rename (Depends-on): Add stdio.
12000         (configure.ac): Declare witness.
12001         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
12002         stdio take care of replacement.
12003         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
12004         * modules/stdio (Makefile.am): Substitute them.
12005         * lib/stdio.in.h (rename): Declare replacement.
12006         * lib/rename.c (includes): Allow cross-compilation to non-windows
12007         machines.
12008         * doc/posix-functions/rename.texi (rename): Improve
12009         documentation.
12010
12011         stdio: sort witness names
12012         * modules/stdio (Makefile.am): Sort replacements.
12013         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
12014         * lib/stdio.in.h: Likewise.
12015
12016         getcwd: minor cleanups
12017         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
12018         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
12019
12020         openat: provide more convenience names
12021         * modules/faccessat (configure.ac): Add C witness.
12022         * lib/unistd.in.h (readlinkat): Fix typo.
12023         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
12024         convenience wrappers.
12025         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
12026         wrappers in syntax checks.
12027
12028 2009-09-06  Eric Blake  <ebb9@byu.net>
12029
12030         doc: fix comments in recent patches
12031         * lib/faccessat.c: Mention correct function.
12032         * lib/fchmodat.c: Likewise.
12033         * lib/fchownat.c: Likewise.
12034         * lib/symlinkat.c: Likewise.
12035         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
12036         constants.
12037
12038         faccessat, symlinkat: continue cleanup of previous patch
12039         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
12040         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
12041         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
12042         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
12043         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
12044         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
12045         set.
12046
12047 2009-09-06  Bruno Haible  <bruno@clisp.org>
12048
12049         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
12050         (fstatat): Declare if GNULIB_FSTATAT is set.
12051         (mkdirat): Declare if GNULIB_MKDIRAT is set.
12052         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
12053         (unlinkat): Declare if GNULIB_UNLINKAT is set.
12054         * modules/fcntl-h (Files): Remove m4/openat.m4.
12055         * modules/sys_stat (Files): Remove m4/openat.m4.
12056         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
12057         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
12058         * modules/unistd (Files): Remove m4/openat.m4.
12059         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
12060         GNULIB_OPENAT.
12061         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
12062         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
12063         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
12064         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
12065         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
12066         gl_OPENAT_DEFAULTS.
12067         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
12068         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
12069         Don't require gl_OPENAT_DEFAULTS.
12070         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
12071         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
12072         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
12073         (gl_OPENAT_DEFAULTS): Remove macro.
12074
12075 2009-09-06  Bruno Haible  <bruno@clisp.org>
12076
12077         * modules/openat (configure.ac): Remove unneeded witness.
12078
12079 2009-09-06  Bruno Haible  <bruno@clisp.org>
12080
12081         Set errno to ENOSYS when a function is entirely unsupported.
12082         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
12083         EOPNOTSUPP.
12084         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
12085         * modules/chown (Depends-on): Remove errno.
12086
12087 2009-09-06  Bruno Haible  <bruno@clisp.org>
12088
12089         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
12090
12091 2009-09-06  Bruno Haible  <bruno@clisp.org>
12092
12093         * lib/sys_stat.in.h: Fix preprocessor command indentation.
12094
12095 2009-09-06  Ben Pfaff  <blp@gnu.org>
12096             Bruno Haible  <bruno@clisp.org>
12097
12098         Work around a glibc bug in strtok_r.
12099         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
12100         Undefine if UNDEFINE_STRTOK_R is set.
12101         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
12102         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
12103         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
12104         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
12105         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
12106         UNDEFINE_STRTOK_R.
12107         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
12108
12109 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
12110
12111         exclude: minor fix
12112         * lib/exclude.c: Include wctype.h
12113
12114 2009-09-06  Akim Demaille  <demaille@gostai.com>
12115
12116         bootstrap: improve error message
12117         * build-aux/bootstrap (find_tool): Upon failure, report the list
12118         of candidates.
12119         Honor the initial value of the envvar.
12120
12121 2009-09-05  Eric Blake  <ebb9@byu.net>
12122
12123         symlinkat: new module
12124         * modules/symlinkat: New file.
12125         * lib/symlinkat.c: Likewise.
12126         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
12127         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
12128         * modules/unistd (Makefile.am): Use them.
12129         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
12130         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
12131         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
12132         * MODULES.html.sh (File system functions): Mention module.
12133         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
12134         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
12135         * modules/symlinkat-tests: New test.
12136         * tests/test-symlinkat.c: Likewise.
12137
12138         test-openat-safer: add more checks
12139         * tests/test-openat-safer.c (main): Check more code paths.
12140
12141 2009-09-05  Jim Meyering  <meyering@redhat.com>
12142
12143         syntax-check: detect unnecessary inclusion of openat.h
12144         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
12145
12146 2009-09-05  Bruno Haible  <bruno@clisp.org>
12147
12148         Support towlower, towupper.
12149         * doc/posix-functions/towlower.texi: Mention module wctype.
12150         * doc/posix-functions/towupper.texi: Likewise.
12151         * lib/wctype.in.h (towlower, towupper): New functions.
12152         * tests/test-wctype.c: Include stdio.h, stdlib.h.
12153         (ASSERT): New macro.
12154         (e): New variable.
12155         (main): Test also towlower, towupper. Test WEOF argument.
12156         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
12157
12158 2009-09-05  Bruno Haible  <bruno@clisp.org>
12159
12160         Fix conversion behaviour when the input is invalid.
12161         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
12162         mark occurring in first pass of indirect conversion.
12163         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
12164         input.
12165         Found by clang's static analyzer.
12166
12167 2009-09-05  Bruno Haible  <bruno@clisp.org>
12168
12169         * tests/test-striconveh.c (main): Test indirect conversion on platforms
12170         where direct conversion is possible.
12171
12172 2009-09-04  Eric Blake  <ebb9@byu.net>
12173
12174         openat: fail with ENOENT on empty name
12175         * lib/openat-proc.c (openat_proc_name): Special-case the empty
12176         buffer.
12177
12178         link-follow: fix logic bug in prior patch
12179         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
12180         reversed sense of yes and no in prior patch.  Avoid confusing
12181         compilation failure with desired semantics.
12182
12183         link-follow: accomodate mingw and cross-compilation
12184         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
12185         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
12186         cross-compilation results to -1, to make linkat easier to
12187         implement when cross-compiling.  Trivially support mingw.
12188         * modules/link-follow (configure.ac): Call new name.
12189         * NEWS: Mention this.
12190
12191 2009-09-03  Eric Blake  <ebb9@byu.net>
12192
12193         faccessat: compile replacement
12194         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
12195         needed.
12196
12197         fts: fix compilation error
12198         * lib/fts.c (includes): Re-add "openat.h", for
12199         openat_needs_fchdir.
12200
12201         faccessat: new module
12202         * modules/faccessat: New file.
12203         * lib/faccessat.c: Likewise.
12204         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
12205         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
12206         * modules/unistd (Makefile.am): Use it.
12207         * lib/unistd.in.h (faccessat): Declare it.
12208         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
12209         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
12210         * MODULES.html.sh (File system functions): Mention it.
12211         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
12212         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
12213
12214         euidaccess: prefer POSIX over non-standard implementation
12215         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
12216         * lib/euidaccess.c (euidaccess): Use it if available.
12217
12218         openat: make template easier to use
12219         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
12220         AT_FUNC_F2 to be undefined.
12221         (VALIDATE_FLAG): New macro; use it to reject bad flags.
12222         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
12223         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
12224         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
12225         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
12226         Likewise.
12227         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
12228         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
12229         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
12230         Likewise.
12231
12232         openat: declare in POSIX headers
12233         * NEWS: Mention this.
12234         * modules/openat (configure.ac): Declare witnesses.
12235         (Depends-on): Add fcntl-h, sys_stat, unistd.
12236         (Include): Mention correct headers.
12237         * modules/fcntl-h (Depends-on): Add link-warning.
12238         (Files): Add openat.m4.
12239         (Makefile.am): Substitute witnesses.
12240         * modules/sys_stat (Files, Makefile.am): Likewise.
12241         * modules/unistd (Files, Makefile.am): Likewise.
12242         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
12243         (gl_OPENAT_DEFAULTS): New macro.
12244         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
12245         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
12246         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
12247         (SYS_STAT_H): Remove unused variable.
12248         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
12249         * lib/fcntl--.h (includes): Remove unneeded header.
12250         * lib/openat-safer.c (includes): Likewise.
12251         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
12252         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
12253         appropriate headers.
12254         (__OPENAT_PREFIX): Delete.
12255         * lib/fcntl.in.h (openat): Provide declaration.
12256         (AT_FDCWD): Fix Solaris bug.
12257         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
12258         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
12259         * lib/fchmodat.c (includes):  Adjust to find declaration.
12260         * lib/fchownat.c (includes): Likewise.
12261         * lib/mkdirat.c (includes): Likewise.
12262         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
12263         still visible.
12264
12265 2009-09-02  Eric Blake  <ebb9@byu.net>
12266
12267         errno: use consistently
12268         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
12269         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
12270         * lib/canonicalize.c (ELOOP): Likewise.
12271         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
12272         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
12273         * lib/lchown.c (EOPNOTSUPP): Likewise.
12274         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
12275         * lib/savewd.c (ESTALE): Likewise.
12276         * lib/settime.c (ENOSYS): Likewise.
12277         * lib/utimens.c (ENOSYS): Likewise.
12278         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
12279         * lib/chdir-safer.c (ELOOP): Likewise.
12280         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
12281         * modules/c-stack (Depends-on): Add errno.
12282         * modules/canonicalize (Depends-on): Likewise.
12283         * modules/chdir-safer (Depends-on): Likewise.
12284         * modules/fdopendir (Depends-on): Likewise.
12285         * modules/inet_ntop (Depends-on): Likewise.
12286         * modules/inet_pton (Depends-on): Likewise.
12287         * modules/lchown (Depends-on): Likewise.
12288         * modules/openat (Depends-on): Likewise.
12289         * modules/savewd (Depends-on): Likewise.
12290         * modules/settime (Depends-on): Likewise.
12291         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
12292
12293         fts: avoid leaking fds
12294         * modules/fts (Depends-on): Add cloexec.
12295         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
12296         flag.
12297
12298         fts: make directory fds more robust
12299         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
12300         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
12301
12302         backupfile, chdir-long, fts, savedir: make safer
12303         * lib/backupfile.c (includes): Use "dirent--.h", since
12304         numbered_backup can write to stderr during readdir.
12305         * lib/savedir.c (includes): Likewise.
12306         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
12307         emulation can write to stderr on failure.
12308         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
12309         * lib/getcwd.c: Document why opendir_safer is unused.
12310         * lib/glob.c: Likewise.
12311         * lib/scandir.c: Likewise.
12312         * lib/openat-proc.c: Likewise, for open_safer.
12313         * modules/backupfile (Depends-on): Add dirent-safer.
12314         * modules/savedir (Depends-on): Likewise.
12315         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
12316         * modules/chdir-long (Depends-on): Add openat-safer.
12317
12318         openat-safer: new module
12319         * modules/openat-safer: New file.
12320         * lib/openat-safer.c: Likewise.
12321         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
12322         * lib/fcntl-safer.h (openat_safer): Declare.
12323         * lib/fcntl--.h (openat): Override.
12324         * MODULES.html.sh (File descriptor based I/O): Mention it.
12325         * lib/openat.h: Add double-inclusion guards.
12326         * lib/openat.c (includes): Only include "fcntl-safer.h", not
12327         "fcntl--.h", so we can implement openat.
12328         * modules/openat-safer-tests: New test.
12329         * tests/test-openat-safer.c: New file.
12330
12331         dirent-safer: new module
12332         * modules/dirent-safer: New file.
12333         * lib/dirent--.h: Likewise.
12334         * lib/dirent-safer.h: Likewise.
12335         * lib/opendir-safer.c: Likewise.
12336         * m4/dirent-safer.m4: Likewise.
12337         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
12338         * modules/dirent-safer-tests: New test.
12339         * tests/test-dirent-safer.c: New file.
12340         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
12341
12342         fdopendir: optimize on mingw
12343         * lib/unistd.in.h (_gl_directory_name): New prototype.
12344         * lib/fchdir.c (_gl_directory_name): Implement it.
12345         (fchdir): Use it to simplify implementation.
12346         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
12347         fchdir, when available, to avoid calling [f]chdir().
12348
12349         fdopendir: split into its own module
12350         * lib/openat.c (fdopendir): Move...
12351         * lib/fdopendir.c: ...into new file.
12352         * modules/fdopendir: New module.
12353         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
12354         * modules/openat (Depends-on): Add fdopendir.
12355         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
12356         fdopendir here.
12357         * modules/savedir (Depends-on): Only need fdopendir, not full
12358         openat.
12359         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
12360         * lib/openat.h (fdopendir): Drop prototype.
12361         * lib/dirent.in.h (fdopendir): Provide prototype.
12362         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
12363         * modules/dirent (Makefile.am): Substitute them.
12364         * MODULES.html.sh (File system functions): Mention it.
12365         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
12366         * modules/fdopendir-tests: New file.
12367         * tests/test-fdopendir.c: Likewise.
12368
12369         fchdir: use more consistent macro convention
12370         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
12371         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
12372         REPLACE_FCHDIR, rather than relying on config.h macros.
12373         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
12374         inside a single make-time REPLACE_FCHDIR block, rather than using
12375         the config.h FCHDIR_REPLACEMENT.
12376         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
12377         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
12378         Manage fstat replacement.
12379         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
12380         REPLACE_FCHDIR.
12381         * modules/sys_stat (Files): Add m4/unistd_h.m4.
12382         (Makefile.am): Substitute REPLACE_FCHDIR.
12383         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
12384         FCHDIR_REPLACEMENT.
12385         * lib/dup-safer.c (dup_safer): Likewise.
12386         * lib/dup2.c (rpl_dup2): Likewise.
12387         * lib/dup3.c (rpl_dup3): Likewise.
12388         * lib/open.c (rpl_open): Likewise.
12389
12390         fchdir: simplify error handling, and support dup3
12391         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
12392         stdbool, malloc-posix, realloc-posix.
12393         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
12394         (ensure_dirs_slot): Return false on allocation failure.
12395         (rpl_dup2): Delete.
12396         (_gl_register_dup): New function.
12397         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
12398         (_gl_register_fd): Close fd on allocation failure.
12399         * lib/fcntl.in.h (_gl_register_fd): Update signature.
12400         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
12401         prototype.
12402         (rpl_dup2_fchdir): Delete prototype.
12403         * lib/open.c (open): Update caller.
12404         * lib/dup2.c (dup2): Track fchdir metadata.
12405         * lib/dup3.c (dup3): Likewise.
12406         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
12407         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
12408
12409 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12410
12411         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
12412         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
12413         don't pass arguments to AC_OUTPUT.
12414
12415 2009-09-02  Bruno Haible  <bruno@clisp.org>
12416
12417         * modules/mkdtemp (License): Relicense under LGPLv2+.
12418         Reported by Paolo Bonzini.
12419
12420 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12421
12422         Replace uses of obsolete autoconf macros in Jim's modules.
12423         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
12424         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
12425         can evoke a warning from autoconf when run with -Wobsolete
12426         enabled.  They were declared obsolete for good reasons (see
12427         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
12428         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
12429         should not continue using the deprecated macros.
12430         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
12431         obsolete Autoconf macros with modern counterparts.
12432         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
12433         * m4/dos.m4 (gl_AC_DOS): Likewise.
12434         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
12435         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
12436         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
12437         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
12438         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
12439         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
12440         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
12441         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
12442         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
12443         Likewise.
12444         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
12445         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
12446         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
12447         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
12448         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
12449         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
12450
12451 2009-09-01  Eric Blake  <ebb9@byu.net>
12452
12453         fchdir: fix off-by-one bug in previous patch
12454         * lib/fchdir.c (rpl_fstat): Use correct bounds.
12455         (_gl_unregister_fd): Delete useless if.
12456
12457 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
12458
12459         maint.mk: sort the list of syntax-check rules
12460         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
12461         easier to get a sense of progress when the rules are run sequentially
12462         and take a long time.
12463
12464 2009-09-01  Simon Josefsson  <simon@josefsson.org>
12465
12466         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
12467         * modules/netinet_in: Likewise.
12468         * modules/sys_file: Likewise.
12469         * modules/sys_ioctl: Likewise.
12470         * modules/sys_select: Likewise.
12471         * modules/sys_socket: Likewise.
12472         * modules/sys_stat: Likewise.
12473         * modules/sys_time: Likewise.
12474         * modules/sys_times: Likewise.
12475         * modules/sys_utsname: Likewise.
12476         * modules/sys_wait: Likewise.
12477
12478 2009-09-01  Jim Meyering  <meyering@redhat.com>
12479
12480         fts: help ensure that return values are not ignored
12481         * lib/fts_.h (__GNUC_PREREQ): Define.
12482         (__attribute_warn_unused_result__): Define.
12483         (fts_children, fts_close, fts_open, fts_read): Declare with
12484         __attribute_warn_unused_result__.
12485
12486         fts: fts_close now fails also when closing a dir file descriptor fails
12487         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
12488         and propagate to caller, along with errno.
12489
12490         announce-gen: correct formatting in --help output
12491         * build-aux/announce-gen (usage): Move the one-line description in
12492         --help output "up", to where it belongs, just after Usage:.
12493
12494 2009-08-31  Eric Blake  <ebb9@byu.net>
12495
12496         fchdir: port to mingw
12497         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
12498         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
12499         opened, then use a substitute.
12500         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
12501         replacement.
12502         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
12503         (_gl_register_fd): No need to check stat if open already filters
12504         all directories.
12505         (fchdir): Fix error condition to match POSIX.
12506         * modules/fchdir (Depends-on): Add sys_stat.
12507         * doc/posix-functions/open.texi (open): Document the limitation.
12508         * modules/fchdir-tests: New file.
12509         * tests/test-fchdir.c: Likewise.
12510
12511         canonicalize: allow cross-testing from cygwin to mingw
12512         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
12513         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
12514         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
12515         Likewise.
12516         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
12517         target does not support symlinks.
12518         * tests/test-canonicalize-lgpl.sh: Likewise.
12519
12520         chown: avoid compilation warning on mingw
12521         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
12522         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
12523         mingw.
12524         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
12525         * modules/chown (Depends-on): Add errno.
12526
12527 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
12528
12529         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
12530         command.
12531
12532 2009-08-31  Jim Meyering  <meyering@redhat.com>
12533
12534         canonicalize: remove useless initialization
12535         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
12536         initialization of local, "end".
12537
12538 2009-08-30  Bruno Haible  <bruno@clisp.org>
12539
12540         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
12541         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
12542         ENOSYS.
12543
12544 2009-08-30  Bruno Haible  <bruno@clisp.org>
12545
12546         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
12547         /usr/xpg4/bin/tr when it exists.
12548         * tests/test-pipe-filter-gi1.sh: Likewise.
12549
12550 2009-08-30  Bruno Haible  <bruno@clisp.org>
12551
12552         Work around deficient /usr/bin/id program on Solaris.
12553         * tests/test-file-has-acl.sh (ID): New variable.
12554         * tests/test-set-mode-acl.sh (ID): Likewise.
12555         * tests/test-copy-acl.sh (ID): Likewise.
12556         * tests/test-copy-file.sh (ID): Likewise.
12557
12558 2009-08-30  Bruno Haible  <bruno@clisp.org>
12559
12560         New module 'xstriconveh'.
12561         * lib/xstriconveh.h: New file.
12562         * lib/xstriconveh.c: New file.
12563         * modules/xstriconveh: New file.
12564
12565 2009-08-30  Bruno Haible  <bruno@clisp.org>
12566
12567         Make it easier to use mem_cd_iconveh.
12568         * lib/striconveh.h (iconveh_t): New type.
12569         (iconveh_open, iconveh_close): New declarations.
12570         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
12571         with a single 'const iconveh_t *' argument.
12572         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
12573         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
12574         with a single 'const iconveh_t *' argument.
12575         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
12576         * tests/test-striconveh.c (main): Update.
12577         * NEWS: Mention the change.
12578
12579 2009-08-30  Bruno Haible  <bruno@clisp.org>
12580
12581         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
12582         problem.
12583
12584 2009-08-30  Bruno Haible  <bruno@clisp.org>
12585
12586         Work around iconv_open problem on Solaris.
12587         * lib/iconv_open-solaris.gperf: New file.
12588         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
12589         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
12590         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
12591         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
12592         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
12593         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
12594
12595 2009-08-29  Jim Meyering  <meyering@redhat.com>
12596
12597         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
12598         * top/maint.mk (cvs-check): Remove target; it was just an alias
12599         to the better-named vc-diff-check.
12600         (maintainer-distcheck): Remove rule.  It was used only from
12601         the (alpha/beta/major) target, and all of its commands but one
12602         were coreutils-specific.
12603         (vc-dist): Remove rule.
12604         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
12605         Run vc-diff-check, not vc-dist.
12606         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
12607
12608 2009-08-27  Bruno Haible  <bruno@clisp.org>
12609
12610         * tests/test-bitrotate.c (main): Remove test that uses a shift count
12611         of 0.
12612
12613 2009-08-27  Bruno Haible  <bruno@clisp.org>
12614
12615         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
12616         compilers.
12617         * doc/func.texi: Document the SunPRO C bug.
12618
12619 2009-08-27  Bruno Haible  <bruno@clisp.org>
12620
12621         Fix link error on Solaris.
12622         * tests/test-parse-duration.c (xstrdup): Remove function.
12623
12624 2009-08-26  Pádraig Brady  <P@draigbrady.com>
12625
12626         ignore-value: handle pointer types, too
12627         * lib/ignore-value.h (__attribute__): Remove definition.
12628         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
12629         of a more concise and more-often effective "(void) i" statement.
12630         (ignore_ptr): New function to suppress warnings from functions that
12631         return pointers, and to make it explicit that one function doesn't
12632         handle all cases.
12633
12634 2009-08-25  Bruno Haible  <bruno@clisp.org>
12635
12636         dup2: work around a Linux bug.
12637         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
12638         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
12639         * doc/posix-functions/dup2.texi: Mention the Linux bug.
12640         Reported by Simon Josefsson.
12641
12642 2009-08-25  Jim Meyering  <meyering@redhat.com>
12643
12644         libguestfs uses gnulib
12645         * users.txt: Add libguestfs.
12646
12647 2009-08-24  Eric Blake  <ebb9@byu.net>
12648
12649         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
12650         * lib/pipe2.c (includes): Add binary-io.h.
12651         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
12652
12653 2009-08-24  Bruno Haible  <bruno@clisp.org>
12654
12655         Tolerate declared but missing accept4 syscall.
12656         * lib/accept4.c (accept4): Invoke original accept4 function first, if
12657         available.
12658         * lib/sys_socket.in.h (accept4): If the function is already present,
12659         override it.
12660         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
12661         * modules/accept4 (Makefile.am): Compile accept4.c always.
12662         Reported by Paolo Bonzini and Eric Blake.
12663
12664 2009-08-23  Bruno Haible  <bruno@clisp.org>
12665
12666         New module 'accept4'.
12667         * lib/sys_socket.in.h (accept4): New declaration.
12668         * lib/accept4.c: New file.
12669         * m4/accept4.m4: New file.
12670         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
12671         GNULIB_ACCEPT4, HAVE_ACCEPT4.
12672         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
12673         HAVE_ACCEPT4.
12674         * modules/accept4: New file.
12675         * doc/glibc-functions/accept4.texi: Mention the new module.
12676
12677 2009-08-24  Jim Meyering  <meyering@redhat.com>
12678
12679         progname: also set global program_invocation_name, when possible
12680         Before this change, a libtool-enabled program that calls glibc's
12681         error function would report the program name as
12682         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
12683         * modules/progname (configure.ac): Check for a declaration of
12684         program_invocation_name.
12685         * lib/progname.c:  Include <errno.h>.
12686         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
12687         Set program_invocation_name.
12688
12689 2009-08-23  Bruno Haible  <bruno@clisp.org>
12690
12691         * lib/dup3.c: Include <string.h>.
12692
12693 2009-08-23  Bruno Haible  <bruno@clisp.org>
12694
12695         * lib/dup3.c (dup3): Test only once whether the system actually exists.
12696         * lib/pipe2.c (pipe2): Likewise.
12697         Suggested by Eric Blake.
12698
12699 2009-08-23  Bruno Haible  <bruno@clisp.org>
12700
12701         Tolerate declared but missing dup3 syscall.
12702         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
12703         * lib/unistd.in.h (dup3): If the function is already present,
12704         override it.
12705         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
12706         * modules/dup3 (Makefile.am): Compile dup3.c always.
12707         Reported by Paolo Bonzini.
12708
12709 2009-08-23  Bruno Haible  <bruno@clisp.org>
12710
12711         Tolerate declared but missing pipe2 syscall.
12712         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
12713         available.
12714         * lib/unistd.in.h (pipe2): If the function is already present,
12715         override it.
12716         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
12717         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
12718         Reported by Paolo Bonzini.
12719
12720 2009-08-23  Bruno Haible  <bruno@clisp.org>
12721
12722         * lib/pipe2.c (pipe2): Move #ifs inside function.
12723
12724 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
12725
12726         quotearg: document limitations of quote_these_too
12727         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
12728         those limitations are created.
12729         * lib/quotearg.h (set_char_quoting): Document that digits and
12730         letters that are special after backslash are not permitted.
12731         (quotearg_char): Cross-reference set_char_quoting documentation.
12732
12733 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
12734
12735         quotearg: implement custom_quoting_style
12736         * lib/quotearg.c: (struct quoting_options): Add left_quote and
12737         right_quote fields.
12738         (set_custom_quoting): New public function.
12739         (quotearg_buffer_restyled): Add left_quote and right_quote
12740         arguments, handle them very much like locale quoting, and update
12741         all uses.
12742         (quotearg_n_custom): New public function.
12743         (quotearg_n_custom_mem): New public function.
12744         (quotearg_custom): New public function.
12745         (quotearg_custom_mem): New public function.
12746         * lib/quotearg.h: Prototype and document new public functions.
12747         (enum quoting_style): For escape_quoting_style and
12748         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
12749         ignored even though they're otherwise like c_quoting_style.
12750         Add custom_quoting_style member and document with comparison to
12751         clocale_quoting_style.
12752         * tests/test-quotearg.c (custom_quotes): New array.
12753         (custom_results): New array.
12754         (main): Extend to test custom quoting.
12755
12756 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
12757
12758         quotearg: fix right quote escaping when it's in quote_these_too
12759         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
12760         quote, be sure to prepend only one backslash.
12761         * tests/test-quotearg.c (use_quote_double_quotes): New function.
12762         (main): Test it.
12763
12764 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
12765
12766         quotearg-tests: test escaping of embedded locale quotes
12767         * tests/test-quotearg.c (struct result_strings): Add member for
12768         new input.
12769         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
12770         (inputs): Add new input.
12771         (results_g): Add expected results.
12772         (flag_results): Likewise.
12773         (locale_results): Likewise.
12774         (compare_strings): Check those.
12775
12776 2009-08-23  Bruno Haible  <bruno@clisp.org>
12777
12778         Tests for module 'dup3'.
12779         * modules/dup3-tests: New file.
12780         * tests/test-dup3.c: New file.
12781
12782         New module 'dup3'.
12783         * lib/unistd.in.h (dup3): New declaration.
12784         * lib/dup3.c: New file.
12785         * m4/dup3.m4: New file.
12786         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
12787         HAVE_DUP3.
12788         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
12789         * modules/dup3: New file.
12790         * doc/glibc-functions/dup3.texi: Mention the new module.
12791
12792 2009-08-23  Bruno Haible  <bruno@clisp.org>
12793
12794         Tweak the dup2 test.
12795         * tests/test-dup2.c (main): Create the test file empty. Verify that an
12796         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
12797         the test file is still empty. Fix argument order of lseek.
12798
12799 2009-08-23  Bruno Haible  <bruno@clisp.org>
12800
12801         Avoid test link errors when the modules getopt-gnu, gettext are used.
12802         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
12803         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12804
12805 2009-08-23  Bruno Haible  <bruno@clisp.org>
12806
12807         Fix getdtablesize() on mingw.
12808         * lib/getdtablesize.c (getdtablesize): Implement differently.
12809         * lib/unistd.in.h (getdtablesize): Improve comment.
12810
12811 2009-08-23  Bruno Haible  <bruno@clisp.org>
12812
12813         New module 'mkostemp'.
12814         Based on Ulrich Drepper's 2007-08-10 change in glibc.
12815         * lib/stdlib.in.h (mksotemp): New declaration.
12816         * lib/mkostemp.c: New file, from glibc with modifications.
12817         * lib/tempname.h (GT_FILE): Remove outdated comment.
12818         (gen_tempname): Add flags argument.
12819         * lib/tempname.c (__GT_BIGFILE): Remove macro.
12820         (__GT_FILE): Map to 1.
12821         (small_open, large_open): Remove macros.
12822         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
12823         * lib/mkstemp.c (mkstemp): Update.
12824         * lib/mkdtemp.c (mkdtemp): Likewise.
12825         * m4/mkostemp.m4: New file.
12826         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
12827         HAVE_MKOSTEMP.
12828         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
12829         HAVE_MKOSTEMP.
12830         * modules/mkostemp: New file, based on modules/mkstemp.
12831         * doc/glibc-functions/mkostemp.texi: Mention the new module.
12832         * NEWS: Mention the change.
12833
12834 2009-08-23  Bruno Haible  <bruno@clisp.org>
12835
12836         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
12837         Reported by Eric Blake.
12838
12839 2009-08-23  Bruno Haible  <bruno@clisp.org>
12840
12841         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
12842         Reported by Eric Blake.
12843
12844 2009-08-23  Bruno Haible  <bruno@clisp.org>
12845
12846         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
12847         * modules/pipe2 (Depends-on): Likewise.
12848
12849 2009-08-23  Eric Blake  <ebb9@byu.net>
12850
12851         fcntl-h: add O_TTY_INIT support
12852         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
12853         * tests/test-fcntl-h.c (o): Test it.
12854         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12855
12856         fcntl-h: rename from fcntl, in preparation for fcntl(2)
12857         * modules/fcntl: Move <fcntl.h> header replacement...
12858         * modules/fcntl-h: ...to new name, so as not to collide with
12859         like-named function.
12860         * tests/test-fcntl.c: Rename...
12861         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
12862         * modules/fcntl-tests: Rename...
12863         * modules/fcntl-h-tests: ...to this.  Update test file name.
12864         * modules/chdir-long (Depends-on): Update clients.
12865         * modules/chdir-safer (Depends-on): Likewise.
12866         * modules/fcntl-safer (Depends-on): Likewise.
12867         * modules/fts (Depends-on): Likewise.
12868         * modules/mkancesdirs (Depends-on): Likewise.
12869         * modules/mkdir-p (Depends-on): Likewise.
12870         * modules/open (Depends-on): Likewise.
12871         * modules/savewd (Depends-on): Likewise.
12872         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
12873         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12874
12875 2009-08-22  Bruno Haible  <bruno@clisp.org>
12876
12877         * modules/binary-io (License): Relicense under LGPL.
12878         * modules/pipe2 (License): Likewise.
12879
12880 2009-08-22  Bruno Haible  <bruno@clisp.org>
12881
12882         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
12883         return value.
12884         * lib/pipe-filter-gi.c (filter_init): Likewise.
12885         Reported by Eric Blake.
12886
12887 2009-08-22  Bruno Haible  <bruno@clisp.org>
12888
12889         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
12890         * modules/pipe (Depends-on): Add pipe2.
12891
12892 2009-08-22  Bruno Haible  <bruno@clisp.org>
12893
12894         Tests for module 'pipe2'.
12895         * modules/pipe2-tests: New file.
12896         * tests/test-pipe2.c: New file.
12897
12898         New module 'pipe2'.
12899         * lib/unistd.in.h (pipe2): New declaration.
12900         * lib/pipe2.c: New file.
12901         * m4/pipe2.m4: New file.
12902         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
12903         HAVE_PIPE2.
12904         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
12905         * modules/pipe2: New file.
12906         * doc/glibc-functions/pipe2.texi: Mention the new module.
12907
12908 2009-08-22  Bruno Haible  <bruno@clisp.org>
12909
12910         Reference some new glibc functions.
12911         * doc/glibc-functions/accept4.texi: New file.
12912         * doc/glibc-functions/dup3.texi: New file.
12913         * doc/glibc-functions/mkostemp.texi: New file.
12914         * doc/glibc-functions/pipe2.texi: New file.
12915         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
12916         (Glibc sys/socket.h): Refer to accept4.
12917         (Glibc unistd.h): Refer to dup3, pipe2.
12918         Reported by Eric Blake.
12919
12920 2009-08-22  Jim Meyering  <meyering@redhat.com>
12921             Bruno Haible  <bruno@clisp.org>
12922
12923         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
12924         This makes it so packages using automake-1.11's silent-rules option
12925         can print e.g., a single "GEN    configmake.h" line, rather than
12926         the 30+ statements that perform the job.  If you want to see the
12927         actual commands, you can still run "make V=1".
12928         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
12929         so that make output is abbreviated when those variables are defined
12930         appropriately.
12931         * modules/argz: Likewise.
12932         * modules/arpa_inet: Likewise.
12933         * modules/byteswap: Likewise.
12934         * modules/configmake: Likewise.
12935         * modules/dirent: Likewise.
12936         * modules/errno: Likewise.
12937         * modules/fcntl: Likewise.
12938         * modules/float: Likewise.
12939         * modules/fnmatch: Likewise.
12940         * modules/getopt-posix: Likewise.
12941         * modules/glob: Likewise.
12942         * modules/iconv_open: Likewise.
12943         * modules/inttypes: Likewise.
12944         * modules/localcharset: Likewise.
12945         * modules/locale: Likewise.
12946         * modules/math: Likewise.
12947         * modules/netdb: Likewise.
12948         * modules/netinet_in: Likewise.
12949         * modules/poll: Likewise.
12950         * modules/posix_spawnp-tests: Likewise.
12951         * modules/sched: Likewise.
12952         * modules/search: Likewise.
12953         * modules/selinux-h: Likewise.
12954         * modules/signal: Likewise.
12955         * modules/spawn: Likewise.
12956         * modules/stdarg: Likewise.
12957         * modules/stdbool: Likewise.
12958         * modules/stddef: Likewise.
12959         * modules/stdint: Likewise.
12960         * modules/stdio: Likewise.
12961         * modules/stdlib: Likewise.
12962         * modules/string: Likewise.
12963         * modules/strings: Likewise.
12964         * modules/sys_file: Likewise.
12965         * modules/sys_ioctl: Likewise.
12966         * modules/sys_select: Likewise.
12967         * modules/sys_socket: Likewise.
12968         * modules/sys_stat: Likewise.
12969         * modules/sys_time: Likewise.
12970         * modules/sys_times: Likewise.
12971         * modules/sys_utsname: Likewise.
12972         * modules/sys_wait: Likewise.
12973         * modules/sysexits: Likewise.
12974         * modules/time: Likewise.
12975         * modules/unistd: Likewise.
12976         * modules/wchar: Likewise.
12977         * modules/wctype: Likewise.
12978
12979 2009-08-22  Jim Meyering  <meyering@redhat.com>
12980
12981         announce-gen: detect write failure
12982         * build-aux/announce-gen: Add Coda at end.
12983         Remove equivalent-but-more-verbose block at top.
12984
12985 2009-08-19  Akim Demaille  <demaille@gostai.com>
12986
12987         bootstrap: --help to stdout.
12988         * bootstrap (usage): Don't send --help to stderr.
12989         Use a here doc instead of a long string.
12990
12991 2009-08-21  Eric Blake  <ebb9@byu.net>
12992
12993         test-popen-safer: split from test-popen
12994         * tests/test-popen.c (main): Move...
12995         * tests/test-popen.h: ...into new file.
12996         * tests/test-popen-safer2.c: New file.
12997         * modules/popen-tests (Files): Add test-popen.h.
12998         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
12999         Suggested by Bruno Haible.
13000
13001         test-fcntl-safer: split from test-open
13002         * tests/test-open.c (main): Move...
13003         * tests/test-open.h: ...into new file.
13004         * tests/test-fcntl-safer.c: New file.
13005         * modules/open-tests (Files): Add test-open.h.
13006         * modules/fcntl-safer-tests: New file.
13007         Suggested by Bruno Haible.
13008
13009         test-fopen-safer: split from test-fopen
13010         * tests/test-fopen.c (main): Move...
13011         * tests/test-fopen.h: ...into new file.
13012         * tests/test-fopen-safer.c: New file.
13013         * modules/fopen-tests (Files): Add test-fopen.h.
13014         * modules/fopen-safer-tests: New file.
13015         Suggested by Bruno Haible.
13016
13017 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
13018
13019         popen-safer: test O_CLOEXEC at run-time.
13020         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
13021
13022 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
13023
13024         fcntl: move more flags to the header
13025         * lib/cloexec.c: Do not define FD_CLOEXEC here.
13026         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
13027         * lib/fcntl.in.h: Do both things here.
13028
13029 2009-08-21  Jim Meyering  <meyering@redhat.com>
13030
13031         consistently remove $@-t before redirecting to it
13032         * modules/argz: Remove $@-t and $@ before redirecting to the former.
13033         * modules/alloca-opt: Likewise.
13034         * modules/byteswap: Likewise.
13035         * modules/fnmatch: Likewise.
13036         * modules/getopt-posix: Likewise.
13037         * modules/glob: Likewise.
13038         * modules/poll: Likewise.
13039         * modules/posix_spawnp-tests: Likewise.
13040         * modules/sys_socket: Likewise.
13041         * modules/sysexits: Likewise.
13042
13043 2009-08-21  Eric Blake  <ebb9@byu.net>
13044
13045         popen: simplify access to original popen
13046         * lib/popen.c (rpl_popen): No need to worry about popen being a
13047         macro.
13048         Reported by Bruno Haible.
13049
13050 2009-08-20  Eric Blake  <ebb9@byu.net>
13051
13052         build: avoid some compiler warnings
13053         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
13054         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
13055         type.
13056         (new_exclude_segment, excluded_file_pattern_p)
13057         (excluded_file_name_p): Reduce scope.
13058         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
13059         old-style declaration.
13060
13061 2009-08-20  Simon Josefsson  <simon@josefsson.org>
13062
13063         * tests/test-exclude1.sh: Handle Windows EOL.
13064         * tests/test-exclude2.sh: Likewise.
13065         * tests/test-exclude3.sh: Likewise.
13066         * tests/test-exclude4.sh: Likewise.
13067         * tests/test-exclude5.sh: Likewise.
13068         * tests/test-exclude6.sh: Likewise.
13069         * tests/test-exclude7.sh: Likewise.
13070
13071 2009-08-19  Akim Demaille  <demaille@gostai.com>
13072
13073         bootstrap: find sha1sum when named gsha1sum.
13074         * bootstrap (find_tool): New.
13075         ($SHA1SUM): New.
13076         Use it.
13077
13078 2009-08-20  Jim Meyering  <meyering@redhat.com>
13079
13080         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
13081         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
13082         expression that converts "." in a file name to "\." in the resulting
13083         regexp.  Start with a dummy statement, so that prior shell variable
13084         definitions are expanded portably.  Reported by Simon Josefsson.
13085
13086 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
13087
13088         Fix polling for writeability of a screen buffer.
13089         * lib/poll.c: Distinguish input and screen buffers for the
13090         Win32 implementation.
13091         * lib/select.c: Likewise.
13092
13093 2009-08-19  Eric Blake  <ebb9@byu.net>
13094
13095         popen-safer: prevent popen from clobbering std descriptors
13096         * modules/popen-safer: New file.
13097         * lib/popen-safer.c: Likewise.
13098         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
13099         * lib/stdio--.h (popen): Provide override.
13100         * lib/stdio-safer.h (popen_safer): Provide declaration.
13101         * tests/test-popen.c (includes): Partially test this.
13102         * modules/popen-safer-tests: New file, for more tests.
13103         * tests/test-popen-safer.c: Likewise.
13104         * MODULES.html.sh (file stream based Input/Output): Mention it.
13105
13106         tests: test some of the *-safer modules
13107         * modules/fopen-safer (Depends-on): Add fopen.
13108         * modules/fcntl-safer (Depends-on): Add fcntl.
13109         * modules/stdlib-safer (Depends-on): Add stdlib.
13110         (configure.ac): Set indicator.
13111         * modules/unistd-safer (configure.ac): Likewise.
13112         * modules/tmpfile-safer (configure.ac): Likewise.
13113         (Depends-on): Add tmpfile.
13114         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
13115         active.
13116         * tests/test-fopen.c (includes): Test safer versions when they are
13117         in use.
13118         * tests/test-open.c (includes): Likewise.
13119
13120         popen: fix cygwin 1.5 bug when stdin closed
13121         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
13122         * modules/popen: New file.
13123         * modules/popen-tests: Likewise.
13124         * tests/test-popen.c: Likewise.
13125         * m4/popen.m4: Likewise.
13126         * lib/popen.c: Likewise.
13127         * lib/stdio.in.h (popen): New declaration.
13128         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
13129         * modules/stdio (Makefile.am): Likewise.
13130         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
13131
13132 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
13133
13134         maint.mk: give full control over update-copyright exclusions
13135         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
13136         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
13137         (update-copyright): Don't force inclusion of top-level
13138         ChangeLog.  Don't force exclusion of all COPYING files, but make
13139         them the default exclusion instead.
13140
13141 2009-08-16  Bruno Haible  <bruno@clisp.org>
13142
13143         Fix test failures on Solaris 10.
13144         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
13145         tests when Solaris iconv() is used.
13146         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
13147         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
13148         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
13149         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
13150         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
13151
13152 2009-08-16  Bruno Haible  <bruno@clisp.org>
13153
13154         Fix test failures on Solaris 10.
13155         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
13156         'tr' program and pass it as first argument.
13157         * tests/test-pipe-filter-gi1.sh: Likewise.
13158         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
13159         program as first argument.
13160         * tests/test-pipe-filter-gi1.c (main): Likewise.
13161
13162 2009-08-16  Eric Blake  <ebb9@byu.net>
13163
13164         fpurge: fix previous commits
13165         * modules/fpurge (Makefile.am): Make replacement conditional,
13166         partially reverting 2007-04-29 change; missed in previous
13167         attempt.
13168         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
13169         is missing.
13170
13171 2009-08-16  Bruno Haible  <bruno@clisp.org>
13172
13173         Clarify fpurge's effect on the file position.
13174         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
13175         * tests/test-fpurge.c (main): Make a second pass for checking the file
13176         position.
13177
13178 2009-08-16  Bruno Haible  <bruno@clisp.org>
13179
13180         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
13181         declaration of fpurge is missing.
13182         * tests/test-fpurge.c (main): Check that the file has not more contents
13183         than expected. Close the file before removing it.
13184
13185 2009-08-15  Eric Blake  <ebb9@byu.net>
13186
13187         fpurge: don't wrap working cygwin implementation
13188         * lib/fpurge.c (fpurge): Fix comment typo.
13189         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
13190         1.7 to avoid replacement.
13191         * tests/test-fpurge.c (main): Enhance test.
13192
13193 2009-08-15  Eric Blake  <ebb9@byu.net>
13194         and Jim Meyering  <meyering@redhat.com>
13195
13196         test-update-copyright: skip if perl is insufficient
13197         * tests/test-update-copyright.sh: Failure to run maintainer tool
13198         should not cause testsuite failure on cygwin 1.5.
13199
13200 2009-08-14  Eric Blake  <ebb9@byu.net>
13201
13202         doc: mention more functions added in cygwin 1.7.0
13203         * doc/posix-headers/limits.texi (limits.h): Update for recent
13204         cygwin additions.
13205         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
13206         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
13207         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
13208         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
13209         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
13210
13211 2009-08-14  Eric Blake  <ebb9@byu.net>
13212
13213         maint.mk: simplify update-copyright rule
13214         * top/maint.mk (update-copyright-local): Delete, and document how
13215         to do it in cfg.mk instead.
13216         (update-copyright-exclude-regexp): Delete, and document how to do
13217         it in .x-update-copyright instead.
13218         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
13219         exclude ChangeLog.
13220
13221 2009-08-14  Bruno Haible  <bruno@clisp.org>
13222
13223         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
13224
13225 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
13226
13227         maint.mk: support update-copyright-env
13228         * top/maint.mk (update-copyright-env): Define place-holder.
13229         (update-copyright): Expand $(update-copyright-env) before
13230         invoking update-copyright.
13231
13232 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
13233
13234         update-copyright: implement forced reformatting
13235         * build-aux/update-copyright: Implement and document
13236         UPDATE_COPYRIGHT_FORCE.
13237         * tests/test-update-copyright.sh: Test it.
13238
13239 2009-08-14  Eric Blake  <ebb9@byu.net>
13240         and Bruno Haible  <bruno@clisp.org>
13241
13242         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
13243         * tests/test-locale.c: Revert previous patch related to NULL.
13244         * tests/test-stdio.c: Likewise.
13245         * tests/test-stdlib.c: Likewise.
13246         * tests/test-string.c: Likewise.
13247         * tests/test-unistd.c: Likewise.
13248         * modules/time-tests (Depends-on): Add verify.
13249         * modules/wchar-tests (Depends-on): Likewise.
13250         * tests/test-time.c: Test for NULL compliance.
13251         * tests/test-wchar.c: Likewise.
13252         * modules/locale (Depends-on): Add stddef.
13253         * modules/stdio (Depends-on): Likewise.
13254         * modules/stdlib (Depends-on): Likewise.
13255         * modules/string (Depends-on): Likewise.
13256         * modules/time (Depends-on): Likewise.
13257         * modules/unistd (Depends-on): Likewise.
13258         * modules/wchar (Depends-on): Likewise.
13259         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
13260         * lib/stdlib.in.h (includes): Likewise.
13261         * lib/string.in.h (includes): Likewise.
13262         * lib/time.in.h (includes): Likewise.
13263         * lib/unistd.in.h (includes): Likewise.
13264         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
13265         replaced.
13266         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
13267         * m4/stddef_h.m4: New file.
13268         * modules/stddef: Likewise.
13269         * lib/stddef.in.h: Likewise.
13270         * modules/stddef-tests: Likewise.
13271         * tests/test-stddef.c: Likewise.
13272         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
13273         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
13274         * doc/posix-headers/locale.texi (locale.h): Likewise.
13275         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
13276         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
13277         * doc/posix-headers/string.texi (string.h): Likewise.
13278         * doc/posix-headers/time.texi (time.h): Likewise.
13279         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
13280         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
13281
13282 2009-08-14  Eric Blake  <ebb9@byu.net>
13283
13284         doc: improve git diff of texinfo files
13285         * .gitattributes: Add rule for *.texi files, with hint on how to
13286         use it.
13287         Copied from m4, and based on a report by Bruno Haible.
13288
13289 2009-08-14  Bruno Haible  <bruno@clisp.org>
13290
13291         Disable multithread support by default on Cygwin 1.5.x for real.
13292         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
13293
13294 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
13295
13296         update-copyright: much ado about intervals
13297         * build-aux/update-copyright: Implement and document
13298         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
13299         of copyright year intervals.
13300         Also, document UPDATE_COPYRIGHT_YEAR.
13301         * tests/test-update-copyright.sh: Test it.
13302
13303         update-copyright: convert 2-digit to 4-digit years
13304         * build-aux/update-copyright: Implement and document.
13305         * tests/test-update-copyright.sh: Update.
13306
13307 2009-08-14  Jim Meyering  <meyering@redhat.com>
13308
13309         test-exclude: avoid coreutils "make check" failure
13310         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
13311         just as in test-argmatch.c.
13312
13313 2009-08-13  Eric Blake  <ebb9@byu.net>
13314
13315         test-dup2: fix bad assumption
13316         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
13317         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
13318
13319         test-version-etc: fix CRLF portability issue
13320         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
13321         recognize \r.
13322         * tests/test-argp-version-etc-1.sh: Likewise.
13323
13324         getopt: update client modules
13325         * modules/argp (Depends-on): Use getopt-gnu.
13326         * modules/git-merge-changelog (Depends-on): Likewise.
13327         * modules/long-options (Depends-on): Likewise.
13328         * modules/xstrtol (Depends-on): Likewise.
13329
13330 2009-08-13  Simon Josefsson  <simon@josefsson.org>
13331
13332         * tests/test-version-etc.sh: Don't fail on different
13333         project/version.  Don't fail on CRLF differences.  Rewrite to use
13334         multiple -e instead of multiple sed forks, suggested by Eric Blake
13335         <ebb9@byu.net>.
13336         * tests/test-argp-version-etc-1.sh: Likewise.
13337
13338 2009-08-13  Simon Josefsson  <simon@josefsson.org>
13339
13340         * tests/test-version-etc.sh: Don't fail on different
13341         project/version.
13342
13343 2009-08-12  Bruno Haible  <bruno@clisp.org>
13344
13345         Tests for modules 'getopt-posix', 'getopt-gnu'.
13346         * modules/getopt-posix-tests: New file.
13347         * tests/test-getopt.c: New file.
13348         * tests/test-getopt.h: New file.
13349         * tests/test-getopt_long.h: New file.
13350
13351         New modules 'getopt-posix', 'getopt-gnu'.
13352         * modules/getopt-gnu: New file, renamed from modules/getopt.
13353         * modules/getopt-posix: New file.
13354         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
13355         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
13356         (gl_GETOPT): Remove macro.
13357         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
13358         Disable the test against BSD systems that declare optreset. Test
13359         against mingw bug. Test against lack of support of optional arguments
13360         on many platforms.
13361         * doc/glibc-headers/getopt.texi: Update module name and list of
13362         relevant platforms.
13363         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
13364         'getopt-gnu' and more portability problems.
13365         * NEWS: Mention the changes.
13366
13367 2009-08-12  Bruno Haible  <bruno@clisp.org>
13368
13369         Ensure that optarg etc. get declared by <unistd.h>.
13370         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
13371         AC_USE_SYSTEM_EXTENSIONS.
13372         * modules/getopt (Depends-on): Add 'extensions'.
13373
13374 2009-08-12  Bruno Haible  <bruno@clisp.org>
13375
13376         Avoid test link errors.
13377         * modules/pipe-filter-ii-tests (Makefile.am): Define
13378         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
13379         * modules/pipe-filter-gi-tests (Makefile.am): Define
13380         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
13381         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
13382
13383 2009-08-12  Bruno Haible  <bruno@clisp.org>
13384
13385         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
13386         gl_GETOPT_SUBSTITUTE before.
13387         (gl_GETOPT): Use it.
13388         * m4/argp.m4 (gl_ARGP): Update.
13389         Reported by Sergey Poznyakoff.
13390
13391         * m4/getopt.m4: Reorder macros.
13392         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
13393         (gl_GETOPT_SUBSTITUTE): Remove macro.
13394
13395 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13396
13397         Minor improvement in gitlog-to-changelog
13398
13399         * build-aux/gitlog-to-changelog: New option `--format' makes
13400         output format string configurable.
13401
13402 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13403
13404         Optimize exclude: use hash tables for non-wildcard patterns.
13405
13406         * lib/exclude.c: Include hash.h and mbuiter.h
13407         (struct exclude_pattern, exclude_segment): New data types.
13408         (struct exclude): Rewrite.
13409         (fnmatch_pattern_has_wildcards): New function.
13410         (new_exclude_segment, free_exclude_segment): New functions.
13411         (excluded_file_pattern_p, excluded_file_name_p): New functions.
13412         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
13413         * lib/exclude.h (is_fnmatch_pattern): New prototype.
13414         * modules/exclude: Depend on hash and mbuiter.
13415
13416         * modules/exclude-tests: New file.
13417         * tests/test-exclude.c: New file.
13418         * tests/test-exclude1.sh: New file.
13419         * tests/test-exclude2.sh: New file.
13420         * tests/test-exclude3.sh: New file.
13421         * tests/test-exclude4.sh: New file.
13422         * tests/test-exclude5.sh: New file.
13423         * tests/test-exclude6.sh: New file.
13424         * tests/test-exclude7.sh: New file.
13425
13426 2009-08-12  Bruno Haible  <bruno@clisp.org>
13427
13428         Ensure that getopt() gets declared by <unistd.h>.
13429         * lib/unistd.in.h: Conditionally include getopt.h.
13430         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
13431         Set GNULIB_UNISTD_H_GETOPT.
13432         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13433         GNULIB_UNISTD_H_GETOPT.
13434         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
13435
13436 2009-08-12  Bruno Haible  <bruno@clisp.org>
13437
13438         Clarify logic.
13439         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
13440         gl_replace_getopt instead of GETOPT_H.
13441
13442 2009-08-12  Bruno Haible  <bruno@clisp.org>
13443
13444         * m4/getopt.m4: Add comments.
13445
13446 2009-08-12  Bruno Haible  <bruno@clisp.org>
13447
13448         Disable multithread support by default on Cygwin 1.5.x.
13449         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
13450         set gl_use_threads=no if not specified otherwise.
13451
13452 2009-08-11  Bruno Haible  <bruno@clisp.org>
13453
13454         Avoid compilation error on NetBSD 5.0.
13455         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
13456         * tests/test-stdio.c: Likewise.
13457         * tests/test-stdlib.c: Likewise.
13458         * tests/test-string.c: Likewise.
13459         * tests/test-unistd.c: Likewise.
13460         Reported by Greg Troxel <gdt@ir.bbn.com>
13461         at <https://savannah.gnu.org/support/?106973>.
13462
13463 2009-08-11  Bruno Haible  <bruno@clisp.org>
13464
13465         * modules/dup2-tests (Depends-on): Remove close.
13466
13467         Undo 2009-07-19 commit.
13468         * modules/acl-tests (Depends-on): Remove close.
13469         * modules/binary-io-tests (Depends-on): Likewise.
13470         * modules/closein-tests (Depends-on): Likewise.
13471         * modules/flock-tests (Depends-on): Likewise.
13472         * modules/fsync-tests (Depends-on): Likewise.
13473         * modules/lseek-tests (Depends-on): Likewise.
13474         * modules/pipe-tests (Depends-on): Likewise.
13475         * modules/posix_spawn-tests (Depends-on): Likewise.
13476         * modules/posix_spawnp-tests (Depends-on): Likewise.
13477         * modules/stat-time-tests (Depends-on): Likewise.
13478         * modules/yesno-tests (Depends-on): Likewise.
13479
13480 2009-08-10  Bruno Haible  <bruno@clisp.org>
13481
13482         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
13483
13484 2009-08-10  Bruno Haible  <bruno@clisp.org>
13485
13486         Fix a gcc warning.
13487         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
13488
13489 2009-08-10  Bruno Haible  <bruno@clisp.org>
13490
13491         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
13492         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
13493         not only the first time.
13494         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
13495         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
13496         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
13497         is 1, not only the the first time.
13498
13499 2009-08-10  Bruno Haible  <bruno@clisp.org>
13500
13501         Make it possible to use module 'gethostname' without module 'close'.
13502         * lib/unistd.in.h (close): Evoke a link error only if
13503         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
13504         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13505         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13506         * modules/unistd (Makefile.am): Substitute
13507         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13508         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
13509         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
13510         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
13511         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13512         * modules/sys_ioctl (Makefile.am): Substitute
13513         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13514         * modules/socket (configure.ac): On native Windows, set
13515         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
13516         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13517         Reported by Sam Steingold <sds@gnu.org>.
13518
13519 2009-08-10  Bruno Haible  <bruno@clisp.org>
13520
13521         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
13522         * modules/ioctl (configure.ac): Likewise.
13523
13524 2009-08-10  Bruno Haible  <bruno@clisp.org>
13525
13526         Avoid collision between gnulib wrapper and libintl wrapper.
13527         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
13528         already defined in intl/printf.c.
13529         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
13530         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
13531
13532 2009-08-09  Bruno Haible  <bruno@clisp.org>
13533
13534         Make <sys/select.h> really self-contained, also on Solaris 10.
13535         * lib/sys_select.in.h: Include <string.h>.
13536         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
13537         Solaris 10 problem.
13538         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
13539         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
13540         Reported by Jim Meyering.
13541
13542 2009-08-09  Bruno Haible  <bruno@clisp.org>
13543
13544         Avoid warnings from 'aclocal' that are due to a use of macro name
13545         AM_XGETTEXT_OPTION that is not defined in automake.
13546         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
13547         automake.
13548         * modules/error (configure.ac): Likewise.
13549         * modules/propername (configure.ac): Likewise.
13550         * modules/vasprintf (configure.ac): Likewise.
13551         * modules/verror (configure.ac): Likewise.
13552         * modules/xprintf (configure.ac): Likewise.
13553         * modules/xvasprintf (configure.ac): Likewise.
13554
13555 2009-08-08  Bruno Haible  <bruno@clisp.org>
13556
13557         Avoid compilation error in C++ mode.
13558         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
13559         Reported by Sam Steingold <sds@gnu.org>.
13560
13561 2009-08-08  Bruno Haible  <bruno@clisp.org>
13562
13563         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
13564         for the various Unix platforms.
13565         * doc/posix-headers/limits.texi: Update platforms list regarding
13566         HOST_NAME_MAX.
13567         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
13568
13569 2009-08-07  Jim Meyering  <meyering@redhat.com>
13570
13571         selinux-at: fix typo in a comment
13572         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
13573         Spotted by Paolo Bonzini.
13574
13575         selinux-at: remove redundant m4 code, add documentation
13576         * modules/selinux-at (configure.ac): Remove redundant code.
13577         LIB_SELINUX is already set via the dependent module, selinux-h.
13578         (Include): Add quotes around selinux-at.h.
13579         * lib/selinux-at.h: Add documentation.
13580         Reported by Bruno Haible in
13581         http://marc.info/?l=gnulib-bug&m=124958988300749
13582
13583 2009-08-07  Bruno Haible  <bruno@clisp.org>
13584
13585         Avoid link error on MacOS X 10.3 and 10.4.
13586         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
13587         on non-ELF systems.
13588         * lib/argp-pv.c (argp_program_version): Likewise.
13589         Reported by Simon Josefsson.
13590
13591 2009-08-07  Simon Josefsson  <simon@josefsson.org>
13592
13593         * tests/test-version-etc.sh: Use $EXEEXT.
13594
13595 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
13596
13597         update-copyright: update documentation to point to maint.mk
13598         * build-aux/update-copyright: Here.
13599
13600 2009-08-06  Jim Meyering  <meyering@redhat.com>
13601
13602         maint.mk: support update-copyright-local
13603         * top/maint.mk (update-copyright-local): Define place-holder.
13604         (update-copyright): Depend on $(update-copyright-local).
13605
13606 2009-08-06  Jim Meyering  <meyering@redhat.com>
13607
13608         selinux-at: new module
13609         Initially written for coreutils, this module will soon be
13610         used by findutils, too.
13611         * MODULES.html.sh [Misc]: Add selinux-at.
13612         * lib/selinux-at.h: New file, from coreutils.
13613         * lib/selinux-at.c: Likewise.
13614         * modules/selinux-at: Likewise.
13615         (License): Change from LGPL to GPL, since it depends
13616         on the GPL'd openat module.
13617
13618         doc: update README
13619         * README: Remove references to cogito.
13620         Remove cvs-repo-updating instructions from 2007.
13621         Don't imply that CVS is better if you have limited disk space.
13622
13623 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13624
13625         update-copyright: support C-style comments
13626         * build-aux/update-copyright: Implement and document.
13627         * tests/test-update-copyright.sh: Test.
13628
13629 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13630
13631         update-copyright: support omitted "(C)"
13632         * build-aux/update-copyright: Implement and document.  Also,
13633         allow variable whitespace before "(C)".
13634         * tests/test-update-copyright.sh: Test.
13635
13636 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13637
13638         update-copyright: don't trip on non-FSF copyright statements
13639         * build-aux/update-copyright: Fix so that the first correctly
13640         formatted FSF copyright statement is recognized no matter what
13641         appears before it.  Update documentation.
13642         * tests/test-update-copyright.sh: Test that.
13643
13644 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13645
13646         update-copyright: clean up code a little
13647         * build-aux/update-copyright: Append "_re" to the name of any
13648         variable holding a regular expression.
13649         Replace "old" and "new" with "stmt" in variable names.
13650         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
13651         handled correctly.
13652         Format code more consistently.
13653
13654 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13655
13656         update-copyright-tests: improve portability
13657         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
13658         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
13659
13660 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
13661
13662         update-copyright: support @copyright{} and &copy;
13663         * build-aux/update-copyright: Implement and document.
13664         * tests/test-update-copyright.sh: Test.
13665
13666 2009-08-04  Jim Meyering  <meyering@redhat.com>
13667
13668         update-copyright-tests: correctly test EOL=\r\n handling
13669         * tests/test-update-copyright.sh: Put \r at the end of some lines
13670         for the dos-eol tests.  Based on a patch by Joel E. Denny.
13671
13672         maint.mk: make update-copyright exclusion list more configurable
13673         * top/maint.mk (update-copyright): Default to excluding COPYING,
13674         but allow an override, in case someone does want to update that file.
13675
13676         maint.mk: don't update copyright date in COPYING
13677         * top/maint.mk (update-copyright): Exclude COPYING.
13678
13679         maint.mk: add a copyright-updating rule
13680         * top/maint.mk (update-copyright): New rule.
13681         Derived from coreutils/Makefile.am.
13682
13683         update-copyright: rename some variables
13684         * build-aux/update-copyright: Rename a few variables for clarity.
13685         Tweak syntax.  List Joel E. Denny as coauthor.
13686
13687 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
13688
13689         update-copyright: fix bug for 2-digit last year and add tests
13690         * build-aux/update-copyright: Fix bug.
13691         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
13692         specified.
13693         * modules/update-copyright-tests: New
13694         * tests/test-update-copyright.sh: New.
13695
13696 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
13697
13698         update-copyright: handle leading tabs in line prefix
13699         * build-aux/update-copyright: Count leading tabs as 8 spaces
13700         when computing margin.  This helps with the formatting of
13701         ChangeLogs, for example.
13702         Fix documentation a little.
13703
13704 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
13705
13706         update-copyright: support EOL=\r\n
13707         * build-aux/update-copyright: Implement that.
13708
13709 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
13710
13711         update-copyright: automatically format copyright statements
13712         * build-aux/update-copyright: Implement that.
13713         Also, be a little more predictable and safer by always failing
13714         when the full copyright format is not perfectly recognized as an
13715         unbroken whole.  Discussed at
13716         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
13717         Rewrite documentation.
13718
13719 2009-08-03  Bruno Haible  <bruno@clisp.org>
13720
13721         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
13722
13723 2009-08-02  Bruno Haible  <bruno@clisp.org>
13724
13725         Tests for module 'uname'.
13726         * modules/uname-tests: New file.
13727         * tests/test-uname.c: New file.
13728
13729         New module 'uname'.
13730         * lib/uname.c: New file.
13731         * m4/uname.m4: New file.
13732         * modules/uname: New file.
13733         * doc/posix-functions/uname.texi: Mention the new module.
13734
13735 2009-08-02  Bruno Haible  <bruno@clisp.org>
13736
13737         Tests for module 'sys_utsname'.
13738         * modules/sys_utsname-tests: New file.
13739         * tests/test-sys_utsname.c: New file.
13740
13741         New module 'sys_utsname'.
13742         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
13743         * m4/sys_utsname_h.m4: New file.
13744         * modules/sys_utsname: New file.
13745         * doc/posix-headers/sys_utsname.texi: Mention the new module.
13746
13747 2009-08-02  Bruno Haible  <bruno@clisp.org>
13748
13749         Implicitly initialize the sockets library.
13750         * lib/gethostname.c: Include sockets.h.
13751         (rpl_gethostname): Invoke gl_sockets_startup.
13752         * lib/socket.c: Include sockets.h.
13753         (rpl_socket): Invoke gl_sockets_startup.
13754         * modules/gethostname (Depends-on): Add sockets.
13755         * modules/socket (Depends-on): Likewise.
13756         * tests/test-poll.c: Don't include sockets.h.
13757         (main): Don't invoke gl_sockets_startup.
13758         * tests/test-select.c: Don't include sockets.h.
13759         (main): Don't invoke gl_sockets_startup.
13760
13761 2009-08-02  Bruno Haible  <bruno@clisp.org>
13762
13763         Allow multiple calls to gl_sockets_startup.
13764         * lib/sockets.c (initialized_sockets_version): New variable.
13765         (gl_sockets_startup): Do nothing if already called for this or a higher
13766         version.
13767         (gl_sockets_cleanup): Reset initialized_sockets_version.
13768
13769 2009-08-03  Simon Josefsson  <simon@josefsson.org>
13770
13771         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
13772         different project/version.
13773
13774 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
13775             Bruno Haible  <bruno@clisp.org>
13776
13777         Tests for module 'pipe-filter-gi'.
13778         * modules/pipe-filter-gi-tests: New file.
13779         * tests/test-pipe-filter-gi1.sh: New file.
13780         * tests/test-pipe-filter-gi1.c: New file.
13781         * tests/test-pipe-filter-gi2.sh: New file.
13782         * tests/test-pipe-filter-gi2-main.c: New file.
13783         * tests/test-pipe-filter-gi2-child.c: New file.
13784
13785         New module 'pipe-filter-gi'.
13786         * lib/pipe-filter-gi.c: New file.
13787         * modules/pipe-filter-gi: New file.
13788
13789 2009-08-02  Bruno Haible  <bruno@clisp.org>
13790             Paolo Bonzini  <bonzini@gnu.org>
13791
13792         Tests for module 'pipe-filter-ii'.
13793         * modules/pipe-filter-ii-tests: New file.
13794         * tests/test-pipe-filter-ii1.sh: New file.
13795         * tests/test-pipe-filter-ii1.c: New file.
13796         * tests/test-pipe-filter-ii2.sh: New file.
13797         * tests/test-pipe-filter-ii2-main.c: New file.
13798         * tests/test-pipe-filter-ii2-child.c: New file.
13799
13800         New module 'pipe-filter-ii'.
13801         * lib/pipe-filter.h: New file.
13802         * lib/pipe-filter-ii.c: New file.
13803         * lib/pipe-filter-aux.h: New file.
13804         * modules/pipe-filter-ii: New file.
13805
13806 2009-08-02  Simon Josefsson  <simon@josefsson.org>
13807
13808         * lib/gc-libgcrypt.c: Change copyright to FSF.
13809         * lib/gc-gnulib.c: Likewise.
13810
13811 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
13812
13813         * lib/gethostname.c: Include limits.h.
13814
13815 2009-08-02  Simon Josefsson  <simon@josefsson.org>
13816             Bruno Haible  <bruno@clisp.org>
13817
13818         Ensure HOST_NAME_MAX as part of the gethostname module.
13819         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
13820         define also HOST_NAME_MAX.
13821         * tests/test-gethostname.c: Include <limits.h>.
13822         (main): Check also HOST_NAME_MAX.
13823         * doc/posix-headers/limits.texi: Document the mingw problem.
13824
13825 2009-08-02  Bruno Haible  <bruno@clisp.org>
13826
13827         * lib/gethostname.c (gethostname): Fix handling of large len argument.
13828         Add comments.
13829
13830 2009-03-31  Simon Josefsson  <simon@josefsson.org>
13831
13832         * lib/gethostname.c: Add Windows wrapper.
13833         * m4/gethostname.m4: Look for gethostname in -lws2_32.
13834         * modules/gethostname: Depend on sys_socket & errno, for also
13835         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
13836         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
13837
13838 2009-07-31  Jim Meyering  <meyering@redhat.com>
13839
13840         getloadavg: fix symbol name in comment
13841         * lib/getloadavg.c: Correct a typo I introduced when adding
13842         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
13843         Matt Kraai spotted the problem.
13844
13845 2009-07-29  Matt Kraai  <mkraai@beckman.com>
13846
13847         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
13848         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
13849         code also if ! defined N_NAME_POINTER.
13850         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
13851         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
13852         but the n_name member is a 12-byte array.
13853
13854 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
13855
13856         update-copyright: generalize comment handling
13857         * build-aux/update-copyright: Handle copyright statements
13858         within more comment styles.
13859         Document usage.
13860         Report any file with an external copyright holder or parse failure.
13861
13862 2009-07-29  Jim Meyering  <meyering@redhat.com>
13863
13864         mktime: correct setting of REPLACE_MKTIME
13865         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
13866
13867         update-copyright: new module
13868         * modules/update-copyright: New file.
13869         * build-aux/update-copyright: New file.
13870         * MODULES.html.sh (maint+release support): Add update-copyright.
13871
13872 2009-07-27  Bruno Haible  <bruno@clisp.org>
13873
13874         Fix compilation error when <ctime> is used and mktime is replaced.
13875         * lib/time.in.h (mktime): New declaration.
13876         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
13877         REPLACE_MKTIME instead of defining mktime in config.h.
13878         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
13879         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
13880         Reported by Ross McFarland <rwmcfa1@neces.com>.
13881
13882 2009-07-27  Bruno Haible  <bruno@clisp.org>
13883
13884         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
13885         Reported by Matt Kraai <mkraai@beckman.com>.
13886
13887 2009-07-25  Jim Meyering  <meyering@redhat.com>
13888
13889         maint.mk: avoid warnings about missing files
13890         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
13891         diagnostic when .prev-version does not exist.
13892         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
13893         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
13894         nonexistent cfg.mk.
13895         Suggestions from Simon Josefsson.
13896
13897 2009-07-25  Bruno Haible  <bruno@clisp.org>
13898
13899         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
13900         defined as macros. Needed on QNX 6.4.1.
13901         Reported by Matt Kraai <mkraai@beckman.com>.
13902
13903 2009-07-23  Jim Meyering  <meyering@redhat.com>
13904
13905         maint.mk: invoke "make dist" with a working value of XZ_OPT
13906         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
13907
13908 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
13909
13910         Make fseeko.c compile on QNX.
13911         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
13912
13913 2009-07-22  Peter Simons  <simons@cryp.to>
13914
13915         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
13916         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
13917         * lib/md4.h: Likewise.
13918         * lib/md5.h: Likewise.
13919         * lib/sha1.h: Likewise.
13920         * lib/sha256.h: Likewise.
13921         * lib/sha512.h: Likewise.
13922
13923         tests-sha1: don't assign literal string to 'char *' variable
13924         * tests/test-sha1.c (main): Declare locals with "const" to match
13925         attributes of the right hand side.
13926
13927 2009-07-21  Eric Blake  <ebb9@byu.net>
13928
13929         dup2: fix more mingw problems
13930         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
13931         fd to itself.
13932         * doc/posix-functions/dup2.texi (dup2): Document the bug.
13933         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
13934         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
13935         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
13936         care of mingw bugs.
13937
13938 2009-07-21  Jim Meyering  <meyering@redhat.com>
13939
13940         vc-list-files: avoid failure when /bin/sh is dash
13941         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
13942         On some Debian based systems, /bin/sh is a symlink to dash, and running
13943         this command would omit the "/" following each 'tests' prefix:
13944           dash -x build-aux/vc-list-files -C . tests
13945         That is because bash and dash work differently:
13946           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
13947           bash ok
13948           dash odd
13949
13950 2009-07-21  Eric Blake  <ebb9@byu.net>
13951
13952         dup2-tests: test previous patch
13953         * modules/dup2-tests: New file.
13954         * tests/test-dup2.c: Likewise.
13955         * tests/test-open.c (main): Avoid unspecified behavior.
13956         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
13957         test.
13958
13959         dup2: work around mingw and cygwin 1.5 bug
13960         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
13961         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
13962         * modules/unistd (Makefile.am): Substitute it.
13963         * lib/unistd.in.h (dup2): Declare the replacement.
13964         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
13965         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
13966         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
13967         * modules/execute (Depends-on): Add dup2.
13968         * modules/fseterr (Depends-on): Likewise.
13969         * modules/pipe (Depends-on): Likewise.
13970         * modules/posix_spawn-internal (Depends-on): Likewise.
13971
13972 2009-07-21  Bruno Haible  <bruno@clisp.org>
13973
13974         * modules/.gitattributes: New file.
13975
13976 2009-07-20  Bruno Haible  <bruno@clisp.org>
13977
13978         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
13979         (main): Use it.
13980
13981 2009-07-20  Eric Blake  <ebb9@byu.net>
13982
13983         test-pipe: make a bit more robust.
13984         * tests/test-pipe.c (myerr): Allow error messages regardless of
13985         what we do to stderr.
13986         (test_pipe): Rearrange to avoid deadlock.
13987         (child_main): Try a larger read, to ensure we avoided deadlock.
13988         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
13989         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
13990         if misused.
13991
13992 2009-07-19  Jim Meyering  <meyering@redhat.com>
13993
13994         fts: avoid false-positive cycle-detection
13995         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
13996         for each new command line argument.
13997
13998 2009-07-19  Bruno Haible  <bruno@clisp.org>
13999
14000         Fix build error on mingw with the modules sys_select and unistd.
14001         * modules/acl-tests (Depends-on): Add close.
14002         * modules/binary-io-tests (Depends-on): Likewise.
14003         * modules/closein-tests (Depends-on): Likewise.
14004         * modules/flock-tests (Depends-on): Likewise.
14005         * modules/fsync-tests (Depends-on): Likewise.
14006         * modules/lseek-tests (Depends-on): Likewise.
14007         * modules/pipe-tests (Depends-on): Likewise.
14008         * modules/posix_spawn-tests (Depends-on): Likewise.
14009         * modules/posix_spawnp-tests (Depends-on): Likewise.
14010         * modules/stat-time-tests (Depends-on): Likewise.
14011         * modules/yesno-tests (Depends-on): Likewise.
14012
14013 2009-07-19  Bruno Haible  <bruno@clisp.org>
14014
14015         Unify conditionals.
14016         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
14017         macros, not at the compiler macros.
14018         * lib/pipe.c: Likewise.
14019         * lib/execute.c: Likewise.
14020         * lib/spawni.c: Likewise.
14021
14022 2009-07-19  Bruno Haible  <bruno@clisp.org>
14023
14024         Fix handling of closed stdin/stdout/stderr on mingw.
14025         * lib/w32spawn.h: Include unistd.h.
14026         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
14027         file descriptor with O_NOINHERIT flag.
14028         (fd_safer_noinherit): New function, based on fd-safer.c.
14029         (dup_safer_noinherit): New function, based on dup-safer.c.
14030         (undup_safer_noinherit): New function.
14031         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
14032         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
14033         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
14034         instead of fd_safer.
14035         * tests/test-pipe.c: Include <windows.h>.
14036         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
14037
14038         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
14039         from main.
14040         (test_pipe): Pass an extra argument for disambiguation.
14041         (main): Invoke parent_main or child_main.
14042
14043         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
14044         consistently.
14045
14046 2009-07-18  Eric Blake  <ebb9@byu.net>
14047
14048         test-pipe: fix mingw build
14049         * tests/test-pipe.c (main): Avoid fcntl on mingw.
14050
14051 2009-07-18  Bruno Haible  <bruno@clisp.org>
14052
14053         * modules/pipe-tests (Makefile.am): Fix typo.
14054
14055 2009-07-18  Eric Blake  <ebb9@byu.net>
14056
14057         error: fix mingw build
14058         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
14059         Reported by Bruno Haible.
14060
14061         error: avoid undefined use of stdout
14062         * lib/error.c (error, error_at_line): Check that fd 1 is open
14063         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
14064         is handling faults and the close_stdout module wants to report the
14065         detection of closed stdout as an error.
14066
14067 2009-07-17  Eric Blake  <ebb9@byu.net>
14068
14069         pipe: be robust in face of closed fds
14070         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
14071         should cause child to misbehave.
14072         * modules/pipe-tests: New module.
14073         * tests/test-pipe.c: New file.
14074         * tests/test-pipe.sh: New file.
14075         Reported by Akim Demaille.
14076
14077 2009-07-14  Bruno Haible  <bruno@clisp.org>
14078
14079         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
14080         Reported by anonymous kc.
14081
14082 2009-07-07  Jim Meyering  <meyering@redhat.com>
14083
14084         maint.mk: don't look for translatable strings in *.m4 or *.mk
14085         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
14086         when searching for translatable strings.
14087
14088 2009-07-05  Jim Meyering  <meyering@redhat.com>
14089
14090         remove superfluous parentheses in STREQ definition
14091         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
14092         * lib/getugroups.c (STREQ): Likewise.
14093         * lib/fnmatch.c (STREQ): Likewise.
14094         Spotted by Bruno Haible.
14095
14096 2009-07-04  Jim Meyering  <meyering@redhat.com>
14097
14098         argv-iter: new module
14099         * MODULES.html.sh: Add argv-iter.
14100         * lib/argv-iter.c, lib/argv-iter.h: New files.
14101         * modules/argv-iter: New file.
14102         * modules/argv-iter-tests: New file.
14103         * tests/test-argv-iter.c: Test it.
14104
14105 2009-07-04  Bruno Haible  <bruno@clisp.org>
14106
14107         Fix assertion.
14108         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
14109         contains more exact copies of a given entry than file2, leave the extra
14110         copies unpaired rather than aborting.
14111         Reported by Eric Blake.
14112
14113 2009-07-02  Bruno Haible  <bruno@clisp.org>
14114
14115         Speedup git-merge-changelog for git cherry-pick.
14116         * lib/git-merge-changelog.c (struct entries_mapping): New type.
14117         (entries_mapping_get): New function, extracted from compute_mapping.
14118         (entries_mapping_reverse_get): New function.
14119         (compute_mapping): Add a 'full' argument. Return the result in a
14120         'struct entries_mapping'.
14121         (main): Update. Access the mappings through entries_mapping_get.
14122         Reported by Eric Blake.
14123
14124 2009-07-02  Bruno Haible  <bruno@clisp.org>
14125
14126         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
14127         best_i.
14128
14129 2009-07-02  Bruno Haible  <bruno@clisp.org>
14130
14131         Speed up approximate search for matching ChangeLog entries.
14132         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
14133         argument. Call fstrcmp_bounded instead of fstrcmp.
14134         (compute_mapping, try_split_merged_entry, main): Update callers.
14135
14136 2009-07-02  Bruno Haible  <bruno@clisp.org>
14137
14138         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
14139
14140 2009-06-30  Bruno Haible  <bruno@clisp.org>
14141
14142         Reduce the number of uc_is_cased calls.
14143         * lib/unicase.h (casing_suffix_context_t): Add
14144         'first_char_except_ignorable' field.
14145         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
14146         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
14147         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
14148         Update initializer.
14149         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
14150         case-ignorable characters.
14151         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
14152         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
14153         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
14154         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
14155         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
14156
14157 2009-06-30  Bruno Haible  <bruno@clisp.org>
14158
14159         Tests for module 'unicase/ignorable'.
14160         * modules/unicase/ignorable-tests: New file.
14161         * tests/unicase/test-ignorable.c: New file, generated by
14162         gen-uni-tables.
14163
14164         Tests for module 'unicase/cased'.
14165         * modules/unicase/cased-tests: New file.
14166         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
14167         * tests/unicase/test-predicate-part1.h: New file, derived from
14168         tests/unictype/test-predicate-part1.h.
14169         * tests/unicase/test-predicate-part2.h: New file, same as
14170         tests/unictype/test-predicate-part2.h.
14171
14172         Fix evaluation of "Before C" condition of FINAL_SIGMA.
14173         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
14174         (output_casing_properties): New function.
14175         (main): Call it.
14176         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
14177         * lib/unicase/cased.c: Include unictype/bitmap.h.
14178         (uc_is_cased): Define through a bitmap lookup.
14179         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
14180         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
14181         (uc_is_case_ignorable): Define through a bitmap lookup.
14182         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
14183         lib/unictype/bitmap.h.
14184         (Depends-on): Add inline. Clean up.
14185         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
14186         lib/unictype/bitmap.h.
14187         (Depends-on): Add inline. Clean up.
14188         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
14189         recognition.
14190         * tests/unicase/test-u16-tolower.c (main): Likewise.
14191         * tests/unicase/test-u32-tolower.c (main): Likewise.
14192
14193 2009-06-30  Bruno Haible  <bruno@clisp.org>
14194
14195         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
14196         * lib/unicase/u16-casemap.c: Likewise.
14197         * lib/unicase/u32-casemap.c: Likewise.
14198
14199 2009-06-29  Bruno Haible  <bruno@clisp.org>
14200
14201         Define u32_casefold as a wrapper around u32_ct_casefold.
14202         * lib/unicase/u32-casefold.c: Update.
14203         * modules/unicase/u32-casefold (Depends-on): Add
14204         unicase/u32-ct-casefold, unicase/empty-prefix-context,
14205         unicase/empty-suffix-context. Clean up.
14206
14207         Define u16_casefold as a wrapper around u16_ct_casefold.
14208         * lib/unicase/u16-casefold.c: Update.
14209         * modules/unicase/u16-casefold (Depends-on): Add
14210         unicase/u16-ct-casefold, unicase/empty-prefix-context,
14211         unicase/empty-suffix-context. Clean up.
14212
14213         Define u8_casefold as a wrapper around u8_ct_casefold.
14214         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
14215         * lib/unicase/u8-casefold.c: Update.
14216         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
14217         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14218
14219         Define u32_totitle as a wrapper around u32_ct_totitle.
14220         * lib/unicase/u32-totitle.c: Update.
14221         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
14222         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14223
14224         Define u16_totitle as a wrapper around u16_ct_totitle.
14225         * lib/unicase/u16-totitle.c: Update.
14226         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
14227         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14228
14229         Define u8_totitle as a wrapper around u8_ct_totitle.
14230         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
14231         functions.
14232         (FUNC): Delegate to U_CT_TOTITLE.
14233         * lib/unicase/u8-totitle.c: Update.
14234         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
14235         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14236
14237         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
14238         invocation.
14239         * modules/unicase/u32-tolower (Depends-on): Add
14240         unicase/empty-prefix-context, unicase/empty-suffix-context.
14241
14242         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
14243         invocation.
14244         * modules/unicase/u16-tolower (Depends-on): Add
14245         unicase/empty-prefix-context, unicase/empty-suffix-context.
14246
14247         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
14248         * modules/unicase/u8-tolower (Depends-on): Add
14249         unicase/empty-prefix-context, unicase/empty-suffix-context.
14250
14251         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
14252         invocation.
14253         * modules/unicase/u32-toupper (Depends-on): Add
14254         unicase/empty-prefix-context, unicase/empty-suffix-context.
14255
14256         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
14257         invocation.
14258         * modules/unicase/u16-toupper (Depends-on): Add
14259         unicase/empty-prefix-context, unicase/empty-suffix-context.
14260
14261         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
14262         * modules/unicase/u8-toupper (Depends-on): Add
14263         unicase/empty-prefix-context, unicase/empty-suffix-context.
14264
14265         New module 'unicase/u32-ct-casefold'.
14266         * lib/unicase/u32-ct-casefold.c: New file.
14267         * modules/unicase/u32-ct-casefold: New file.
14268
14269         New module 'unicase/u16-ct-casefold'.
14270         * lib/unicase/u16-ct-casefold.c: New file.
14271         * modules/unicase/u16-ct-casefold: New file.
14272
14273         New module 'unicase/u8-ct-casefold'.
14274         * lib/unicase/u8-ct-casefold.c: New file.
14275         * lib/unicase/u-ct-casefold.h: New file, derived from
14276         lib/unicase/u-casefold.h.
14277         * modules/unicase/u8-ct-casefold: New file.
14278
14279         New module 'unicase/u32-ct-totitle'.
14280         * lib/unicase/u32-ct-totitle.c: New file.
14281         * modules/unicase/u32-ct-totitle: New file.
14282
14283         New module 'unicase/u16-ct-totitle'.
14284         * lib/unicase/u16-ct-totitle.c: New file.
14285         * modules/unicase/u16-ct-totitle: New file.
14286
14287         New module 'unicase/u8-ct-totitle'.
14288         * lib/unicase/u8-ct-totitle.c: New file.
14289         * lib/unicase/u-ct-totitle.h: New file, derived from
14290         lib/unicase/u-totitle.h.
14291         * modules/unicase/u8-ct-totitle: New file.
14292
14293         New module 'unicase/u32-ct-tolower'.
14294         * lib/unicase/u32-ct-tolower.c: New file.
14295         * modules/unicase/u32-ct-tolower: New file.
14296
14297         New module 'unicase/u16-ct-tolower'.
14298         * lib/unicase/u16-ct-tolower.c: New file.
14299         * modules/unicase/u16-ct-tolower: New file.
14300
14301         New module 'unicase/u8-ct-tolower'.
14302         * lib/unicase/u8-ct-tolower.c: New file.
14303         * modules/unicase/u8-ct-tolower: New file.
14304
14305         New module 'unicase/u32-ct-toupper'.
14306         * lib/unicase/u32-ct-toupper.c: New file.
14307         * modules/unicase/u32-ct-toupper: New file.
14308
14309         New module 'unicase/u16-ct-toupper'.
14310         * lib/unicase/u16-ct-toupper.c: New file.
14311         * modules/unicase/u16-ct-toupper: New file.
14312
14313         New module 'unicase/u8-ct-toupper'.
14314         * lib/unicase/u8-ct-toupper.c: New file.
14315         * modules/unicase/u8-ct-toupper: New file.
14316
14317         Add context arguments to u*_casemap functions.
14318         * lib/unicase/unicasemap.h: Include unicase.h.
14319         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
14320         suffix_context arguments.
14321         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
14322         functions.
14323         (FUNC): Add prefix_context and suffix_context arguments. Use
14324         uc_is_cased and uc_is_case_ignorable.
14325         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
14326         * lib/unicase/u16-casemap.c: Likewise.
14327         * lib/unicase/u32-casemap.c: Likewise.
14328         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
14329         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
14330         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
14331         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
14332         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
14333         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
14334
14335         New module 'unicase/u32-suffix-context'.
14336         * lib/unicase/u32-suffix-context.c: New file.
14337         * modules/unicase/u32-suffix-context: New file.
14338
14339         New module 'unicase/u16-suffix-context'.
14340         * lib/unicase/u16-suffix-context.c: New file.
14341         * modules/unicase/u16-suffix-context: New file.
14342
14343         New module 'unicase/u8-suffix-context'.
14344         * lib/unicase/u8-suffix-context.c: New file.
14345         * lib/unicase/u-suffix-context.h: New file.
14346         * modules/unicase/u8-suffix-context: New file.
14347
14348         New module 'unicase/empty-suffix-context'.
14349         * lib/unicase/empty-suffix-context.c: New file.
14350         * modules/unicase/empty-suffix-context: New file.
14351
14352         New module 'unicase/u32-prefix-context'.
14353         * lib/unicase/u32-prefix-context.c: New file.
14354         * modules/unicase/u32-prefix-context: New file.
14355
14356         New module 'unicase/u16-prefix-context'.
14357         * lib/unicase/u16-prefix-context.c: New file.
14358         * modules/unicase/u16-prefix-context: New file.
14359
14360         New module 'unicase/u8-prefix-context'.
14361         * lib/unicase/u8-prefix-context.c: New file.
14362         * lib/unicase/u-prefix-context.h: New file.
14363         * lib/unicase/context.h: New file.
14364         * modules/unicase/u8-prefix-context: New file.
14365
14366         New module 'unicase/empty-prefix-context'.
14367         * lib/unicase/empty-prefix-context.c: New file.
14368         * modules/unicase/empty-prefix-context: New file.
14369
14370         New module 'unicase/ignorable'.
14371         * lib/unicase/ignorable.c: New file.
14372         * modules/unicase/ignorable: New file.
14373
14374         New module 'unicase/cased'.
14375         * lib/unicase/caseprop.h: New file.
14376         * lib/unicase/cased.c: New file.
14377         * modules/unicase/cased: New file.
14378
14379         New functions for case mapping of substrings.
14380         * lib/unicase.h (casing_prefix_context_t): New type.
14381         (unicase_empty_prefix_context): New variable.
14382         (u8_casing_prefix_context, u16_casing_prefix_context,
14383         u32_casing_prefix_context, u8_casing_prefixes_context,
14384         u16_casing_prefixes_context, u32_casing_prefixes_context): New
14385         declarations.
14386         (casing_suffix_context_t): New type.
14387         (unicase_empty_suffix_context): New variable.
14388         (u8_casing_suffix_context, u16_casing_suffix_context,
14389         u32_casing_suffix_context, u8_casing_suffixes_context,
14390         u16_casing_suffixes_context, u32_casing_suffixes_context,
14391         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
14392         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
14393         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
14394         declarations.
14395
14396 2009-06-28  Jim Meyering  <meyering@redhat.com>
14397
14398         boostrap: indent only with spaces
14399         * build-aux/bootstrap: Indent only with spaces, never TABs.
14400
14401         bootstrap: split long lines
14402         * build-aux/bootstrap: Keep line length < 80.
14403
14404         bootstrap: sync from coreutils
14405         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
14406         just as autoreconf does.  Verify a list of prerequisite
14407         package-name,version-number pairs if defined in bootstrap.conf.
14408         Refer to README-prereq, if prerequisites are not satisfied.
14409
14410 2009-06-27  Eric Blake  <ebb9@byu.net>
14411
14412         tests: add test for bogus NULL definition
14413         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
14414         * tests/test-stdlib.c: Likewise.
14415         * tests/test-string.c: Likewise.
14416         * tests/test-locale.c: Likewise.
14417         * tests/test-unistd.c: Likewise.
14418         * modules/stdio-tests (Depends-on): Add verify.
14419         * modules/stdlib-tests (Depends-on): Likewise.
14420         * modules/string-tests (Depends-on): Likewise.
14421         * modules/locale-tests (Depends-on): Likewise.
14422         * modules/unistd-tests (Depends-on): Likewise.
14423
14424 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
14425
14426         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
14427         self-explaining comment.
14428         * m4/selinux-selinux-h: Update serial.
14429         (gl_LIBSELINUX): New macro, adding a warning for missing development
14430         packages to code extracted from...
14431         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
14432         Add warning for missing development packages here, too.
14433
14434 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
14435
14436         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
14437
14438 2009-06-25  Eric Blake  <ebb9@byu.net>
14439
14440         version-etc: fix regression
14441         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
14442         gcc.
14443         (version_etc): Use it, to catch bugs with trailing NULL.
14444         * lib/version-etc.c (version_etc_arn): Delete unused argument.
14445         (version_etc_va): Fix logic bug.
14446         * modules/version-etc-tests: Add test.
14447         * tests/test-version-etc.c: New file.
14448         * tests/test-version-etc.sh: Likewise.
14449
14450 2009-06-25  Sam Steingold  <sds@gnu.org>
14451
14452         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
14453         mbtowc declaration.
14454
14455 2009-06-25  Eric Blake  <ebb9@byu.net>
14456
14457         fpurge: migrate into <stdio.h>
14458         * lib/fpurge.h: Delete...
14459         * lib/stdio.in.h (fpurge): ...and declare here, instead.
14460         * lib/fpurge.c (fpurge): Change declaring header.
14461         * modules/fpurge (Files): Drop deleted file.
14462         (Depends-on): Add stdio.
14463         (configure.ac): Set witness.
14464         * modules/stdio (Makefile.am): Support fpurge macros.
14465         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14466         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
14467         * lib/fflush.c: Update client.
14468         * tests/test-fpurge.c: Likewise.
14469         * NEWS: Mention the change.
14470
14471 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14472
14473         * lib/argp-version-etc.c (program_authors): Add const
14474         qualifier.
14475         * lib/version-etc.c: Fix typos in the comments.
14476         * modules/argp-version-etc: Depends on version-etc.
14477
14478 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14479
14480         argp-version-etc: new module.
14481
14482         * lib/argp-version-etc.c: New file.
14483         * lib/argp-version-etc.h: New file.
14484         * modules/argp-version-etc: New file.
14485         * modules/argp-version-etc-tests: New file.
14486         * tests/test-argp-version-etc.c: New test.
14487         * tests/test-argp-version-etc-1.sh: New test.
14488
14489 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14490
14491         Provide additional interfaces and documentation for version-etc
14492         module.
14493
14494         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
14495         interfaces.
14496         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
14497         prototypes.
14498
14499 2009-06-24  Bruno Haible  <bruno@clisp.org>
14500
14501         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
14502         HAVE_LIB${NAME} macro.
14503         Reported by Sam Steingold <sds@gnu.org>.
14504
14505 2009-06-23  Simon Josefsson  <simon@josefsson.org>
14506
14507         * modules/hash-tests (test_hash_LDADD): Link to libintl when
14508         needed.
14509
14510 2009-06-21  Bruno Haible  <bruno@clisp.org>
14511
14512         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
14513         work.
14514         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
14515         together with LIB${NAME}, LTLIB${NAME}.
14516         Reported by Sam Steingold <sds@gnu.org>.
14517
14518 2009-06-20  Jim Meyering  <meyering@redhat.com>
14519
14520         tests: make sc_require_test_exit_idiom more generic
14521         * top/maint.mk (Exit_witness_file): New overridable variable.
14522         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
14523         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
14524
14525 2009-06-19  Jim Meyering  <meyering@redhat.com>
14526
14527         hash: reverse order of src/dst parameters in an internal interface
14528         * lib/hash.c (transfer_entries): Reverse order of parameters to
14529         put DST before SRC.  Adjust callers.
14530
14531         tests: test-hash: avoid wholesale duplication
14532         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
14533         Instead, use a loop and add a single conditional.
14534
14535         tests: test-hash: allow seed selection via a command line argument
14536         * tests/test-hash.c (get_seed): New function.
14537         (main): Use it.
14538
14539 2009-06-19  Eric Blake  <ebb9@byu.net>
14540
14541         hash: avoid memory leak on allocation failure
14542         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
14543         failure.  Factor repeated algorithm...
14544         (transfer_entries): ...into new helper routine.
14545         (hash_delete): React to hash_rehash return value.
14546
14547         hash: reduce memory pressure in hash_rehash no-op case
14548         * lib/hash.c (next_prime): Avoid overflow.
14549         (hash_initialize): Factor bucket size computation...
14550         (compute_bucket_size): ...into new helper function.
14551         (hash_rehash): Use new function and open coding to reduce memory
14552         pressure, and avoid a memory leak in USE_OBSTACK code.
14553         Reported by Jim Meyering.
14554
14555 2009-06-18  Eric Blake  <ebb9@byu.net>
14556
14557         hash: make rotation more obvious
14558         * modules/hash (Depends-on): Add bitrotate and stdint.
14559         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
14560         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
14561         (SIZE_MAX): Rely on headers for definition.
14562         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
14563         (raw_hasher): Use rotr_sz.
14564         Suggested by Jim Meyering.
14565
14566         hash: fix memory leak in last patch
14567         * lib/hash.c (hash_rehash): Avoid memory leak.
14568
14569         hash: avoid no-op rehashing
14570         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
14571
14572         hash: provide default callback functions
14573         * lib/hash.c (raw_hasher, raw_comparator): New functions.
14574         (hash_initialize): Use them as defaults.
14575         * tests/test-hash.c (main): Test this.
14576
14577         hash: minor optimization
14578         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
14579         when possible.
14580         (hash_initialize): Document this promise.
14581         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
14582         * tests/test-hash.c (hash_compare_strings): Test this.
14583
14584 2009-06-18  Bruno Haible  <bruno@clisp.org>
14585
14586         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
14587         going to be replaced anyway.
14588
14589 2009-06-18  Bruno Haible  <bruno@clisp.org>
14590
14591         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
14592         in one place.
14593         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
14594         be replaced anyway.
14595
14596 2009-06-18  Eric Blake  <ebb9@byu.net>
14597
14598         hash: check for resize before insertion
14599         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
14600         threshold before insertion, so that a pathological hash_rehash
14601         that fills every bucket can still trigger another rehash.
14602
14603 2009-06-18  Jim Meyering  <meyering@redhat.com>
14604
14605         hash-tests: add a loop around the small tests
14606         * tests/test-hash.c (main): Repeat small tests with selected
14607         small initial table sizes.
14608
14609 2009-06-17  Eric Blake  <ebb9@byu.net>
14610
14611         hash: minor cleanups
14612         * lib/hash.h (hash_entry): Make opaque, by moving...
14613         * lib/hash.c (hash_entry): ...here.
14614         (hash_insert): Clarify restrictions on what can be inserted.
14615         (hash_get_next): Clarify when it is safe to remove an element
14616         during traversal.
14617         (check_tuning): Skip verification when tuning is known safe.
14618         (hash_initialize): Clarify restrictions on tuning.
14619
14620 2009-06-17  Jim Meyering  <jim@meyering.net>
14621         and Eric Blake  <ebb9@byu.net>
14622
14623         hash-tests: new module
14624         * modules/hash-tests: New file.
14625         * tests/test-hash.c: New file.
14626
14627 2009-06-17  Eric Blake  <ebb9@byu.net>
14628
14629         strstr-simple: document new module
14630         * MODULES.html.sh: Document new module.
14631
14632         strstr, strcasestr: replace on platforms with broken memchr
14633         * modules/strstr: Split into...
14634         * modules/strstr-simple: ...new module that does not care about
14635         performance, but does care about glibc bug.
14636         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
14637         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
14638         if platform memchr is broken, per Debian bug 521737.
14639         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
14640         memchr.
14641         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
14642         * doc/posix-functions/strstr.texi (strstr): Document the fix.
14643         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
14644         * modules/mountlist (Depends-on): Add strstr-simple.
14645         * modules/gen-uni-tables (Depends-on): Likewise.
14646         * modules/argz (Depends-on): Add strstr.
14647
14648 2009-06-17  Bruno Haible  <bruno@clisp.org>
14649
14650         * modules/posix_spawn-internal (Depends-on): Add errno.
14651
14652 2009-06-17  Bruno Haible  <bruno@clisp.org>
14653
14654         Define missing ESTALE on Interix 3.5.
14655         * lib/errno.in.h (ESTALE): Assign a value if missing.
14656         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
14657         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
14658         missing.
14659         * doc/posix-headers/errno.texi: Mention the Interix bug.
14660         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
14661
14662 2009-06-15  Eric Blake  <ebb9@byu.net>
14663
14664         memchr, memchr2: add valgrind exception
14665         * lib/memchr.valgrind: New file.
14666         * lib/memchr2.valgrind: New file.
14667         * modules/memchr (Files): Distribute valgrind file.
14668         * modules/memchr2 (Files): Likewise.
14669
14670         docs: memchr is no longer obsolete
14671         * MODULES.html.sh: Move memchr from obsolete to string.h section.
14672         * lib/string.in.h (memchr): Simplify logic.
14673
14674 2009-06-14  Jim Meyering  <meyering@redhat.com>
14675
14676         link-follow: fix the "checking..." message to not mention trailing slash
14677         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
14678         never considered trailing slashes.
14679
14680 2009-06-14  Bruno Haible  <bruno@clisp.org>
14681
14682         * m4/memchr.m4: Mention also the bug on IA-64.
14683         * doc/posix-functions/memchr.texi: Likewise.
14684
14685 2009-06-12  Eric Blake  <ebb9@byu.net>
14686
14687         memchr: detect broken x86_64 and alpha implementations
14688         * modules/memchr-tests (Depends-on): Move mmap detection...
14689         * modules/memchr (Depends-on): ...here.
14690         (configure.ac): Set indicator.
14691         * lib/string.in.h (memchr): Declare replacement.
14692         * modules/string (Makefile.am): Trigger replacement.
14693         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
14694         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
14695         bugs.
14696         * doc/posix-functions/memchr.texi (memchr): Document the bug.
14697         * modules/getpagesize (License): Relax license.
14698
14699 2009-06-11  Bruno Haible  <bruno@clisp.org>
14700
14701         * lib/idpriv.h: Add more references.
14702
14703 2009-06-08  Bruno Haible  <bruno@clisp.org>
14704
14705         Tests for module 'idpriv-droptemp'.
14706         * modules/idpriv-droptemp-tests: New file.
14707         * tests/test-idpriv-droptemp.sh: New file.
14708         * tests/test-idpriv-droptemp.su.sh: New file.
14709         * tests/test-idpriv-droptemp.c: New file.
14710
14711         New module 'idpriv-droptemp'.
14712         * lib/idpriv-droptemp.c: New file.
14713         * modules/idpriv-droptemp: New file.
14714
14715 2009-06-08  Bruno Haible  <bruno@clisp.org>
14716
14717         Tests for module 'idpriv-drop'.
14718         * modules/idpriv-drop-tests: New file.
14719         * tests/test-idpriv-drop.sh: New file.
14720         * tests/test-idpriv-drop.su.sh: New file.
14721         * tests/test-idpriv-drop.c: New file.
14722
14723         New module 'idpriv-drop'.
14724         * lib/idpriv.h: New file.
14725         * lib-idpriv-drop.c: New file.
14726         * m4/idpriv.m4: New file.
14727         * modules/idpriv-drop: New file.
14728
14729 2009-06-08  Bruno Haible  <bruno@clisp.org>
14730
14731         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
14732         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
14733         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
14734         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
14735         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
14736         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
14737         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
14738
14739 2009-06-08  Eric Blake  <ebb9@byu.net>
14740
14741         test-strstr: use memory fence, when possible
14742         * tests/test-strstr.c (main): Use memory fence, in order to be
14743         more likely to trigger Debian bug 521737.
14744         * modules/strstr-tests (Files): Pull in additional files.
14745
14746         memchr: no longer obsolete, for wider field testing
14747         * modules/memchr (Status, Notice): Delete, this module is no
14748         longer obsolete.
14749         * modules/vasnprintf (Depends-on): Add memchr.
14750
14751 2009-06-07  Jim Meyering  <meyering@redhat.com>
14752
14753         hash: declare some functions with the warn_unused_result attribute
14754         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
14755
14756 2009-06-07  Bruno Haible  <bruno@clisp.org>
14757
14758         * tests/test-alignof.c: Don't test int64_t if it does not exist.
14759         Reported by Eric Blake.
14760
14761 2009-06-06  Eric Blake  <ebb9@byu.net>
14762
14763         test-alignof: fix typo with long double
14764         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
14765         compiler error.
14766
14767 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
14768
14769         Escape non-texinfo { and }s.
14770         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
14771         markup error.
14772
14773 2009-06-04  Jim Meyering  <meyering@redhat.com>
14774
14775         gitlog-to-changelog: don't infloop on an empty commit log
14776         * build-aux/gitlog-to-changelog: Warn about an empty log message.
14777         Reported by Boris Petersen <transacid@centerim.org>.
14778
14779 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
14780
14781         version-etc: extend for packagers
14782         Add three new configure options, intended for packagers:
14783           --with-packager="packager name"
14784           --with-packager-version="packager-specific version"
14785           --with-packager-bug-reports="packager bug reporting"
14786         An example with coreutils:
14787           $ ./configure \
14788             --with-packager=Gentoo \
14789             --with-packager-bug-report=http://bugs.gentoo.org/ \
14790             --with-packager-version="patchset 1.6"
14791           $ ./src/ls --version | head -n2
14792           ls (GNU coreutils) 7.1-dirty
14793           Packaged by Gentoo (patchset 1.6)
14794         Note that the bug reporting info via --help doesn't show up because
14795         coreutils uses its own custom emit_bug_reporting_address() implementation
14796         in src/system.h.  If it didn't, it'd look like:
14797           $ ./src/ls --help | tail -n4
14798           Report bugs to <bug-coreutils@gnu.org>.
14799           Report Gentoo bugs to <http://bugs.gentoo.org/>.
14800           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
14801           General help using GNU software: <http://www.gnu.org/gethelp/>.
14802         * lib/version-etc.c: Print new information, if provided.
14803         * m4/version-etc.m4: New file.
14804         * modules/version-etc (Files): Add m4/version-etc.m4.
14805         (configure.ac): Add gl_VERSION_ETC.
14806
14807 2009-05-31  Bruno Haible  <bruno@clisp.org>
14808
14809         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
14810         and 'int64_t'.
14811         * modules/alignof-tests (Dependencies): Add stdint.
14812         Reported by Eric Blake.
14813
14814 2009-05-31  Bruno Haible  <bruno@clisp.org>
14815
14816         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
14817         restriction due to compiler bugs.
14818         Reported by Eric Blake.
14819
14820 2009-05-31  Simon Josefsson  <simon@josefsson.org>
14821             Bruno Haible  <bruno@clisp.org>
14822
14823         Fix test-alignof failure.
14824         * lib/alignof.h (alignof_slot): New macro.
14825         (alignof_type): New macro, with the same semantics as the previous
14826         'alignof'.
14827         (alignof): Alias to alignof_slot.
14828         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
14829         check that the results are usable as constant expressions.
14830
14831 2009-05-31  Bruno Haible  <bruno@clisp.org>
14832
14833         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
14834         * tests/test-memchr.c (main): Check that memchr does not read past the
14835         first occurrence of the byte.
14836         * tests/test-strstr.c (main): Update comment.
14837         Suggested by Eric Blake.
14838
14839 2009-05-30  Bruno Haible  <bruno@clisp.org>
14840
14841         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
14842         detail how to use dumpbin.
14843         Reported by David Byron <dbyron@dbyron.com>.
14844
14845 2009-06-02  Simon Josefsson  <simon@josefsson.org>
14846
14847         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
14848
14849 2009-06-02  Simon Josefsson  <simon@josefsson.org>
14850
14851         * m4/manywarnings.m4: Add GCC 4.4 warnings.
14852
14853 2009-05-28  Bruno Haible  <bruno@clisp.org>
14854
14855         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
14856         build-aux/ files.
14857
14858 2009-05-28  Simon Josefsson  <simon@josefsson.org>
14859
14860         * gnulib-tool (func_import): Transform license on build-aux/ files too.
14861
14862 2009-05-27  Simon Josefsson  <simon@josefsson.org>
14863
14864         * gnulib-tool (sed_transform_main_lib_file)
14865         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
14866         regexps.
14867
14868 2009-05-26  Simon Josefsson  <simon@josefsson.org>
14869
14870         * tests/test-strstr.c: Add another self-test.
14871         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
14872         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
14873
14874 2009-05-23  Bruno Haible  <bruno@clisp.org>
14875
14876         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
14877         change.
14878
14879 2009-05-21  Bruno Haible  <bruno@clisp.org>
14880
14881         Simplify use of mode_t varargs.
14882         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
14883         uses 'mode_t' or 'int'.
14884         * lib/openat.c (openat): Likewise.
14885         * lib/open-safer.c (open_safer): Likewise.
14886         * m4/mode_t.m4: New file.
14887         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
14888         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
14889         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
14890         * modules/open (Files): Add m4/mode_t.m4.
14891         * modules/openat (Files): Likewise.
14892         * modules/fcntl-safer (Files): Likewise.
14893         Suggested by Eric Blake.
14894
14895 2009-05-21  Pádraig Brady  <P@draigbrady.com>
14896
14897         * doc/glibc-functions/fallocate.texi: New file.
14898         * doc/gnulib.texi: Include it.
14899
14900 2009-05-21  Eric Blake  <ebb9@byu.net>
14901             Bruno Haible  <bruno@clisp.org>
14902
14903         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
14904         invocations.
14905         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
14906
14907 2009-05-21  Eric Blake  <ebb9@byu.net>
14908             Bruno Haible  <bruno@clisp.org>
14909
14910         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
14911         include_next. Fix of 2008-11-20 commit.
14912         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
14913         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
14914         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
14915         NEXT_MATH_H.
14916         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
14917         instead of NEXT_MATH_H.
14918
14919 2009-05-21  Bruno Haible  <bruno@clisp.org>
14920
14921         Avoid redefinition warnings for SIZE_MAX.
14922         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
14923         Reported by Simon Josefsson.
14924
14925 2009-05-21  Bruno Haible  <bruno@clisp.org>
14926
14927         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
14928         AC_CACHE_VAL.
14929
14930 2009-05-20  Bruno Haible  <bruno@clisp.org>
14931
14932         Make zeroptr.h work on mingw.
14933         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
14934         mprotect.
14935         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
14936         * modules/memchr2-tests (configure.ac): Likewise.
14937         * modules/memcmp-tests (configure.ac): Likewise.
14938         * modules/memmem-tests (configure.ac): Likewise.
14939         * modules/memrchr-tests (configure.ac): Likewise.
14940         Reported by Simon Josefsson.
14941
14942 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14943
14944         * tests/test-glob.c: Include string.h for strcmp prototype.
14945
14946 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14947
14948         * modules/getdelim (Depends-on): Add explicit stdint, although it
14949         was implicitly already pulled in via realloc-posix.
14950         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
14951
14952 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14953
14954         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
14955         G. Christensen" <tgc@jupiterrise.com>.
14956         * m4/sys_socket_h.m4: Check for sa_family_t.
14957         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
14958         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
14959         * tests/test-sys_socket.c: Check that sa_family_t works.
14960
14961 2009-05-18  Eric Blake  <ebb9@byu.net>
14962
14963         maint.mk: allow gnulib_dir in VPATH build
14964         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
14965
14966 2009-05-15  Jim Meyering  <meyering@redhat.com>
14967
14968         maint.mk: Give gnulib_dir a default definition.
14969         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
14970         Thus, most packages no longer need to specify this variable in cfg.mk
14971
14972 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
14973
14974         rename.m4: fix typos that would make non-mingw cross-configure fail
14975         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
14976
14977 2009-05-13  Eric Blake  <ebb9@byu.net>
14978
14979         mmap-anon: avoid out-of-order autoconf expansion
14980         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
14981         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
14982         * modules/memchr-tests (Depends-on): Add extensions.
14983         * modules/memchr2-tests (Depends-on): Add extensions.
14984         * modules/memcmp-tests (Depends-on): Add extensions.
14985         * modules/memmem-tests (Depends-on): Add extensions.
14986         * modules/memrchr-tests (Depends-on): Add extensions.
14987
14988 2009-05-13  Bruno Haible  <bruno@clisp.org>
14989
14990         Make some tests ISO C 99 compliant.
14991         * tests/zerosize-ptr.h: New file.
14992         * tests/test-memchr.c: Include zerosize-ptr.h.
14993         (main): Use a zero-size object pointer instead of NULL.
14994         * tests/test-memchr2.c: Include zerosize-ptr.h.
14995         (main): Use a zero-size object pointer instead of NULL.
14996         * tests/test-memcmp.c: Include zerosize-ptr.h.
14997         (main): Use a zero-size object pointer instead of NULL.
14998         * tests/test-memmem.c: Include zerosize-ptr.h.
14999         (main): Use a zero-size object pointer instead of NULL.
15000         * tests/test-memrchr.c: Include zerosize-ptr.h.
15001         (main): Use a zero-size object pointer instead of NULL.
15002         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
15003         m4/mmap-anon.m4.
15004         (Depends-on): Add getpagesize.
15005         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
15006         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
15007         m4/mmap-anon.m4.
15008         (Depends-on): Add getpagesize.
15009         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
15010         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
15011         m4/mmap-anon.m4.
15012         (Depends-on): Add getpagesize.
15013         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
15014         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
15015         m4/mmap-anon.m4.
15016         (Depends-on): Add getpagesize.
15017         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
15018         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
15019         m4/mmap-anon.m4.
15020         (Depends-on): Add getpagesize.
15021         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
15022
15023 2009-05-12  Bruno Haible  <bruno@clisp.org>
15024
15025         Tests for module 'alignof'.
15026         * modules/alignof-tests: New file.
15027         * tests/test-alignof.c: New file.
15028
15029 2009-05-12  Bruno Haible  <bruno@clisp.org>
15030
15031         Fix alignof macro.
15032         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
15033         vendor compilers that are always correct.
15034
15035 2009-05-12  Bruno Haible  <bruno@clisp.org>
15036
15037         Make the MAP_ANONYMOUS detection work on HP-UX 11.
15038         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
15039         not whether its fully works.
15040
15041 2009-05-12  Bruno Haible  <bruno@clisp.org>
15042
15043         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
15044
15045 2009-05-12  Jim Meyering  <meyering@redhat.com>
15046
15047         * top/maint.mk: Adjust backslash alignment.
15048
15049 2009-05-11  Simon Josefsson  <simon@josefsson.org>
15050
15051         * top/maint.mk: Make $(srcdir)/build-aux configurable.
15052
15053 2009-05-11  Eric Blake  <ebb9@byu.net>
15054
15055         argp: avoid undefined behavior
15056         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
15057         macros.
15058
15059 2009-05-08  Simon Josefsson  <simon@josefsson.org>
15060
15061         * tests/test-vc-list-files-git.sh: Do git config of user.email and
15062         user.name to prevent git commit from complaining.
15063
15064 2009-05-10  Bruno Haible  <bruno@clisp.org>
15065
15066         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
15067         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
15068         it rewrites every file name only once.
15069         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
15070
15071 2009-05-08  Bruno Haible  <bruno@clisp.org>
15072
15073         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
15074         instead of 'max'.
15075
15076 2009-05-08  Simon Josefsson  <simon@josefsson.org>
15077
15078         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
15079         sockaddr_storage test.
15080
15081 2009-05-07  Simon Josefsson  <simon@josefsson.org>
15082
15083         * modules/sys_socket (Makefile.am): Substitute
15084         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
15085         * m4/sys_socket_h.m4: Check for sockaddr_storage.
15086         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
15087         * tests/test-sys_socket.c: Check sockaddr_storage.
15088
15089 2009-05-08  Bruno Haible  <bruno@clisp.org>
15090
15091         New module 'alignof'.
15092         * lib/alignof.h: New file.
15093         * modules/alignof: New file.
15094
15095 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
15096             Bruno Haible  <bruno@clisp.org>
15097
15098         Fix test-file-has-acl on FreeBSD.
15099         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
15100         mask is implicitly added.
15101         * tests/test-file-has-acl.c: Include <signal.h>.
15102         (main): Terminate the test after 5 seconds.
15103         * modules/acl-tests (configure.ac): Check for alarm function.
15104
15105 2009-05-04  Bruno Haible  <bruno@clisp.org>
15106
15107         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
15108         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
15109         * modules/errno (configure.ac): Drop AC_REQUIRE.
15110         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
15111         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
15112
15113 2009-05-04  Simon Josefsson  <simon@josefsson.org>
15114
15115         * modules/glob-tests: New module.
15116         * tests/test-glob.c: Add.
15117
15118 2009-05-04  Simon Josefsson  <simon@josefsson.org>
15119
15120         * modules/fnmatch-tests: New module.
15121         * tests/test-fnmatch.c: Add.
15122
15123 2009-05-04  Eric Blake  <ebb9@byu.net>
15124
15125         maint: make the new no-submodule-changes rule VPATH-safe
15126         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
15127
15128 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
15129             Bruno Haible  <bruno@clisp.org>
15130
15131         acl: Fix infinite loop on FreeBSD.
15132         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
15133         of return value from acl_get_entry.
15134         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
15135         Likewise.
15136
15137 2009-05-03  Bruno Haible  <bruno@clisp.org>
15138
15139         * lib/acl-internal.h (acl_entries): Clarify return value.
15140         * lib/acl_entries.c (acl_entries): Likewise.
15141
15142 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
15143
15144         Bug fix in acl module.
15145         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
15146
15147 2009-05-03  Bruno Haible  <bruno@clisp.org>
15148
15149         Create gperf-generated file in the source dir, not in the build dir.
15150         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
15151         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
15152         * modules/unicase/locale-language (unicase/locale-languages.h):
15153         Likewise.
15154         * modules/unicase/special-casing (unicase/special-casing-table.h):
15155         Likewise.
15156         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
15157         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
15158         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
15159         Reported by Ralf Wildenhues.
15160
15161 2009-05-03  Bruno Haible  <bruno@clisp.org>
15162
15163         * modules/fnmatch (Description, configure.ac): Taken from
15164         fnmatch-posix.
15165         * modules/fnmatch-posix: Turn into a symbolic reference to the
15166         'fnmatch' module, and deprecate.
15167         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
15168
15169 2009-05-03  Bruno Haible  <bruno@clisp.org>
15170
15171         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
15172         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
15173         Reported by Ralf Wildenhues.
15174
15175 2009-05-04  Simon Josefsson  <simon@josefsson.org>
15176
15177         * m4/fnmatch.m4: Fix fnmatch re-define.
15178
15179 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
15180
15181         priv-set: new module and tests; adapt write-any-file
15182         * lib/priv-set.c: New file.
15183         * lib/priv-set.h: New file.
15184         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
15185         * lib/write-any-file.c: Simplify by using priv-set module.
15186         * m4/priv-set.m4: New file.
15187         * modules/priv-set: New file.
15188         * modules/unlinkdir: Add dependency on priv-set module.
15189         * modules/write-any-file: Likewise.
15190
15191         Tests for module 'priv-set'.
15192         * modules/priv-set-tests: New file.
15193         * tests/test-priv-set.c: New file.
15194
15195 2009-05-03  Jim Meyering  <meyering@redhat.com>
15196             Bruno Haible  <bruno@clisp.org>
15197
15198         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
15199         use the converted UTF-8 variant of the name instead.
15200
15201 2009-05-03  Jim Meyering  <meyering@redhat.com>
15202
15203         tests: tighten some getdate tests
15204         * tests/test-getdate.c (main): Tighten tests: require equality,
15205         not just greater than.  Set TZ envvar to UTC0.
15206
15207 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
15208
15209         getdate: correctly interpret "next monday" when run on a Monday
15210         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
15211         that e.g., "next tues" (when run on a tuesday) results in a date
15212         that is one week in the future, and not today's date.
15213         I.e., add a week when the wday is the same as the current one.
15214         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
15215         and earlier by Martin Bernreuther and Jan Minář.
15216         * tests/test-getdate.c (main): Check that "next DAY" is always in
15217         the future and that "last DAY" is always in the past.
15218
15219 2009-05-02  Jim Meyering  <meyering@redhat.com>
15220
15221         build: ensure that a release build fails when a submodule is unclean
15222         * top/maint.mk (no-submodule-changes): New rule.
15223         (alpha beta major): Depend on it.
15224
15225 2009-05-02  Bruno Haible  <bruno@clisp.org>
15226
15227         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
15228         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
15229         shell variable gl_fnmatch_required to detect which variant is
15230         requested.
15231         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
15232         gl_FUNC_FNMATCH_POSIX.
15233         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
15234         exclude fnmatch-posix.
15235
15236 2009-05-02  Bruno Haible  <bruno@clisp.org>
15237
15238         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
15239         * modules/mbsrtowcs (License): Change to LGPLv2+.
15240         * modules/strnlen1 (License): Likewise.
15241         Reported by Simon Josefsson.
15242
15243 2009-05-02  Bruno Haible  <bruno@clisp.org>
15244
15245         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
15246         "cross".
15247         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
15248         gnulib-tool was called with option --source-base=lib.
15249
15250 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15251
15252         Use automake *-local hooks without commands, for extensibility.
15253         * modules/localcharset (Makefile.am): Rename install-exec-local
15254         rule to install-exec-localcharset, and make it a prerequisite of
15255         install-exec-local.  Likewise, rename the uninstall-local rule to
15256         uninstall-localcharset, and make it a prerequisite of the former.
15257
15258 2009-05-01  Bruno Haible  <bruno@clisp.org>
15259
15260         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
15261         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
15262         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
15263         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
15264         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
15265         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
15266         m4/locale-zh.m4, m4/codeset.m4.
15267
15268         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
15269         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
15270         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
15271         m4/locale-zh.m4.
15272
15273         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
15274         REPLACE_WCRTOMB if mbstate_t must be replaced.
15275         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
15276         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
15277
15278 2009-05-01  Bruno Haible  <bruno@clisp.org>
15279
15280         Avoid compiler warnings when redefining macros defined by <libintl.h>.
15281         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
15282         dngettext, dcngettext, textdomain, bindtextdomain,
15283         bind_textdomain_codeset): Undefine before redefining.
15284
15285 2009-04-30  Bruno Haible  <bruno@clisp.org>
15286
15287         Fix bug introduced on 2009-04-25.
15288         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
15289         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
15290         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
15291         is defined.
15292         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
15293         is defined.
15294         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
15295         is defined.
15296         Reported by Elbert_Pol <elbert.pol@gmail.com>.
15297
15298 2009-04-28  Bruno Haible  <bruno@clisp.org>
15299
15300         Comment tweaks.
15301         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
15302         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
15303         * lib/unicase.h (u*_casexfrm): Likewise.
15304         Reported by Paolo Bonzini.
15305
15306 2009-04-28  Bruno Haible  <bruno@clisp.org>
15307
15308         Fix a compilation error.
15309         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
15310         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
15311         Reported by Jim Meyering.
15312
15313 2009-04-27  Bruno Haible  <bruno@clisp.org>
15314
15315         New module 'libunistring'.
15316         * modules/libunistring: New file.
15317         * m4/libunistring.m4: New file.
15318         * MODULES.html.sh (Unicode string functions): Add it.
15319
15320 2009-04-27  Eric Blake  <ebb9@byu.net>
15321
15322         maint.mk: allow package-specific header to provide <config.h>
15323         * top/maint.mk (sc_require_config_h): New variable.
15324         (sc_require_config_h, sc_require_config_h_first): Use it.
15325
15326 2009-04-27  Simon Josefsson  <simon@josefsson.org>
15327
15328         * top/maint.mk (sc_avoid_if_before_free): Except
15329         useless-if-before-free script.
15330
15331 2009-04-27  Eric Blake  <ebb9@byu.net>
15332
15333         maintainer-makefile: depend on all required helper scripts
15334         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
15335         useless-if-before-free.
15336         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
15337         version, rather than assuming gnulib checkout is available.
15338         Reported by Simen Josefsson.
15339
15340 2009-04-26  Bruno Haible  <bruno@clisp.org>
15341
15342         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
15343         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
15344         "../" or "..".
15345
15346 2009-04-26  Bruno Haible  <bruno@clisp.org>
15347
15348         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
15349         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
15350         AC_LIB_HAVE_LINKFLAGS.
15351
15352 2009-04-26  Bruno Haible  <bruno@clisp.org>
15353
15354         Simplify calling convention of u*_conv_from_encoding.
15355         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
15356         u32_conv_from_encoding): Expect a resultbuf argument and return the
15357         result directly as a pointer.
15358         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
15359         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
15360         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
15361         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
15362         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
15363         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
15364         Update.
15365         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
15366         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
15367         * lib/vasnprintf.c (VASNPRINTF): Update.
15368         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
15369         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
15370         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
15371         * NEWS: Mention the change.
15372
15373 2009-04-26  Bruno Haible  <bruno@clisp.org>
15374
15375         Simplify calling convention of u*_conv_to_encoding.
15376         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
15377         u32_conv_to_encoding): Expect a resultbuf argument and return the
15378         result directly as a pointer.
15379         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
15380         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
15381         freeing scaled_offsets if mem_iconveha failed.
15382         * lib/unicase/u-casexfrm.h (FUNC): Update.
15383         * lib/uninorm/u-normxfrm.h (FUNC): Update.
15384         * lib/vasnprintf.c (VASNPRINTF): Update.
15385         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
15386         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
15387         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
15388         * NEWS: Mention the change.
15389
15390 2009-04-26  Bruno Haible  <bruno@clisp.org>
15391
15392         Avoid test failures on AIX and OSF/1.
15393         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
15394         malloc(0).
15395         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
15396         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
15397         Likewise.
15398         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
15399         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
15400         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
15401         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
15402         * doc/posix-functions/malloc.texi: Document the portability problem
15403         related to malloc(0).
15404
15405 2009-04-26  Bruno Haible  <bruno@clisp.org>
15406
15407         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
15408         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
15409         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
15410
15411 2009-04-25  Bruno Haible  <bruno@clisp.org>
15412
15413         Avoid link error when creating a namespace clean library.
15414         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
15415         as macro with arguments if already defined as an alias.
15416         * lib/signbitf.c (gl_signbitf): Don't undefine.
15417         * lib/signbitd.c (gl_signbitd): Don't undefine.
15418         * lib/signbitl.c (gl_signbitl): Don't undefine.
15419
15420 2009-04-25  Jim Meyering  <meyering@redhat.com>
15421
15422         vc-list-files: fix another quoting bug
15423         * build-aux/vc-list-files: Avoid sed backslash expansion
15424         of pathological directory names.
15425
15426 2009-04-25  Eric Blake  <ebb9@byu.net>
15427
15428         vc-list-files: fix shell quoting error
15429         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
15430         timestamp.
15431
15432 2009-04-25  Jim Meyering  <meyering@redhat.com>
15433
15434         vc-list-files: restore lost functionality with subdir argument
15435         * build-aux/vc-list-files: When given a non-"." sub-directory
15436         argument, substitute the $dir/ prefix back onto each resulting name.
15437         Otherwise, coreutils' root_tests check would fail.
15438
15439 2009-04-24  Eric Blake  <ebb9@byu.net>
15440
15441         vc-list-files: ignore git symlinks
15442         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
15443         than ls-files, to ignore git symlinks.
15444
15445         maint.mk: import improvements from m4
15446         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
15447         (move_if_change): Delete unused macro.
15448         (news-date-check, vc-diff-check): Support VPATH builds.
15449         (announcement): Likewise.  Split --bootstrap-tools list...
15450         (boostrap-tools): ...into separate list, which can be overridden
15451         in cfg.mk.
15452         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
15453         requiring dependency on useless-if-before-free module.
15454         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
15455         Support VPATH builds.
15456
15457 2009-04-24  Jim Meyering  <meyering@redhat.com>
15458
15459         maint.mk: remove coreutils-specific rules and variables
15460         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
15461         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
15462         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
15463
15464         maint.mk: remove obsolete rule
15465         * top/maint.mk (rel-check): Remove rule.
15466         (WGET, WGETFLAGS): Remove now-unused variables.
15467
15468 2009-04-24  Simon Josefsson  <simon@josefsson.org>
15469
15470         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
15471         consistency.
15472
15473         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
15474         '$(PATH_SEPARATOR)' instead of ':'.
15475
15476 2009-04-24  Simon Josefsson  <simon@josefsson.org>
15477
15478         * lib/getopt1.c (main): Use 'const' for static array.
15479
15480 2009-04-24  Simon Josefsson  <simon@josefsson.org>
15481
15482         * top/maint.mk: Sync with coreutils.
15483         * NEWS: Explain incompatibilities.
15484
15485 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15486             Bruno Haible  <bruno@clisp.org>
15487
15488         Fix cross-compilation results.
15489         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
15490         statement, as third argument of AC_TRY_RUN.
15491         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
15492         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
15493         Likewise.
15494         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
15495         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
15496         Likewise.
15497         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
15498         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
15499         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
15500
15501 2009-04-20  Bruno Haible  <bruno@clisp.org>
15502
15503         Avoid test failure on mingw.
15504         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
15505
15506 2009-04-20  Bruno Haible  <bruno@clisp.org>
15507
15508         Avoid compilation error on mingw.
15509         * modules/localename-tests (Depends-on): Add locale.
15510
15511 2009-04-19  Bruno Haible  <bruno@clisp.org>
15512
15513         Support for building a shared library on Windows platforms.
15514         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
15515         (main): Test the presence of UNINORM_NFC here.
15516         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
15517         (main): Test the presence of UNINORM_NFD here.
15518         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
15519         (main): Test the presence of UNINORM_NFKC here.
15520         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
15521         (main): Test the presence of UNINORM_NFKD here.
15522
15523 2009-04-19  Bruno Haible  <bruno@clisp.org>
15524
15525         Avoid a compiler warning.
15526         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
15527         Change type of variable 'sequence'.
15528
15529 2009-04-19  Bruno Haible  <bruno@clisp.org>
15530
15531         * modules/configmake (Makefile.am): When the contents of configmake.h
15532         does not change, arrange to preserve its modification time.
15533
15534 2009-04-17  Simon Josefsson  <simon@josefsson.org>
15535
15536         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
15537         gettext domain.
15538
15539 2009-04-16  Jim Meyering  <meyering@redhat.com>
15540
15541         useless-if-before-free: improve conversion code
15542         * build-aux/useless-if-before-free: Adjust code-in-comment to match
15543         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
15544
15545 2009-04-14  Bruno Haible  <bruno@clisp.org>
15546
15547         * modules/fcntl (Depends-on): Add extensions.
15548         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
15549
15550 2009-04-12  Ben Pfaff  <blp@gnu.org>
15551
15552         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
15553         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
15554
15555 2009-03-20  Ben Pfaff  <blp@gnu.org>
15556
15557         Make rename replace existing destinations on Windows.
15558         * m4/rename.m4: Add test for Mingw.
15559         * lib/rename.c: Add rename replacement that uses MoveFileEx with
15560         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
15561         * doc/posix-functions/rename.texi: Document.
15562
15563 2009-04-10  Bruno Haible  <bruno@clisp.org>
15564
15565         New include file "iconveh.h".
15566         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
15567         * lib/striconveh.h: Include it.
15568         (enum iconv_ilseq_handler): Remove definition.
15569         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
15570         striconveh.h.
15571         * lib/striconveha.c: Include striconveh.h.
15572         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
15573         * modules/striconveh (Files): Add lib/iconveh.h.
15574         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
15575         lib/striconveh.h.
15576
15577 2009-04-10  Bruno Haible  <bruno@clisp.org>
15578
15579         * lib/uniconv.h: Update comment.
15580
15581 2009-04-10  Bruno Haible  <bruno@clisp.org>
15582
15583         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
15584         always.
15585         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
15586         * lib/unistr/u16-mbtouc-aux.c: Likewise.
15587         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
15588         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
15589         "unistring-notinline.h", so that the function gets defined always.
15590         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
15591         * lib/unistr/u8-uctomb.c: Likewise.
15592         * lib/unistr/u16-mbtouc.c: Likewise.
15593         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
15594         * lib/unistr/u16-uctomb.c: Likewise.
15595         * lib/unistr/u32-mbtouc.c: Likewise.
15596         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
15597         * lib/unistr/u32-uctomb.c: Likewise.
15598
15599 2009-04-10  Bruno Haible  <bruno@clisp.org>
15600
15601         Mark 'utime' obsolete.
15602         * modules/utime (Status, Notice): New sections.
15603         Suggested by Jim Meyering.
15604
15605         Fix cross-compile guess for utime test.
15606         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
15607         autoconf.
15608         * doc/posix-functions/utime.texi: Give more precisions.
15609         Reported by Jan <ipif@ymail.com>.
15610
15611 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
15612
15613         filevercmp: correct today's change
15614         * lib/filevercmp.c: Also handle coreutils' test inputs.
15615         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
15616
15617         Fix regression in 'filevercmp' module. Thanks Sven Joachim
15618         for reporting it.
15619         * lib/filevercmp.c: Special handle for "", "." and "..".
15620         * tests/test-filevercmp.c: Enlarge the set suite.
15621
15622 2009-04-07  Jim Meyering  <meyering@redhat.com>
15623
15624         useless-if-before-free: show how to remove braced useless free, too
15625         * build-aux/useless-if-before-free: still only in a comment, though.
15626
15627 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
15628
15629         maint.mk: import changes to syntax-check macros from coreutils
15630         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
15631         Use them in the relevant macros.
15632
15633 2009-04-06  Bruno Haible  <bruno@clisp.org>
15634
15635         Fix unportable use of bit-fields.
15636         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
15637         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
15638         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
15639
15640 2009-04-06  Bruno Haible  <bruno@clisp.org>
15641
15642         Avoid test failures on AIX and OSF/1.
15643         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
15644         that malloc(0) = NULL.
15645         * tests/unicase/test-u8-tolower.c (check): Likewise.
15646         * tests/unicase/test-u8-totitle.c (check): Likewise.
15647         * tests/unicase/test-u8-toupper.c (check): Likewise.
15648         * tests/unicase/test-u16-casefold.c (check): Likewise.
15649         * tests/unicase/test-u16-tolower.c (check): Likewise.
15650         * tests/unicase/test-u16-totitle.c (check): Likewise.
15651         * tests/unicase/test-u16-toupper.c (check): Likewise.
15652         * tests/unicase/test-u32-casefold.c (check): Likewise.
15653         * tests/unicase/test-u32-tolower.c (check): Likewise.
15654         * tests/unicase/test-u32-totitle.c (check): Likewise.
15655         * tests/unicase/test-u32-toupper.c (check): Likewise.
15656         * tests/uninorm/test-u8-nfc.c (check): Likewise.
15657         * tests/uninorm/test-u8-nfd.c (check): Likewise.
15658         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
15659         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
15660         * tests/uninorm/test-u16-nfc.c (check): Likewise.
15661         * tests/uninorm/test-u16-nfd.c (check): Likewise.
15662         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
15663         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
15664         * tests/uninorm/test-u32-nfc.c (check): Likewise.
15665         * tests/uninorm/test-u32-nfd.c (check): Likewise.
15666         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
15667         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
15668
15669 2009-04-05  Bruno Haible  <bruno@clisp.org>
15670
15671         Work around an autoconf limitation.
15672         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
15673         comment line if it would be longer than 3 KB.
15674
15675 2009-04-05  Bruno Haible  <bruno@clisp.org>
15676
15677         Avoid test failure with libiconv-1.13.
15678         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
15679         of the expected test results.
15680
15681 2009-04-05  Bruno Haible  <bruno@clisp.org>
15682
15683         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
15684         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
15685         that it should be installed.
15686
15687 2009-04-05  Bruno Haible  <bruno@clisp.org>
15688
15689         * gnulib-tool: New option --copy-file.
15690         (func_usage): Document it.
15691         (func_dest_tmpfilename): Moved out of func_import.
15692         (func_add_file, func_update_file): New functions, extracted from
15693         func_import.
15694         (func_import): Update.
15695
15696 2009-04-05  Karl Berry  <karl@gnu.org>
15697
15698         * README: prominently mention gnulib-tool.
15699         Rearrange sections so getting the code is near the top.
15700
15701 2009-04-05  Bruno Haible  <bruno@clisp.org>
15702
15703         * lib/unicase.h: Mention u*_cmp2.
15704         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
15705         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
15706         * lib/unicase/ulc-casecmp.c: Likewise.
15707         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
15708         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
15709         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
15710         unistr/u8-cmp.
15711         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
15712         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
15713         unistr/u16-cmp.
15714         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
15715         unistr/u32-cmp.
15716
15717         * lib/uninorm.h: Mention u*_cmp2.
15718         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
15719         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
15720         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
15721         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
15722         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
15723         unistr/u8-cmp.
15724         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
15725         unistr/u16-cmp.
15726         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
15727         unistr/u32-cmp.
15728
15729         New module 'unistr/u32-cmp2'.
15730         * lib/unistr/u32-cmp2.c: New file.
15731         * modules/unistr/u32-cmp2: New file.
15732
15733         New module 'unistr/u16-cmp2'.
15734         * lib/unistr/u16-cmp2.c: New file.
15735         * modules/unistr/u16-cmp2: New file.
15736
15737         New module 'unistr/u8-cmp2'.
15738         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
15739         * lib/unistr/u8-cmp2.c: New file.
15740         * lib/unistr/u-cmp2.h: New file.
15741         * modules/unistr/u8-cmp2: New file.
15742
15743 2009-04-05  Bruno Haible  <bruno@clisp.org>
15744
15745         * lib/unictype.h (uc_property_is_valid): New macro.
15746         * tests/unictype/test-pr_byname.c (main): Use it.
15747
15748         * lib/unistr.h: Doc fixes.
15749         * lib/uniconv.h: Doc fixes.
15750         * lib/unictype.h: Doc fixes.
15751
15752 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
15753
15754         Port coreutils 7.2 to Solaris 8.
15755
15756         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
15757         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
15758         for Solaris 8.  This is a bit of a hack, as it means it's the
15759         caller's responsibility to add -lnsl if needed, but most likely it
15760         won't be needed since only getaddrinfo uses this and getaddrinfo
15761         isn't needed on Solaris 8.
15762
15763         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
15764         problem to Solaris 8 encountered with coreutils 7.2, which
15765         resulted in a message "fnmatch.c:292: warning: passing argument 4
15766         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
15767         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
15768
15769 2009-04-03  Simon Josefsson  <simon@josefsson.org>
15770
15771         * m4/ld-version-script.m4: Add FIXME comment.
15772
15773 2009-04-02  Simon Josefsson  <simon@josefsson.org>
15774
15775         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
15776         SOVERSION variable.
15777
15778 2009-04-02  Bruno Haible  <bruno@clisp.org>
15779
15780         * Makefile (info, html, dvi, pdf): Combine the rules.
15781         Suggested by Jim Meyering.
15782
15783 2009-04-01  Bruno Haible  <bruno@clisp.org>
15784
15785         * Makefile (info, html, dvi, pdf): New targets.
15786         Reported by Reuben Thomas <rrt@sc3d.org>.
15787
15788 2009-04-01  Bruno Haible  <bruno@clisp.org>
15789
15790         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
15791         can be put into PATH.
15792         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
15793
15794 2009-04-01  Bruno Haible  <bruno@clisp.org>
15795
15796         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
15797
15798 2009-04-01  Bruno Haible  <bruno@clisp.org>
15799
15800         Rename module 'visibility'.
15801         * modules/lib-symbol-visibility: Renamed from modules/visibility.
15802         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
15803         * doc/gnulib.texi: Update.
15804         * MODULES.html.sh (Misc): Update.
15805         * NEWS: Mention the change.
15806
15807 2009-04-01  Simon Josefsson  <simon@josefsson.org>
15808
15809         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
15810         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
15811         Eric Blake <ebb9@byu.net> for review.
15812         * MODULES.html.sh: Add lib-msvc-compat.
15813         * doc/gnulib.texi: Link to new section.
15814         * m4/ld-output-def.m4: New file.
15815         * doc/ld-output-def.texi: New file.
15816
15817 2009-04-01  Simon Josefsson  <simon@josefsson.org>
15818
15819         Rename ld-version-script to lib-symbol-versions.  Suggested by
15820         Bruno Haible <bruno@clisp.org>.
15821         * modules/ld-version-script: Renamed to lib-symbol-versions.
15822         * doc/ld-version-script.texi: Fix module name.
15823         * MODULES.html.sh: Add lib-symbol-versions.
15824
15825 2009-03-31  Simon Josefsson  <simon@josefsson.org>
15826
15827         * modules/u64-tests: New file.
15828         * tests/test-u64.c: New file.
15829
15830 2009-03-04  Simon Josefsson  <simon@josefsson.org>
15831
15832         * MODULES.html.sh: Mention u64.
15833         * modules/u64: New module.
15834         * modules/crypto/sha512: Depend on u64 module instead of providing
15835         u64.h.
15836
15837 2009-03-27  Eric Blake  <ebb9@byu.net>
15838
15839         test-strerror: make debugging EAI_SYSTEM easier
15840         * modules/getaddrinfo-tests (Depends-on): Add strerror.
15841         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
15842         failure was EAI_SYSTEM.
15843
15844 2009-03-25  Bruno Haible  <bruno@clisp.org>
15845
15846         Fix a problem with --enable-relocatable on Solaris 7.
15847         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
15848         since 2008-02-24.
15849
15850 2009-03-25  Eric Blake  <ebb9@byu.net>
15851
15852         test-sockets: avoid gcc warning
15853         * tests/test-sockets.c (main): Silence compiler warning.
15854
15855 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
15856
15857         New modules nproc, pthread, contributed by Glen Lenker.
15858
15859         * MODULES.html.sh: Add pthread, nproc.
15860         * lib/nproc.c: New file.
15861         * lib/nproc.h: New file.
15862         * lib/pthread.in.h: New file.
15863         * m4/pthread.m4: New file.
15864         * modules/nproc: New file.
15865         * modules/pthread: New file.
15866
15867 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15868
15869         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
15870         New variable.
15871
15872 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
15873
15874         filevercmp: handle simple~ and numbered.~3~ backup suffixes
15875         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
15876         * tests/test-filevercmp.c: Add tests for backup suffixes.
15877
15878 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15879
15880         * modules/stdlib (Depends-on): Add stdint, needed when defining
15881         struct random_data on, for example, HP-UX 10.20.  Reported by
15882         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15883
15884 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15885
15886         * lib/readline.c (readline): Call fflush on stdout after printing
15887         prompt.
15888
15889 2009-03-20  Bruno Haible  <bruno@clisp.org>
15890
15891         Remove dependency from 'close' module to -lws2_32 on native Windows.
15892         * lib/close-hook.h: New file.
15893         * lib/close-hook.c: New file.
15894         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
15895         w32sock.h.
15896         (_gl_close_fd_maybe_socket): Remove function.
15897         (rpl_close): Invoke execute_all_close_hooks instead of
15898         _gl_close_fd_maybe_socket.
15899         * lib/sockets.c: Include close-hook.h, w32sock.h.
15900         (close_fd_maybe_socket): New function, essentially from lib/close.c.
15901         (close_sockets_hook): New variable.
15902         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
15903         (gl_sockets_cleanup): Unregister it.
15904         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
15905         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
15906         * modules/close-hook: New file.
15907         * modules/close (Files): Remove lib/w32sock.h.
15908         (Depends-on): Add close-hook.
15909         (Link): Remove section.
15910         * modules/sockets (Files): Add lib/w32sock.h.
15911         (Depends-on): Add close-hook.
15912         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
15913         invocation.
15914         * NEWS: Mention that LIB_CLOSE is gone.
15915
15916 2009-03-23  Eric Blake  <ebb9@byu.net>
15917
15918         signal-tests: test previous patch
15919         * tests/test-signal.c: New file.
15920         * modules/signal-tests: Likewise.
15921
15922         signal.h: always support 'volatile sig_atomic_t'
15923         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
15924         (gl_SIGNAL_H_DEFAULTS): Add a default.
15925         * modules/signal (Makefile.am): Substitute if needed.
15926         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
15927         users can blindly add volatile.
15928         * doc/posix-headers/signal.texi (signal.h): Document it.
15929         Reported by Matthew Woehlke.
15930
15931 2009-03-23  Jim Meyering  <meyering@redhat.com>
15932
15933         pathmax: PATH_MAX: use pathconf only when available
15934         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
15935         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
15936         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
15937         This avoids a link failure in a PSP cross-compilation environment
15938         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
15939
15940         * lib/vasnprintf.c (divide): Fix typo in comment.
15941
15942 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15943
15944         * gnulib-tool (func_filter_filelist): Fix comment.
15945
15946 2009-03-20  Bruno Haible  <bruno@clisp.org>
15947
15948         Make sockets.h self-contained.
15949         * lib/sockets.c: Include sockets.h first.
15950         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
15951
15952 2009-03-19  Eric Blake  <ebb9@byu.net>
15953
15954         doc: mention more functions added in cygwin 1.7.0
15955         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
15956         addition.
15957         * doc/posix-functions/log2f.texi: Likewise.
15958
15959 2009-03-19  Jim Meyering  <meyering@redhat.com>
15960
15961         fsusage: avoid syntax error due to statement-before-declaration
15962         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
15963         after all declarations.  Reported by Matthew Woehlke in
15964         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
15965
15966 2009-03-18  Eric Blake  <ebb9@byu.net>
15967
15968         build-aux/compile: sync from automake
15969         * build-aux/compile: New file, from automake.
15970         * config/srclist.txt: Mention build-aux/compile.
15971
15972 2009-03-17  Bruno Haible  <bruno@clisp.org>
15973
15974         * lib/git-merge-changelog.c: Fix typo in comment.
15975         Reported by Reuben Thomas <rrt@sc3d.org>.
15976
15977 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
15978
15979         * m4/regex.m4: update and improve help for
15980         --without-included-regex.
15981
15982 2009-03-17  Simon Josefsson  <simon@josefsson.org>
15983
15984         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
15985         failure on missing include files.
15986
15987 2009-03-17  Eric Blake  <ebb9@byu.net>
15988
15989         doc: mention more functions added in cygwin 1.7.0
15990         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
15991         addition.
15992         * doc/posix-functions/fwscanf.texi: Likewise.
15993         * doc/posix-functions/swprintf.texi: Likewise.
15994         * doc/posix-functions/swscanf.texi: Likewise.
15995         * doc/posix-functions/vfwprintf.texi: Likewise.
15996         * doc/posix-functions/vfwscanf.texi: Likewise.
15997         * doc/posix-functions/vswprintf.texi: Likewise.
15998         * doc/posix-functions/vswscanf.texi: Likewise.
15999         * doc/posix-functions/vwprintf.texi: Likewise.
16000         * doc/posix-functions/vwscanf.texi: Likewise.
16001         * doc/posix-functions/wcscasecmp.texi: Likewise.
16002         * doc/posix-functions/wcsdup.texi: Likewise.
16003         * doc/posix-functions/wcsftime.texi: Likewise.
16004         * doc/posix-functions/wcsncasecmp.texi: Likewise.
16005         * doc/posix-functions/wprintf.texi: Likewise.
16006         * doc/posix-functions/wscanf.texi: Likewise.
16007         * doc/glibc-functions/gethostbyname2.texi: Likewise.
16008
16009 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16010
16011         maint.mk: really add $(AM_MAKEFLAGS)
16012         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
16013         was inadvertently omitted in the last commit.
16014         Spotted by Bruno Haible.
16015
16016         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
16017         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
16018         $(AM_MAKEFLAGS)' rather than plain `make'.
16019
16020         gnulib-tool: execute $MAKE not make
16021         * gnulib-tool: Default $MAKE to 'make'.
16022         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
16023         than make.  Initialize $MAKE in the do-autobuild script.
16024
16025         gnulib-tool: use $MAKE not make in generated files
16026         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
16027         make, in generated files.  Initialize $MAKE in the do-autobuild
16028         script.
16029
16030         * top/GNUmakefile (_have-git-version-gen): Fix typo.
16031
16032         GNUmakefile: disable parallelism only for multiple, recursive targets
16033         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
16034         additions in the Makefile.
16035         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
16036         by Automake.
16037         (.NOTPARALLEL): Only disable parallel builds if multiple targets
16038         are listed on the command line and at least one of them is
16039         listed in $(ALL_RECURSIVE_TARGETS).
16040
16041 2009-03-14  Bruno Haible  <bruno@clisp.org>
16042
16043         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
16044         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
16045         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
16046         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
16047         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
16048         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
16049         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
16050         unistr/u8-uctomb.
16051         * modules/unistr/u8-strchr (Depends-on): Likewise.
16052         * modules/unistr/u8-strrchr (Depends-on): Likewise.
16053         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
16054         unistr/u16-uctomb.
16055         * modules/unistr/u16-strchr (Depends-on): Likewise.
16056         * modules/unistr/u16-strrchr (Depends-on): Likewise.
16057
16058 2009-03-12  Bruno Haible  <bruno@clisp.org>
16059
16060         Work around select() bug on Interix 3.5.
16061         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
16062         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
16063         * m4/select.m4: New file.
16064         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
16065         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
16066         * modules/select (Files): Add m4/select.m4.
16067         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
16068         * modules/nanosleep (Depends-on): Add select.
16069         * modules/poll (Depends-on): Likewise.
16070         * doc/posix-functions/select.texi: Mention the Interix bug.
16071         Reported by Markus Duft <mduft@gentoo.org>.
16072
16073         * lib/select.c: Renamed from lib/winsock-select.c.
16074         * modules/select (Files): Add lib/select.c, remove
16075         lib/winsock-select.c.
16076         (configure.ac): Update.
16077
16078 2009-03-12  Jim Meyering  <meyering@redhat.com>
16079
16080         avoid gcc warnings about unused macro definitions
16081         * lib/readtokens.c (STREQ): Remove unused definition.
16082         * lib/xmalloc.c (SIZE_MAX): Likewise.
16083         * lib/openat-die.c (N_): Likewise.
16084         * lib/mountlist.c (SIZE_MAX): Remove definition.
16085         Instead, include <stdint.h>.
16086         * lib/readutmp.c: Likewise.
16087         * modules/readutmp (Depends-on): Add stdint.
16088         * modules/mountlist (Depends-on): Add stdint.
16089         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
16090
16091 2009-03-10  Bruno Haible  <bruno@clisp.org>
16092
16093         Tests for module 'mbmemcasecoll'.
16094         * modules/mbmemcasecoll-tests: New file.
16095         * tests/test-mbmemcasecoll1.sh: New file.
16096         * tests/test-mbmemcasecoll2.sh: New file.
16097         * tests/test-mbmemcasecoll3.sh: New file.
16098         * tests/test-mbmemcasecoll.c: New file.
16099
16100         New module 'mbmemcasecoll'.
16101         * lib/mbmemcasecoll.h: New file.
16102         * lib/mbmemcasecoll.c: New file.
16103         * modules/mbmemcasecoll: New file.
16104
16105         * tests/test-mbmemcasecmp.h: New file, extracted from
16106         tests/test-mbmemcasecmp.c.
16107         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
16108         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
16109         (main): Update.
16110         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
16111
16112 2009-03-09  Bruno Haible  <bruno@clisp.org>
16113
16114         Tests for module 'mbmemcasecmp'.
16115         * modules/mbmemcasecmp-tests: New file.
16116         * tests/test-mbmemcasecmp1.sh: New file.
16117         * tests/test-mbmemcasecmp2.sh: New file.
16118         * tests/test-mbmemcasecmp3.sh: New file.
16119         * tests/test-mbmemcasecmp.c: New file.
16120
16121         New module 'mbmemcasecmp'.
16122         * lib/mbmemcasecmp.h: New file.
16123         * lib/mbmemcasecmp.c: New file.
16124         * modules/mbmemcasecmp: New file.
16125
16126 2009-03-09  Bruno Haible  <bruno@clisp.org>
16127
16128         Tests for module 'unicase/ulc-casecoll'.
16129         * modules/unicase/ulc-casecoll-tests: New file.
16130         * tests/unicase/test-ulc-casecoll1.sh: New file.
16131         * tests/unicase/test-ulc-casecoll2.sh: New file.
16132         * tests/unicase/test-ulc-casecoll.c: New file.
16133
16134         New module 'unicase/ulc-casecoll'.
16135         * lib/unicase.h (ulc_casecoll): New declaration.
16136         * lib/unicase/ulc-casecoll.c: New file.
16137         * modules/unicase/ulc-casecoll: New file.
16138
16139         New module 'unicase/ulc-casexfrm'.
16140         * lib/unicase.h (ulc_casexfrm): New declaration.
16141         * lib/unicase/ulc-casexfrm.c: New file.
16142         * modules/unicase/ulc-casexfrm: New file.
16143
16144 2009-03-09  Bruno Haible  <bruno@clisp.org>
16145
16146         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
16147         invocations.
16148
16149         * m4/mbscasecmp.m4: Remove file.
16150         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
16151         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
16152
16153         * m4/mbscasestr.m4: Remove file.
16154         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
16155         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
16156
16157         * m4/mbschr.m4: Remove file.
16158         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
16159         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
16160
16161         * m4/mbscspn.m4: Remove file.
16162         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
16163         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
16164
16165         * m4/mbslen.m4: Remove file.
16166         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
16167         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
16168
16169         * m4/mbsncasecmp.m4: Remove file.
16170         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
16171         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
16172
16173         * m4/mbsnlen.m4: Remove file.
16174         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
16175         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
16176
16177         * m4/mbspbrk.m4: Remove file.
16178         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
16179         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
16180
16181         * m4/mbspcasecmp.m4: Remove file.
16182         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
16183         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
16184
16185         * m4/mbsrchr.m4: Remove file.
16186         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
16187         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
16188
16189         * m4/mbssep.m4: Remove file.
16190         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
16191         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
16192
16193         * m4/mbsspn.m4: Remove file.
16194         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
16195         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
16196
16197         * m4/mbsstr.m4: Remove file.
16198         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
16199         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
16200
16201         * m4/mbstok_r.m4: Remove file.
16202         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
16203         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
16204
16205         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
16206
16207         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
16208         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
16209
16210         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
16211
16212 2009-03-08  Bruno Haible  <bruno@clisp.org>
16213
16214         Tests for module 'unicase/ulc-casecmp'.
16215         * modules/unicase/ulc-casecmp-tests: New file.
16216         * tests/unicase/test-ulc-casecmp1.sh: New file.
16217         * tests/unicase/test-ulc-casecmp2.sh: New file.
16218         * tests/unicase/test-ulc-casecmp.c: New file.
16219
16220         New module 'unicase/ulc-casecmp'.
16221         * lib/unicase.h (ulc_casecmp): New declaration.
16222         * lib/unicase/ulc-casecmp.c: New file.
16223         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
16224         'const SRC_UNIT *'.
16225         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
16226         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
16227         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
16228         * modules/unicase/ulc-casecmp: New file.
16229
16230         Tests for module 'unicase/u32-is-cased'.
16231         * modules/unicase/u32-is-cased-tests: New file.
16232         * tests/unicase/test-u32-is-cased.c: New file.
16233
16234         Tests for module 'unicase/u16-is-cased'.
16235         * modules/unicase/u16-is-cased-tests: New file.
16236         * tests/unicase/test-u16-is-cased.c: New file.
16237
16238         Tests for module 'unicase/u8-is-cased'.
16239         * modules/unicase/u8-is-cased-tests: New file.
16240         * tests/unicase/test-u8-is-cased.c: New file.
16241         * tests/unicase/test-is-cased.h: New file.
16242
16243         New module 'unicase/u32-is-cased'.
16244         * lib/unicase/u32-is-cased.c: New file.
16245         * modules/unicase/u32-is-cased: New file.
16246
16247         New module 'unicase/u16-is-cased'.
16248         * lib/unicase/u16-is-cased.c: New file.
16249         * modules/unicase/u16-is-cased: New file.
16250
16251         New module 'unicase/u8-is-cased'.
16252         * lib/unicase/u8-is-cased.c: New file.
16253         * lib/unicase/u-is-cased.h: New file.
16254         * modules/unicase/u8-is-cased: New file.
16255
16256         Tests for module 'unicase/u32-is-casefolded'.
16257         * modules/unicase/u32-is-casefolded-tests: New file.
16258         * tests/unicase/test-u32-is-casefolded.c: New file.
16259
16260         Tests for module 'unicase/u16-is-casefolded'.
16261         * modules/unicase/u16-is-casefolded-tests: New file.
16262         * tests/unicase/test-u16-is-casefolded.c: New file.
16263
16264         Tests for module 'unicase/u8-is-casefolded'.
16265         * modules/unicase/u8-is-casefolded-tests: New file.
16266         * tests/unicase/test-u8-is-casefolded.c: New file.
16267         * tests/unicase/test-is-casefolded.h: New file.
16268
16269         New module 'unicase/u32-is-casefolded'.
16270         * lib/unicase/u32-is-casefolded.c: New file.
16271         * modules/unicase/u32-is-casefolded: New file.
16272
16273         New module 'unicase/u16-is-casefolded'.
16274         * lib/unicase/u16-is-casefolded.c: New file.
16275         * modules/unicase/u16-is-casefolded: New file.
16276
16277         New module 'unicase/u8-is-casefolded'.
16278         * lib/unicase/u8-is-casefolded.c: New file.
16279         * modules/unicase/u8-is-casefolded: New file.
16280
16281         Tests for module 'unicase/u32-is-titlecase'.
16282         * modules/unicase/u32-is-titlecase-tests: New file.
16283         * tests/unicase/test-u32-is-titlecase.c: New file.
16284
16285         Tests for module 'unicase/u16-is-titlecase'.
16286         * modules/unicase/u16-is-titlecase-tests: New file.
16287         * tests/unicase/test-u16-is-titlecase.c: New file.
16288
16289         Tests for module 'unicase/u8-is-titlecase'.
16290         * modules/unicase/u8-is-titlecase-tests: New file.
16291         * tests/unicase/test-u8-is-titlecase.c: New file.
16292         * tests/unicase/test-is-titlecase.h: New file.
16293
16294         New module 'unicase/u32-is-titlecase'.
16295         * lib/unicase/u32-is-titlecase.c: New file.
16296         * modules/unicase/u32-is-titlecase: New file.
16297
16298         New module 'unicase/u16-is-titlecase'.
16299         * lib/unicase/u16-is-titlecase.c: New file.
16300         * modules/unicase/u16-is-titlecase: New file.
16301
16302         New module 'unicase/u8-is-titlecase'.
16303         * lib/unicase/u8-is-titlecase.c: New file.
16304         * modules/unicase/u8-is-titlecase: New file.
16305
16306         Tests for module 'unicase/u32-is-lowercase'.
16307         * modules/unicase/u32-is-lowercase-tests: New file.
16308         * tests/unicase/test-u32-is-lowercase.c: New file.
16309
16310         Tests for module 'unicase/u16-is-lowercase'.
16311         * modules/unicase/u16-is-lowercase-tests: New file.
16312         * tests/unicase/test-u16-is-lowercase.c: New file.
16313
16314         Tests for module 'unicase/u8-is-lowercase'.
16315         * modules/unicase/u8-is-lowercase-tests: New file.
16316         * tests/unicase/test-u8-is-lowercase.c: New file.
16317         * tests/unicase/test-is-lowercase.h: New file.
16318
16319         New module 'unicase/u32-is-lowercase'.
16320         * lib/unicase/u32-is-lowercase.c: New file.
16321         * modules/unicase/u32-is-lowercase: New file.
16322
16323         New module 'unicase/u16-is-lowercase'.
16324         * lib/unicase/u16-is-lowercase.c: New file.
16325         * modules/unicase/u16-is-lowercase: New file.
16326
16327         New module 'unicase/u8-is-lowercase'.
16328         * lib/unicase/u8-is-lowercase.c: New file.
16329         * modules/unicase/u8-is-lowercase: New file.
16330
16331         Tests for module 'unicase/u32-is-uppercase'.
16332         * modules/unicase/u32-is-uppercase-tests: New file.
16333         * tests/unicase/test-u32-is-uppercase.c: New file.
16334
16335         Tests for module 'unicase/u16-is-uppercase'.
16336         * modules/unicase/u16-is-uppercase-tests: New file.
16337         * tests/unicase/test-u16-is-uppercase.c: New file.
16338
16339         Tests for module 'unicase/u8-is-uppercase'.
16340         * modules/unicase/u8-is-uppercase-tests: New file.
16341         * tests/unicase/test-u8-is-uppercase.c: New file.
16342         * tests/unicase/test-is-uppercase.h: New file.
16343
16344         New module 'unicase/u32-is-uppercase'.
16345         * lib/unicase/u32-is-uppercase.c: New file.
16346         * modules/unicase/u32-is-uppercase: New file.
16347
16348         New module 'unicase/u16-is-uppercase'.
16349         * lib/unicase/u16-is-uppercase.c: New file.
16350         * modules/unicase/u16-is-uppercase: New file.
16351
16352         New module 'unicase/u8-is-uppercase'.
16353         * lib/unicase/u8-is-uppercase.c: New file.
16354         * modules/unicase/u8-is-uppercase: New file.
16355
16356         New module 'unicase/u32-is-invariant'.
16357         * lib/unicase/u32-is-invariant.c: New file.
16358         * modules/unicase/u32-is-invariant: New file.
16359
16360         New module 'unicase/u16-is-invariant'.
16361         * lib/unicase/u16-is-invariant.c: New file.
16362         * modules/unicase/u16-is-invariant: New file.
16363
16364         New module 'unicase/u8-is-invariant'.
16365         * lib/unicase/u8-is-invariant.c: New file.
16366         * lib/unicase/invariant.h: New file.
16367         * lib/unicase/u-is-invariant.h: New file.
16368         * modules/unicase/u8-is-invariant: New file.
16369
16370         Tests for module 'unicase/u32-casecoll'.
16371         * modules/unicase/u32-casecoll-tests: New file.
16372         * tests/unicase/test-u32-casecoll.c: New file.
16373
16374         Tests for module 'unicase/u16-casecoll'.
16375         * modules/unicase/u16-casecoll-tests: New file.
16376         * tests/unicase/test-u16-casecoll.c: New file.
16377
16378         Tests for module 'unicase/u8-casecoll'.
16379         * modules/unicase/u8-casecoll-tests: New file.
16380         * tests/unicase/test-u8-casecoll.c: New file.
16381
16382         New module 'unicase/u32-casecoll'.
16383         * lib/unicase/u32-casecoll.c: New file.
16384         * modules/unicase/u32-casecoll: New file.
16385
16386         New module 'unicase/u16-casecoll'.
16387         * lib/unicase/u16-casecoll.c: New file.
16388         * modules/unicase/u16-casecoll: New file.
16389
16390         New module 'unicase/u8-casecoll'.
16391         * lib/unicase/u8-casecoll.c: New file.
16392         * lib/unicase/u-casecoll.h: New file.
16393         * modules/unicase/u8-casecoll: New file.
16394
16395         New module 'unicase/u32-casexfrm'.
16396         * lib/unicase/u32-casexfrm.c: New file.
16397         * modules/unicase/u32-casexfrm: New file.
16398
16399         New module 'unicase/u16-casexfrm'.
16400         * lib/unicase/u16-casexfrm.c: New file.
16401         * modules/unicase/u16-casexfrm: New file.
16402
16403         New module 'unicase/u8-casexfrm'.
16404         * lib/unicase/u8-casexfrm.c: New file.
16405         * lib/unicase/u-casexfrm.h: New file.
16406         * modules/unicase/u8-casexfrm: New file.
16407
16408         Tests for module 'unicase/u32-casecmp'.
16409         * modules/unicase/u32-casecmp-tests: New file.
16410         * tests/unicase/test-u32-casecmp.c: New file.
16411
16412         Tests for module 'unicase/u16-casecmp'.
16413         * modules/unicase/u16-casecmp-tests: New file.
16414         * tests/unicase/test-u16-casecmp.c: New file.
16415
16416         Tests for module 'unicase/u8-casecmp'.
16417         * modules/unicase/u8-casecmp-tests: New file.
16418         * tests/unicase/test-u8-casecmp.c: New file.
16419         * tests/unicase/test-casecmp.h: New file.
16420
16421         New module 'unicase/u32-casecmp'.
16422         * lib/unicase/u32-casecmp.c: New file.
16423         * modules/unicase/u32-casecmp: New file.
16424
16425         New module 'unicase/u16-casecmp'.
16426         * lib/unicase/u16-casecmp.c: New file.
16427         * modules/unicase/u16-casecmp: New file.
16428
16429         New module 'unicase/u8-casecmp'.
16430         * lib/unicase/u8-casecmp.c: New file.
16431         * lib/unicase/u-casecmp.h: New file.
16432         * modules/unicase/u8-casecmp: New file.
16433
16434         Tests for module 'unicase/u32-casefold'.
16435         * modules/unicase/u32-casefold-tests: New file.
16436         * tests/unicase/test-u32-casefold.c: New file.
16437
16438         Tests for module 'unicase/u16-casefold'.
16439         * modules/unicase/u16-casefold-tests: New file.
16440         * tests/unicase/test-u16-casefold.c: New file.
16441
16442         Tests for module 'unicase/u8-casefold'.
16443         * modules/unicase/u8-casefold-tests: New file.
16444         * tests/unicase/test-u8-casefold.c: New file.
16445
16446         New module 'unicase/u32-casefold'.
16447         * lib/unicase/u32-casefold.c: New file.
16448         * modules/unicase/u32-casefold: New file.
16449
16450         New module 'unicase/u16-casefold'.
16451         * lib/unicase/u16-casefold.c: New file.
16452         * modules/unicase/u16-casefold: New file.
16453
16454         New module 'unicase/u8-casefold'.
16455         * lib/unicase/u8-casefold.c: New file.
16456         * lib/unicase/u-casefold.h: New file.
16457         * modules/unicase/u8-casefold: New file.
16458
16459         New module 'unicase/tocasefold'.
16460         * lib/unicase/casefold.h: New file.
16461         * lib/unicase/tocasefold.c: New file.
16462         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
16463         * modules/unicase/tocasefold: New file.
16464
16465         Tests for module 'unicase/u32-totitle'.
16466         * modules/unicase/u32-totitle-tests: New file.
16467         * tests/unicase/test-u32-totitle.c: New file.
16468
16469         Tests for module 'unicase/u16-totitle'.
16470         * modules/unicase/u16-totitle-tests: New file.
16471         * tests/unicase/test-u16-totitle.c: New file.
16472
16473         Tests for module 'unicase/u8-totitle'.
16474         * modules/unicase/u8-totitle-tests: New file.
16475         * tests/unicase/test-u8-totitle.c: New file.
16476
16477         New module 'unicase/u32-totitle'.
16478         * lib/unicase/u32-totitle.c: New file.
16479         * modules/unicase/u32-totitle: New file.
16480
16481         New module 'unicase/u16-totitle'.
16482         * lib/unicase/u16-totitle.c: New file.
16483         * modules/unicase/u16-totitle: New file.
16484
16485         New module 'unicase/u8-totitle'.
16486         * lib/unicase/u8-totitle.c: New file.
16487         * lib/unicase/u-totitle.h: New file.
16488         * modules/unicase/u8-totitle: New file.
16489
16490         Tests for module 'unicase/u32-tolower'.
16491         * modules/unicase/u32-tolower-tests: New file.
16492         * tests/unicase/test-u32-tolower.c: New file.
16493
16494         Tests for module 'unicase/u16-tolower'.
16495         * modules/unicase/u16-tolower-tests: New file.
16496         * tests/unicase/test-u16-tolower.c: New file.
16497
16498         Tests for module 'unicase/u8-tolower'.
16499         * modules/unicase/u8-tolower-tests: New file.
16500         * tests/unicase/test-u8-tolower.c: New file.
16501
16502         New module 'unicase/u32-tolower'.
16503         * lib/unicase/u32-tolower.c: New file.
16504         * modules/unicase/u32-tolower: New file.
16505
16506         New module 'unicase/u16-tolower'.
16507         * lib/unicase/u16-tolower.c: New file.
16508         * modules/unicase/u16-tolower: New file.
16509
16510         New module 'unicase/u8-tolower'.
16511         * lib/unicase/u8-tolower.c: New file.
16512         * modules/unicase/u8-tolower: New file.
16513
16514         Tests for module 'unicase/u32-toupper'.
16515         * modules/unicase/u32-toupper-tests: New file.
16516         * tests/unicase/test-u32-toupper.c: New file.
16517
16518         Tests for module 'unicase/u16-toupper'.
16519         * modules/unicase/u16-toupper-tests: New file.
16520         * tests/unicase/test-u16-toupper.c: New file.
16521
16522         Tests for module 'unicase/u8-toupper'.
16523         * modules/unicase/u8-toupper-tests: New file.
16524         * tests/unicase/test-u8-toupper.c: New file.
16525
16526         New module 'unicase/u32-toupper'.
16527         * lib/unicase/u32-toupper.c: New file.
16528         * modules/unicase/u32-toupper: New file.
16529
16530         New module 'unicase/u16-toupper'.
16531         * lib/unicase/u16-toupper.c: New file.
16532         * modules/unicase/u16-toupper: New file.
16533
16534         New module 'unicase/u8-toupper'.
16535         * lib/unicase/u8-toupper.c: New file.
16536         * modules/unicase/u8-toupper: New file.
16537
16538         New module 'unicase/u32-casemap'.
16539         * lib/unicase/u32-casemap.c: New file.
16540         * modules/unicase/u32-casemap: New file.
16541
16542         New module 'unicase/u16-casemap'.
16543         * lib/unicase/u16-casemap.c: New file.
16544         * modules/unicase/u16-casemap: New file.
16545
16546         New module 'unicase/u8-casemap'.
16547         * lib/unicase/unicasemap.h: New file.
16548         * lib/unicase/u8-casemap.c: New file.
16549         * lib/unicase/u-casemap.h: New file.
16550         * modules/unicase/u8-casemap: New file.
16551
16552         New module 'unicase/special-casing'.
16553         * lib/unicase/special-casing.h: New file.
16554         * lib/unicase/special-casing.c: New file.
16555         * lib/unicase/special-casing-table.gperf: New file, generated by
16556         gen-uni-tables.c.
16557         * modules/unicase/special-casing: New file.
16558
16559         Tests for module 'unicase/locale-language'.
16560         * modules/unicase/locale-language-tests: New file.
16561         * tests/unicase/test-locale-language.sh: New file.
16562         * tests/unicase/test-locale-language.c: New file.
16563
16564         New module 'unicase/locale-language'.
16565         * lib/unicase/locale-language.c: New file.
16566         * lib/unicase/locale-languages.gperf: New file.
16567         * modules/unicase/locale-language: New file.
16568
16569         Generate more tables for case conversion and case folding.
16570         * lib/gen-uni-tables.c (SCC_*): New enum items.
16571         (struct special_casing_rule): New type.
16572         (casing_rules, num_casing_rules, allocated_casing_rules): New
16573         variables.
16574         (add_casing_rule, fill_casing_rules): New functions.
16575         (struct casefold_rule): New type.
16576         (casefolding_rules, num_casefolding_rules,
16577         allocated_casefolding_rules): New variables.
16578         (fill_casefolding_rules): New function.
16579         (unicode_casefold): New variable.
16580         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
16581         sort_casing_rules, output_casing_rules): New functions.
16582         (main): Accept to more arguments: SpecialCasing.txt and
16583         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
16584         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
16585         Output mapping for casefolding.
16586
16587         * lib/unicase.h: Include stdbool.h, uninorm.h.
16588         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
16589         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
16590         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
16591         arguments.
16592         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
16593         resultp arguments.
16594         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
16595         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
16596         resultp arguments.
16597         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
16598         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
16599         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
16600         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
16601         declarations.
16602         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
16603
16604 2009-03-08  Bruno Haible  <bruno@clisp.org>
16605
16606         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
16607         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
16608         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
16609         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
16610
16611 2009-03-07  Bruno Haible  <bruno@clisp.org>
16612
16613         Adjust u*_normcmp, u*_normcoll API.
16614         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
16615         u16_normcoll, u32_normcoll): Change failure conventions.
16616         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
16617         errno and return -1.
16618         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
16619
16620 2009-03-07  Bruno Haible  <bruno@clisp.org>
16621
16622         Tests for module 'uninorm/u32-normcoll'.
16623         * modules/uninorm/u32-normcoll-tests: New file.
16624         * tests/uninorm/test-u32-normcoll.c: New file.
16625
16626         Tests for module 'uninorm/u16-normcoll'.
16627         * modules/uninorm/u16-normcoll-tests: New file.
16628         * tests/uninorm/test-u16-normcoll.c: New file.
16629
16630         Tests for module 'uninorm/u8-normcoll'.
16631         * modules/uninorm/u8-normcoll-tests: New file.
16632         * tests/uninorm/test-u8-normcoll.c: New file.
16633
16634 2009-03-07  Bruno Haible  <bruno@clisp.org>
16635
16636         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
16637         tests/uninorm/test-u32-normcmp.c.
16638         * tests/uninorm/test-u32-normcmp.c: Include it.
16639         (test_nonascii): New function, extracted from main. Add some more
16640         tests.
16641         (main): Invoke test_ascii and test_nonascii.
16642         * modules/uninorm/u32-normcmp-tests (Files): Add
16643         tests/uninorm/test-u32-normcmp.h.
16644         (Depends-on): Remove uninorm/u32-normcmp.
16645
16646         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
16647         tests/uninorm/test-u16-normcmp.c.
16648         * tests/uninorm/test-u16-normcmp.c: Include it.
16649         (test_nonascii): New function, extracted from main. Add some more
16650         tests.
16651         (main): Invoke test_ascii and test_nonascii.
16652         * modules/uninorm/u16-normcmp-tests (Files): Add
16653         tests/uninorm/test-u16-normcmp.h.
16654         (Depends-on): Remove uninorm/u16-normcmp.
16655
16656         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
16657         tests/uninorm/test-u8-normcmp.c.
16658         * tests/uninorm/test-u8-normcmp.c: Include it.
16659         (test_nonascii): New function, extracted from main. Add some more
16660         tests.
16661         (main): Invoke test_ascii and test_nonascii.
16662         * modules/uninorm/u8-normcmp-tests (Files): Add
16663         tests/uninorm/test-u8-normcmp.h.
16664         (Depends-on): Remove uninorm/u8-normcmp.
16665
16666 2009-03-07  Bruno Haible  <bruno@clisp.org>
16667
16668         New module 'uninorm/u32-normcoll'.
16669         * lib/uninorm/u32-normcoll.c: New file.
16670         * modules/uninorm/u32-normcoll: New file.
16671
16672         New module 'uninorm/u16-normcoll'.
16673         * lib/uninorm/u16-normcoll.c: New file.
16674         * modules/uninorm/u16-normcoll: New file.
16675
16676         New module 'uninorm/u8-normcoll'.
16677         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
16678         declarations.
16679         * lib/uninorm/u8-normcoll.c: New file.
16680         * lib/uninorm/u-normcoll.h: New file.
16681         * modules/uninorm/u8-normcoll: New file.
16682
16683         New module 'uninorm/u32-normxfrm'.
16684         * lib/uninorm/u32-normxfrm.c: New file.
16685         * modules/uninorm/u32-normxfrm: New file.
16686
16687         New module 'uninorm/u16-normxfrm'.
16688         * lib/uninorm/u16-normxfrm.c: New file.
16689         * modules/uninorm/u16-normxfrm: New file.
16690
16691         New module 'uninorm/u8-normxfrm'.
16692         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
16693         declarations.
16694         * lib/uninorm/u8-normxfrm.c: New file.
16695         * lib/uninorm/u-normxfrm.h: New file.
16696         * modules/uninorm/u8-normxfrm: New file.
16697
16698 2009-03-07  Bruno Haible  <bruno@clisp.org>
16699
16700         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
16701         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
16702         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
16703
16704 2009-03-07  Bruno Haible  <bruno@clisp.org>
16705
16706         New module 'memxfrm'.
16707         * lib/memxfrm.h: New file.
16708         * lib/memxfrm.c: New file.
16709         * modules/memxfrm: New file.
16710
16711 2009-03-07  Bruno Haible  <bruno@clisp.org>
16712
16713         New module 'memcmp2'.
16714         * lib/memcmp2.h: New file.
16715         * lib/memcmp2.c: New file.
16716         * modules/memcmp2: New file.
16717
16718 2009-03-07  Bruno Haible  <bruno@clisp.org>
16719
16720         Tests for module 'uninorm/decomposing-form'.
16721         * modules/uninorm/decomposing-form-tests: New file.
16722         * tests/uninorm/test-decomposing-form.c: New file.
16723
16724         New module 'uninorm/decomposing-form'.
16725         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
16726         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
16727         Add 'decomposing_variant' field.
16728         * lib/uninorm/decomposing-form.c: New file.
16729         * lib/uninorm/nfc.c (uninorm_nfc): Update.
16730         * lib/uninorm/nfd.c (uninorm_nfd): Update.
16731         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
16732         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
16733         * modules/uninorm/decomposing-form: New file.
16734         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
16735         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
16736
16737 2009-03-07  Bruno Haible  <bruno@clisp.org>
16738
16739         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
16740         strings.
16741
16742 2009-03-06  Bruno Haible  <bruno@clisp.org>
16743
16744         Tests for module 'uninorm/u32-normcmp'.
16745         * tests/uninorm/test-u32-normcmp.c: New file.
16746         * modules/uninorm/u32-normcmp-tests: New file.
16747
16748         Tests for module 'uninorm/u16-normcmp'.
16749         * tests/uninorm/test-u16-normcmp.c: New file.
16750         * modules/uninorm/u16-normcmp-tests: New file.
16751
16752         Tests for module 'uninorm/u8-normcmp'.
16753         * tests/uninorm/test-u8-normcmp.c: New file.
16754         * modules/uninorm/u8-normcmp-tests: New file.
16755
16756         New module 'uninorm/u32-normcmp'.
16757         * lib/uninorm/u32-normcmp.c: New file.
16758         * modules/uninorm/u32-normcmp: New file.
16759
16760         New module 'uninorm/u16-normcmp'.
16761         * lib/uninorm/u16-normcmp.c: New file.
16762         * modules/uninorm/u16-normcmp: New file.
16763
16764         New module 'uninorm/u8-normcmp'.
16765         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
16766         declarations.
16767         * lib/uninorm/u8-normcmp.c: New file.
16768         * lib/uninorm/u-normcmp.h: New file.
16769         * modules/uninorm/u8-normcmp: New file.
16770
16771 2009-03-06  Bruno Haible  <bruno@clisp.org>
16772
16773         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
16774         Reported by Eric Blake.
16775
16776 2009-03-06  Eric Blake  <ebb9@byu.net>
16777             Bruno Haible  <bruno@clisp.org>
16778
16779         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
16780         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
16781         condition.
16782         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
16783         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
16784         condition.
16785         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
16786
16787 2009-03-06  Eric Blake  <ebb9@byu.net>
16788
16789         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
16790         to avoid compiler warnings.
16791         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
16792
16793 2009-03-05  Bruno Haible  <bruno@clisp.org>
16794
16795         * tests/test-ftell.c (main): Disable test beyond end of file on
16796         FreeMiNT.
16797         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
16798
16799 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
16800
16801         * lib/filevercmp.c: Move hidden files up in ordering.
16802         * tests/test-filevercmp.c: Add tests for hidden files.
16803
16804 2009-03-04  Bruno Haible  <bruno@clisp.org>
16805
16806         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
16807         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
16808         AM_CFLAGS.
16809         Reported by Simon Josefsson.
16810
16811 2009-03-03  Bruno Haible  <bruno@clisp.org>
16812
16813         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
16814         Reported by Simon Josefsson.
16815
16816         * doc/ld-version-script.texi: Update node reference.
16817
16818 2009-03-03  Bruno Haible  <bruno@clisp.org>
16819
16820         * modules/visibility (License): Change to 'unlimited'.
16821         Suggested by Simon Josefsson.
16822
16823 2009-03-03  Jim Meyering  <meyering@redhat.com>
16824
16825         unlinkdir: cannot_unlink_dir may modify process state
16826         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
16827         it's neither thread-safe nor appropriate for use in a library.
16828
16829 2009-03-03  Eric Blake  <ebb9@byu.net>
16830
16831         test-closein: silence test under Darwin
16832         * tests/test-closein.sh: Ignore stderr from cat, since we don't
16833         care if it dies from EPIPE or EBADF.
16834
16835 2009-03-03  Bruno Haible  <bruno@clisp.org>
16836
16837         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
16838         earlier.
16839         * doc/visibility.texi: Fix @node and @section.
16840
16841 2009-03-03  Simon Josefsson  <simon@josefsson.org>
16842
16843         * doc/gnulib.texi: Link to sections for ld version script and
16844         visibility.
16845         * doc/visibility.texi: Add @node and @section.
16846         * modules/ld-version-script: New module.
16847         * m4/ld-version-script.m4: New file.
16848         * doc/ld-version-script.texi: New file.
16849
16850 2009-03-02  David Lutterkort  <lutter@redhat.com>
16851
16852         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
16853         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16854
16855 2009-03-02  Bruno Haible  <bruno@clisp.org>
16856
16857         * doc/visibility.texi: Mention libtool's -export-symbols option.
16858
16859 2009-03-02  Jim Meyering  <meyering@redhat.com>
16860
16861         announce-gen: new option: --no-print-checksums
16862         * build-aux/announce-gen (usage): Describe it.
16863         (print_checksums): Print a newline here, not in the [*] footnote.
16864         (main): Honor it.
16865
16866 2009-03-01  Bruno Haible  <bruno@clisp.org>
16867
16868         Use socklen_t in the native Windows replacements prototypes.
16869         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
16870         instead of 'int'.
16871         * lib/getsockopt.c (rpl_getsockopt): Likewise.
16872         * lib/setsockopt.c (rpl_setsockopt): Likewise.
16873         * modules/getsockopt (Depends-on): Add socklen.
16874         * modules/setsockopt (Depends-on): Add socklen.
16875
16876 2009-03-01  Bruno Haible  <bruno@clisp.org>
16877
16878         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
16879         least 4.2.
16880
16881 2009-03-01  Eric Blake  <ebb9@byu.net>
16882             Bruno Haible  <bruno@clisp.org>
16883
16884         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
16885         error messages.
16886         * lib/wait-process.c (wait_subprocess): Omit error message about
16887         deadly signal sent to the child of termsigp != NULL.
16888
16889 2009-03-01  Eric Blake  <ebb9@byu.net>
16890
16891         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
16892
16893 2009-03-01  Bruno Haible  <bruno@clisp.org>
16894
16895         Avoid a gcc warning.
16896         * tests/test-sched.c (b): Make global.
16897         Reported by Eric Blake.
16898
16899 2009-01-19  Martin Lambers  <marlam@marlam.de>
16900
16901         Provide POSIX semantics for socket timeout options on W32.
16902         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
16903         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
16904         * modules/setsockopt: Depend on sys_time module for struct timeval.
16905         * modules/getsockopt: Depend on sys_time module for struct timeval.
16906
16907 2009-03-01  Simon Josefsson  <simon@josefsson.org>
16908
16909         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
16910         __USE_GNU, for consistency with netdb.in.h.
16911         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16912
16913 2009-03-01  Bruno Haible  <bruno@clisp.org>
16914
16915         More support for FreeMiNT.
16916         * lib/fseeko.c (rpl_fseeko): Complete last commit.
16917         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16918
16919 2009-03-01  Bruno Haible  <bruno@clisp.org>
16920
16921         More support for FreeMiNT.
16922         * lib/fpurge.c (fpurge): Correct last commit.
16923         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16924
16925 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16926
16927         Fix unportable awk script in vc-list-files.
16928         * build-aux/vc-list-files: In the replacement awk script, use
16929         substr with a second argument of 1, not zero.
16930         Report by Simon Josefsson.
16931
16932 2009-02-28  Bruno Haible  <bruno@clisp.org>
16933
16934         More support for FreeMiNT.
16935         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
16936         to FreeMiNT today.
16937         * lib/fwriting.c (fwriting): Likewise.
16938         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
16939
16940 2009-02-28  Bruno Haible  <bruno@clisp.org>
16941
16942         * tests/test-freadseek.c (main): Disable test beyond end of file on
16943         FreeMiNT.
16944         * tests/test-ftello.c (main): Likewise.
16945         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
16946
16947 2009-02-28  Bruno Haible  <bruno@clisp.org>
16948
16949         Add tentative support for FreeMiNT.
16950         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
16951         * lib/fpurge.c (fpurge): Likewise.
16952         * lib/freadable.c (freadable): Likewise.
16953         * lib/freading.c (freading): Likewise.
16954         * lib/freadptr.c (freadptr): Likewise.
16955         * lib/freadseek.c (freadptrinc): Likewise.
16956         * lib/fseeko.c (rpl_fseeko): Likewise.
16957         * lib/fseterr.c (fseterr): Likewise.
16958         * lib/fwritable.c (fwritable): Likewise.
16959         * lib/fwriting.c (fwriting): Likewise.
16960         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
16961         Hourihane.
16962         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16963
16964 2009-02-28  Bruno Haible  <bruno@clisp.org>
16965
16966         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
16967         SIGCHLD.
16968         Reported by Jim Meyering.
16969
16970 2009-02-28  Bruno Haible  <bruno@clisp.org>
16971
16972         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
16973         Mention the results of these tests on various platforms.
16974         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
16975         order.
16976         * doc/posix-functions/printf.texi: Likewise.
16977         * doc/posix-functions/snprintf.texi: Likewise.
16978         * doc/posix-functions/sprintf.texi: Likewise.
16979         * doc/posix-functions/vfprintf.texi: Likewise.
16980         * doc/posix-functions/vprintf.texi: Likewise.
16981         * doc/posix-functions/vsnprintf.texi: Likewise.
16982         * doc/posix-functions/vsprintf.texi: Likewise.
16983         * doc/glibc-functions/obstack_printf.texi: Likewise.
16984         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
16985
16986 2009-02-28  Bruno Haible  <bruno@clisp.org>
16987
16988         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
16989         Reported by Loïc Minier <lool@dooz.org>.
16990
16991 2009-02-27  Bruno Haible  <bruno@clisp.org>
16992
16993         * gnulib-tool (func_import): Make the sed expression used to create the
16994         sed script for updating the .gitignore file POSIX compliant.
16995         Reported by Eric Blake.
16996
16997 2009-02-27  Bruno Haible  <bruno@clisp.org>
16998
16999         * gnulib-tool (sed): Don't alias as "sed --posix".
17000         Reported by Eric Blake.
17001
17002 2009-02-27  Bruno Haible  <bruno@clisp.org>
17003
17004         Avoid test link errors.
17005         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
17006         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
17007         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
17008         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
17009         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
17010
17011 2009-02-27  Bruno Haible  <bruno@clisp.org>
17012
17013         Avoid spurious "(cached)" in configure output.
17014         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
17015         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
17016         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
17017         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
17018         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
17019         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
17020         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
17021         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
17022         Reported by Eric Blake.
17023
17024 2009-02-27  Eric Blake  <ebb9@byu.net>
17025
17026         printf: fix regression in previous patch
17027         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
17028
17029 2009-02-27  Bruno Haible  <bruno@clisp.org>
17030
17031         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
17032         value.
17033         * lib/stdint.in.h: Likewise.
17034         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
17035
17036 2009-02-27  Eric Blake  <ebb9@byu.net>
17037
17038         doc: mention more functions added in cygwin 1.7.0
17039         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
17040         addition.
17041         * doc/posix-functions/open_wmemstream.texi: Likewise.
17042         * doc/posix-functions/wcsnlen.texi: Likewise.
17043         * doc/posix-functions/wcsnrtombs.texi: Likewise.
17044         * doc/posix-functions/wcstod.texi: Likewise.
17045         * doc/posix-functions/wcstof.texi: Likewise.
17046         * doc/posix-functions/wcstoimax.texi: Likewise.
17047         * doc/posix-functions/wcstok.texi: Likewise.
17048         * doc/posix-functions/wcstoumax.texi: Likewise.
17049
17050         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
17051         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
17052         * doc/posix-functions/fprintf.texi: Update.
17053         * doc/posix-functions/printf.texi: Update.
17054         * doc/posix-functions/snprintf.texi: Update.
17055         * doc/posix-functions/sprintf.texi: Update.
17056         * doc/posix-functions/vfprintf.texi: Update.
17057         * doc/posix-functions/vprintf.texi: Update.
17058         * doc/posix-functions/vsnprintf.texi: Update.
17059         * doc/posix-functions/vsprintf.texi: Update.
17060         * doc/glibc-functions/obstack_printf.texi: Update.
17061         * doc/glibc-functions/obstack_vprintf.texi: Update.
17062
17063 2009-02-26  Eric Blake  <ebb9@byu.net>
17064
17065         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
17066         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
17067         compilation bug by using runtime conversion.
17068         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
17069         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
17070         * modules/ceill-tests (Files): Use nan.h.
17071         * modules/floorl-tests (Files): Likewise.
17072         * modules/frexpl-tests (Files): Likewise.
17073         * modules/isnanl-tests (Files): Likewise.
17074         * modules/ldexpl-tests (Files): Likewise.
17075         * modules/roundl-tests (Files): Likewise.
17076         * modules/truncl-tests (Files): Likewise.
17077         * tests/test-ceill.c (main): Use a working NaN.
17078         * tests/test-floorl.c (main): Likewise.
17079         * tests/test-frexpl.c (main): Likewise.
17080         * tests/test-isnan.c (test_long_double): Likewise.
17081         * tests/test-isnanl.h (main): Likewise.
17082         * tests/test-ldexpl.h (main): Likewise.
17083         * tests/test-roundl.h (main): Likewise.
17084         * tests/test-truncl.h (main): Likewise.
17085         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
17086
17087 2009-02-26  Eric Blake  <ebb9@byu.net>
17088             Bruno Haible  <bruno@clisp.org>
17089
17090         Work around a *printf bug with %ls on Solaris.
17091         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
17092         precision is specified, sprintf stops converting the wide string
17093         argument when the number of bytes that have been produced by this
17094         conversion equals or exceeds the precision.
17095         * doc/posix-functions/fprintf.texi: Update.
17096         * doc/posix-functions/printf.texi: Update.
17097         * doc/posix-functions/snprintf.texi: Update.
17098         * doc/posix-functions/sprintf.texi: Update.
17099         * doc/posix-functions/vfprintf.texi: Update.
17100         * doc/posix-functions/vprintf.texi: Update.
17101         * doc/posix-functions/vsnprintf.texi: Update.
17102         * doc/posix-functions/vsprintf.texi: Update.
17103         * doc/glibc-functions/obstack_printf.texi: Update.
17104         * doc/glibc-functions/obstack_vprintf.texi: Update.
17105
17106 2009-02-26  Eric Blake  <ebb9@byu.net>
17107
17108         stdlib: favor compiler check of random.h
17109         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
17110         to avoid an ObjC random.h installed by Swarm.
17111
17112 2009-02-26  Bruno Haible  <bruno@clisp.org>
17113
17114         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
17115         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
17116         Reported by Gary V. Vaughan <gary@gnu.org>.
17117
17118 2009-02-26  Bruno Haible  <bruno@clisp.org>
17119
17120         Fix *printf behaviour regarding the %ls directive.
17121         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
17122         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
17123         NEED_PRINTF_DIRECTIVE_LS.
17124         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
17125         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
17126         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
17127         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
17128         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
17129         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
17130         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17131         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
17132         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17133         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17134         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17135         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
17136         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17137         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17138         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17139         * doc/posix-functions/fprintf.texi: Update.
17140         * doc/posix-functions/printf.texi: Update.
17141         * doc/posix-functions/snprintf.texi: Update.
17142         * doc/posix-functions/sprintf.texi: Update.
17143         * doc/posix-functions/vfprintf.texi: Update.
17144         * doc/posix-functions/vprintf.texi: Update.
17145         * doc/posix-functions/vsnprintf.texi: Update.
17146         * doc/posix-functions/vsprintf.texi: Update.
17147         * doc/glibc-functions/obstack_printf.texi: Update.
17148         * doc/glibc-functions/obstack_vprintf.texi: Update.
17149         Reported by Eric Blake.
17150
17151 2009-02-25  Bruno Haible  <bruno@clisp.org>
17152
17153         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
17154         with known value.
17155         Reported by Gary V. Vaughan <gary@gnu.org>.
17156
17157 2009-02-25  Bruno Haible  <bruno@clisp.org>
17158
17159         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
17160         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
17161         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
17162         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
17163         Reported by Gary V. Vaughan <gary@gnu.org>.
17164
17165 2009-02-25  Bruno Haible  <bruno@clisp.org>
17166
17167         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
17168         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
17169         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
17170         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
17171         Reported by Gary V. Vaughan <gary@gnu.org>.
17172
17173 2009-02-25  Eric Blake  <ebb9@byu.net>
17174
17175         tests: skip fseek/ftell tests if ungetc is broken
17176         * m4/ungetc.m4: New file.
17177         * modules/fseek-tests: Split test, so ungetc dependency is
17178         separate from rest of test.
17179         * modules/fseeko-tests: Likewise.
17180         * modules/ftell-tests: Likewise.
17181         * modules/ftello-tests: Likewise.
17182         * tests/test-fseek.c (main): Isolate ungetc dependency.
17183         * tests/test-fseeko.c (main): Likewise.
17184         * tests/test-ftell.c (main): Likewise.
17185         * tests/test-ftello.c (main): Likewise.
17186         * tests/test-fseek2.sh: New file.
17187         * tests/test-fseeko2.sh: Likewise.
17188         * tests/test-ftell2.sh: Likewise.
17189         * tests/test-ftello2.sh: Likewise.
17190
17191 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
17192
17193         test-getaddrinfo: fix usage of skip return code 77
17194         * tests/test-gettaddrinfo.c: Return skip code 77 only
17195         for first occurance of skip (4x77 is not 77)
17196
17197 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
17198
17199         strtod: avoid C99 decl-after-statement
17200         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
17201
17202 2009-02-24  Eric Blake  <ebb9@byu.net>
17203
17204         strtod: detect HP-UX 11.31 bug
17205         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
17206         Reported by Gary V. Vaughan.
17207
17208 2009-02-23  Bruno Haible  <bruno@clisp.org>
17209
17210         Fix invalid read past end of memory block.
17211         * lib/vasnprintf.c (DCHAR_SET): Define.
17212         (local_wcslen): Define only when needed.
17213         (local_strnlen, local_wcsnlen): New functions.
17214         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
17215         directives that involve a conversion ourselves.
17216         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
17217         wcsnlen, mbrtowc, wcrtomb.
17218         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
17219         * tests/test-vasprintf-posix.c (test_function): Likewise.
17220         * tests/test-snprintf-posix.h (test_function): Likewise.
17221         * tests/test-sprintf-posix.h (test_function): Likewise.
17222         Reported by Ben Pfaff <blp@cs.stanford.edu>.
17223
17224 2009-02-22  Bruno Haible  <bruno@clisp.org>
17225
17226         Implement new clarified decomposition of Hangul syllables.
17227         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
17228         of type LTV, return only a pairwise decomposition.
17229         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
17230         Likewise.
17231         * tests/uninorm/test-decomposition.c (main): Updated expected result.
17232         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
17233         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
17234
17235 2009-02-22  Bruno Haible  <bruno@clisp.org>
17236
17237         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
17238         zero-length results and shrink excess allocated memory.
17239         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
17240         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
17241         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
17242         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
17243         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
17244         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
17245         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
17246         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
17247         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
17248         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
17249         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
17250         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
17251
17252 2009-02-21  Bruno Haible  <bruno@clisp.org>
17253
17254         * doc/gnulib.texi: Include safe-alloc.texi earlier.
17255         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
17256         spaces after a period. Put a space between a macro name and its
17257         argument list. Trivial rewordings.
17258         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
17259         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
17260         (main): Return 0 explicitly.
17261
17262 2009-02-21  Bruno Haible  <bruno@clisp.org>
17263
17264         Tests for module 'uninorm/filter'.
17265         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
17266         * modules/uninorm/filter-tests: New file.
17267
17268         New module 'uninorm/filter'.
17269         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
17270         uninorm_filter_flush, uninorm_filter_free): New declarations.
17271         * lib/uninorm/uninorm-filter.c: New file.
17272         * modules/uninorm/filter: New file.
17273
17274 2009-02-21  Bruno Haible  <bruno@clisp.org>
17275
17276         Tests for module 'uninorm/nfkc'.
17277         * tests/uninorm/test-nfkc.c: New file.
17278         * tests/uninorm/test-u8-nfkc.c: New file.
17279         * tests/uninorm/test-u16-nfkc.c: New file.
17280         * tests/uninorm/test-u32-nfkc.c: New file.
17281         * tests/uninorm/test-u32-nfkc-big.sh: New file.
17282         * tests/uninorm/test-u32-nfkc-big.c: New file.
17283         * modules/uninorm/nfkc-tests: New file.
17284
17285         New module 'uninorm/nfkc'.
17286         * lib/uninorm/nfkc.c: New file.
17287         * modules/uninorm/nfkc: New file.
17288
17289         Tests for module 'uninorm/nfkd'.
17290         * tests/uninorm/test-nfkd.c: New file.
17291         * tests/uninorm/test-u8-nfkd.c: New file.
17292         * tests/uninorm/test-u16-nfkd.c: New file.
17293         * tests/uninorm/test-u32-nfkd.c: New file.
17294         * tests/uninorm/test-u32-nfkd-big.sh: New file.
17295         * tests/uninorm/test-u32-nfkd-big.c: New file.
17296         * modules/uninorm/nfkd-tests: New file.
17297
17298         New module 'uninorm/nfkd'.
17299         * lib/uninorm/nfkd.c: New file.
17300         * modules/uninorm/nfkd: New file.
17301
17302         Tests for module 'uninorm/nfc'.
17303         * tests/uninorm/test-nfc.c: New file.
17304         * tests/uninorm/test-u8-nfc.c: New file.
17305         * tests/uninorm/test-u16-nfc.c: New file.
17306         * tests/uninorm/test-u32-nfc.c: New file.
17307         * tests/uninorm/test-u32-nfc-big.sh: New file.
17308         * tests/uninorm/test-u32-nfc-big.c: New file.
17309         * modules/uninorm/nfc-tests: New file.
17310
17311         New module 'uninorm/nfc'.
17312         * lib/uninorm/nfc.c: New file.
17313         * modules/uninorm/nfc: New file.
17314
17315         Tests for module 'uninorm/nfd'.
17316         * tests/uninorm/test-nfd.c: New file.
17317         * tests/uninorm/test-u8-nfd.c: New file.
17318         * tests/uninorm/test-u16-nfd.c: New file.
17319         * tests/uninorm/test-u32-nfd.c: New file.
17320         * tests/uninorm/test-u32-nfd-big.sh: New file.
17321         * tests/uninorm/test-u32-nfd-big.c: New file.
17322         * tests/uninorm/test-u32-normalize-big.h: New file.
17323         * tests/uninorm/test-u32-normalize-big.c: New file.
17324         * tests/uninorm/NormalizationTest.txt: New file, created from
17325         Unicode 5.1.0 NormalizationTest.txt.
17326         * modules/uninorm/nfd-tests: New file.
17327
17328         New module 'uninorm/nfd'.
17329         * lib/uninorm/nfd.c: New file.
17330         * modules/uninorm/nfd: New file.
17331
17332         New module 'uninorm/u32-normalize'.
17333         * lib/uninorm/u32-normalize.c: New file.
17334         * modules/uninorm/u32-normalize: New file.
17335
17336         New module 'uninorm/u16-normalize'.
17337         * lib/uninorm/u16-normalize.c: New file.
17338         * modules/uninorm/u16-normalize: New file.
17339
17340         New module 'uninorm/u8-normalize'.
17341         * lib/uninorm/u8-normalize.c: New file.
17342         * lib/uninorm/normalize-internal.h: New file.
17343         * lib/uninorm/u-normalize-internal.h: New file.
17344         * modules/uninorm/u8-normalize: New file.
17345
17346         New module 'uninorm/decompose-internal'.
17347         * lib/uninorm/decompose-internal.c: New file.
17348         * modules/uninorm/decompose-internal: New file.
17349
17350         Tests for module 'uninorm/composition'.
17351         * tests/uninorm/test-composition.c: New file.
17352         * modules/uninorm/composition-tests: New file.
17353
17354         New module 'uninorm/composition'.
17355         * lib/uninorm/composition.c: New file.
17356         * lib/uninorm/composition-table.gperf: New file, generated by
17357         gen-uni-tables.
17358         * modules/uninorm/composition: New file.
17359
17360         Tests for module 'uninorm/compat-decomposition'.
17361         * tests/uninorm/test-compat-decomposition.c: New file.
17362         * modules/uninorm/compat-decomposition-tests: New file.
17363
17364         New module 'uninorm/compat-decomposition'.
17365         * lib/uninorm/decompose-internal.h: New file.
17366         * lib/uninorm/compat-decomposition.c: New file.
17367         * modules/uninorm/compat-decomposition: New file.
17368
17369         Tests for module 'uninorm/canonical-decomposition'.
17370         * tests/uninorm/test-canonical-decomposition.c: New file.
17371         * modules/uninorm/canonical-decomposition-tests: New file.
17372
17373         New module 'uninorm/canonical-decomposition'.
17374         * lib/uninorm/canonical-decomposition.c: New file.
17375         * modules/uninorm/canonical-decomposition: New file.
17376
17377         Tests for module 'uninorm/decomposition'.
17378         * tests/uninorm/test-decomposition.c: New file.
17379         * modules/uninorm/decomposition-tests: New file.
17380
17381         New module 'uninorm/decomposition'.
17382         * lib/uninorm/decomposition.c: New file.
17383         * modules/uninorm/decomposition: New file.
17384
17385         New module 'uninorm/decomposition-table'.
17386         * lib/uninorm/decomposition-table.h: New file.
17387         * lib/uninorm/decomposition-table.c: New file.
17388         * lib/uninorm/decomposition-table1.h: New file, generated by
17389         gen-uni-tables.
17390         * lib/uninorm/decomposition-table2.h: New file, generated by
17391         gen-uni-tables.
17392         * modules/uninorm/decomposition-table: New file.
17393
17394         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
17395         (UC_DECOMP_*): New enumeration items.
17396         (get_decomposition): New function.
17397         (struct decomp_table): New type.
17398         (output_decomposition, output_decomposition_tables): New functions.
17399         (unicode_composition_exclusions): New variable.
17400         (fill_composition_exclusions, debug_output_composition_tables): New
17401         functions.
17402         (main): Accept one more argument. Invoke fill_composition_exclusions.
17403         Output decomposition and composition tables.
17404
17405         New module 'uninorm/base'.
17406         * lib/uninorm.h: New file.
17407         * lib/unictype.h: Update comment.
17408         * modules/uninorm/base: New file.
17409
17410 2009-02-21  David Lutterkort  <lutter@redhat.com>
17411
17412         Tests for module 'safe-alloc'.
17413         * tests/test-safe-alloc.c: New file.
17414         * modules/safe-alloc-tests: New file.
17415
17416         New module 'safe-alloc'.
17417         * lib/safe-alloc.h: New file.
17418         * lib/safe-alloc.c: New file.
17419         * m4/safe-alloc.m4: New file.
17420         * modules/safe-alloc: New file.
17421         * doc/safe-alloc.texi: New file.
17422         * doc/gnulib.texi: Include it.
17423         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
17424         safe-alloc.
17425
17426 2009-02-18  Bruno Haible  <bruno@clisp.org>
17427
17428         Fix link error on non-glibc systems.
17429         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
17430         variable.
17431         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
17432
17433 2009-02-18  Jim Meyering  <meyering@redhat.com>
17434
17435         fts: avoid used-uninitialized error due to recent change
17436         * lib/fts.c (fts_read): Guard uses of the new member,
17437         parent->fts_n_dirs_remaining, since it's not relevant for
17438         the parent of a directory specified on the command-line.
17439
17440 2009-02-17  James Youngman  <jay@gnu.org>
17441             Bruno Haible  <bruno@clisp.org>
17442
17443         * m4/include_next.m4: Reformulate comment.
17444
17445 2009-02-16  Jim Meyering  <meyering@redhat.com>
17446
17447         fts: add #if guards so that the fts_lgpl module still builds
17448         * lib/fts.c: Guard just-added hash-table-using parts with
17449         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
17450         Reported by Simon Josefsson.
17451
17452 2009-02-15  Bruno Haible  <bruno@clisp.org>
17453
17454         * modules/array-mergesort-tests: New file.
17455         * tests/test-array-mergesort.c: New file.
17456
17457         New module 'array-mergesort'.
17458         * modules/array-mergesort: New file.
17459         * lib/array-mergesort.h: New file.
17460
17461 2009-02-15  Bruno Haible  <bruno@clisp.org>
17462
17463         Fix 2009-02-07 commit.
17464         * lib/gen-uni-tables.c (output_predicate, output_category,
17465         output_combclass, output_bidi_category, output_decimal_digit,
17466         output_digit, output_numeric, output_mirror, output_scripts,
17467         output_ident_category, output_simple_mapping): Fix format directives.
17468         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
17469
17470 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
17471
17472         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
17473         fixes are available from IBM.
17474
17475 2009-02-13  Jim Meyering  <meyering@redhat.com>
17476
17477         fts: arrange not to stat non-directories in more cases
17478         This makes GNU find (when it doesn't need to stat each file)
17479         *much* more efficient at traversing reiserfs file systems.
17480         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
17481         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
17482         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
17483         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
17484         (leaf_optimization_applies): New function.
17485         (LCO_hash, LCO_compare): New helper functions.
17486         (link_count_optimize_ok): New function.
17487         (fts_stat): Initialize new member (if dir).
17488         (fts_read): Decrement parent's fts_n_dirs_remaining count if
17489         we've just stat'ed a directory.  Skip the stat call when possible.
17490         ---
17491         Note this AFS-related exchange:
17492         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
17493         and note find's pioctl call in find/fstype.c.
17494         But that is necessary only if you want to enable the
17495         optimization for AFS, and for now, I don't.
17496
17497         fts: move a function definition "up" (no semantic change)
17498         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
17499         "up" to precede upcoming use of a related function.
17500
17501 2009-02-11  Jim Meyering  <meyering@redhat.com>
17502
17503         fts: correct internal computation of nlinks (optimization-related)
17504         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
17505         whether the current entry is a directory, so don't test it.
17506
17507 2009-02-10  Bruno Haible  <bruno@clisp.org>
17508
17509         Tests for module 'uniwbrk/ulc-wordbreaks'.
17510         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
17511         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
17512         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
17513
17514         Tests for module 'uniwbrk/u32-wordbreaks'.
17515         * modules/uniwbrk/u32-wordbreaks-tests: New file.
17516         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
17517
17518         Tests for module 'uniwbrk/u16-wordbreaks'.
17519         * modules/uniwbrk/u16-wordbreaks-tests: New file.
17520         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
17521
17522         Tests for module 'uniwbrk/u8-wordbreaks'.
17523         * modules/uniwbrk/u8-wordbreaks-tests: New file.
17524         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
17525
17526 2009-02-10  Bruno Haible  <bruno@clisp.org>
17527
17528         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
17529         property.
17530         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
17531         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
17532         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
17533
17534 2009-02-10  Simon Josefsson  <simon@josefsson.org>
17535
17536         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
17537         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
17538
17539 2009-02-10  Bruno Haible  <bruno@clisp.org>
17540
17541         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
17542         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
17543         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
17544         * lib/unilbrk/u8-possible-linebreaks.c: Update.
17545         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
17546         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
17547
17548 2009-02-09  Simon Josefsson  <simon@josefsson.org>
17549
17550         * lib/sockets.h (gl_fd_to_handle): New function.
17551
17552         * tests/test-sockets.c: Call gl_fd_to_handle.
17553
17554 2009-02-09  Bruno Haible  <bruno@clisp.org>
17555
17556         * doc/havelib.texi: Document the conventions on bi-arch systems.
17557
17558 2009-02-08  Bruno Haible  <bruno@clisp.org>
17559
17560         Document the AC_LIB_LINKFLAGS macro.
17561         * doc/havelib.texi: New file, mostly written on 2005-05-24.
17562         * doc/gnulib.texi: Include it.
17563
17564 2009-02-08  Bruno Haible  <bruno@clisp.org>
17565
17566         Fix wrong order of sections, compared to TOC.
17567         * doc/gnulib.texi: Include relocatable-maint.texi after the
17568         "Regular expressions" node, not before.
17569
17570 2009-02-08  Bruno Haible  <bruno@clisp.org>
17571
17572         Tests for module 'unicase/totitle'.
17573         * modules/unicase/totitle-tests: New file.
17574
17575         Tests for module 'unicase/tolower'.
17576         * modules/unicase/tolower-tests: New file.
17577
17578         Tests for module 'unicase/toupper'.
17579         * modules/unicase/toupper-tests: New file.
17580         * tests/unicase/test-mapping-part1.h: New file.
17581         * tests/unicase/test-mapping-part2.h: New file.
17582
17583         New module 'unicase/totitle'.
17584         * modules/unicase/totitle: New file.
17585         * lib/unicase/totitle.c: New file.
17586
17587         New module 'unicase/tolower'.
17588         * modules/unicase/tolower: New file.
17589         * lib/unicase/tolower.c: New file.
17590
17591         New module 'unicase/toupper'.
17592         * modules/unicase/toupper: New file.
17593         * lib/unicase/toupper.c: New file.
17594         * lib/unicase/simple-mapping.h: New file.
17595
17596         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
17597         (mapping_table): New structure.
17598         (output_simple_mapping): New function.
17599         (main): Invoke output_simple_mapping_test and output_simple_mapping.
17600         * modules/gen-uni-tables (Description): Update.
17601         * lib/unicase/toupper.h: New file, automatically generated by
17602         gen-uni-tables.
17603         * lib/unicase/tolower.h: New file, automatically generated by
17604         gen-uni-tables.
17605         * lib/unicase/totitle.h: New file, automatically generated by
17606         gen-uni-tables.
17607         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
17608         gen-uni-tables.
17609         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
17610         gen-uni-tables.
17611         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
17612         gen-uni-tables.
17613
17614         New module 'unicase/base'.
17615         * modules/unicase/base: New file.
17616         * lib/unicase.h: New file.
17617
17618 2009-02-08  Bruno Haible  <bruno@clisp.org>
17619
17620         New module 'uniwbrk/ulc-wordbreaks'.
17621         * modules/uniwbrk/ulc-wordbreaks: New file.
17622         * lib/uniwbrk/ulc-wordbreaks.c: New file.
17623
17624         New module 'uniwbrk/u32-wordbreaks'.
17625         * modules/uniwbrk/u32-wordbreaks: New file.
17626         * lib/uniwbrk/u32-wordbreaks.c: New file.
17627
17628         New module 'uniwbrk/u16-wordbreaks'.
17629         * modules/uniwbrk/u16-wordbreaks: New file.
17630         * lib/uniwbrk/u16-wordbreaks.c: New file.
17631
17632         New module 'uniwbrk/u8-wordbreaks'.
17633         * modules/uniwbrk/u8-wordbreaks: New file.
17634         * lib/uniwbrk/u8-wordbreaks.c: New file.
17635         * lib/uniwbrk/u-wordbreaks.h: New file.
17636
17637         New module 'uniwbrk/table'.
17638         * modules/uniwbrk/table: New file.
17639         * lib/uniwbrk/wbrktable.h: New file.
17640         * lib/uniwbrk/wbrktable.c: New file.
17641
17642         New module 'uniwbrk/wordbreak-property'.
17643         * modules/uniwbrk/wordbreak-property: New file.
17644         * lib/uniwbrk/wordbreak-property.c: New file.
17645
17646         * lib/gen-uni-tables.c (WBP_*): New enum items.
17647         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
17648         (unicode_org_wbp): New variable.
17649         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
17650         New functions.
17651         (wbp_table): New structure.
17652         (output_wbp, output_wbrk_tables): New functions.
17653         (main): Accept additional argument. Invoke fill_org_wbp,
17654         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
17655         output_wbrk_tables.
17656         * modules/gen-uni-tables (Description): Update.
17657         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
17658         gen-uni-tables.
17659
17660         New module 'uniwbrk/base'.
17661         * modules/uniwbrk/base: New file.
17662         * lib/uniwbrk.h: New file.
17663
17664 2009-02-08  Bruno Haible  <bruno@clisp.org>
17665
17666         Update to Unicode 5.1.0.
17667         * lib/gen-uni-tables.c (is_property_alphabetic): Include
17668         U+2185..U+2188.
17669         (is_property_default_ignorable_code_point): Don't include characters
17670         of category Cc or Cs and not-a-characters.
17671         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
17672         U+0D79, U+109E, U+109F, U+A60C.
17673         * lib/unictype/bidi_of.h: Regenerated.
17674         * lib/unictype/blocks.h: Regenerated.
17675         * lib/unictype/categ_C.h: Regenerated.
17676         * lib/unictype/categ_Cf.h: Regenerated.
17677         * lib/unictype/categ_Cn.h: Regenerated.
17678         * lib/unictype/categ_L.h: Regenerated.
17679         * lib/unictype/categ_Ll.h: Regenerated.
17680         * lib/unictype/categ_Lm.h: Regenerated.
17681         * lib/unictype/categ_Lo.h: Regenerated.
17682         * lib/unictype/categ_Lu.h: Regenerated.
17683         * lib/unictype/categ_M.h: Regenerated.
17684         * lib/unictype/categ_Mc.h: Regenerated.
17685         * lib/unictype/categ_Me.h: Regenerated.
17686         * lib/unictype/categ_Mn.h: Regenerated.
17687         * lib/unictype/categ_N.h: Regenerated.
17688         * lib/unictype/categ_Nd.h: Regenerated.
17689         * lib/unictype/categ_Nl.h: Regenerated.
17690         * lib/unictype/categ_No.h: Regenerated.
17691         * lib/unictype/categ_P.h: Regenerated.
17692         * lib/unictype/categ_Pd.h: Regenerated.
17693         * lib/unictype/categ_Pe.h: Regenerated.
17694         * lib/unictype/categ_Pf.h: Regenerated.
17695         * lib/unictype/categ_Pi.h: Regenerated.
17696         * lib/unictype/categ_Po.h: Regenerated.
17697         * lib/unictype/categ_Ps.h: Regenerated.
17698         * lib/unictype/categ_S.h: Regenerated.
17699         * lib/unictype/categ_Sk.h: Regenerated.
17700         * lib/unictype/categ_Sm.h: Regenerated.
17701         * lib/unictype/categ_So.h: Regenerated.
17702         * lib/unictype/categ_of.h: Regenerated.
17703         * lib/unictype/combining.h: Regenerated.
17704         * lib/unictype/ctype_alnum.h: Regenerated.
17705         * lib/unictype/ctype_alpha.h: Regenerated.
17706         * lib/unictype/ctype_graph.h: Regenerated.
17707         * lib/unictype/ctype_lower.h: Regenerated.
17708         * lib/unictype/ctype_print.h: Regenerated.
17709         * lib/unictype/ctype_punct.h: Regenerated.
17710         * lib/unictype/ctype_upper.h: Regenerated.
17711         * lib/unictype/decdigit.h: Regenerated.
17712         * lib/unictype/digit.h: Regenerated.
17713         * lib/unictype/mirror.h: Regenerated.
17714         * lib/unictype/numeric.h: Regenerated.
17715         * lib/unictype/pr_alphabetic.h: Regenerated.
17716         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
17717         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
17718         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
17719         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
17720         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
17721         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
17722         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
17723         * lib/unictype/pr_combining.h: Regenerated.
17724         * lib/unictype/pr_dash.h: Regenerated.
17725         * lib/unictype/pr_decimal_digit.h: Regenerated.
17726         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
17727         * lib/unictype/pr_deprecated.h: Regenerated.
17728         * lib/unictype/pr_diacritic.h: Regenerated.
17729         * lib/unictype/pr_extender.h: Regenerated.
17730         * lib/unictype/pr_format_control.h: Regenerated.
17731         * lib/unictype/pr_grapheme_base.h: Regenerated.
17732         * lib/unictype/pr_grapheme_extend.h: Regenerated.
17733         * lib/unictype/pr_grapheme_link.h: Regenerated.
17734         * lib/unictype/pr_id_continue.h: Regenerated.
17735         * lib/unictype/pr_id_start.h: Regenerated.
17736         * lib/unictype/pr_ideographic.h: Regenerated.
17737         * lib/unictype/pr_ignorable_control.h: Regenerated.
17738         * lib/unictype/pr_lowercase.h: Regenerated.
17739         * lib/unictype/pr_math.h: Regenerated.
17740         * lib/unictype/pr_numeric.h: Regenerated.
17741         * lib/unictype/pr_other_alphabetic.h: Regenerated.
17742         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
17743         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
17744         * lib/unictype/pr_other_id_continue.h: Regenerated.
17745         * lib/unictype/pr_other_lowercase.h: Regenerated.
17746         * lib/unictype/pr_other_math.h: Regenerated.
17747         * lib/unictype/pr_punctuation.h: Regenerated.
17748         * lib/unictype/pr_sentence_terminal.h: Regenerated.
17749         * lib/unictype/pr_soft_dotted.h: Regenerated.
17750         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
17751         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
17752         * lib/unictype/pr_unified_ideograph.h: Regenerated.
17753         * lib/unictype/pr_uppercase.h: Regenerated.
17754         * lib/unictype/pr_xid_continue.h: Regenerated.
17755         * lib/unictype/pr_xid_start.h: Regenerated.
17756         * lib/unictype/pr_zero_width.h: Regenerated.
17757         * lib/unictype/scripts.h: Regenerated.
17758         * lib/unictype/scripts_byname.gperf: Regenerated.
17759         * lib/unictype/sy_java_ident.h: Regenerated.
17760         * lib/unilbrk/lbrkprop1.h: Regenerated.
17761         * lib/unilbrk/lbrkprop2.h: Regenerated.
17762         * tests/unictype/test-categ_C.c: Regenerated.
17763         * tests/unictype/test-categ_Cf.c: Regenerated.
17764         * tests/unictype/test-categ_Cn.c: Regenerated.
17765         * tests/unictype/test-categ_L.c: Regenerated.
17766         * tests/unictype/test-categ_Ll.c: Regenerated.
17767         * tests/unictype/test-categ_Lm.c: Regenerated.
17768         * tests/unictype/test-categ_Lo.c: Regenerated.
17769         * tests/unictype/test-categ_Lu.c: Regenerated.
17770         * tests/unictype/test-categ_M.c: Regenerated.
17771         * tests/unictype/test-categ_Mc.c: Regenerated.
17772         * tests/unictype/test-categ_Me.c: Regenerated.
17773         * tests/unictype/test-categ_Mn.c: Regenerated.
17774         * tests/unictype/test-categ_N.c: Regenerated.
17775         * tests/unictype/test-categ_Nd.c: Regenerated.
17776         * tests/unictype/test-categ_Nl.c: Regenerated.
17777         * tests/unictype/test-categ_No.c: Regenerated.
17778         * tests/unictype/test-categ_P.c: Regenerated.
17779         * tests/unictype/test-categ_Pd.c: Regenerated.
17780         * tests/unictype/test-categ_Pe.c: Regenerated.
17781         * tests/unictype/test-categ_Pf.c: Regenerated.
17782         * tests/unictype/test-categ_Pi.c: Regenerated.
17783         * tests/unictype/test-categ_Po.c: Regenerated.
17784         * tests/unictype/test-categ_Ps.c: Regenerated.
17785         * tests/unictype/test-categ_S.c: Regenerated.
17786         * tests/unictype/test-categ_Sk.c: Regenerated.
17787         * tests/unictype/test-categ_Sm.c: Regenerated.
17788         * tests/unictype/test-categ_So.c: Regenerated.
17789         * tests/unictype/test-ctype_alnum.c: Regenerated.
17790         * tests/unictype/test-ctype_alpha.c: Regenerated.
17791         * tests/unictype/test-ctype_graph.c: Regenerated.
17792         * tests/unictype/test-ctype_lower.c: Regenerated.
17793         * tests/unictype/test-ctype_print.c: Regenerated.
17794         * tests/unictype/test-ctype_punct.c: Regenerated.
17795         * tests/unictype/test-ctype_upper.c: Regenerated.
17796         * tests/unictype/test-decdigit.h: Regenerated.
17797         * tests/unictype/test-digit.h: Regenerated.
17798         * tests/unictype/test-numeric.h: Regenerated.
17799         * tests/unictype/test-pr_alphabetic.c: Regenerated.
17800         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
17801         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
17802         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
17803         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
17804         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
17805         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
17806         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
17807         * tests/unictype/test-pr_combining.c: Regenerated.
17808         * tests/unictype/test-pr_dash.c: Regenerated.
17809         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
17810         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
17811         * tests/unictype/test-pr_deprecated.c: Regenerated.
17812         * tests/unictype/test-pr_diacritic.c: Regenerated.
17813         * tests/unictype/test-pr_extender.c: Regenerated.
17814         * tests/unictype/test-pr_format_control.c: Regenerated.
17815         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
17816         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
17817         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
17818         * tests/unictype/test-pr_id_continue.c: Regenerated.
17819         * tests/unictype/test-pr_id_start.c: Regenerated.
17820         * tests/unictype/test-pr_ideographic.c: Regenerated.
17821         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
17822         * tests/unictype/test-pr_lowercase.c: Regenerated.
17823         * tests/unictype/test-pr_math.c: Regenerated.
17824         * tests/unictype/test-pr_numeric.c: Regenerated.
17825         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
17826         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
17827         Regenerated.
17828         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
17829         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
17830         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
17831         * tests/unictype/test-pr_other_math.c: Regenerated.
17832         * tests/unictype/test-pr_punctuation.c: Regenerated.
17833         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
17834         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
17835         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
17836         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
17837         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
17838         * tests/unictype/test-pr_uppercase.c: Regenerated.
17839         * tests/unictype/test-pr_xid_continue.c: Regenerated.
17840         * tests/unictype/test-pr_xid_start.c: Regenerated.
17841         * tests/unictype/test-pr_zero_width.c: Regenerated.
17842
17843         Update to Unicode 5.1.0.
17844         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
17845         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
17846         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
17847         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
17848         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
17849         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
17850         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
17851         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
17852         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
17853         (nonspacing_table_ind): Update.
17854         * tests/uniwidth/test-uc_width2.sh: Update expected result.
17855
17856         Update to Unicode 5.1.0.
17857         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
17858         code transform.
17859         * lib/uniname/uniname.c (unicode_character_name,
17860         unicode_name_character): Add the range 0x1Fxxx to the code transform.
17861         * lib/uniname/uninames.h: Regenerated.
17862         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
17863
17864 2009-02-07  Bruno Haible  <bruno@clisp.org>
17865
17866         Merge gen-ctype and gen-lbrk into a single program.
17867         * lib/gen-uni-tables.c: New file, incorporating
17868         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
17869         Add directory prefixes to the names of the generated files.
17870         * lib/unictype/gen-ctype.c: Remove file.
17871         * lib/unilbrk/gen-lbrk.c: Remove file.
17872         * modules/gen-uni-tables: New file.
17873         * modules/unictype/gen-ctype: Remove file.
17874         * modules/unilbrk/gen-lbrk: Remove file.
17875
17876 2009-02-07  Bruno Haible  <bruno@clisp.org>
17877
17878         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
17879
17880         New module 'unistr/u32-strcoll'.
17881         * modules/unistr/u32-strcoll: New file.
17882         * lib/unistr/u32-strcoll.c: New file.
17883
17884         New module 'unistr/u16-strcoll'.
17885         * modules/unistr/u16-strcoll: New file.
17886         * lib/unistr/u16-strcoll.c: New file.
17887
17888         New module 'unistr/u8-strcoll'.
17889         * modules/unistr/u8-strcoll: New file.
17890         * lib/unistr/u8-strcoll.c: New file.
17891         * lib/unistr/u-strcoll.h: New file.
17892
17893 2009-02-07  Bruno Haible  <bruno@clisp.org>
17894
17895         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
17896         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
17897         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
17898         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
17899         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
17900         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
17901
17902 2009-02-07  Bruno Haible  <bruno@clisp.org>
17903
17904         Make 64-bit clean.
17905         * lib/unictype/gen-ctype.c (output_predicate, output_category,
17906         output_combclass, output_bidi_category, output_decimal_digit,
17907         output_digit, output_numeric, output_mirror, output_scripts,
17908         output_ident_category): Use proper width specifier in format strings.
17909
17910 2009-02-07  Bruno Haible  <bruno@clisp.org>
17911
17912         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
17913         failure behaviour.
17914
17915 2009-02-07  Jim Meyering  <meyering@redhat.com>
17916
17917         regex: avoid compilation failure with upcoming gcc-4.4
17918         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
17919         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
17920         "... error: integer overflow in preprocessor expression".
17921
17922 2009-02-05  Ben Pfaff  <blp@gnu.org>
17923
17924         Fix link errors on Windows when close module is used.
17925         * modules/close: Add $(LIB_CLOSE) to Link section.
17926         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
17927         $(LIB_CLOSE) on Windows.
17928
17929 2009-02-05  Jim Meyering  <meyering@redhat.com>
17930
17931         still avoid unused-parameter warnings, but do it cleanly
17932         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
17933         (get_fs_usage): Cast to void instead.
17934         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
17935         (dev_from_mount_options, read_file_system_list): Cast to void.
17936         Prompted by Bruno Haible.
17937
17938 2009-02-04  Jim Meyering  <meyering@redhat.com>
17939
17940         fsusage.c: correct copyright year
17941         * lib/fsusage.c: Reflect year in which the change is pushed into
17942
17943         avoid misc. warnings
17944         * lib/fsusage.c (UNUSED_PARAM): Define.
17945         (get_fs_usage): Mark parameter "disk" as unused.
17946         * lib/getugroups.c (getgrent): Use "void" in prototype.
17947         * lib/mountlist.c: Mark unused parameters.
17948         (read_file_system_list): Declare a local with "const".
17949         * lib/nanosleep.c (getnow): Declare static.
17950         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
17951
17952         dirfd: set errno upon failure
17953         * lib/dirfd.c: Include <errno.h>.
17954         Set errno to ENOTSUP when returning -1.
17955         * modules/dirfd (Depends-on): Add errno.
17956         Suggested by John Kodis <kodis@comcast.net>.
17957
17958 2009-02-01  Bruno Haible  <bruno@clisp.org>
17959
17960         Don't assume sizeof (long) >= sizeof (void *).
17961         * lib/memcmp.c: Include stdint.h.
17962         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
17963         srcp2 to 'const byte *'.
17964         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
17965         types to uintptr_t.
17966         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
17967         * modules/memcmp (Depends-on): Add stdint.
17968         Reported by Ozkan Sezer <sezeroz@gmail.com>.
17969
17970 2009-01-30  Eric Blake  <ebb9@byu.net>
17971
17972         fix more require-before-expand issues
17973         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
17974         expand, AC_PROG_AWK.
17975         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
17976
17977 2009-01-28  Eric Blake  <ebb9@byu.net>
17978
17979         version-etc: use consistent URL formatting
17980         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
17981         Improve formatting.  Use fputs for string without %.
17982
17983 2009-01-28  Jim Meyering  <meyering@redhat.com>
17984
17985         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
17986         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
17987         "underquoted definition of NAME" from autoconf-2.59.
17988
17989 2009-01-28  Bruno Haible  <bruno@clisp.org>
17990
17991         * doc/gnulib.texi: Add "Obsolete modules" to index.
17992
17993 2009-01-28  Jim Meyering  <meyering@redhat.com>
17994
17995         useless-if-before-free: recognize more variants
17996         * build-aux/useless-if-before-free: Also recognize e.g.,
17997         if (NULL != p) free (p);
17998
17999 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
18000
18001         test-getaddrinfo: skip (don't fail) this test when there's no network
18002         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
18003         on the presumption that it means you lack network access.
18004
18005 2009-01-26  Jim Meyering  <meyering@redhat.com>
18006
18007         fflush: avoid warnings on modern systems
18008         * lib/fflush.c (rpl_fflush): Move declarations of locals,
18009         pos and result, into scopes where they're used.
18010
18011 2009-01-26  Eric Blake  <ebb9@byu.net>
18012
18013         Silence warning reintroduced by recent extensions patch.
18014         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
18015         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
18016         autoconf.
18017
18018         Backport improved autoconf semantics of AC_DEFUN_ONCE.
18019         * m4/00gnulib.m4: New file.
18020         * gnulib-tool (func_get_filelist): Always use it.
18021         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
18022         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
18023
18024 2009-01-25  Bruno Haible  <bruno@clisp.org>
18025
18026         Make test-quotearg work on MacOS X and AIX.
18027         * tests/test-quotearg.sh: New file.
18028         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
18029         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
18030         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
18031         include <libintl.h>.
18032         (fake_locale): Remove variable.
18033         (gettext, dgettext, dcgettext): Remove functions.
18034         (main): Instead of setting a fake locale, set a real locale. Call
18035         textdomain and bindtextdomain.
18036         * modules/quotearg-tests (Files): Add the new files.
18037         (Depends-on): Add gettext, setenv, unsetenv.
18038         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
18039         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
18040         Augment TESTS_ENVIRONMENT.
18041
18042 2009-01-25  Bruno Haible  <bruno@clisp.org>
18043
18044         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
18045         fr_FR.ISO8859-1 locale on MacOS X.
18046         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
18047         ja_JP.eucJP locale on MacOS X.
18048         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
18049         zh_CN.GB18030 locale on MacOS X.
18050
18051 2009-01-25  Bruno Haible  <bruno@clisp.org>
18052
18053         Avoid link errors on MacOS X 10.3.
18054         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
18055         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
18056
18057 2009-01-25  Bruno Haible  <bruno@clisp.org>
18058
18059         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
18060         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
18061         * modules/pipe (Files): Remove m4/posix_spawn.m4.
18062         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
18063         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
18064         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
18065         posix_spawnattr_init, posix_spawnattr_setsigmask,
18066         posix_spawnattr_setflags, posix_spawnattr_destroy.
18067
18068         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
18069         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
18070         * modules/execute (Files): Remove m4/posix_spawn.m4.
18071         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
18072         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
18073         posix_spawnattr_init, posix_spawnattr_setsigmask,
18074         posix_spawnattr_setflags, posix_spawnattr_destroy.
18075
18076 2009-01-25  Bruno Haible  <bruno@clisp.org>
18077
18078         * lib/glthread/threadlib.c: Include <stdlib.h>.
18079
18080 2009-01-25  Bruno Haible  <bruno@clisp.org>
18081
18082         * lib/glthread/threadlib.c (dummy): New declaration.
18083
18084 2009-01-25  Bruno Haible  <bruno@clisp.org>
18085
18086         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
18087         multibyte characters also for the GB18030 encoding. Don't crash when
18088         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
18089
18090 2009-01-25  Bruno Haible  <bruno@clisp.org>
18091
18092         Avoid redefining 'struct random_data' on OSF/1 5.1.
18093         * lib/stdlib.in.h: Include <random.h> if it exists.
18094         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
18095         HAVE_RANDOM_H. Include <random.h> when testing whether
18096         'struct random_data' exists.
18097         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
18098
18099 2009-01-25  Bruno Haible  <bruno@clisp.org>
18100
18101         Don't install charset.alias on MacOS X >= 10.3.
18102         * lib/localcharset.c (DARWIN7): New macro.
18103         (get_charset_aliases): Hardcode the result for Darwin7.
18104         * modules/localcharset (install-exec-local): Don't install
18105         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
18106
18107 2009-01-25  Bruno Haible  <bruno@clisp.org>
18108
18109         Don't install charset.alias on mingw and Cygwin.
18110         * modules/localcharset (install-exec-local): Don't install
18111         charset.alias on mingw and Cygwin, if the file does not yet exist.
18112         The result for these platforms is hardcoded in localcharset.c.
18113
18114 2009-01-25  Bruno Haible  <bruno@clisp.org>
18115
18116         Make it possible again to use AC_GNU_SOURCE together with gnulib.
18117         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
18118         before requiring AC_USE_SYSTEM_EXTENSIONS.
18119
18120 2009-01-25  Jim Meyering  <meyering@redhat.com>
18121
18122         c-strtod: avoid warnings
18123         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
18124         "assignment discards qualifiers from pointer target type" warnings.
18125
18126 2009-01-24  Bruno Haible  <bruno@clisp.org>
18127
18128         Add support for non-UTF-8 locales on MacOS X.
18129         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
18130         canonical encodings. For Darwin 7 and newer, don't map traditional
18131         encodings to UTF-8.
18132         Reported by Vincent Lefevre <vincent@vinc17.org>
18133         at <http://savannah.gnu.org/bugs/?25235>.
18134
18135 2009-01-24  Bruno Haible  <bruno@clisp.org>
18136
18137         * doc/gnulib.texi (Obsolete modules): New section.
18138         Reported by Mike Frysinger <vapier@gentoo.org>.
18139
18140 2009-01-24  Bruno Haible  <bruno@clisp.org>
18141
18142         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
18143         (%.dvi): New rule.
18144
18145 2009-01-24  Bruno Haible  <bruno@clisp.org>
18146
18147         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
18148         Reported by Eric Blake.
18149
18150 2009-01-24  Bruno Haible  <bruno@clisp.org>
18151
18152         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
18153         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
18154         Reported by Gary V. Vaughan <gary@gnu.org>.
18155
18156 2009-01-24  Bruno Haible  <bruno@clisp.org>
18157
18158         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
18159
18160 2009-01-23  Bruno Haible  <bruno@clisp.org>
18161
18162         Make c-strtod, c-strtold usable in libraries.
18163         * lib/c-strtod.c: Include string.h instead of xalloc.h.
18164         (C_STRTOD): Call strdup instead of xstrdup.
18165         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
18166         * modules/c-strtold (Depends-on): Likewise.
18167         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
18168         * NEWS: Mention the change.
18169         Reported by Michael Gold <mgold@ncf.ca>.
18170
18171 2009-01-23  Jim Meyering  <meyering@redhat.com>
18172
18173         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
18174         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
18175         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
18176
18177 2009-01-23  Simon Josefsson  <simon@josefsson.org>
18178
18179         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
18180         GNU CoreUtils.
18181         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
18182         * modules/version-etc (Description): Update.
18183
18184 2009-01-22  Bruno Haible  <bruno@clisp.org>
18185
18186         Cache the C locale object.
18187         * lib/c-strtod.c (c_locale_cache): New variable.
18188         (c_locale): New function.
18189         (C_STRTOD): Use it, and don't call freelocale.
18190         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
18191         Suggested by Paolo Bonzini.
18192
18193 2009-01-21  Bruno Haible  <bruno@clisp.org>
18194
18195         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
18196         conditions other than overflow.
18197
18198 2009-01-21  Bruno Haible  <bruno@clisp.org>
18199
18200         * lib/c-strtod.c: Include errno.h.
18201         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
18202         value from STRTOD_L and STRTOD.
18203
18204 2009-01-21  Bruno Haible  <bruno@clisp.org>
18205         and Jim Meyering  <meyering@redhat.com>
18206
18207         nanosleep: skip configure test (fail it) for apple universal builds
18208         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
18209         universal builds, assume that nanosleep does not work.
18210         * modules/nanosleep (Depends-on): Add multiarch.
18211
18212         mktime: skip configure test (fail it) for apple universal builds
18213         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
18214         universal builds, assume that mktime does not work.
18215         * modules/mktime (Depends-on): Add multiarch.
18216
18217 2009-01-21  Eric Blake  <ebb9@byu.net>
18218
18219         multiarch: avoid expand-before-require warning
18220         * modules/multiarch (configure.ac): Require, rather than expand,
18221         gl_MULTIARCH.
18222         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
18223         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
18224         enforce that all clients require it.  Partial reversion of
18225         2008-12-29 patch.
18226
18227         error: avoid expand-before-require warning
18228         * modules/errno (configure.ac): Require, rather than expand,
18229         gl_HEADER_ERRNO_H.
18230         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
18231         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
18232         enforce that all clients require it.
18233
18234         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
18235         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
18236         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
18237         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
18238
18239 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
18240
18241         Revert:
18242         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
18243
18244         regex: do not depend on obsolete modules.
18245         * modules/regex: Remove memcmp and memmove.
18246
18247 2009-01-20  Bruno Haible  <bruno@clisp.org>
18248
18249         Make the 'link' module link on Windows NT 4.
18250         * lib/link.c (_WIN32_WINNT): Don't define.
18251         (CreateHardLinkFuncType): New type.
18252         (CreateHardLinkFunc, initialized): New variables.
18253         (initialize): New function.
18254         (link): Invoke CreateHardLink indirectly through the function pointer.
18255
18256 2009-01-20  Bruno Haible  <bruno@clisp.org>
18257
18258         Fix compilation failure on mingw.
18259         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
18260
18261 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
18262
18263         * doc/c-strtod.texi: Mention a couple of restrictions.
18264
18265 2009-01-20  Jim Meyering  <meyering@redhat.com>
18266
18267         gettimeofday: move more declarations out of functions
18268         * lib/gettimeofday.c: Move extern declarations of tzset and
18269         gmtime out of containing functions.  Prompted by Bruno Haible.
18270
18271 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
18272
18273         regex: do not depend on obsolete modules.
18274         * modules/regex: Remove memcmp and memmove.
18275
18276 2009-01-19  Bruno Haible  <bruno@clisp.org>
18277
18278         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
18279         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
18280         gl_BIGENDIAN, not AC_C_BIGENDIAN.
18281         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
18282         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
18283
18284 2009-01-19  Bruno Haible  <bruno@clisp.org>
18285
18286         * tests/test-link.c: Include <errno.h>.
18287         (main): Exit with code 77 when a hard link cannot be created due to
18288         the file system.
18289         * tests/test-link.sh: Skip test when a hard link cannot be created due
18290         to the file system.
18291         Suggested by Eric Blake.
18292
18293 2009-01-19  Martin Lambers  <marlam@marlam.de>
18294
18295         * modules/link-tests: New file.
18296         * tests/test-link.sh: New file.
18297         * tests/test-link.c: New file.
18298
18299 2009-01-19  Eric Blake  <ebb9@byu.net>
18300
18301         doc: mention another function added in cygwin 1.7.0
18302         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
18303         Another new function in cygwin 1.7.
18304
18305 2009-01-19  Bruno Haible  <bruno@clisp.org>
18306
18307         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
18308         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
18309         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
18310         gl_BIGENDIAN, not AC_C_BIGENDIAN.
18311         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
18312         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
18313         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
18314         * m4/md4.m4 (gl_MD4): Likewise.
18315         * m4/md5.m4 (gl_MD5): Likewise.
18316         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
18317         * m4/sha1.m4 (gl_SHA1): Likewise.
18318         * m4/sha256.m4 (gl_SHA256): Likewise.
18319         * m4/sha512.m4 (gl_SHA512): Likewise.
18320
18321 2009-01-19  Bruno Haible  <bruno@clisp.org>
18322
18323         * modules/uniname/uniname-tests (Depends-on): Add progname.
18324         * tests/uniname/test-uninames.c: Include progname.h.
18325         (main): Call set_program_name.
18326
18327         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
18328         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
18329         (main): Call set_program_name.
18330
18331         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
18332         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
18333         (main): Call set_program_name.
18334
18335         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
18336         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
18337         (main): Call set_program_name.
18338
18339         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
18340         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
18341         (main): Call set_program_name.
18342
18343         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
18344         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
18345         (main): Call set_program_name.
18346
18347         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
18348         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
18349         (main): Call set_program_name.
18350
18351         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
18352         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
18353         (main): Call set_program_name.
18354
18355         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
18356         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
18357         (main): Call set_program_name.
18358
18359 2009-01-19  Eric Blake  <ebb9@byu.net>
18360
18361         test-unistd: test previous patch
18362         * tests/test-unistd.c: Test *_FILENO macros.
18363
18364         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
18365         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
18366         Guarantee a definition.
18367         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
18368         * modules/unistd-safer (Depends-on): Add dependency on unistd.
18369         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
18370         * lib/dup-safer.c (STDERR_FILENO): Likewise.
18371         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
18372         Likewise.
18373         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
18374         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
18375         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
18376         Likewise.
18377         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
18378         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
18379         (STDERR_FILENO): Likewise.
18380         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
18381         (STDERR_FILENO): Likewise.
18382         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
18383         (STDERR_FILENO): Likewise.
18384         Reported by Elbert Pol.
18385
18386 2009-01-19  Eric Blake  <ebb9@byu.net>
18387
18388         doc: mention more functions added in cygwin 1.7.0
18389         * doc/posix-functions/abort.texi (abort): Update wording related
18390         to cygwin.
18391         * doc/posix-functions/daylight.texi (daylight): Likewise.
18392         * doc/posix-functions/optarg.texi (optarg): Likewise.
18393         * doc/posix-functions/optarg.texi (opterr): Likewise.
18394         * doc/posix-functions/optarg.texi (optind): Likewise.
18395         * doc/posix-functions/optarg.texi (optopt): Likewise.
18396         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
18397         worked in 1.5.x, and was withdrawn in 1.7.
18398         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
18399         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
18400         cygwin versions.
18401         * doc/posix-functions/perror.texi (perror): Likewise.
18402         * doc/posix-functions/printf.texi (printf): Likewise.
18403         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
18404         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
18405         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
18406         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
18407         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
18408         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
18409         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
18410         Likewise.
18411         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
18412         Likewise.
18413         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
18414         this function.
18415         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
18416         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
18417         Likewise.
18418         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
18419         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
18420         * doc/posix-functions/confstr.texi (confstr): Likewise.
18421         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
18422         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
18423         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
18424         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
18425         * doc/posix-functions/fputws.texi (fputws): Likewise.
18426         * doc/posix-functions/fwide.texi (fwide): Likewise.
18427         * doc/posix-functions/getwc.texi (getwc): Likewise.
18428         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
18429         * doc/posix-functions/putwc.texi (putwc): Likewise.
18430         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
18431         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
18432         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
18433         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
18434         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
18435         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
18436         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
18437         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
18438         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
18439         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
18440         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
18441
18442 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
18443
18444         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
18445         * lib/ioctl.c: Include <sys/ioctl.h>.
18446
18447 2009-01-19  Simon Josefsson  <simon@josefsson.org>
18448
18449         * modules/getdate-tests (Depends-on): Add progname.
18450         * tests/test-getdate.c: Use progname module, to avoid link errors
18451         on non-glibc systems.
18452
18453 2009-01-18  Simon Josefsson  <simon@josefsson.org>
18454
18455         * modules/filenamecat-tests (Depends-on): Add progname.
18456         * modules/fstrcmp-tests (Depends-on): Likewise.
18457
18458         * tests/test-filenamecat.c: Use progname module, to avoid link
18459         errors on non-glibc systems.
18460         * tests/test-fstrcmp.c: Likewise.
18461
18462 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
18463
18464         gettimeofday: avoid warning: nested extern declaration of 'localtime'
18465         * lib/gettimeofday.c: Move extern declaration out of function.
18466
18467 2009-01-18  Bruno Haible  <bruno@clisp.org>
18468
18469         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
18470         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
18471         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
18472
18473 2009-01-18  Bruno Haible  <bruno@clisp.org>
18474
18475         * lib/strftime.c (MEMPCPY): Remove unused macro.
18476         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
18477
18478 2009-01-18  Martin Lambers  <marlam@marlam.de>
18479
18480         New module 'link'.
18481         * lib/unistd.in.h (link): New declaration.
18482         * lib/link.c: New file.
18483         * m4/link.m4: New file.
18484         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
18485         HAVE_LINK.
18486         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
18487         * modules/link: New file.
18488         * doc/posix-functions/link.texi: Mention the new module.
18489
18490 2009-01-18  Bruno Haible  <bruno@clisp.org>
18491
18492         * tests/test-avltree_list.c (main): Call set_program_name.
18493         * tests/test-avltree_oset.c (main): Likewise.
18494         * tests/test-obstack-printf.c: Include progname.h.
18495         (main): Call set_program_name.
18496         * tests/test-quotearg.c: Include progname.h.
18497         (main): Call set_program_name.
18498         * tests/test-xmemdup0.c: Include progname.h.
18499         (main): Call set_program_name.
18500
18501 2009-01-18  Bruno Haible  <bruno@clisp.org>
18502
18503         New module 'alphasort'.
18504         * lib/dirent.in.h (alphasort): New declaration.
18505         * lib/alphasort.c: New file, from glibc with modifications.
18506         * m4/alphasort.m4: New file.
18507         * modules/alphasort: New file.
18508         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
18509         HAVE_ALPHASORT.
18510         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
18511         HAVE_ALPHASORT.
18512         * doc/posix-functions/alphasort.texi: Mention the new module and the
18513         portability problems.
18514
18515 2009-01-18  Bruno Haible  <bruno@clisp.org>
18516
18517         New module 'scandir'.
18518         * lib/dirent.in.h (scandir): New declaration.
18519         * lib/scandir.c: New file, from glibc with modifications.
18520         * m4/scandir.m4: New file.
18521         * modules/scandir: New file.
18522         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
18523         HAVE_SCANDIR.
18524         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
18525         HAVE_SCANDIR.
18526         * doc/posix-functions/scandir.texi: Mention the new module and the
18527         portability problems.
18528
18529 2009-01-17  Bruno Haible  <bruno@clisp.org>
18530
18531         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
18532         Update documentation.
18533         (func_remove_suffix): Escape all dots in the suffix. Update
18534         documentation.
18535         (func_filter_filelist): Update documentation.
18536         Reported by Ralf Wildenhues.
18537
18538 2009-01-17  Bruno Haible  <bruno@clisp.org>
18539
18540         * modules/dprintf-posix-tests: New file.
18541         * tests/test-dprintf-posix.sh: New file.
18542         * tests/test-dprintf-posix.c: New file.
18543
18544         New modules 'dprintf', 'dprintf-posix'.
18545         * lib/stdio.in.h (dprintf): New declaration.
18546         * lib/dprintf.c: New file.
18547         * m4/dprintf.m4: New file.
18548         * m4/dprintf-posix.m4: New file.
18549         * modules/dprintf: New file.
18550         * modules/dprintf-posix: New file.
18551         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
18552         HAVE_DPRINTF, REPLACE_DPRINTF.
18553         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
18554         HAVE_DPRINTF, REPLACE_DPRINTF.
18555         * doc/posix-functions/dprintf.texi: Mention the new modules.
18556
18557 2009-01-17  Bruno Haible  <bruno@clisp.org>
18558
18559         * modules/vdprintf-posix-tests: New file.
18560         * tests/test-vdprintf-posix.sh: New file.
18561         * tests/test-vdprintf-posix.c: New file.
18562
18563         New modules 'vdprintf', 'vdprintf-posix'.
18564         * lib/stdio.in.h (vdprintf): New declaration.
18565         * lib/vdprintf.c: New file.
18566         * m4/vdprintf.m4: New file.
18567         * m4/vdprintf-posix.m4: New file.
18568         * modules/vdprintf: New file.
18569         * modules/vdprintf-posix: New file.
18570         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
18571         HAVE_VDPRINTF, REPLACE_VDPRINTF.
18572         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
18573         HAVE_VDPRINTF, REPLACE_VDPRINTF.
18574         * doc/posix-functions/vdprintf.texi: Mention the new modules.
18575
18576 2009-01-17  Bruno Haible  <bruno@clisp.org>
18577
18578         Fix replacement of fopen on mingw.
18579         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
18580         mingw.
18581
18582 2009-01-17  Bruno Haible  <bruno@clisp.org>
18583
18584         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
18585         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
18586
18587 2009-01-17  Bruno Haible  <bruno@clisp.org>
18588
18589         Avoid test-fflush2.sh failure on mingw.
18590         * tests/test-fflush2.c: Include binary-io.h.
18591         (main): Put standard input into binary mode.
18592         * modules/fflush-tests (Depends-on): Add binary-io.
18593
18594 2009-01-17  Bruno Haible  <bruno@clisp.org>
18595
18596         * lib/wchar.in.h: In another particular situation, include only the
18597         system's <wchar.h> file.
18598         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
18599         Reported by Albert Chin-A-Young <china@thewrittenword.com>
18600         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
18601
18602 2009-01-17  Bruno Haible  <bruno@clisp.org>
18603
18604         Support for stripping executables in --enable-relocatable.
18605         * build-aux/install-reloc: Expect one more argument, or an environment
18606         variable RELOC_STRIP_PROG. If set, strip the destination program and
18607         its wrapper.
18608         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
18609         RELOC_STRIP_PROG.
18610         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
18611         to set RELOCATABLE_STRIP.
18612         * NEWS: Mention the new Makefile requirement.
18613
18614 2009-01-17  Bruno Haible  <bruno@clisp.org>
18615
18616         * build-aux/install-reloc: Remove debugging information left over by
18617         C compiler on MacOS X.
18618
18619 2009-01-17  Bruno Haible  <bruno@clisp.org>
18620
18621         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
18622         * lib/progreloc.c (find_executable): Fix type of pointer passed to
18623         _NSGetExecutablePath.
18624
18625 2009-01-16  Jim Meyering  <meyering@redhat.com>
18626
18627         strerror: avoid warnings about discarding "const"
18628         * lib/strerror.c (rpl_strerror): Instead of returning a const
18629         string from each and every "case", use a variable, and add a single
18630         cast after the switch.
18631
18632 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
18633
18634         * lib/arpa_inet.in.h: Add extern "C" block for C++.
18635
18636 2009-01-16  Bruno Haible  <bruno@clisp.org>
18637
18638         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
18639         array initializer syntax that also works in C++ mode.
18640         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
18641
18642 2009-01-16  Jim Meyering  <meyering@redhat.com>
18643
18644         poll: suppress a warning
18645         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
18646         to ignore "...unsigned expression < 0 is always false" warnings.
18647
18648 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
18649
18650         poll: remove declarations of unused variables
18651         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
18652         sockbuf and optlen.
18653
18654 2009-01-15  Bruno Haible  <bruno@clisp.org>
18655
18656         Make fflush-after-ungetc POSIX compliant on BSD systems.
18657         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
18658         (clear_ungetc_buffer): Implement also for other systems.
18659         (rpl_fflush): On glibc systems, invoke
18660         clear_ungetc_buffer_preserving_position. Otherwise, invoke
18661         clear_ungetc_buffer after fetching the stream's position, not before.
18662
18663 2009-01-15  Bruno Haible  <bruno@clisp.org>
18664
18665         Make fflush-after-ungetc POSIX compliant on glibc systems.
18666         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
18667         after ungetc.
18668         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
18669         (rpl_fflush): On glibc systems, simply call the system's fflush
18670         function after clearing the ungetc buffer.
18671         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
18672         Instead, lseek only to the end of file, then use the system's fseeko
18673         for the rest. On glibc systems, reset the EOF indicator bit.
18674
18675 2009-01-15  Jim Meyering  <meyering@redhat.com>
18676
18677         openmp.m4: revert quote-adding change, for portability to older autoconf
18678         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
18679         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
18680         Simon Josefsson noticed the problem when using autoconf-2.61.
18681
18682 2009-01-15  Bruno Haible  <bruno@clisp.org>
18683
18684         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
18685         * tests/test-fflush2.c (ASSERT): Always fail.
18686         (main): Add two tests for fflush() after ungetc(), taking into account
18687         the Austin Group's clarification.
18688         Suggested by Eric Blake.
18689
18690 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
18691
18692         mktime.m4: remove K&R-style function prototypes
18693         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
18694         for the Sun C++ compiler.
18695
18696 2009-01-14  Bruno Haible  <bruno@clisp.org>
18697
18698         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
18699         while including <wchar.h>.
18700         * lib/wchar.in.h: In two particular situations on HP-UX, include only
18701         the system's <wchar.h> file.
18702         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
18703
18704 2009-01-14  Bruno Haible  <bruno@clisp.org>
18705
18706         * m4/csharp.m4: Don't mention gettext on the serial number line.
18707         * m4/csharpexec.m4: Likewise.
18708         * m4/eaccess.m4: Likewise.
18709         * m4/javaexec.m4: Likewise.
18710         * m4/sig_atomic_t.m4: Likewise.
18711         * m4/tmpdir.m4: Likewise.
18712         * m4/intldir.m4: Bump gettext version.
18713         * m4/lib-ld.m4: Likewise.
18714
18715 2009-01-14  Bruno Haible  <bruno@clisp.org>
18716
18717         * lib/progname.c (set_program_name): Add more comments.
18718         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
18719
18720 2009-01-14  Simon Josefsson  <simon@josefsson.org>
18721
18722         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
18723         were sys/stat.h does not define it.
18724
18725 2009-01-14  Jim Meyering  <meyering@redhat.com>
18726
18727         many *.m4 files: improve m4 quoting
18728         99% of this change was performed by running the following commands:
18729         git ls-files | grep '\.m4$' | xargs perl -pi \
18730           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
18731           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
18732           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
18733           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
18734         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
18735         The remainder were to add Copyright dates, increment serial numbers,
18736         undo some changes in comments, exclude m4/intl.m4, and add quotes
18737         around the "1" in ",1" where the unusual spacing prohibited the
18738         above regexps from doing the job.  For more details, see
18739         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
18740         * m4/acl.m4: Modified.
18741         * m4/afs.m4: Likewise.
18742         * m4/alloca.m4: Likewise.
18743         * m4/argp.m4: Likewise.
18744         * m4/argz.m4: Likewise.
18745         * m4/atexit.m4: Likewise.
18746         * m4/bison-i18n.m4: Likewise.
18747         * m4/bison.m4: Likewise.
18748         * m4/byteswap.m4: Likewise.
18749         * m4/c-stack.m4: Likewise.
18750         * m4/c-strtod.m4: Likewise.
18751         * m4/calloc.m4: Likewise.
18752         * m4/canonicalize-lgpl.m4: Likewise.
18753         * m4/chown.m4: Likewise.
18754         * m4/clock_time.m4: Likewise.
18755         * m4/codeset.m4: Likewise.
18756         * m4/copy-file.m4: Likewise.
18757         * m4/csharp.m4: Likewise.
18758         * m4/csharpcomp.m4: Likewise.
18759         * m4/csharpexec.m4: Likewise.
18760         * m4/d-ino.m4: Likewise.
18761         * m4/d-type.m4: Likewise.
18762         * m4/dirfd.m4: Likewise.
18763         * m4/double-slash-root.m4: Likewise.
18764         * m4/eaccess.m4: Likewise.
18765         * m4/eealloc.m4: Likewise.
18766         * m4/environ.m4: Likewise.
18767         * m4/errno_h.m4: Likewise.
18768         * m4/euidaccess.m4: Likewise.
18769         * m4/execute.m4: Likewise.
18770         * m4/fatal-signal.m4: Likewise.
18771         * m4/fchdir.m4: Likewise.
18772         * m4/fcntl_h.m4: Likewise.
18773         * m4/fileblocks.m4: Likewise.
18774         * m4/filenamecat.m4: Likewise.
18775         * m4/findprog.m4: Likewise.
18776         * m4/flexmember.m4: Likewise.
18777         * m4/fnmatch.m4: Likewise.
18778         * m4/fopen.m4: Likewise.
18779         * m4/fpending.m4: Likewise.
18780         * m4/fprintf-posix.m4: Likewise.
18781         * m4/free.m4: Likewise.
18782         * m4/frexp.m4: Likewise.
18783         * m4/frexpl.m4: Likewise.
18784         * m4/fsusage.m4: Likewise.
18785         * m4/ftruncate.m4: Likewise.
18786         * m4/gc-camellia.m4: Likewise.
18787         * m4/gc-random.m4: Likewise.
18788         * m4/gc.m4: Likewise.
18789         * m4/getaddrinfo.m4: Likewise.
18790         * m4/getcwd-abort-bug.m4: Likewise.
18791         * m4/getcwd-path-max.m4: Likewise.
18792         * m4/getdate.m4: Likewise.
18793         * m4/getdomainname.m4: Likewise.
18794         * m4/getgroups.m4: Likewise.
18795         * m4/gethostname.m4: Likewise.
18796         * m4/gethrxtime.m4: Likewise.
18797         * m4/getline.m4: Likewise.
18798         * m4/getloadavg.m4: Likewise.
18799         * m4/getndelim2.m4: Likewise.
18800         * m4/getpass.m4: Likewise.
18801         * m4/gettext.m4: Likewise.
18802         * m4/gettime.m4: Likewise.
18803         * m4/gettimeofday.m4: Likewise.
18804         * m4/gnulib-common.m4: Likewise.
18805         * m4/group-member.m4: Likewise.
18806         * m4/host-os.m4: Likewise.
18807         * m4/iconv.m4: Likewise.
18808         * m4/iconv_open.m4: Likewise.
18809         * m4/inet_ntop.m4: Likewise.
18810         * m4/inet_pton.m4: Likewise.
18811         * m4/inline.m4: Likewise.
18812         * m4/intldir.m4: Likewise.
18813         * m4/intlmacosx.m4: Likewise.
18814         * m4/intmax.m4: Likewise.
18815         * m4/intmax_t.m4: Likewise.
18816         * m4/inttypes.m4: Likewise.
18817         * m4/inttypes_h.m4: Likewise.
18818         * m4/inttypes-pri.m4: Likewise.
18819         * m4/isapipe.m4: Likewise.
18820         * m4/isnand.m4: Likewise.
18821         * m4/isnanf.m4: Likewise.
18822         * m4/isnanl.m4: Likewise.
18823         * m4/javacomp.m4: Likewise.
18824         * m4/javaexec.m4: Likewise.
18825         * m4/jm-winsz1.m4: Likewise.
18826         * m4/jm-winsz2.m4: Likewise.
18827         * m4/lchown.m4: Likewise.
18828         * m4/lcmessage.m4: Likewise.
18829         * m4/ldexpl.m4: Likewise.
18830         * m4/lib-ld.m4: Likewise.
18831         * m4/lib-link.m4: Likewise.
18832         * m4/libsigsegv.m4: Likewise.
18833         * m4/link-follow.m4: Likewise.
18834         * m4/localcharset.m4: Likewise.
18835         * m4/locale-fr.m4: Likewise.
18836         * m4/locale-ja.m4: Likewise.
18837         * m4/locale-tr.m4: Likewise.
18838         * m4/locale-zh.m4: Likewise.
18839         * m4/lock.m4: Likewise.
18840         * m4/longlong.m4: Likewise.
18841         * m4/ls-mntd-fs.m4: Likewise.
18842         * m4/lstat.m4: Likewise.
18843         * m4/malloc.m4: Likewise.
18844         * m4/mathl.m4: Likewise.
18845         * m4/mbrtowc.m4: Likewise.
18846         * m4/mbstate_t.m4: Likewise.
18847         * m4/mbswidth.m4: Likewise.
18848         * m4/memchr.m4: Likewise.
18849         * m4/memcmp.m4: Likewise.
18850         * m4/memcpy.m4: Likewise.
18851         * m4/memmem.m4: Likewise.
18852         * m4/memmove.m4: Likewise.
18853         * m4/mempcpy.m4: Likewise.
18854         * m4/memrchr.m4: Likewise.
18855         * m4/memset.m4: Likewise.
18856         * m4/minmax.m4: Likewise.
18857         * m4/mkdir-slash.m4: Likewise.
18858         * m4/mkdtemp.m4: Likewise.
18859         * m4/mktime.m4: Likewise.
18860         * m4/mmap-anon.m4: Likewise.
18861         * m4/mountlist.m4: Likewise.
18862         * m4/nanosleep.m4: Likewise.
18863         * m4/nls.m4: Likewise.
18864         * m4/nocrash.m4: Likewise.
18865         * m4/open.m4: Likewise.
18866         * m4/openat.m4: Likewise.
18867         * m4/openmp.m4: Likewise.
18868         * m4/pathmax.m4: Likewise.
18869         * m4/perl.m4: Likewise.
18870         * m4/physmem.m4: Likewise.
18871         * m4/pipe.m4: Likewise.
18872         * m4/po.m4: Likewise.
18873         * m4/poll.m4: Likewise.
18874         * m4/posixtm.m4: Likewise.
18875         * m4/posixver.m4: Likewise.
18876         * m4/printf-frexp.m4: Likewise.
18877         * m4/printf-frexpl.m4: Likewise.
18878         * m4/printf-posix.m4: Likewise.
18879         * m4/printf-posix-rpl.m4: Likewise.
18880         * m4/printf.m4: Likewise.
18881         * m4/progtest.m4: Likewise.
18882         * m4/putenv.m4: Likewise.
18883         * m4/readline.m4: Likewise.
18884         * m4/readlink.m4: Likewise.
18885         * m4/readutmp.m4: Likewise.
18886         * m4/realloc.m4: Likewise.
18887         * m4/regex.m4: Likewise.
18888         * m4/relocatable.m4: Likewise.
18889         * m4/relocatable-lib.m4: Likewise.
18890         * m4/rename-dest-slash.m4: Likewise.
18891         * m4/rename.m4: Likewise.
18892         * m4/rmdir-errno.m4: Likewise.
18893         * m4/rmdir.m4: Likewise.
18894         * m4/roundf.m4: Likewise.
18895         * m4/roundl.m4: Likewise.
18896         * m4/rpmatch.m4: Likewise.
18897         * m4/save-cwd.m4: Likewise.
18898         * m4/selinux-selinux-h.m4: Likewise.
18899         * m4/setenv.m4: Likewise.
18900         * m4/settime.m4: Likewise.
18901         * m4/sig2str.m4: Likewise.
18902         * m4/sig_atomic_t.m4: Likewise.
18903         * m4/signalblocking.m4: Likewise.
18904         * m4/signbit.m4: Likewise.
18905         * m4/sigpipe.m4: Likewise.
18906         * m4/sockets.m4: Likewise.
18907         * m4/sockpfaf.m4: Likewise.
18908         * m4/st_dm_mode.m4: Likewise.
18909         * m4/stat-time.m4: Likewise.
18910         * m4/stdbool.m4: Likewise.
18911         * m4/stdint.m4: Likewise.
18912         * m4/stdint_h.m4: Likewise.
18913         * m4/stpcpy.m4: Likewise.
18914         * m4/stpncpy.m4: Likewise.
18915         * m4/strcase.m4: Likewise.
18916         * m4/strchrnul.m4: Likewise.
18917         * m4/strcspn.m4: Likewise.
18918         * m4/strdup.m4: Likewise.
18919         * m4/strftime.m4: Likewise.
18920         * m4/strndup.m4: Likewise.
18921         * m4/strnlen.m4: Likewise.
18922         * m4/strpbrk.m4: Likewise.
18923         * m4/strptime.m4: Likewise.
18924         * m4/strsep.m4: Likewise.
18925         * m4/strtod.m4: Likewise.
18926         * m4/strtoimax.m4: Likewise.
18927         * m4/strtok_r.m4: Likewise.
18928         * m4/strtol.m4: Likewise.
18929         * m4/strtoll.m4: Likewise.
18930         * m4/strtoul.m4: Likewise.
18931         * m4/strtoull.m4: Likewise.
18932         * m4/strtoumax.m4: Likewise.
18933         * m4/strverscmp.m4: Likewise.
18934         * m4/threadlib.m4: Likewise.
18935         * m4/timegm.m4: Likewise.
18936         * m4/tm_gmtoff.m4: Likewise.
18937         * m4/tmpdir.m4: Likewise.
18938         * m4/tmpfile.m4: Likewise.
18939         * m4/tzset.m4: Likewise.
18940         * m4/uintmax_t.m4: Likewise.
18941         * m4/unlinkdir.m4: Likewise.
18942         * m4/unlocked-io.m4: Likewise.
18943         * m4/uptime.m4: Likewise.
18944         * m4/userspec.m4: Likewise.
18945         * m4/utimbuf.m4: Likewise.
18946         * m4/utime.m4: Likewise.
18947         * m4/utimes-null.m4: Likewise.
18948         * m4/utimes.m4: Likewise.
18949         * m4/vararrays.m4: Likewise.
18950         * m4/vasnprintf.m4: Likewise.
18951         * m4/vfprintf-posix.m4: Likewise.
18952         * m4/vprintf-posix.m4: Likewise.
18953         * m4/wait-process.m4: Likewise.
18954         * m4/wchar_t.m4: Likewise.
18955         * m4/wint_t.m4: Likewise.
18956         * m4/write-any-file.m4: Likewise.
18957         * m4/yield.m4: Likewise.
18958
18959 2009-01-13  Bruno Haible  <bruno@clisp.org>
18960
18961         Avoid test-copy-file.sh failures when ACL support insufficient.
18962         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
18963         TESTS_ENVIRONMENT.
18964         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
18965         Reported by Jim Meyering.
18966
18967 2009-01-13  Bruno Haible  <bruno@clisp.org>
18968
18969         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
18970         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
18971         * modules/unistdio/u8-printf-parse (Files): Likewise.
18972         * modules/unistdio/u32-printf-parse (Files): Likewise.
18973         * modules/unistdio/ulc-printf-parse (Files): Likewise.
18974
18975 2009-01-13  Simon Josefsson  <simon@josefsson.org>
18976
18977         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
18978         and m4/inttypes_h.m4 too.
18979
18980 2009-01-12  Eric Blake  <ebb9@byu.net>
18981
18982         tests: IRIX 6.2 cc can't compile -0.0 into .data
18983         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
18984         rather than at compile-time.
18985         * tests/test-floorl.c (minus_zero): Likewise.
18986         * tests/test-frexpl.c (minus_zero): Likewise.
18987         * tests/test-isnan.c (minus_zerol): Likewise.
18988         * tests/test-isnanl.h (minus_zero): Likewise.
18989         * tests/test-ldexpl.c (minus_zero): Likewise.
18990         * tests/test-roundl.c (minus_zero): Likewise.
18991         * tests/test-signbit.c (minus_zerol): Likewise.
18992         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
18993         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
18994         * tests/test-truncl.c (minus_zero): Likewise.
18995         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
18996         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
18997         Reported by Tom G. Christensen and Nelson H. F. Beebe.
18998
18999 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
19000
19001         regex: fix glibc bug 9697
19002         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
19003         handling.
19004
19005 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
19006
19007         regex: fix glibc bug 697
19008         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
19009         being NULL also if there are no backreferences.
19010
19011 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
19012
19013         regex: merge glibc changes
19014         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
19015         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
19016         re_string_skip_chars, re_string_reconstruct): Likewise.
19017         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
19018
19019 2009-01-07  Jim Meyering  <meyering@redhat.com>
19020
19021         poll: filter through cppi
19022         * lib/poll.c: Indent cpp directives to reflect nesting.
19023
19024 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
19025
19026         poll: don't return uninitialized
19027         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
19028
19029 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
19030
19031         avoid compile failure on AIX 6.1
19032         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
19033         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
19034
19035 2009-01-04  Jim Meyering  <meyering@redhat.com>
19036
19037         remove duplicate inclusion of <stdio.h>
19038         * tests/test-fprintf-posix.c: Likewise.
19039         * tests/test-printf-posix.c: Likewise.
19040         * tests/test-snprintf-posix.c: Likewise.
19041         * tests/test-sprintf-posix.c: Likewise.
19042         * tests/test-vasprintf-posix.c: Likewise.
19043         * tests/test-vfprintf-posix.c: Likewise.
19044         * tests/test-vprintf-posix.c: Likewise.
19045         * tests/test-vsnprintf-posix.c: Likewise.
19046         * tests/test-vsprintf-posix.c: Likewise.
19047
19048 2009-01-03  Jim Meyering  <meyering@redhat.com>
19049
19050         gnulib-tool: fix sed-based filtering
19051         * gnulib-tool (func_filter_filelist): Remove extra backslash
19052         in sed_fff_filter definition.
19053
19054 2009-01-02  Jim Meyering  <meyering@redhat.com>
19055
19056         strftime: avoid compilation failure on Solaris 2.6
19057         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
19058         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
19059         Don't #define mbrlen or mbsinit, since now they're guaranteed to
19060         be available.  Reported by Tom G. Christensen.  Details in
19061         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
19062
19063 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19064             Bruno Haible  <bruno@clisp.org>
19065
19066         Speed up gnulib-tool by doing more string processing through shell
19067         built-ins.
19068         * gnulib-tool (fast_func_append): New variable.
19069         (func_remove_prefix, func_remove_suffix): New functions.
19070         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
19071         (func_filter_filelist): New function.
19072         (func_get_dependencies): Use func_remove_suffix instead of sed.
19073         (func_get_automake_snippet): Use func_filter_filelist instead of a
19074         subshell and sed invocation.
19075
19076 2009-01-01  Bruno Haible  <bruno@clisp.org>
19077
19078         Fix a security bug.
19079         * gnulib-tool (func_import, import, update): Don't allow the characters
19080         '"', '$', '`', '\' in macro arguments that become part of commands that
19081         are evaluated.
19082
19083 2009-01-01  Bruno Haible  <bruno@clisp.org>
19084
19085         * gnulib-tool (func_reset_sigpipe): Add more comments.
19086
19087 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19088
19089         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
19090         func_emit_tests_Makefile_am, func_import): Abort loops early if we
19091         already know the answer.
19092
19093 2009-01-01  Jim Meyering  <meyering@redhat.com>
19094
19095         * lib/version-etc.c (version_etc_va): Update copyright year.
19096
19097 2008-12-30  Bruno Haible  <bruno@clisp.org>
19098
19099         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
19100         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
19101         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
19102
19103 2008-12-29  Eric Blake  <ebb9@byu.net>
19104
19105         multiarch: avoid autoconf AC_REQUIRE bug
19106         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
19107         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
19108         2.63 and older.
19109         Reported by Bruno Haible, and analyzed in
19110         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
19111
19112 2008-12-29  Bruno Haible  <bruno@clisp.org>
19113
19114         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
19115         files in subdirectories correctly.
19116         Reported by Ralf Wildenhues.
19117
19118 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19119
19120         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
19121         rather than 'join FILE -', for Solaris join.
19122
19123 2008-12-29  Bruno Haible  <bruno@clisp.org>
19124
19125         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
19126         quoting.
19127         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
19128         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
19129         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
19130         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
19131         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
19132         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
19133         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
19134         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
19135         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
19136         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
19137         * m4/nls.m4 (AM_NLS): Likewise.
19138         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
19139         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
19140         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
19141         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
19142         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
19143         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
19144         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
19145         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
19146         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
19147         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
19148         * m4/xsize.m4 (gl_XSIZE): Likewise.
19149         Suggested by Jim Meyering.
19150
19151 2008-11-17  Bruce Korb  <bkorb@gnu.org>
19152
19153         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
19154         * lib/parse-duration.c: use a switch instead of cascading if's.
19155
19156 2008-12-29  Eric Blake  <ebb9@byu.net>
19157
19158         wchar.h: supply WEOF on Irix 5.3
19159         * lib/wchar.in.h (wint_t): Also supply WEOF.
19160         * lib/wctype.in.h (wint_t): Likewise.
19161         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
19162         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
19163         Reported by Tom G. Christensen.
19164
19165 2008-12-26  Bruno Haible  <bruno@clisp.org>
19166
19167         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
19168         i486, i586, i686.
19169
19170 2008-12-26  Bruno Haible  <bruno@clisp.org>
19171
19172         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
19173
19174 2008-12-26  Bruno Haible  <bruno@clisp.org>
19175
19176         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
19177         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
19178         not __STDC_CONSTANT_MACROS.
19179         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
19180
19181 2008-12-25  Bruno Haible  <bruno@clisp.org>
19182
19183         Add support for universal builds to vasnprintf.
19184         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
19185         universal builds, guess no.
19186         * modules/vasnprintf-posix (Depends-on): Add multiarch.
19187         * modules/vasprintf-posix (Depends-on): Likewise.
19188         * modules/fprintf-posix (Depends-on): Likewise.
19189         * modules/vfprintf-posix (Depends-on): Likewise.
19190         * modules/snprintf-posix (Depends-on): Likewise.
19191         * modules/vsnprintf-posix (Depends-on): Likewise.
19192         * modules/sprintf-posix (Depends-on): Likewise.
19193         * modules/vsprintf-posix (Depends-on): Likewise.
19194         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
19195         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
19196         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
19197         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
19198         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
19199         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
19200         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
19201
19202         Add support for universal builds to <inttypes.h>.
19203         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
19204         _SCNu64_PREFIX): In Apple
19205         universal builds, define directly, using _LP64.
19206         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
19207         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
19208         * modules/inttypes (Depends-on): Add multiarch.
19209         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
19210
19211         Add support for universal builds to <stdint.h>.
19212         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
19213         universal builds, define directly, using _LP64.
19214         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
19215         Apple universal builds, don't test for the size and suffix of ptrdiff_t
19216         and size_t.
19217         * modules/stdint (Depends-on): Add multiarch.
19218         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
19219
19220         New module 'multiarch'.
19221         * modules/multiarch: New file.
19222         * m4/multiarch.m4: New file.
19223
19224 2008-12-25  Bruno Haible  <bruno@clisp.org>
19225
19226         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
19227
19228 2008-12-25  Bruno Haible  <bruno@clisp.org>
19229
19230         * modules/btowc (License): Relicense under LGPLv2+.
19231         * modules/mbsinit (License): Likewise.
19232         * modules/mbrtowc (License): Likewise.
19233         * modules/wcrtomb (License): Likewise.
19234         * modules/streq (License): Likewise.
19235         Reported by David Lutterkort <lutter@redhat.com>.
19236
19237 2008-12-23  Bruno Haible  <bruno@clisp.org>
19238
19239         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
19240
19241 2008-12-23  Bruno Haible  <bruno@clisp.org>
19242
19243         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
19244         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
19245         GETADDRINFO_LIB, not in LIBS.
19246         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
19247         * modules/canon-host (Link): Likewise.
19248         * NEWS: Mention the change.
19249         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
19250         GETADDRINFO_LIB.
19251
19252 2008-12-22  Bruno Haible  <bruno@clisp.org>
19253
19254         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
19255         * doc/posix-functions/iswalpha_l.texi: Likewise.
19256         * doc/posix-functions/iswblank_l.texi: Likewise.
19257         * doc/posix-functions/iswcntrl_l.texi: Likewise.
19258         * doc/posix-functions/iswctype_l.texi: Likewise.
19259         * doc/posix-functions/iswdigit_l.texi: Likewise.
19260         * doc/posix-functions/iswgraph_l.texi: Likewise.
19261         * doc/posix-functions/iswlower_l.texi: Likewise.
19262         * doc/posix-functions/iswprint_l.texi: Likewise.
19263         * doc/posix-functions/iswpunct_l.texi: Likewise.
19264         * doc/posix-functions/iswspace_l.texi: Likewise.
19265         * doc/posix-functions/iswupper_l.texi: Likewise.
19266         * doc/posix-functions/iswxdigit_l.texi: Likewise.
19267         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
19268         * doc/posix-functions/open_wmemstream.texi: Likewise.
19269         * doc/posix-functions/swscanf.texi: Likewise.
19270         * doc/posix-functions/towctrans_l.texi: Likewise.
19271         * doc/posix-functions/towlower.texi: Likewise.
19272         * doc/posix-functions/towlower_l.texi: Likewise.
19273         * doc/posix-functions/towupper.texi: Likewise.
19274         * doc/posix-functions/towupper_l.texi: Likewise.
19275         * doc/posix-functions/vfwprintf.texi: Likewise.
19276         * doc/posix-functions/vfwscanf.texi: Likewise.
19277         * doc/posix-functions/vswscanf.texi: Likewise.
19278         * doc/posix-functions/vwprintf.texi: Likewise.
19279         * doc/posix-functions/vwscanf.texi: Likewise.
19280         * doc/posix-functions/wcpcpy.texi: Likewise.
19281         * doc/posix-functions/wcpncpy.texi: Likewise.
19282         * doc/posix-functions/wcscasecmp.texi: Likewise.
19283         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
19284         * doc/posix-functions/wcscoll_l.texi: Likewise.
19285         * doc/posix-functions/wcsdup.texi: Likewise.
19286         * doc/posix-functions/wcsncasecmp.texi: Likewise.
19287         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
19288         * doc/posix-functions/wcsnlen.texi: Likewise.
19289         * doc/posix-functions/wcsnrtombs.texi: Likewise.
19290         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
19291         * doc/posix-functions/wctrans_l.texi: Likewise.
19292         * doc/posix-functions/wctype_l.texi: Likewise.
19293         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
19294         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
19295         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
19296         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
19297         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
19298         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
19299         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
19300         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
19301         * doc/glibc-functions/wcschrnul.texi: Likewise.
19302         * doc/glibc-functions/wcsftime_l.texi: Likewise.
19303         * doc/glibc-functions/wcstod_l.texi: Likewise.
19304         * doc/glibc-functions/wcstof_l.texi: Likewise.
19305         * doc/glibc-functions/wcstol_l.texi: Likewise.
19306         * doc/glibc-functions/wcstold_l.texi: Likewise.
19307         * doc/glibc-functions/wcstoll_l.texi: Likewise.
19308         * doc/glibc-functions/wcstoq.texi: Likewise.
19309         * doc/glibc-functions/wcstoul_l.texi: Likewise.
19310         * doc/glibc-functions/wcstoull_l.texi: Likewise.
19311         * doc/glibc-functions/wcstouq.texi: Likewise.
19312         * doc/glibc-functions/wmempcpy.texi: Likewise.
19313
19314 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
19315             Eric Blake  <ebb9@byu.net>
19316             Paolo Bonzini  <bonzini@gnu.org>
19317             Bruno Haible  <bruno@clisp.org>
19318
19319         Make c-stack work on Haiku.
19320         * lib/c-stack.c (SA_ONSTACK): Define fallback.
19321         (c_stack_action): Use SA_ONSTACK flag.
19322
19323 2008-12-22  Bruno Haible  <bruno@clisp.org>
19324
19325         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
19326
19327 2008-12-22  Bruno Haible  <bruno@clisp.org>
19328
19329         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
19330         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
19331         being overridden.
19332         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
19333         New macros.
19334         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
19335         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
19336         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
19337         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
19338
19339 2008-12-22  Bruno Haible  <bruno@clisp.org>
19340
19341         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
19342         from test code.
19343
19344 2008-12-22  Eric Blake  <ebb9@byu.net>
19345
19346         Avoid gcc warnings on cygwin.
19347         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
19348         Avoid unused variable.
19349         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
19350         Likewise.
19351
19352 2008-12-22  Bruno Haible  <bruno@clisp.org>
19353
19354         Remove HAVE_MBRTOWC conditionals.
19355         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
19356         (mbscasecmp): Assume mbrtowc function.
19357         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
19358         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
19359         * lib/mbschr.c: Include mbuiter.h unconditionally.
19360         (mbschr): Assume mbrtowc function.
19361         * lib/mbscspn.c: Include mbuiter.h unconditionally.
19362         (mbscspn): Assume mbrtowc function.
19363         * lib/mbslen.c: Include mbuiter.h unconditionally.
19364         (mbslen): Assume mbrtowc function.
19365         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
19366         (mbsncasecmp): Assume mbrtowc function.
19367         * lib/mbsnlen.c: Include mbiter.h unconditionally.
19368         (mbsnlen): Assume mbrtowc function.
19369         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
19370         (mbspbrk): Assume mbrtowc function.
19371         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
19372         (mbspcasecmp): Assume mbrtowc function.
19373         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
19374         (mbsrchr): Assume mbrtowc function.
19375         * lib/mbssep.c: Include mbuiter.h unconditionally.
19376         (mbssep): Assume mbrtowc function.
19377         * lib/mbsspn.c: Include mbuiter.h unconditionally.
19378         (mbsspn): Assume mbrtowc function.
19379         * lib/mbsstr.c: Include mbuiter.h unconditionally.
19380         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
19381         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
19382         (mbstok_r): Assume mbrtowc function.
19383         * lib/propername.c: Include mbuiter.h unconditionally.
19384         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
19385         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
19386         (trim2): Assume mbrtowc function.
19387         * lib/mbswidth.c (mbsinit): Remove fallback definition.
19388         (mbsnwidth): Assume mbrtowc function.
19389         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
19390         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
19391         fallback definitions.
19392         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
19393
19394 2008-12-22  Bruno Haible  <bruno@clisp.org>
19395
19396         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
19397
19398 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
19399
19400         * modules/regex: Request emulations for the mb*/wc* functions we need.
19401         * m4/regex.m4: Don't look for those functions here.
19402         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
19403
19404 2008-12-22  Bruno Haible  <bruno@clisp.org>
19405
19406         * modules/fnmatch (Depends-on): Remove duplicated dependency.
19407
19408 2008-12-21  Bruno Haible  <bruno@clisp.org>
19409
19410         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
19411         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
19412         (Include): Remove conditionalization.
19413         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
19414         (Include): Remove conditionalization.
19415         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
19416         (Include): Remove conditionalization.
19417         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
19418         * m4/mbfile.m4 (gl_MBFILE): Likewise.
19419         * NEWS: Mention the change.
19420         Reported by Alan Hourihane <alanh@fairlite.co.uk>
19421         via Sergey Poznyakoff <gray@gnu.org.ua>.
19422
19423 2008-12-21  Bruno Haible  <bruno@clisp.org>
19424
19425         * MODULES.html.sh (Extended multibyte and wide character utilities
19426         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
19427         wcrtomb, wcsrtombs.
19428         (Support for systems lacking POSIX:2008): Add accept, bind, close,
19429         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
19430         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
19431         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
19432
19433 2008-12-21  Bruno Haible  <bruno@clisp.org>
19434
19435         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
19436
19437 2008-12-21  Bruno Haible  <bruno@clisp.org>
19438
19439         * modules/wcsnrtombs-tests: New file.
19440         * tests/test-wcsnrtombs1.sh: New file.
19441         * tests/test-wcsnrtombs2.sh: New file.
19442         * tests/test-wcsnrtombs3.sh: New file.
19443         * tests/test-wcsnrtombs4.sh: New file.
19444         * tests/test-wcsnrtombs.c: New file.
19445
19446         New module 'wcsnrtombs'.
19447         * lib/wchar.in.h (wcsnrtombs): New declaration.
19448         * lib/wcsnrtombs.c: New file.
19449         * lib/wcsrtombs-state.c: New file.
19450         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
19451         (internal_state): Remove variable.
19452         * m4/wcsnrtombs.m4: New file.
19453         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
19454         compilation units.
19455         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
19456         HAVE_WCSNRTOMBS.
19457         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
19458         HAVE_WCSNRTOMBS.
19459         * modules/wcsnrtombs: New file.
19460         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
19461         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
19462
19463 2008-12-21  Bruno Haible  <bruno@clisp.org>
19464
19465         * modules/wcsrtombs-tests: New file.
19466         * tests/test-wcsrtombs1.sh: New file.
19467         * tests/test-wcsrtombs2.sh: New file.
19468         * tests/test-wcsrtombs3.sh: New file.
19469         * tests/test-wcsrtombs4.sh: New file.
19470         * tests/test-wcsrtombs.c: New file.
19471
19472         New module 'wcsrtombs'.
19473         * lib/wchar.in.h (wcsrtombs): New declaration.
19474         * lib/wcsrtombs.c: New file.
19475         * m4/wcsrtombs.m4: New file.
19476         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
19477         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
19478         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
19479         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
19480         * modules/wcsrtombs: New file.
19481         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
19482         bugs.
19483
19484 2008-12-21  Bruno Haible  <bruno@clisp.org>
19485
19486         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
19487         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
19488         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
19489         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
19490         if not correct.
19491         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
19492         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
19493         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
19494         m4/locale-zh.m4, m4/codeset.m4.
19495         * doc/posix-functions/wcrtomb.texi: Document the bug.
19496
19497 2008-12-21  Bruno Haible  <bruno@clisp.org>
19498
19499         Work around a btowc() bug on IRIX 6.5.
19500         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
19501         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
19502         REPLACE_WTOBC if not.
19503         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
19504         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
19505         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
19506
19507 2008-12-21  Bruno Haible  <bruno@clisp.org>
19508
19509         * modules/wcrtomb-tests: New file.
19510         * tests/test-wcrtomb.sh: New file.
19511         * tests/test-wcrtomb.c: New file.
19512
19513         New module 'wcrtomb'.
19514         * lib/wchar.in.h (wcrtomb): New declaration.
19515         * lib/wcrtomb.c: New file.
19516         * m4/wcrtomb.m4: New file.
19517         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
19518         HAVE_WCRTOMB.
19519         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
19520         HAVE_WCRTOMB.
19521         * modules/wcrtomb: New file.
19522         * doc/posix-functions/wcrtomb.texi: Mention the new module.
19523
19524 2008-12-21  Bruno Haible  <bruno@clisp.org>
19525
19526         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
19527         * modules/mbsrtowcs (Files): Likewise.
19528         * modules/wctob (Files): Likewise.
19529         * modules/c-strcase-tests (Files): Likewise.
19530         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
19531         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
19532         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
19533         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
19534         * modules/vasnprintf-posix-tests (Files): Likewise.
19535
19536 2008-12-21  William Pursell  <bill.pursell@gmail.com>
19537
19538         gitlog-to-changelog: pass all command-line arguments to git-log
19539         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
19540         it is sometimes convenient to filter the commits in various ways.
19541         gitlog-to-changelog only allows --since to specify a start date,
19542         but git-log itself supports many other filtering mechanisms.
19543         At the moment, I want to filter by branch name.  Rather than
19544         adding a --branch option to gitlog-to-changelog, it seems more
19545         flexible to simply pass all options directly to git-log and let
19546         git do the work.  Notice that this effectively makes --since a
19547         redundant option for gitlog-to-changelog, but removing it would
19548         require current usage to change since calls would then require
19549         an additional '--'.
19550
19551 2008-12-21  Bruno Haible  <bruno@clisp.org>
19552
19553         * modules/mbsnrtowcs-tests: New file.
19554         * tests/test-mbsnrtowcs1.sh: New file.
19555         * tests/test-mbsnrtowcs2.sh: New file.
19556         * tests/test-mbsnrtowcs3.sh: New file.
19557         * tests/test-mbsnrtowcs4.sh: New file.
19558         * tests/test-mbsnrtowcs.c: New file.
19559
19560         New module 'mbsnrtowcs'.
19561         * lib/wchar.in.h (mbsnrtowcs): New declaration.
19562         * lib/mbsnrtowcs.c: New file.
19563         * lib/mbsrtowcs-state.c: New file.
19564         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
19565         (internal_state): Remove variable.
19566         * m4/mbsnrtowcs.m4: New file.
19567         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
19568         compilation units.
19569         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
19570         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
19571         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
19572         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
19573         * modules/mbsnrtowcs: New file.
19574         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
19575         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
19576         portability problem.
19577
19578 2008-12-21  Bruno Haible  <bruno@clisp.org>
19579
19580         Work around mbsrtowcs bug.
19581         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
19582         (gl_FUNC_MBSRTOWCS): Invoke it.
19583         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
19584         m4/locale-zh.m4.
19585         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
19586
19587 2008-12-21  Bruno Haible  <bruno@clisp.org>
19588
19589         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
19590
19591 2008-12-21  Bruno Haible  <bruno@clisp.org>
19592
19593         Update doc for AIX.
19594         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
19595         16-bit wchar_t type.
19596         * doc/posix-functions/btowc.texi: Likewise.
19597         * doc/posix-functions/fgetwc.texi: Likewise.
19598         * doc/posix-functions/fgetws.texi: Likewise.
19599         * doc/posix-functions/fputwc.texi: Likewise.
19600         * doc/posix-functions/fputws.texi: Likewise.
19601         * doc/posix-functions/fwide.texi: Likewise.
19602         * doc/posix-functions/fwprintf.texi: Likewise.
19603         * doc/posix-functions/fwscanf.texi: Likewise.
19604         * doc/posix-functions/getwchar.texi: Likewise.
19605         * doc/posix-functions/getwc.texi: Likewise.
19606         * doc/posix-functions/iswalnum.texi: Likewise.
19607         * doc/posix-functions/iswalpha.texi: Likewise.
19608         * doc/posix-functions/iswblank.texi: Likewise.
19609         * doc/posix-functions/iswcntrl.texi: Likewise.
19610         * doc/posix-functions/iswctype.texi: Likewise.
19611         * doc/posix-functions/iswdigit.texi: Likewise.
19612         * doc/posix-functions/iswgraph.texi: Likewise.
19613         * doc/posix-functions/iswlower.texi: Likewise.
19614         * doc/posix-functions/iswprint.texi: Likewise.
19615         * doc/posix-functions/iswpunct.texi: Likewise.
19616         * doc/posix-functions/iswspace.texi: Likewise.
19617         * doc/posix-functions/iswupper.texi: Likewise.
19618         * doc/posix-functions/iswxdigit.texi: Likewise.
19619         * doc/posix-functions/mbrtowc.texi: Likewise.
19620         * doc/posix-functions/mbsrtowcs.texi: Likewise.
19621         * doc/posix-functions/mbstowcs.texi: Likewise.
19622         * doc/posix-functions/mbtowc.texi: Likewise.
19623         * doc/posix-functions/putwchar.texi: Likewise.
19624         * doc/posix-functions/putwc.texi: Likewise.
19625         * doc/posix-functions/swprintf.texi: Likewise.
19626         * doc/posix-functions/tolower.texi: Likewise.
19627         * doc/posix-functions/toupper.texi: Likewise.
19628         * doc/posix-functions/towctrans.texi: Likewise.
19629         * doc/posix-functions/ungetwc.texi: Likewise.
19630         * doc/posix-functions/vswprintf.texi: Likewise.
19631         * doc/posix-functions/wcrtomb.texi: Likewise.
19632         * doc/posix-functions/wcscat.texi: Likewise.
19633         * doc/posix-functions/wcschr.texi: Likewise.
19634         * doc/posix-functions/wcscmp.texi: Likewise.
19635         * doc/posix-functions/wcscoll.texi: Likewise.
19636         * doc/posix-functions/wcscpy.texi: Likewise.
19637         * doc/posix-functions/wcscspn.texi: Likewise.
19638         * doc/posix-functions/wcsftime.texi: Likewise.
19639         * doc/posix-functions/wcslen.texi: Likewise.
19640         * doc/posix-functions/wcsncat.texi: Likewise.
19641         * doc/posix-functions/wcsncmp.texi: Likewise.
19642         * doc/posix-functions/wcsncpy.texi: Likewise.
19643         * doc/posix-functions/wcspbrk.texi: Likewise.
19644         * doc/posix-functions/wcsrchr.texi: Likewise.
19645         * doc/posix-functions/wcsrtombs.texi: Likewise.
19646         * doc/posix-functions/wcsspn.texi: Likewise.
19647         * doc/posix-functions/wcsstr.texi: Likewise.
19648         * doc/posix-functions/wcstod.texi: Likewise.
19649         * doc/posix-functions/wcstof.texi: Likewise.
19650         * doc/posix-functions/wcstoimax.texi: Likewise.
19651         * doc/posix-functions/wcstok.texi: Likewise.
19652         * doc/posix-functions/wcstold.texi: Likewise.
19653         * doc/posix-functions/wcstoll.texi: Likewise.
19654         * doc/posix-functions/wcstol.texi: Likewise.
19655         * doc/posix-functions/wcstombs.texi: Likewise.
19656         * doc/posix-functions/wcstoull.texi: Likewise.
19657         * doc/posix-functions/wcstoul.texi: Likewise.
19658         * doc/posix-functions/wcstoumax.texi: Likewise.
19659         * doc/posix-functions/wcswidth.texi: Likewise.
19660         * doc/posix-functions/wcsxfrm.texi: Likewise.
19661         * doc/posix-functions/wctob.texi: Likewise.
19662         * doc/posix-functions/wctomb.texi: Likewise.
19663         * doc/posix-functions/wctrans.texi: Likewise.
19664         * doc/posix-functions/wctype.texi: Likewise.
19665         * doc/posix-functions/wcwidth.texi: Likewise.
19666         * doc/posix-functions/wmemchr.texi: Likewise.
19667         * doc/posix-functions/wmemcmp.texi: Likewise.
19668         * doc/posix-functions/wmemcpy.texi: Likewise.
19669         * doc/posix-functions/wmemmove.texi: Likewise.
19670         * doc/posix-functions/wmemset.texi: Likewise.
19671         * doc/posix-functions/wprintf.texi: Likewise.
19672         * doc/posix-functions/wscanf.texi: Likewise.
19673
19674 2008-12-21  Bruno Haible  <bruno@clisp.org>
19675
19676         Update doc for HP-UX 11.11.
19677         * doc/posix-functions/btowc.texi: Clarify that the function is missing
19678         in HP-UX version 11.00, not in all versions of HP-UX 11.
19679         * doc/posix-functions/fwide.texi: Likewise.
19680         * doc/posix-functions/fwprintf.texi: Likewise.
19681         * doc/posix-functions/fwscanf.texi: Likewise.
19682         * doc/posix-functions/inet_ntop.texi: Likewise.
19683         * doc/posix-functions/inet_pton.texi: Likewise.
19684         * doc/posix-functions/mbrlen.texi: Likewise.
19685         * doc/posix-functions/mbrtowc.texi: Likewise.
19686         * doc/posix-functions/mbsinit.texi: Likewise.
19687         * doc/posix-functions/mbsrtowcs.texi: Likewise.
19688         * doc/posix-functions/swprintf.texi: Likewise.
19689         * doc/posix-functions/swscanf.texi: Likewise.
19690         * doc/posix-functions/towctrans.texi: Likewise.
19691         * doc/posix-functions/vfwprintf.texi: Likewise.
19692         * doc/posix-functions/vswprintf.texi: Likewise.
19693         * doc/posix-functions/vwprintf.texi: Likewise.
19694         * doc/posix-functions/wcrtomb.texi: Likewise.
19695         * doc/posix-functions/wcsrtombs.texi: Likewise.
19696         * doc/posix-functions/wcsstr.texi: Likewise.
19697         * doc/posix-functions/wctob.texi: Likewise.
19698         * doc/posix-functions/wctrans.texi: Likewise.
19699         * doc/posix-functions/wmemchr.texi: Likewise.
19700         * doc/posix-functions/wmemcmp.texi: Likewise.
19701         * doc/posix-functions/wmemcpy.texi: Likewise.
19702         * doc/posix-functions/wmemmove.texi: Likewise.
19703         * doc/posix-functions/wmemset.texi: Likewise.
19704         * doc/posix-functions/wprintf.texi: Likewise.
19705         * doc/posix-functions/wscanf.texi: Likewise.
19706
19707 2008-12-21  Bruno Haible  <bruno@clisp.org>
19708
19709         Work around a portability problem.
19710         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
19711         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
19712
19713 2008-12-20  Bruno Haible  <bruno@clisp.org>
19714
19715         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
19716         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
19717         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
19718         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
19719         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
19720
19721         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
19722         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
19723         set.
19724         (GNULIB_defined_mbstate_t): New macro.
19725         (mbsinit): Redefine if REPLACE_MBSINIT is set.
19726         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
19727         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
19728         reuses the system's mbrtowc function but works around the bugs.
19729         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
19730         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
19731         macros.
19732         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
19733         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
19734         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
19735         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
19736         REPLACE_MBSINIT if mbsinit needs to be overridden.
19737         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
19738         REPLACE_MBSINIT, REPLACE_MBRTOWC.
19739         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
19740         REPLACE_MBSINIT, REPLACE_MBRTOWC.
19741         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
19742         m4/locale-zh.m4.
19743         (Depends): Add mbsinit.
19744         * modules/mbsinit (Depends): Add mbrtowc.
19745         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
19746
19747 2008-12-20  Bruno Haible  <bruno@clisp.org>
19748
19749         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
19750         so that there are no conversion errors on AIX.
19751         * tests/test-mbsrtowcs.c (main): LIkewise.
19752
19753 2008-12-20  Bruno Haible  <bruno@clisp.org>
19754
19755         Work around wctob bug on Solaris <= 9.
19756         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
19757         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
19758         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
19759         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
19760         * modules/wctob (Files): Add m4/locale-fr.m4.
19761         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
19762
19763 2008-12-20  Bruno Haible  <bruno@clisp.org>
19764
19765         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
19766         /dev/null.
19767         * tests/test-select-in.sh: Likewise.
19768         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
19769
19770 2008-12-20  Bruno Haible  <bruno@clisp.org>
19771
19772         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
19773         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
19774         Cygwin 1.5.x.
19775
19776 2008-12-20  Bruno Haible  <bruno@clisp.org>
19777
19778         Ensure mbstate_t is defined on HP-UX 11.11.
19779         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
19780         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
19781         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
19782         AC_USE_SYSTEM_EXTENSIONS.
19783         * modules/fnmatch (Depends-on): Add extensions.
19784         * modules/mbrlen (Depends-on): Likewise.
19785         * modules/mbrtowc (Depends-on): Likewise.
19786         * modules/mbsinit (Depends-on): Likewise.
19787         * modules/mbsrtowcs (Depends-on): Likewise.
19788         * modules/mbswidth (Depends-on): Likewise.
19789         * modules/quotearg (Depends-on): Likewise.
19790         * modules/strftime (Depends-on): Likewise.
19791
19792 2008-12-20  Bruno Haible  <bruno@clisp.org>
19793
19794         Ensure wctob is declared on IRIX 6.5.
19795         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
19796         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
19797         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
19798         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
19799         of HAVE_WCTOB.
19800         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
19801         HAVE_WCTOB.
19802         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
19803
19804 2008-12-19  Bruno Haible  <bruno@clisp.org>
19805
19806         * modules/mbsrtowcs-tests: New file.
19807         * tests/test-mbsrtowcs1.sh: New file.
19808         * tests/test-mbsrtowcs2.sh: New file.
19809         * tests/test-mbsrtowcs3.sh: New file.
19810         * tests/test-mbsrtowcs4.sh: New file.
19811         * tests/test-mbsrtowcs.c: New file.
19812
19813         New module 'mbsrtowcs'.
19814         * lib/wchar.in.h (mbsrtowcs): New declaration.
19815         * lib/mbsrtowcs.c: New file.
19816         * m4/mbsrtowcs.m4: New file.
19817         * modules/mbsrtowcs: New file.
19818         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
19819         HAVE_MBSRTOWCS.
19820         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
19821         HAVE_MBSRTOWCS.
19822         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
19823
19824 2008-12-19  Bruno Haible  <bruno@clisp.org>
19825
19826         New module 'mbrlen'.
19827         * lib/wchar.in.h (mbrlen): New declaration.
19828         * lib/mbrlen.c: New file.
19829         * m4/mbrlen.m4: New file.
19830         * modules/mbrlen: New file.
19831         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
19832         HAVE_MBRLEN.
19833         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
19834         HAVE_MBRLEN.
19835         * doc/posix-functions/mbrlen.texi: Document the new module.
19836
19837 2008-12-19  Bruno Haible  <bruno@clisp.org>
19838
19839         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
19840         * modules/mbrtowc (Depends-on): Add verify.
19841         Suggested by Paul Eggert.
19842
19843 2008-12-18  Bruno Haible  <bruno@clisp.org>
19844
19845         * modules/mbsinit-tests: New file.
19846         * tests/test-mbsinit.sh: New file.
19847         * tests/test-mbsinit.c: New file.
19848
19849 2008-12-18  Bruno Haible  <bruno@clisp.org>
19850
19851         * modules/mbrtowc-tests: New file.
19852         * tests/test-mbrtowc1.sh: New file.
19853         * tests/test-mbrtowc2.sh: New file.
19854         * tests/test-mbrtowc3.sh: New file.
19855         * tests/test-mbrtowc4.sh: New file.
19856         * tests/test-mbrtowc.c: New file.
19857
19858         New module 'mbrtowc'.
19859         * lib/wchar.in.h (mbstate_t): Override when the system does not have
19860         mbsinit and mbrtowc.
19861         (mbrtowc): New declaration.
19862         * lib/mbrtowc.c: New file.
19863         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
19864         * modules/mbrtowc: New file.
19865         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
19866         HAVE_MBRTOWC.
19867         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
19868         HAVE_MBRTOWC.
19869         * doc/posix-functions/mbrtowc.texi: Document the new module.
19870
19871 2008-12-18  Bruno Haible  <bruno@clisp.org>
19872
19873         New module 'wctob'.
19874         * lib/wchar.in.h (wctob): New declaration.
19875         * lib/wctob.c: New file.
19876         * m4/wctob.m4: New file.
19877         * modules/wctob: New file.
19878         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
19879         HAVE_WCTOB.
19880         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
19881         * doc/posix-functions/wctob.texi: Document the new module.
19882
19883 2008-12-18  Bruno Haible  <bruno@clisp.org>
19884
19885         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
19886         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
19887
19888 2008-12-18  Simon Josefsson  <simon@josefsson.org>
19889
19890         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
19891         G. Christensen" <tgc@jupiterrise.com>.
19892
19893         * lib/flock.c: Need to include errno.h.  Reported by "Tom
19894         G. Christensen" <tgc@jupiterrise.com>.
19895
19896         * lib/flock.c: Need to include string.h.  Reported by "Tom
19897         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
19898         <ebb9@byu.net>.
19899
19900 2008-12-18  Bruno Haible  <bruno@clisp.org>
19901
19902         * m4/locale-ja.m4: New file, from GNU gettext.
19903
19904 2008-12-17  Bruno Haible  <bruno@clisp.org>
19905
19906         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
19907         Suggested by Eric Blake.
19908
19909 2008-12-17  Bruno Haible  <bruno@clisp.org>
19910
19911         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
19912
19913 2008-12-17  Bruno Haible  <bruno@clisp.org>
19914
19915         * lib/mbsinit.c: Include verify.h. Verify an assumption.
19916         * modules/mbsinit (Depends-on): Add verify.
19917         Suggested by Paul Eggert.
19918
19919 2008-12-17  Bruno Haible  <bruno@clisp.org>
19920
19921         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
19922         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
19923         gl_FUNC_MBRTOWC.
19924         * m4/mbiter.m4 (gl_MBITER): LIkewise.
19925         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
19926         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
19927         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
19928         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
19929         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
19930         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
19931         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
19932         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
19933         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
19934         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
19935         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
19936         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
19937         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
19938         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
19939         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19940         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
19941         * modules/trim (configure.ac): Likewise.
19942
19943 2008-12-17  Bruno Haible  <bruno@clisp.org>
19944
19945         * modules/btowc-tests: New file.
19946         * tests/test-btowc1.sh: New file.
19947         * tests/test-btowc2.sh: New file.
19948         * tests/test-btowc.c: New file.
19949
19950         New module 'btowc'.
19951         * lib/wchar.in.h (btowc): New declaration.
19952         * lib/btowc.c: New file.
19953         * m4/btowc.m4: New file.
19954         * modules/btowc: New file.
19955         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
19956         HAVE_BTOWC.
19957         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
19958         * doc/posix-functions/btowc.texi: Document the new module.
19959
19960 2008-12-17  Bruno Haible  <bruno@clisp.org>
19961
19962         New module 'mbsinit'.
19963         * lib/wchar.in.h (mbsinit): New declaration.
19964         * lib/mbsinit.c: New file.
19965         * m4/mbsinit.m4: New file.
19966         * modules/mbsinit: New file.
19967         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
19968         HAVE_MBSINIT.
19969         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
19970         HAVE_MBSINIT.
19971         * doc/posix-functions/mbsinit.texi: Document the new module.
19972
19973 2008-12-16  Bruno Haible  <bruno@clisp.org>
19974
19975         * lib/unistd.in.h: Add comment.
19976         * tests/test-environ.c: Don't include <stdlib.h>.
19977
19978 2008-12-16  Bruno Haible  <bruno@clisp.org>
19979
19980         * lib/parse-duration.h (parse_duration): Document return value
19981         convention.
19982         * lib/parse-duration.c: Include specification header first. Add
19983         comments.
19984         (_): Remove macro.
19985         (parse_year_month_day, parse_hour_minute_second): Move side effects
19986         outside of strchr call.
19987         (parse_non_iso8601): Move side effects outside of isspace call.
19988         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
19989         call.
19990
19991 2008-12-16  Bruno Haible  <bruno@clisp.org>
19992
19993         * tests/test-parse-duration.sh: Produce no output when the test
19994         succeeds.
19995
19996 2008-12-16  Bruno Haible  <bruno@clisp.org>
19997
19998         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
19999         expressions.
20000
20001 2008-12-15  Bruno Haible  <bruno@clisp.org>
20002
20003         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
20004         * doc/glibc-functions/flistxattr.texi: Likewise.
20005         * doc/glibc-functions/fopencookie.texi: Likewise.
20006         * doc/glibc-functions/fremovexattr.texi: Likewise.
20007         * doc/glibc-functions/fsetxattr.texi: Likewise.
20008         * doc/glibc-functions/getxattr.texi: Likewise.
20009         * doc/glibc-functions/lgetxattr.texi: Likewise.
20010         * doc/glibc-functions/listxattr.texi: Likewise.
20011         * doc/glibc-functions/llistxattr.texi: Likewise.
20012         * doc/glibc-functions/lremovexattr.texi: Likewise.
20013         * doc/glibc-functions/lsetxattr.texi: Likewise.
20014         * doc/glibc-functions/removexattr.texi: Likewise.
20015         * doc/glibc-functions/setxattr.texi: Likewise.
20016         * doc/posix-functions/open_memstream.texi: Likewise.
20017
20018 2008-12-15  Eric Blake  <ebb9@byu.net>
20019
20020         Update doc for cygwin 1.7.
20021         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
20022         functions.
20023         * doc/posix-functions/fchmodat.texi: Likewise.
20024         * doc/posix-functions/fchownat.texi: Likewise.
20025         * doc/posix-functions/fdopendir.texi: Likewise.
20026         * doc/posix-functions/fmemopen.texi: Likewise.
20027         * doc/posix-functions/freeaddrinfo.texi: Likewise.
20028         * doc/posix-functions/fstatat.texi: Likewise.
20029         * doc/posix-functions/futimens.texi: Likewise.
20030         * doc/posix-functions/gai_strerror.texi: Likewise.
20031         * doc/posix-functions/getaddrinfo.texi: Likewise.
20032         * doc/posix-functions/getnameinfo.texi: Likewise.
20033         * doc/posix-functions/if_freenameindex.texi: Likewise.
20034         * doc/posix-functions/if_indextoname.texi: Likewise.
20035         * doc/posix-functions/if_nameindex.texi: Likewise.
20036         * doc/posix-functions/if_nametoindex.texi: Likewise.
20037         * doc/posix-functions/insque.texi: Likewise.
20038         * doc/posix-functions/linkat.texi: Likewise.
20039         * doc/posix-functions/llrint.texi: Likewise.
20040         * doc/posix-functions/llrintf.texi: Likewise.
20041         * doc/posix-functions/llrintl.texi: Likewise.
20042         * doc/posix-functions/lockf.texi: Likewise.
20043         * doc/posix-functions/lrintl.texi: Likewise.
20044         * doc/posix-functions/mkdirat.texi: Likewise.
20045         * doc/posix-functions/mkfifoat.texi: Likewise.
20046         * doc/posix-functions/mknodat.texi: Likewise.
20047         * doc/posix-functions/mq_close.texi: Likewise.
20048         * doc/posix-functions/mq_getattr.texi: Likewise.
20049         * doc/posix-functions/mq_notify.texi: Likewise.
20050         * doc/posix-functions/mq_open.texi: Likewise.
20051         * doc/posix-functions/mq_receive.texi: Likewise.
20052         * doc/posix-functions/mq_send.texi: Likewise.
20053         * doc/posix-functions/mq_setattr.texi: Likewise.
20054         * doc/posix-functions/mq_timedreceive.texi: Likewise.
20055         * doc/posix-functions/mq_timedsend.texi: Likewise.
20056         * doc/posix-functions/mq_unlink.texi: Likewise.
20057         * doc/posix-functions/open_memstream.texi: Likewise.
20058         * doc/posix-functions/openat.texi: Likewise.
20059         * doc/posix-functions/posix_fadvise.texi: Likewise.
20060         * doc/posix-functions/posix_fallocate.texi: Likewise.
20061         * doc/posix-functions/posix_madvise.texi: Likewise.
20062         * doc/posix-functions/posix_memalign.texi: Likewise.
20063         * doc/posix-functions/posix_openpt.texi: Likewise.
20064         * doc/posix-functions/readlinkat.texi: Likewise.
20065         * doc/posix-functions/remque.texi: Likewise.
20066         * doc/posix-functions/renameat.texi: Likewise.
20067         * doc/posix-functions/rintl.texi: Likewise.
20068         * doc/posix-functions/sem_unlink.texi: Likewise.
20069         * doc/posix-functions/shm_open.texi: Likewise.
20070         * doc/posix-functions/shm_unlink.texi: Likewise.
20071         * doc/posix-functions/signgam.texi: Likewise.
20072         * doc/posix-functions/sigset.texi: Likewise.
20073         * doc/posix-functions/stpcpy.texi: Likewise.
20074         * doc/posix-functions/stpncpy.texi: Likewise.
20075         * doc/posix-functions/strerror.texi: Likewise.
20076         * doc/posix-functions/strtod.texi: Likewise.
20077         * doc/posix-functions/symlinkat.texi: Likewise.
20078         * doc/posix-functions/unlinkat.texi: Likewise.
20079         * doc/posix-functions/utimensat.texi: Likewise.
20080         * doc/glibc-functions/bindresvport.texi: Likewise.
20081         * doc/glibc-functions/dn_expand.texi: Likewise.
20082         * doc/glibc-functions/exp10.texi: Likewise.
20083         * doc/glibc-functions/exp10f.texi: Likewise.
20084         * doc/glibc-functions/fgetxattr.texi: Likewise.
20085         * doc/glibc-functions/flistxattr.texi: Likewise.
20086         * doc/glibc-functions/fopencookie.texi: Likewise.
20087         * doc/glibc-functions/freeifaddrs.texi: Likewise.
20088         * doc/glibc-functions/fremovexattr.texi: Likewise.
20089         * doc/glibc-functions/fsetxattr.texi: Likewise.
20090         * doc/glibc-functions/getifaddrs.texi: Likewise.
20091         * doc/glibc-functions/getxattr.texi: Likewise.
20092         * doc/glibc-functions/lgetxattr.texi: Likewise.
20093         * doc/glibc-functions/listxattr.texi: Likewise.
20094         * doc/glibc-functions/llistxattr.texi: Likewise.
20095         * doc/glibc-functions/lremovexattr.texi: Likewise.
20096         * doc/glibc-functions/lsetxattr.texi: Likewise.
20097         * doc/glibc-functions/pow10.texi: Likewise.
20098         * doc/glibc-functions/pow10f.texi: Likewise.
20099         * doc/glibc-functions/rcmd_af.texi: Likewise.
20100         * doc/glibc-functions/removexattr.texi: Likewise.
20101         * doc/glibc-functions/res_init.texi: Likewise.
20102         * doc/glibc-functions/res_mkquery.texi: Likewise.
20103         * doc/glibc-functions/res_query.texi: Likewise.
20104         * doc/glibc-functions/res_querydomain.texi: Likewise.
20105         * doc/glibc-functions/res_send.texi: Likewise.
20106         * doc/glibc-functions/rresvport_af.texi: Likewise.
20107         * doc/glibc-functions/setxattr.texi: Likewise.
20108         * doc/glibc-functions/strcasestr.texi: Likewise.
20109
20110 2008-12-15  Bruno Haible  <bruno@clisp.org>
20111
20112         Fix compilation error on OSF/1 4.0.
20113         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
20114         <sys/time.h>, simply delegate to the system header.
20115         Reported by Daniel Richard G. <oss@teragram.com>.
20116
20117 2008-12-15  Bruno Haible  <bruno@clisp.org>
20118
20119         * doc/posix-functions/openat.texi: Mention the 'openat' module.
20120         * doc/posix-functions/fchmodat.texi: Likewise.
20121         * doc/posix-functions/fchownat.texi: Likewise.
20122         * doc/posix-functions/fdopendir.texi: Likewise.
20123         * doc/posix-functions/fstatat.texi: Likewise.
20124         * doc/posix-functions/mkdirat.texi: Likewise.
20125         * doc/posix-functions/unlinkat.texi: Likewise.
20126
20127 2008-12-14  Bruno Haible  <bruno@clisp.org>
20128
20129         Update doc for POSIX:2008.
20130         * doc/posix-functions/faccessat.texi: New file.
20131         * doc/posix-functions/fchmodat.texi: New file.
20132         * doc/posix-functions/fchownat.texi: New file.
20133         * doc/posix-functions/fdopendir.texi: New file.
20134         * doc/posix-functions/fstatat.texi: New file.
20135         * doc/posix-functions/futimens.texi: New file.
20136         * doc/posix-functions/linkat.texi: New file.
20137         * doc/posix-functions/mkdirat.texi: New file.
20138         * doc/posix-functions/mkfifoat.texi: New file.
20139         * doc/posix-functions/mknodat.texi: New file.
20140         * doc/posix-functions/open_wmemstream.texi: New file.
20141         * doc/posix-functions/openat.texi: New file.
20142         * doc/posix-functions/psiginfo.texi: New file.
20143         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
20144         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
20145         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
20146         * doc/posix-functions/readlinkat.texi: New file.
20147         * doc/posix-functions/renameat.texi: New file.
20148         * doc/posix-functions/strerror_l.texi: New file.
20149         * doc/posix-functions/symlinkat.texi: New file.
20150         * doc/posix-functions/unlinkat.texi: New file.
20151         * doc/posix-functions/utimensat.texi: New file.
20152         * doc/gnulib.texi (Function Substitutes): Add these subsections.
20153
20154 2008-12-14  Bruno Haible  <bruno@clisp.org>
20155
20156         Update doc for POSIX:2008.
20157         * doc/posix-functions/alphasort.texi: Renamed from
20158         doc/glibc-functions/alphasort.texi.
20159         * doc/posix-functions/dirfd.texi: Renamed from
20160         doc/glibc-functions/dirfd.texi.
20161         * doc/posix-functions/dprintf.texi: Renamed from
20162         doc/glibc-functions/dprintf.texi.
20163         * doc/posix-functions/duplocale.texi: Renamed from
20164         doc/glibc-functions/duplocale.texi.
20165         * doc/posix-functions/fexecve.texi: Renamed from
20166         doc/glibc-functions/fexecve.texi.
20167         * doc/posix-functions/fmemopen.texi: Renamed from
20168         doc/glibc-functions/fmemopen.texi.
20169         * doc/posix-functions/freelocale.texi: Renamed from
20170         doc/glibc-functions/freelocale.texi.
20171         * doc/posix-functions/getdate_err.texi: Renamed from
20172         doc/glibc-functions/getdate_err.texi.
20173         * doc/posix-functions/isalnum_l.texi: Renamed from
20174         doc/glibc-functions/isalnum_l.texi.
20175         * doc/posix-functions/isalpha_l.texi: Renamed from
20176         doc/glibc-functions/isalpha_l.texi.
20177         * doc/posix-functions/isblank_l.texi: Renamed from
20178         doc/glibc-functions/isblank_l.texi.
20179         * doc/posix-functions/iscntrl_l.texi: Renamed from
20180         doc/glibc-functions/iscntrl_l.texi.
20181         * doc/posix-functions/isdigit_l.texi: Renamed from
20182         doc/glibc-functions/isdigit_l.texi.
20183         * doc/posix-functions/isgraph_l.texi: Renamed from
20184         doc/glibc-functions/isgraph_l.texi.
20185         * doc/posix-functions/islower_l.texi: Renamed from
20186         doc/glibc-functions/islower_l.texi.
20187         * doc/posix-functions/isprint_l.texi: Renamed from
20188         doc/glibc-functions/isprint_l.texi.
20189         * doc/posix-functions/ispunct_l.texi: Renamed from
20190         doc/glibc-functions/ispunct_l.texi.
20191         * doc/posix-functions/isspace_l.texi: Renamed from
20192         doc/glibc-functions/isspace_l.texi.
20193         * doc/posix-functions/isupper_l.texi: Renamed from
20194         doc/glibc-functions/isupper_l.texi.
20195         * doc/posix-functions/iswalnum_l.texi: Renamed from
20196         doc/glibc-functions/iswalnum_l.texi.
20197         * doc/posix-functions/iswalpha_l.texi: Renamed from
20198         doc/glibc-functions/iswalpha_l.texi.
20199         * doc/posix-functions/iswblank_l.texi: Renamed from
20200         doc/glibc-functions/iswblank_l.texi.
20201         * doc/posix-functions/iswcntrl_l.texi: Renamed from
20202         doc/glibc-functions/iswcntrl_l.texi.
20203         * doc/posix-functions/iswctype_l.texi: Renamed from
20204         doc/glibc-functions/iswctype_l.texi.
20205         * doc/posix-functions/iswdigit_l.texi: Renamed from
20206         doc/glibc-functions/iswdigit_l.texi.
20207         * doc/posix-functions/iswgraph_l.texi: Renamed from
20208         doc/glibc-functions/iswgraph_l.texi.
20209         * doc/posix-functions/iswlower_l.texi: Renamed from
20210         doc/glibc-functions/iswlower_l.texi.
20211         * doc/posix-functions/iswprint_l.texi: Renamed from
20212         doc/glibc-functions/iswprint_l.texi.
20213         * doc/posix-functions/iswpunct_l.texi: Renamed from
20214         doc/glibc-functions/iswpunct_l.texi.
20215         * doc/posix-functions/iswspace_l.texi: Renamed from
20216         doc/glibc-functions/iswspace_l.texi.
20217         * doc/posix-functions/iswupper_l.texi: Renamed from
20218         doc/glibc-functions/iswupper_l.texi.
20219         * doc/posix-functions/iswxdigit_l.texi: Renamed from
20220         doc/glibc-functions/iswxdigit_l.texi.
20221         * doc/posix-functions/isxdigit_l.texi: Renamed from
20222         doc/glibc-functions/isxdigit_l.texi.
20223         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
20224         doc/glibc-functions/mbsnrtowcs.texi.
20225         * doc/posix-functions/mkdtemp.texi: Renamed from
20226         doc/glibc-functions/mkdtemp.texi.
20227         * doc/posix-functions/newlocale.texi: Renamed from
20228         doc/glibc-functions/newlocale.texi.
20229         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
20230         doc/glibc-functions/nl_langinfo_l.texi.
20231         * doc/posix-functions/open_memstream.texi: Renamed from
20232         doc/glibc-functions/open_memstream.texi.
20233         * doc/posix-functions/opterr.texi: Renamed from
20234         doc/glibc-functions/opterr.texi.
20235         * doc/posix-functions/optind.texi: Renamed from
20236         doc/glibc-functions/optind.texi.
20237         * doc/posix-functions/optopt.texi: Renamed from
20238         doc/glibc-functions/optopt.texi.
20239         * doc/posix-functions/psignal.texi: Renamed from
20240         doc/glibc-functions/psignal.texi.
20241         * doc/posix-functions/scandir.texi: Renamed from
20242         doc/glibc-functions/scandir.texi.
20243         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
20244         doc/glibc-functions/sched_get_priority_min.texi.
20245         * doc/posix-functions/signgam.texi: Renamed from
20246         doc/glibc-functions/signgam.texi.
20247         * doc/posix-functions/stpcpy.texi: Renamed from
20248         doc/glibc-functions/stpcpy.texi.
20249         * doc/posix-functions/stpncpy.texi: Renamed from
20250         doc/glibc-functions/stpncpy.texi.
20251         * doc/posix-functions/strcasecmp_l.texi: Renamed from
20252         doc/glibc-functions/strcasecmp_l.texi.
20253         * doc/posix-functions/strcoll_l.texi: Renamed from
20254         doc/glibc-functions/strcoll_l.texi.
20255         * doc/posix-functions/strfmon_l.texi: Renamed from
20256         doc/glibc-functions/strfmon_l.texi.
20257         * doc/posix-functions/strftime_l.texi: Renamed from
20258         doc/glibc-functions/strftime_l.texi.
20259         * doc/posix-functions/strncasecmp_l.texi: Renamed from
20260         doc/glibc-functions/strncasecmp_l.texi.
20261         * doc/posix-functions/strndup.texi: Renamed from
20262         doc/glibc-functions/strndup.texi.
20263         * doc/posix-functions/strnlen.texi: Renamed from
20264         doc/glibc-functions/strnlen.texi.
20265         * doc/posix-functions/strsignal.texi: Renamed from
20266         doc/glibc-functions/strsignal.texi.
20267         * doc/posix-functions/strxfrm_l.texi: Renamed from
20268         doc/glibc-functions/strxfrm_l.texi.
20269         * doc/posix-functions/timer_gettime.texi: Renamed from
20270         doc/glibc-functions/timer_gettime.texi.
20271         * doc/posix-functions/tolower_l.texi: Renamed from
20272         doc/glibc-functions/tolower_l.texi.
20273         * doc/posix-functions/toupper_l.texi: Renamed from
20274         doc/glibc-functions/toupper_l.texi.
20275         * doc/posix-functions/towctrans_l.texi: Renamed from
20276         doc/glibc-functions/towctrans_l.texi.
20277         * doc/posix-functions/towlower_l.texi: Renamed from
20278         doc/glibc-functions/towlower_l.texi.
20279         * doc/posix-functions/towupper_l.texi: Renamed from
20280         doc/glibc-functions/towupper_l.texi.
20281         * doc/posix-functions/uselocale.texi: Renamed from
20282         doc/glibc-functions/uselocale.texi.
20283         * doc/posix-functions/vdprintf.texi: Renamed from
20284         doc/glibc-functions/vdprintf.texi.
20285         * doc/posix-functions/wcpcpy.texi:
20286         Renamed from doc/glibc-functions/wcpcpy.texi.
20287         * doc/posix-functions/wcpncpy.texi: Renamed from
20288         doc/glibc-functions/wcpncpy.texi.
20289         * doc/posix-functions/wcscasecmp.texi: Renamed from
20290         doc/glibc-functions/wcscasecmp.texi.
20291         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
20292         doc/glibc-functions/wcscasecmp_l.texi.
20293         * doc/posix-functions/wcscoll_l.texi: Renamed from
20294         doc/glibc-functions/wcscoll_l.texi.
20295         * doc/posix-functions/wcsdup.texi: Renamed from
20296         doc/glibc-functions/wcsdup.texi.
20297         * doc/posix-functions/wcsncasecmp.texi: Renamed from
20298         doc/glibc-functions/wcsncasecmp.texi.
20299         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
20300         doc/glibc-functions/wcsncasecmp_l.texi.
20301         * doc/posix-functions/wcsnlen.texi: Renamed from
20302         doc/glibc-functions/wcsnlen.texi.
20303         * doc/posix-functions/wcsnrtombs.texi: Renamed from
20304         doc/glibc-functions/wcsnrtombs.texi.
20305         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
20306         doc/glibc-functions/wcsxfrm_l.texi.
20307         * doc/posix-functions/wctrans_l.texi: Renamed from
20308         doc/glibc-functions/wctrans_l.texi.
20309         * doc/posix-functions/wctype_l.texi: Renamed from
20310         doc/glibc-functions/wctype_l.texi.
20311         * doc/gnulib.texi (Function Substitutes): Add these subsections.
20312         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
20313         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
20314         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
20315         these subsections.
20316         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
20317         Remove sections.
20318
20319 2008-12-14  Bruno Haible  <bruno@clisp.org>
20320
20321         Update doc for POSIX:2008.
20322         * doc/posix-functions/*.texi: Update URL of POSIX specification.
20323
20324 2008-12-14  Bruno Haible  <bruno@clisp.org>
20325
20326         Update doc for POSIX:2008.
20327         * doc/pastposix-functions/bcmp.texi: Renamed from
20328         doc/posix-functions/bcmp.texi.
20329         * doc/pastposix-functions/bcopy.texi: Renamed from
20330         doc/posix-functions/bcopy.texi.
20331         * doc/pastposix-functions/bsd_signal.texi: Renamed from
20332         doc/posix-functions/bsd_signal.texi.
20333         * doc/pastposix-functions/bzero.texi: Renamed from
20334         doc/posix-functions/bzero.texi.
20335         * doc/pastposix-functions/ecvt.texi: Renamed from
20336         doc/posix-functions/ecvt.texi.
20337         * doc/pastposix-functions/fcvt.texi: Renamed from
20338         doc/posix-functions/fcvt.texi.
20339         * doc/pastposix-functions/ftime.texi: Renamed from
20340         doc/posix-functions/ftime.texi.
20341         * doc/pastposix-functions/gcvt.texi: Renamed from
20342         doc/posix-functions/gcvt.texi.
20343         * doc/pastposix-functions/getcontext.texi: Renamed from
20344         doc/posix-functions/getcontext.texi.
20345         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
20346         doc/posix-functions/gethostbyaddr.texi.
20347         * doc/pastposix-functions/gethostbyname.texi: Renamed from
20348         doc/posix-functions/gethostbyname.texi.
20349         * doc/pastposix-functions/getwd.texi: Renamed from
20350         doc/posix-functions/getwd.texi.
20351         * doc/pastposix-functions/h_errno.texi: Renamed from
20352         doc/posix-functions/h_errno.texi.
20353         * doc/pastposix-functions/index.texi: Renamed from
20354         doc/posix-functions/index.texi.
20355         * doc/pastposix-functions/makecontext.texi: Renamed from
20356         doc/posix-functions/makecontext.texi.
20357         * doc/pastposix-functions/mktemp.texi: Renamed from
20358         doc/posix-functions/mktemp.texi.
20359         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
20360         doc/posix-functions/pthread_attr_getstackaddr.texi.
20361         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
20362         doc/posix-functions/pthread_attr_setstackaddr.texi.
20363         * doc/pastposix-functions/rindex.texi: Renamed from
20364         doc/posix-functions/rindex.texi.
20365         * doc/pastposix-functions/scalb.texi: Renamed from
20366         doc/posix-functions/scalb.texi.
20367         * doc/pastposix-functions/setcontext.texi: Renamed from
20368         doc/posix-functions/setcontext.texi.
20369         * doc/pastposix-functions/swapcontext.texi: Renamed from
20370         doc/posix-functions/swapcontext.texi.
20371         * doc/pastposix-functions/ualarm.texi: Renamed from
20372         doc/posix-functions/ualarm.texi.
20373         * doc/pastposix-functions/usleep.texi: Renamed from
20374         doc/posix-functions/usleep.texi.
20375         * doc/pastposix-functions/vfork.texi: Renamed from
20376         doc/posix-functions/vfork.texi.
20377         * doc/pastposix-functions/wcswcs.texi: Renamed from
20378         doc/posix-functions/wcswcs.texi.
20379         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
20380         (Function Substitutes): Update.
20381
20382 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20383
20384         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
20385         m4/strerror.m4.
20386
20387 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20388             Bruno Haible  <bruno@clisp.org>
20389
20390         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
20391
20392 2008-12-13  Bruno Haible  <bruno@clisp.org>
20393
20394         * modules/strtoull (Depends-on): Remove unistd.
20395
20396 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20397
20398         * modules/strtoull (Depends-on): Add stdlib.
20399
20400 2008-12-11  Simon Josefsson  <simon@josefsson.org>
20401
20402         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
20403
20404 2008-12-10  Jim Meyering  <meyering@redhat.com>
20405
20406         gl_ASSERT: don't say assertions are disabled when they're not
20407         * m4/assert.m4 (gl_ASSERT): Do not make configure report
20408         "checking whether to enable assertions... no", when they are in
20409         fact enabled.  This is solely a bug in the output of configure.
20410         In spite of saying "no", NDEBUG was not defined in that case.
20411         Also, as noted by Eric Blake, leave assertions enabled upon
20412         --enable-assert=INVALID.
20413
20414 2008-12-10  Bruno Haible  <bruno@clisp.org>
20415
20416         Change MODULES.html to refer to POSIX:2008 where possible.
20417         * MODULES.html.sh (POSIX2008_URL): New variable.
20418         (posix_headers): Remove sys/timeb, ucontext.
20419         (posix2001_headers): New variable.
20420         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
20421         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
20422         index, makecontext, mktemp, pthread_attr_getstackaddr,
20423         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
20424         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
20425         (posix2001_functions): New variable.
20426         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
20427         otherwise.
20428
20429 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20430
20431         add missing include to parse-duration.c
20432         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
20433         * modules/parse-duration (Depends-on): Add xalloc.
20434
20435         fix sed script reading maint.mk
20436         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
20437         (syntax-check-rules): Use it.
20438
20439 2008-12-09  Bruno Haible  <bruno@clisp.org>
20440
20441         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
20442         MacOS X 10.4/PowerPC.
20443         Reported by Simon Josefsson.
20444
20445 2008-12-08  Jim Meyering  <meyering@redhat.com>
20446
20447         work around mingw's lack of some S_IF definitions
20448         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
20449         Reported by Simon Josefsson.
20450
20451 2008-12-08  Bruno Haible  <bruno@clisp.org>
20452
20453         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
20454         applied to variables. Needed on MacOS X 10.4/PowerPC.
20455         Reported by Simon Josefsson.
20456
20457 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
20458         and Eric Blake  <ebb9@byu.net>
20459
20460         assert: honor --enable-assert
20461         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
20462         order to honor --enable-assert, rather than treating it as a
20463         synonym for --disable-assert.
20464
20465 2008-12-08  Jim Meyering  <meyering@redhat.com>
20466
20467         * lib/posixtm.c: Remove now-useless declaration of mktime.
20468
20469         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
20470
20471 2008-12-07  Bruno Haible  <bruno@clisp.org>
20472
20473         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
20474         test_once): Mark functions as static.
20475         * tests/test-tls.c (test_tls): Likewise.
20476
20477 2008-12-07  Bruno Haible  <bruno@clisp.org>
20478
20479         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
20480         iconv_register_autodetect.
20481
20482 2008-12-07  Jim Meyering  <meyering@redhat.com>
20483
20484         posixtm.c: avoid a warning
20485         * lib/posixtm.c (posixtime): Don't initialize tm0.
20486         It's no longer needed to placate gcc4's -Wuninitialized,
20487         and the attempt to placate would elicit a new warning.
20488
20489         unicodeio.c: mark unused parameters
20490         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
20491         (fallback_failure_callback): Likewise.
20492
20493 2008-12-07  Bruno Haible  <bruno@clisp.org>
20494
20495         * gnulib-tool (func_create_testdir): When building the tests
20496         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
20497         Reported by Simon Josefsson.
20498
20499 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20500
20501         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
20502
20503 2008-12-06  Bruno Haible  <bruno@clisp.org>
20504
20505         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
20506         Suggested by Eric Blake.
20507
20508 2008-12-06  Bruno Haible  <bruno@clisp.org>
20509
20510         Fix a c-stack test failure on MacOS X.
20511         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
20512         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
20513         handler for SIGBUS as well.
20514         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
20515         install a signal handler for SIGBUS as well.
20516         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
20517
20518 2008-12-06  Bruno Haible  <bruno@clisp.org>
20519
20520         Advocacy documentation.
20521         * doc/gnulib-intro.texi (Benefits): New section.
20522         * doc/gnulib.texi: Update.
20523
20524 2008-12-06  Bruno Haible  <bruno@clisp.org>
20525
20526         Document the 'manywarnings' module.
20527         * doc/manywarnings.texi: New file.
20528         * doc/gnulib.texi: Include it.
20529
20530 2008-12-05  Eric Blake  <ebb9@byu.net>
20531
20532         tests: silence some gcc warnings
20533         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
20534         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
20535         type mismatches.
20536
20537 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20538             Bruno Haible  <bruno@clisp.org>
20539
20540         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
20541
20542 2008-11-29  Jim Meyering  <meyering@redhat.com>
20543
20544         unicodeio.c: mark unused parameters
20545         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
20546         (fallback_failure_callback): Likewise.
20547
20548         fts: fix a thinko
20549         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
20550         (set_stat_type): Return S_IF*-valued "type" directly.
20551         Prompted by James Youngman's spotting a related bug.
20552         Confirmed by further testing through find.
20553
20554         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
20555         * lib/fts.c (D_TYPE): Define.
20556         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
20557         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
20558         (s_ifmt_shift_bits): New function.
20559         (set_stat_type): New function.
20560         (fts_build): When not calling fts_stat, call set_stat_type
20561         to propagate dirent.d_type info to fts_read caller.
20562         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
20563         fts_statp->st_mode type information may be valid.
20564
20565 2008-11-28  Simon Josefsson  <simon@josefsson.org>
20566
20567         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
20568         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
20569         <sds@gnu.org>.
20570
20571 2008-11-20  Bruno Haible  <bruno@clisp.org>
20572
20573         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
20574         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
20575         INCLUDE_NEXT.
20576         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
20577         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
20578         * modules/math (Makefile.am): Substitute
20579         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
20580         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
20581
20582 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
20583             Bruno Haible  <bruno@clisp.org>
20584
20585         * lib/stdint.in.h: Define all type macros so that their expansion is
20586         a single typedef'ed token. Fixes a compilation failure in Boost which
20587         does "using ::int8_t;".
20588
20589 2008-11-18  Simon Josefsson  <simon@josefsson.org>
20590
20591         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
20592         gl_MANYWARN_ALL_GCC.
20593         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
20594         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
20595         * modules/manywarnings: New file.
20596         * MODULES.html.sh: Mention manywarnings module.
20597
20598 2008-11-18  Bruno Haible  <bruno@clisp.org>
20599
20600         * doc/gnulib-tool.texi (Unit tests): New section.
20601
20602 2008-11-18  Simon Josefsson  <simon@josefsson.org>
20603
20604         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
20605         paths like 'lib/po/foo.po'.
20606
20607 2008-11-17  Simon Josefsson  <simon@josefsson.org>
20608
20609         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
20610         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
20611
20612 2008-11-17  Simon Josefsson  <simon@josefsson.org>
20613
20614         * m4/warnings.m4: Use CPPFLAGS to really check whether the
20615         parameter works.
20616
20617 2008-11-17  Simon Josefsson  <simon@josefsson.org>
20618
20619         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
20620
20621 2008-11-17  Bruce Korb  <bkorb@gnu.org>
20622
20623         * modules/parse-duration-tests: New file.
20624         * tests/test-parse-duration.sh: New file.
20625         * tests/test-parse-duration.c: New file.
20626
20627         New module 'parse-duration'.
20628         * lib/parse-duration.h: New file.
20629         * lib/parse-duration.c: New file.
20630         * modules/parse-duration: New file.
20631
20632 2008-11-17  Bruno Haible  <bruno@clisp.org>
20633
20634         * tests/test-select-out.sh: Comment out the first pipe test.
20635         Reported by Simon Josefsson.
20636
20637 2008-11-17  Bruno Haible  <bruno@clisp.org>
20638
20639         * modules/getaddrinfo (Depends-on): Add servent, hostent.
20640         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
20641         gl_HOSTENT.
20642
20643 2008-11-17  Bruno Haible  <bruno@clisp.org>
20644
20645         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
20646         -lnetwork and -lnet. Needed for Haiku and BeOS.
20647
20648 2008-11-16  Bruno Haible  <bruno@clisp.org>
20649
20650         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
20651
20652 2008-11-16  Bruno Haible  <bruno@clisp.org>
20653
20654         Avoid test failure on Haiku.
20655         * tests/test-fsync.c: Include <errno.h>.
20656         (main): Don't require that fsync (0) fails.
20657
20658 2008-11-15  Bruno Haible  <bruno@clisp.org>
20659
20660         New module 'hostent'.
20661         * modules/hostent: New file.
20662         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
20663
20664 2008-11-15  Bruno Haible  <bruno@clisp.org>
20665
20666         New module 'servent'.
20667         * modules/servent: New file.
20668         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
20669
20670 2008-11-15  Bruno Haible  <bruno@clisp.org>
20671
20672         Avoid generating same test program with two different rules.
20673         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
20674         test-frexp to test-frexp-nolibm.
20675         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
20676         test-frexpl to test-frexpl-nolibm.
20677
20678 2008-11-15  Bruno Haible  <bruno@clisp.org>
20679
20680         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
20681         $(FREXPL_LIBM).
20682
20683 2008-11-15  Bruno Haible  <bruno@clisp.org>
20684
20685         * lib/netdb.in.h: Activate the definitions also when the system's
20686         <netdb.h> has 'struct addrinfo'.
20687         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
20688         EAI_OVERFLOW or AI_NUMERICSERV.
20689         * doc/posix-headers/netdb.texi: Document the problem.
20690
20691 2008-11-15  Bruno Haible  <bruno@clisp.org>
20692
20693         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
20694
20695         Make the 'sched' module work on platforms where <sched.h> exists but
20696         is incomplete (such as Haiku).
20697         * lib/sched.in.h; Include the system's <sched.h> if it exists.
20698         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
20699         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
20700         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
20701         HAVE_STRUCT_SCHED_PARAM.
20702         * modules/sched (Depends-on): Add include_next.
20703         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
20704         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
20705         * doc/posix-headers/sched.texi: Document the issue.
20706
20707 2008-11-13  Jim Meyering  <meyering@redhat.com>
20708
20709         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
20710         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
20711         test would fail due to the difference in the Report bugs to ...
20712         line.  The expected address is empty, "<>", while the actual
20713         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
20714
20715 2008-11-12  Bruno Haible  <bruno@clisp.org>
20716
20717         lstat: don't compile lstat.c on systems lacking lstat
20718         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
20719         which don't have lstat; this is handled by lib/sys_stat.in.h already.
20720         Reported by Daniel P. Berrange via Jim Meyering.
20721
20722 2008-11-12  Jim Meyering  <meyering@redhat.com>
20723
20724         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
20725
20726 2008-11-12  Simon Josefsson  <simon@josefsson.org>
20727
20728         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
20729         instead.
20730
20731 2008-11-12  Bruno Haible  <bruno@clisp.org>
20732
20733         * lib/unicodeio.c: Include unistr.h.
20734         (utf8_wctomb): Remove function.
20735         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
20736
20737 2008-11-12  Simon Josefsson  <simon@josefsson.org>
20738
20739         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
20740         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
20741         <bruno@clisp.org>.
20742         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
20743
20744 2008-11-12  Simon Josefsson  <simon@josefsson.org>
20745
20746         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
20747         * doc/gnulib.texi: Add section for warnings.
20748
20749 2008-11-11  Bruno Haible  <bruno@clisp.org>
20750
20751         * lib/sockets.h: Add a comment.
20752
20753 2008-11-11  Karl Berry  <karl@gnu.org>
20754
20755         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
20756
20757 2008-11-11  Eric Blake  <ebb9@byu.net>
20758
20759         fdl.texi: avoid git symlinks
20760         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
20761
20762 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20763
20764         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
20765
20766 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20767
20768         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
20769         (gl_WARN_ADD): Substitute $2 if literal.
20770
20771 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20772
20773         * m4/warning.m4: Remove.
20774
20775 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20776
20777         * m4/warnings.m4: Almost complete rewrite. :-)
20778
20779 2008-11-10  Simon Josefsson  <simon@josefsson.org>
20780
20781         * modules/warnings: New module.
20782         * m4/warnings.m4: New file.
20783         * MODULES.html.sh: Mention warnings module.
20784         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
20785         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20786
20787 2008-11-10  Eric Blake  <ebb9@byu.net>
20788
20789         fdl.texi: make a symlink to the latest version
20790         * doc/standards.texi: Revert today's earlier change.
20791         * doc/fdl-1.2.texi: Rename from old fdl.texi...
20792         * doc/fdl.texi: ...and replace this with a symlink to the newer
20793         fdl-1.3.texi.
20794
20795 2008-11-10  Bruno Haible  <bruno@clisp.org>
20796
20797         * tests/test-select-fd.c (main): Accept the result file name as fourth
20798         argument.
20799         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
20800         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
20801
20802 2008-11-10  Bruno Haible  <bruno@clisp.org>
20803
20804         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
20805         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
20806         as autoconf-substituted macros.
20807         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
20808         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
20809         gl_NETDB_H_DEFAULTS. Set these variables.
20810         * modules/netdb (Makefile.am): Substitute these variables.
20811
20812 2008-11-10  Eric Blake  <ebb9@byu.net>
20813
20814         standards.texi: include correct file for FDL 1.3
20815         * doc/standards.texi (GNU Free Documentation License): Change
20816         include file to pull in FDL 1.3, not 1.2.
20817
20818         fdl.texi: revert accidental change to license
20819         * doc/fdl.texi: This is FDL 1.2, not 1.3.
20820
20821 2008-11-10  Bruno Haible  <bruno@clisp.org>
20822
20823         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
20824         cross-compiling guesses also when the native compile gives no result.
20825
20826 2008-11-10  Bruno Haible  <bruno@clisp.org>
20827
20828         * lib/spawni.c (__spawni): Force variable into the stack.
20829
20830 2008-11-10  Bruno Haible  <bruno@clisp.org>
20831
20832         Add support for Haiku.
20833         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
20834         glibc and BeOS, but also on Haiku.
20835         * lib/fpurge.c (fpurge): Likewise.
20836         * lib/freadable.c (freadable): Likewise.
20837         * lib/freadahead.c (freadahead): Likewise.
20838         * lib/freading.c (freading): Likewise.
20839         * lib/freadptr.c (freadptr): Likewise.
20840         * lib/freadseek.c (freadptrinc): Likewise.
20841         * lib/fseeko.c (rpl_fseeko): Likewise.
20842         * lib/fseterr.c (fseterr): Likewise.
20843         * lib/fwritable.c (fwritable): Likewise.
20844         * lib/fwriting.c (fwriting): Likewise.
20845         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
20846
20847 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
20848
20849         * lib/config.charset: Treat Haiku like BeOS.
20850
20851 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
20852
20853         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
20854         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
20855
20856 2008-11-08  Bruno Haible  <bruno@clisp.org>
20857
20858         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
20859         AC_CACHE_CHECK.
20860
20861 2008-11-08  Bruno Haible  <bruno@clisp.org>
20862
20863         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
20864
20865 2008-11-08  Bruno Haible  <bruno@clisp.org>
20866
20867         * tests/test-select-fd.c: New file.
20868         * tests/test-select-in.sh: New file.
20869         * tests/test-select-out.sh: New file.
20870         * tests/test-select-stdin.c: New file.
20871         * modules/select-tests (Files): Add the new files.
20872         (Depends-on): Add gettimeofday.
20873         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
20874         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
20875         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
20876
20877 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
20878             Bruno Haible  <bruno@clisp.org>
20879
20880         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
20881
20882 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
20883
20884         * build-aux/pmccabe2html: Added support for C++ source files.
20885
20886 2008-11-05  Ben Pfaff  <blp@gnu.org>
20887
20888         Fix lib/close.c build on Windows.
20889         * modules/close (Files): Add lib/w32sock.h.
20890
20891 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
20892
20893         Accept Bison's NEWS format.
20894         * build-aux/announce-gen (print_news_deltas): Tweak
20895         $re_prefix.
20896
20897 2008-11-04  Bruno Haible  <bruno@clisp.org>
20898
20899         * modules/random_r (Maintainer): Add glibc.
20900
20901 2008-11-04  Simon Josefsson  <simon@josefsson.org>
20902
20903         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
20904         by karl@freefriends.org (Karl Berry).
20905         * doc/alloca.texi: Likewise.
20906         * doc/c-ctype.texi: Likewise.
20907         * doc/c-strcase.texi: Likewise.
20908         * doc/c-strcaseeq.texi: Likewise.
20909         * doc/c-strcasestr.texi: Likewise.
20910         * doc/c-strstr.texi: Likewise.
20911         * doc/c-strtod.texi: Likewise.
20912         * doc/c-strtold.texi: Likewise.
20913         * doc/ctime.texi: Likewise.
20914         * doc/error.texi: Likewise.
20915         * doc/fdl.texi: Likewise.
20916         * doc/gcd.texi: Likewise.
20917         * doc/getdate.texi: Likewise.
20918         * doc/gnulib-intro.texi: Likewise.
20919         * doc/gnulib-tool.texi: Likewise.
20920         * doc/gnulib.texi: Likewise.
20921         * doc/inet_ntoa.texi: Likewise.
20922         * doc/maintain.texi: Likewise.
20923         * doc/make-stds.texi: Likewise.
20924         * doc/quote.texi: Likewise.
20925         * doc/regexprops-generic.texi: Likewise.
20926         * doc/standards.texi: Likewise.
20927         * doc/verify.texi: Likewise.
20928         * doc/visibility.texi: Likewise.
20929         * doc/gnulib.texi (GNU Free Documentation License): Include
20930         fdl-1.3.texi instead of fdl.texi.
20931
20932 2008-11-04  Simon Josefsson  <simon@josefsson.org>
20933
20934         * doc/fdl-1.3.texi: New file, from
20935         <http://www.gnu.org/licenses/fdl-1.3.texi>.
20936         * modules/fdl-1.3: Add.
20937         * MODULES.html.sh: Add fdl-1.3.
20938
20939 2008-11-03  Bruno Haible  <bruno@clisp.org>
20940
20941         Make determination of absolute name of header file work with AIX xlc.
20942         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
20943         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
20944         preprocessing.
20945         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20946         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
20947
20948 2008-11-03  Simon Josefsson  <simon@josefsson.org>
20949
20950         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
20951         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
20952         <ludo@gnu.org>.
20953
20954 2008-11-02  Bruno Haible  <bruno@clisp.org>
20955
20956         Mark 'strpbrk' obsolete.
20957         * modules/strpbrk (Status, Notice): New sections.
20958         * modules/strtok_r (Depends-on): Add strpbrk.
20959
20960 2008-11-02  Bruno Haible  <bruno@clisp.org>
20961
20962         Mark 'strdup' obsolete.
20963         * modules/strdup (Status, Notice): New sections.
20964         * modules/findprog (Depends-on): Add strdup.
20965         * modules/getaddrinfo (Depends-on): Likewise.
20966         * modules/localename (Depends-on): Likewise.
20967         * modules/relocatable-lib (Depends-on): Likewise.
20968         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
20969         * modules/relocatable-prog (Depends-on): Likewise.
20970         * modules/trim (Depends-on): Likewise.
20971         * modules/unictype/gen-ctype (Depends-on): Likewise.
20972         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
20973
20974 2008-11-02  Bruno Haible  <bruno@clisp.org>
20975
20976         Mark 'strcspn' obsolete.
20977         * modules/strcspn (Status, Notice): New sections.
20978
20979 2008-11-02  Bruno Haible  <bruno@clisp.org>
20980
20981         Mark 'rmdir' obsolete.
20982         * modules/rmdir (Status, Notice): New sections.
20983         * modules/clean-temp (Depends-on): Add rmdir.
20984         * modules/openat (Depends-on): Likewise.
20985
20986 2008-11-02  Bruno Haible  <bruno@clisp.org>
20987
20988         Mark 'raise' obsolete.
20989         * modules/raise (Status, Notice): New sections.
20990         (Include): Specify <signal.h>.
20991         * modules/stdio (Depends-on): Add raise.
20992         * modules/write (Depends-on): Likewise.
20993
20994 2008-11-02  Bruno Haible  <bruno@clisp.org>
20995
20996         Mark 'memset' obsolete.
20997         * modules/memset (Status, Notice): New sections.
20998
20999 2008-11-02  Bruno Haible  <bruno@clisp.org>
21000
21001         Mark 'memmove' obsolete.
21002         * modules/memmove (Status, Notice): New sections.
21003         * modules/argp (Depends-on): Add memmove.
21004         * modules/argz (Depends-on): Likewise.
21005         * modules/canonicalize (Depends-on): Likewise.
21006         * modules/canonicalize-lgpl (Depends-on): Likewise.
21007         * modules/fts (Depends-on): Likewise.
21008         * modules/getcwd (Depends-on): Likewise.
21009         * modules/human (Depends-on): Likewise.
21010         * modules/regex (Depends-on): Likewise.
21011         * modules/striconveh (Depends-on): Likewise.
21012         * modules/trim (Depends-on): Likewise.
21013         * modules/unistr/u8-move (Depends-on): Likewise.
21014         * modules/unistr/u16-move (Depends-on): Likewise.
21015         * modules/unistr/u32-move (Depends-on): Likewise.
21016
21017 2008-11-02  Bruno Haible  <bruno@clisp.org>
21018
21019         Mark 'memcpy' obsolete.
21020         * modules/memcpy (Status, Notice): New sections.
21021
21022 2008-11-02  Bruno Haible  <bruno@clisp.org>
21023
21024         Mark 'memcmp' obsolete.
21025         * modules/memcmp (Status, Notice): New sections.
21026         * modules/argmatch (Depends-on): Add memchr.
21027         * modules/backupfile (Depends-on): Likewise.
21028         * modules/c-strcasestr (Depends-on): Likewise.
21029         * modules/crypto/des (Depends-on): Likewise.
21030         * modules/csharpcomp (Depends-on): Likewise.
21031         * modules/fnmatch (Depends-on): Likewise.
21032         * modules/git-merge-changelog (Depends-on): Likewise.
21033         * modules/isnand (Depends-on): Likewise.
21034         * modules/isnand-nolibm (Depends-on): Likewise.
21035         * modules/isnanf (Depends-on): Likewise.
21036         * modules/isnanf-nolibm (Depends-on): Likewise.
21037         * modules/isnanl (Depends-on): Likewise.
21038         * modules/isnanl-nolibm (Depends-on): Likewise.
21039         * modules/mbchar (Depends-on): Likewise.
21040         * modules/memcoll (Depends-on): Likewise.
21041         * modules/quotearg (Depends-on): Likewise.
21042         * modules/regex (Depends-on): Likewise.
21043         * modules/relocatable-prog (Depends-on): Likewise.
21044         * modules/same (Depends-on): Likewise.
21045         * modules/signbit (Depends-on): Likewise.
21046         * modules/strcasestr-simple (Depends-on): Likewise.
21047         * modules/unictype/gen-ctype (Depends-on): Likewise.
21048         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
21049         * modules/uniname/uniname (Depends-on): Likewise.
21050         * modules/unistr/u8-cmp (Depends-on): Likewise.
21051
21052 2008-11-02  Bruno Haible  <bruno@clisp.org>
21053
21054         Mark 'memchr' obsolete.
21055         * modules/memchr (Status, Notice): New sections.
21056         * modules/argp (Depends-on): Add memchr.
21057         * modules/base64 (Depends-on): Likewise.
21058         * modules/c-strcasestr (Depends-on): Likewise.
21059         * modules/chdir-long (Depends-on): Likewise.
21060         * modules/fnmatch (Depends-on): Likewise.
21061         * modules/getsubopt (Depends-on): Likewise.
21062         * modules/git-merge-changelog (Depends-on): Likewise.
21063         * modules/glob (Depends-on): Likewise.
21064         * modules/strcasestr-simple (Depends-on): Likewise.
21065         * modules/strnlen (Depends-on): Likewise.
21066
21067 2008-11-02  Bruno Haible  <bruno@clisp.org>
21068
21069         Mark 'atexit' obsolete.
21070         * modules/atexit (Status, Notice): New sections.
21071         * modules/chdir-long (Depends-on): Add atexit.
21072         * modules/wait-process (Depends-on): Likewise.
21073
21074 2008-11-02  Bruno Haible  <bruno@clisp.org>
21075
21076         * gnulib-tool: New option --with-obsolete.
21077         (func_usage): Document it.
21078         (func_modules_transitive_closure): Drop obsolete dependencies if
21079         incobsolete is not true.
21080         (func_import): Read and save the incobsolete variable to the cache.
21081
21082 2008-11-02  Bruno Haible  <bruno@clisp.org>
21083
21084         * modules/TEMPLATE-EXTENDED: New field 'Status'.
21085         * gnulib-tool: New option --extract-status.
21086         (func_usage): Document it.
21087         (sed_extract_prog): Recognize it.
21088         (func_get_status): New function.
21089
21090 2008-10-30  Simon Josefsson  <simon@josefsson.org>
21091
21092         * modules/sockets (License): Change from LGPL to LGPLv2+.
21093
21094 2008-10-28  Simon Josefsson  <simon@josefsson.org>
21095
21096         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
21097
21098 2008-10-28  Simon Josefsson  <simon@josefsson.org>
21099
21100         * MODULES.html.sh (Support for systems lacking POSIX:2001):
21101         Mention times and sys_times.
21102         * modules/sys_times, modules/sys_times-tests: New modules.
21103         * modules/times, modules/times-tests: Likewise
21104         * m4/sys_times_h.m4: New file.
21105         * lib/sys_times.in.h: Likewise
21106         * lib/times.c: Likewise.
21107         * tests/test-sys_times.c: Likewise.
21108         * tests/test-times.c: Likewise.
21109         * doc/posix-headers/sys_times.texi: Update.
21110         * doc/posix-functions/times.texi: Update.
21111
21112 2008-10-28  Jim Meyering  <meyering@redhat.com>
21113
21114         * modules/tempname (Depends-on): Add lstat.
21115
21116         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
21117
21118 2008-10-28  Simon Josefsson  <simon@josefsson.org>
21119
21120         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
21121         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
21122         using idiom used elsewhere in gnulib.
21123
21124 2008-10-27  Jim Meyering  <meyering@redhat.com>
21125
21126         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
21127
21128 2008-10-27  Simon Josefsson  <simon@josefsson.org>
21129
21130         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
21131         TESTS_ENVIRONMENT, for shell scripts that needs to call built
21132         programs.
21133         * tests/test-argp-2.sh: Use $EXEEXT when needed.
21134
21135 2008-10-27  Simon Josefsson  <simon@josefsson.org>
21136
21137         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
21138
21139 2008-10-27  Bruno Haible  <bruno@clisp.org>
21140
21141         * tests/test-lstat.c: Include <stdio.h>.
21142
21143 2008-10-27  Simon Josefsson  <simon@josefsson.org>
21144
21145         * modules/lstat-tests: New module.
21146         * tests/test-lstat.c: New file.
21147
21148 2008-10-26  Jim Meyering  <meyering@redhat.com>
21149
21150         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
21151
21152 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21153             Bruno Haible  <bruno@clisp.org>
21154
21155         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
21156         * modules/configmake (Include): Add a note that the include must come
21157         after all system headers.
21158         * lib/javaversion.c: Include configmake.h after all other includes.
21159
21160 2008-10-26  Bruno Haible  <bruno@clisp.org>
21161
21162         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
21163         HAVE_STRUCT_RANDOM_DATA to 1.
21164         (gl_STDLIB_H): Simplify.
21165
21166 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21167
21168         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
21169         substitute HAVE_STRUCT_RANDOM_DATA.
21170         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
21171         random_data.
21172         * modules/stdlib (Makefile.am): Substitute
21173         HAVE_STRUCT_RANDOM_DATA.
21174
21175 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21176
21177         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
21178         * doc/gnulib-intro.texi (Copyright): Likewise.
21179
21180 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21181
21182         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
21183         findings.
21184
21185 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
21186             Bruno Haible  <bruno@clisp.org>
21187
21188         * lib/unistd.in.h: Include <winsock2.h>.
21189         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
21190         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
21191         Provide dummy declarations.
21192         (gethostname): Override.
21193         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
21194         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
21195         gl_PREREQ_SYS_H_WINSOCK2.
21196         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
21197         * doc/posix-functions/gethostname.texi: More details.
21198
21199 2008-10-25  Bruno Haible  <bruno@clisp.org>
21200
21201         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
21202         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
21203         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
21204
21205         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
21206         here ...
21207         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
21208         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
21209         gl_UNISTD_H_DEFAULTS.
21210
21211 2008-10-25  Eric Blake  <ebb9@byu.net>
21212
21213         signbit: avoid spurious compiler failure
21214         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
21215         declarations inside function.
21216
21217 2008-10-24  Simon Josefsson  <simon@josefsson.org>
21218             Bruno Haible  <bruno@clisp.org>
21219
21220         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
21221         * modules/random_r (Depends-on): Add stdint.
21222
21223 2008-10-24  Bruno Haible  <bruno@clisp.org>
21224
21225         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
21226         Eggert.
21227         * modules/strerror (License): Likewise.
21228
21229 2008-10-24  Jim Meyering  <meyering@redhat.com>
21230
21231         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
21232         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
21233
21234 2008-10-24  Eric Blake  <ebb9@byu.net>
21235
21236         getgroups: fix compilation when getgroups is available
21237         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
21238         but with <config.h> override of getgroups disabled.
21239
21240 2008-10-24  Simon Josefsson  <simon@josefsson.org>
21241
21242         * doc/gnulib.texi (Header files): Add note about C++ problems.
21243         Explained by Bruno Haible <bruno@clisp.org>.
21244
21245 2008-10-23  Bruno Haible  <bruno@clisp.org>
21246
21247         Define a dummy SA_NODEFER macro on Interix.
21248         * lib/signal.in.h (SA_NODEFER): Define fallback.
21249         Reported by Aleksey Cheusov <cheusov@tut.by> via
21250         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
21251
21252 2008-10-23  Bruno Haible  <bruno@clisp.org>
21253
21254         * modules/freadahead (License): Change to LGPLv2+.
21255         Suggested by Simon Josefsson.
21256
21257 2008-10-23  Jim Meyering  <meyering@redhat.com>
21258
21259         random_r: new module
21260         * modules/random_r: New file.
21261         * m4/random_r.m4: New file.
21262         * lib/random_r.c: New file, from glibc.
21263         * modules/random_r-tests: New file.
21264         * tests/test-random_r.c: New file.
21265         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
21266          Declare.
21267         (RAND_MAX): Define.
21268         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
21269         * modules/stdlib: Substitute them, too.
21270         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
21271         * doc/glibc-functions/initstate_r.texi: Mention the new module.
21272         * doc/glibc-functions/random_r.texi: Likewise.
21273         * doc/glibc-functions/setstate_r.texi: Likewise.
21274         * doc/glibc-functions/srandom_r.texi: Likewise.
21275         * config/srclist.txt: Mention it.
21276
21277 2008-10-23  David Lutterkort  <lutter@redhat.com>
21278
21279         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
21280         link requirement
21281
21282 2008-10-23  Jim Meyering  <meyering@redhat.com>
21283
21284         selinux-h: mark parameters of stub functions as intentionally unused
21285         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
21286         * lib/se-context.in.h: Likewise.
21287
21288 2008-10-22  Simon Josefsson  <simon@josefsson.org>
21289
21290         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
21291
21292 2008-10-22  Simon Josefsson  <simon@josefsson.org>
21293
21294         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
21295
21296 2008-10-22  Eric Blake  <ebb9@byu.net>
21297
21298         glthread/thread: avoid compiler warning
21299         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
21300         Add unreachable abort to silence compiler.
21301
21302 2008-10-22  Eric Blake  <ebb9@byu.net>
21303
21304         netdb: also supply struct addrinfo for cygwin 1.5.x
21305         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
21306         older cygwin.
21307         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
21308         cygwin.
21309         * doc/posix-headers/netdb.texi (netdb.h): Document this.
21310
21311 2008-10-22  Bruno Haible  <bruno@clisp.org>
21312
21313         * users.txt: Update entry about pspp.
21314
21315 2008-10-21  Bruno Haible  <bruno@clisp.org>
21316
21317         Simplification.
21318         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
21319         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
21320
21321         Simplification.
21322         * lib/ioctl.c (ioctl): Don't undefine.
21323         * lib/socket.c (socket): Don't undefine.
21324
21325         Remove unused module indicator macros.
21326         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
21327         GNULIB_$1 as a C macro.
21328
21329         * doc/posix-functions/close.texi: Undo last change.
21330         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
21331         Windows platforms.
21332
21333 2008-10-21  Bruno Haible  <bruno@clisp.org>
21334
21335         Add gethostname() declaration to <unistd.h>.
21336         * lib/unistd.in.h (gethostname): New declaration.
21337         * lib/gethostname.c: Include <unistd.h>.
21338         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
21339         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
21340         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
21341         and HAVE_GETHOSTNAME.
21342         * modules/gethostname (Depends-on): Add unistd.
21343         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21344         (Include): Specify <unistd.h>.
21345         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
21346         HAVE_GETHOSTNAME.
21347         * tests/test-gethostname.c: Include <unistd.h> first.
21348
21349 2008-10-21  Bruno Haible  <bruno@clisp.org>
21350
21351         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
21352         * modules/select-tests (Depends-on): Likewise.
21353         Reported by Simon Josefsson.
21354
21355 2008-10-21  Simon Josefsson  <simon@josefsson.org>
21356
21357         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
21358         * lib/accept.c: New file, based on winsock.c.
21359         * lib/bind.c: New file, based on winsock.c.
21360         * lib/connect.c: New file, based on winsock.c.
21361         * lib/getpeername.c: New file, based on winsock.c.
21362         * lib/getsockname.c: New file, based on winsock.c.
21363         * lib/getsockopt.c: New file, based on winsock.c.
21364         * lib/ioctl.c: New file, based on winsock.c.
21365         * lib/listen.c: New file, based on winsock.c.
21366         * lib/recv.c: New file, based on winsock.c.
21367         * lib/recvfrom.c: New file, based on winsock.c.
21368         * lib/send.c: New file, based on winsock.c.
21369         * lib/sendto.c: New file, based on winsock.c.
21370         * lib/setsockopt.c: New file, based on winsock.c.
21371         * lib/shutdown.c: New file, based on winsock.c.
21372         * lib/socket.c: New file, based on winsock.c.
21373         * lib/w32sock.h: New file, based on winsock.c.
21374         * lib/winsock.c: Remove file.
21375         * modules/accept: Likewise.
21376         * modules/bind: Likewise.
21377         * modules/connect: Likewise.
21378         * modules/getpeername: Likewise.
21379         * modules/getsockname: Likewise.
21380         * modules/getsockopt: Likewise.
21381         * modules/ioctl: Likewise.
21382         * modules/listen: Likewise.
21383         * modules/recv: Likewise.
21384         * modules/recvfrom: Likewise.
21385         * modules/send: Likewise.
21386         * modules/sendto: Likewise.
21387         * modules/setsockopt: Likewise.
21388         * modules/shutdown: Likewise.
21389         * modules/socket: Use socket.c instead of winsock.c.
21390         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
21391         * doc/posix-functions/accept.texi: Doc fix.
21392         * doc/posix-functions/bind.texi: Doc fix.
21393         * doc/posix-functions/close.texi: Doc fix.
21394         * doc/posix-functions/connect.texi: Doc fix.
21395         * doc/posix-functions/getpeername.texi: Doc fix.
21396         * doc/posix-functions/getsockname.texi: Doc fix.
21397         * doc/posix-functions/getsockopt.texi: Doc fix.
21398         * doc/posix-functions/ioctl.texi: Doc fix.
21399         * doc/posix-functions/listen.texi: Doc fix.
21400         * doc/posix-functions/recv.texi: Doc fix.
21401         * doc/posix-functions/recvfrom.texi: Doc fix.
21402         * doc/posix-functions/send.texi: Doc fix.
21403         * doc/posix-functions/sendto.texi: Doc fix.
21404         * doc/posix-functions/setsockopt.texi: Doc fix.
21405         * doc/posix-functions/shutdown.texi: Doc fix.
21406         * doc/posix-functions/socket.texi: Doc fix.
21407
21408 2008-10-20  Bruno Haible  <bruno@clisp.org>
21409
21410         Take into account the role of SIGABRT_COMPAT on Windows 2008.
21411         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
21412         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
21413         as an alias for SIGABRT.
21414         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
21415         (sigaction): Map it to SIGABRT.
21416         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
21417
21418 2008-10-20  Bruno Haible  <bruno@clisp.org>
21419
21420         * lib/fts.c: Don't include lstat.h.
21421         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
21422
21423         Move the lstat() declaration to <sys/stat.h>.
21424         * lib/lstat.h: Remove file.
21425         * lib/sys_stat.in.h: Add special invocation convention.
21426         (lstat): New declaration.
21427         * lib/lstat.c (orig_lstat): New function.
21428         (rpl_lstat): Use orig_lstat instead of lstat.
21429         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
21430         AC_C_INLINE. Set REPLACE_LSTAT.
21431         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
21432         and REPLACE_LSTAT.
21433         * modules/lstat (Files): Remove lib/lstat.h.
21434         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
21435         (Include): Specify <sys/stat.h> instead of lstat.h.
21436         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
21437         REPLACE_LSTAT.
21438         * NEWS: Mention the change.
21439
21440 2008-10-20  Bruno Haible  <bruno@clisp.org>
21441
21442         * modules/posix_spawn-tests: New file.
21443         * tests/test-posix_spawn3.c: New file.
21444
21445 2008-10-20  Bruno Haible  <bruno@clisp.org>
21446
21447         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
21448         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
21449         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
21450         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
21451         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
21452
21453 2008-10-20  Bruno Haible  <bruno@clisp.org>
21454
21455         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
21456         of posix_spawn on AIX 5.3.
21457
21458 2008-10-20  Bruno Haible  <bruno@clisp.org>
21459
21460         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
21461
21462 2008-10-20  Bruno Haible  <bruno@clisp.org>
21463
21464         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
21465         of AC_LANG_PROGRAM.
21466
21467 2008-10-20  Simon Josefsson  <simon@josefsson.org>
21468
21469         * lib/netdb.in.h: Don't define GNU specific constants until they
21470         are supported or needed.  Reported by Bruno Haible
21471         <bruno@clisp.org>.
21472
21473 2008-10-20  Simon Josefsson  <simon@josefsson.org>
21474
21475         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
21476
21477 2008-10-20  Simon Josefsson  <simon@josefsson.org>
21478
21479         * lib/getaddrinfo.h: Remove file.
21480         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
21481         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
21482         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
21483         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
21484         * modules/netdb: Substitute GNULIB_GETADDRINFO.
21485         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
21486         * tests/test-getaddrinfo.c: Likewise.
21487         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
21488         * NEWS: Mention change.
21489
21490 2008-10-19  Bruno Haible  <bruno@clisp.org>
21491
21492         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
21493
21494 2008-10-19  Bruno Haible  <bruno@clisp.org>
21495
21496         * lib/wait-process.c: Include simply <sys/wait.h>.
21497         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
21498         WIFSTOPPED): Remove fallback definitions.
21499         * modules/wait-process (Depends-on): Add sys_wait.
21500
21501         New module 'sys_wait'.
21502         * modules/sys_wait: New file.
21503         * lib/sys_wait.in.h: New file, partially copied from
21504         lib/wait-process.c.
21505         * m4/sys_wait_h.m4: New file.
21506         * doc/posix-headers/sys_wait.texi: Mention the new module.
21507
21508 2008-10-19  Bruno Haible  <bruno@clisp.org>
21509
21510         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
21511
21512 2008-10-19  Bruno Haible  <bruno@clisp.org>
21513
21514         Assume that waitpid() fills an 'int' status, not a 'union wait'.
21515         * lib/wait-process.c (WAIT_T): Remove type.
21516         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
21517         (wait_subprocess): Update.
21518
21519 2008-10-19  Bruno Haible  <bruno@clisp.org>
21520
21521         New module 'atoll'.
21522         * modules/atoll: New file.
21523         * lib/stdlib.in.h (atoll): New declaration.
21524         * lib/atoll.c: New file, from glibc with modifications.
21525         * m4/atoll.m4: New file.
21526         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
21527         HAVE_ATOLL.
21528         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
21529         * doc/posix-functions/atoll.texi: Mention the new module.
21530
21531 2008-10-19  Bruno Haible  <bruno@clisp.org>
21532
21533         Add strtoull() declaration to <stdlib.h>.
21534         * lib/stdlib.in.h (strtoull): New declaration.
21535         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
21536         Set HAVE_STRTOULL.
21537         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
21538         HAVE_STRTOULL.
21539         * modules/strtoull (Depends-on): Add stdlib.
21540         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
21541         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
21542         HAVE_STRTOULL.
21543
21544 2008-10-19  Bruno Haible  <bruno@clisp.org>
21545
21546         Add strtoll() declaration to <stdlib.h>.
21547         * lib/stdlib.in.h (strtoll): New declaration.
21548         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
21549         Set HAVE_STRTOLL.
21550         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
21551         HAVE_STRTOLL.
21552         * modules/strtoll (Depends-on): Add stdlib.
21553         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
21554         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
21555
21556 2008-10-19  Bruno Haible  <bruno@clisp.org>
21557
21558         * modules/bcopy (Depends-on): Add strings.
21559         (Include): Specify <strings.h>.
21560
21561 2008-10-19  Bruno Haible  <bruno@clisp.org>
21562
21563         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
21564
21565 2008-10-19  Bruno Haible  <bruno@clisp.org>
21566
21567         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
21568         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
21569         mingw.
21570
21571 2008-10-19  Bruno Haible  <bruno@clisp.org>
21572
21573         * lib/atanl.c: Don't include isnanl.h.
21574         * lib/cosl.c: Likewise.
21575         * lib/ldexpl.c: Likewise.
21576         * lib/logl.c: Likewise.
21577         * lib/sinl.c: Likewise.
21578         * lib/sqrtl.c: Likewise.
21579         * lib/tanl.c: Likewise.
21580
21581         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
21582         * lib/isnanf.h: Remove file.
21583         * lib/isnand.h: Remove file.
21584         * lib/isnanl.h: Remove file.
21585         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
21586         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
21587         macros.
21588         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
21589         HAVE_ISNANF, don't define it as a C macro.
21590         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
21591         HAVE_ISNAND, don't define it as a C macro.
21592         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
21593         HAVE_ISNANL, don't define it as a C macro.
21594         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
21595         HAVE_ISNAN[FDL].
21596         * modules/isnanf (Files): Remove lib/isnanf.h.
21597         (Depends-on): Add math.
21598         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
21599         (Include): Specify <math.h> instead of isnanf.h.
21600         * modules/isnand (Files): Remove lib/isnand.h.
21601         (Depends-on): Add math.
21602         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
21603         (Include): Specify <math.h> instead of isnand.h.
21604         * modules/isnanl (Files): Remove lib/isnanl.h.
21605         (Depends-on): Add math.
21606         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
21607         (Include): Specify <math.h> instead of isnanl.h.
21608         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
21609         HAVE_ISNAN[FDL].
21610         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
21611         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
21612         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
21613         * NEWS: Mention the change.
21614
21615 2008-10-18  Bruno Haible  <bruno@clisp.org>
21616
21617         Add getusershell(), setusershell(), endusershell() declarations to
21618         <unistd.h>.
21619         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
21620         declarations.
21621         * lib/getusershell.c: Include unistd.h.
21622         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
21623         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
21624         HAVE_GETUSERSHELL.
21625         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
21626         and HAVE_GETUSERSHELL.
21627         * modules/getusershell (Depends-on): Add unistd, extensions.
21628         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21629         (Include): Specify <unistd.h>.
21630         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
21631         HAVE_GETUSERSHELL.
21632
21633 2008-10-18  Bruno Haible  <bruno@clisp.org>
21634
21635         Add a getloadavg() declaration to <stdlib.h>.
21636         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
21637         getloadavg declaration.
21638         (getloadavg): New declaration.
21639         * lib/getloadavg.c: Include <stdlib.h> first.
21640         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
21641         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
21642         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
21643         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
21644         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
21645         * modules/getloadavg (Depends-on): Add stdlib, extensions.
21646         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
21647         (Include): Specify <stdlib.h>.
21648         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
21649         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
21650
21651 2008-10-18  Bruno Haible  <bruno@clisp.org>
21652
21653         * lib/dirchownmod.c: Don't include lchmod.h.
21654
21655         Move the lchmod() declaration to <sys/stat.h>.
21656         * lib/lchmod.h: Remove file.
21657         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
21658         (lchmod): New declaration, moved here from lib/lchown.h.
21659         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
21660         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
21661         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
21662         and HAVE_LCHMOD.
21663         * modules/lchmod (Files): Remove lib/lchmod.h.
21664         (Depends-on): Add sys_stat, extensions.
21665         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
21666         (Include): Specify <sys/stat.h> instead of lchmod.h.
21667         * modules/sys_stat (Depends-on): Add link-warning.
21668         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
21669         definition of GL_LINK_WARNING.
21670         * NEWS: Mention the change.
21671
21672 2008-10-18  Bruno Haible  <bruno@clisp.org>
21673
21674         * lib/fchdir.c: Don't include dirfd.h.
21675         * lib/fts.c: Likewise.
21676         * lib/getcwd.c: Likewise.
21677         * lib/glob.c: Likewise.
21678
21679         Move the dirfd() declaration to <dirent.h>.
21680         * lib/dirfd.h: Remove file.
21681         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
21682         (dirfd): New declaration.
21683         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
21684         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
21685         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
21686         HAVE_DECL_DIRFD.
21687         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
21688         HAVE_DECL_DIRFD.
21689         * modules/dirfd (Files): Remove lib/dirfd.h.
21690         (Depends-on): Add dirent, extensions.
21691         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
21692         (Include): Specify <dirent.h> instead of dirfd.h.
21693         * modules/dirent (Depends-on): Add link-warning.
21694         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
21695         definition of GL_LINK_WARNING.
21696         * NEWS: Mention the change.
21697
21698 2008-10-18  Bruno Haible  <bruno@clisp.org>
21699
21700         Move the euidaccess() declaration to <unistd.h>.
21701         * lib/euidaccess.h: Remove file.
21702         * lib/unistd.in.h (euidaccess): New declaration.
21703         * lib/euidaccess.c: Don't include euidaccess.h.
21704         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
21705         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
21706         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
21707         and HAVE_EUIDACCESS.
21708         * modules/euidaccess (Files): Remove lib/euidaccess.h.
21709         (Depends-on): Add unistd.
21710         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21711         (Include): Specify <unistd.h> instead of euidaccess.h.
21712         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
21713         HAVE_EUIDACCESS.
21714         * NEWS: Mention the change.
21715
21716 2008-10-18  Bruno Haible  <bruno@clisp.org>
21717
21718         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
21719
21720         Move the getdomainname() declaration to <unistd.h>.
21721         * lib/getdomainname.h: Remove file.
21722         * lib/unistd.in.h (getdomainname): New declaration.
21723         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
21724         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
21725         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
21726         HAVE_GETDOMAINNAME.
21727         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21728         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
21729         * modules/getdomainname (Files): Remove lib/getdomainname.h.
21730         (Depends-on): Add unistd, extensions.
21731         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21732         (Includes): Specify <unistd.h> instead of getdomainname.h.
21733         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
21734         HAVE_GETDOMAINNAME.
21735         * NEWS: Mention the change.
21736
21737 2008-10-18  Bruno Haible  <bruno@clisp.org>
21738
21739         * modules/dirent: New file.
21740         * m4/dirent_h.m4: New file.
21741         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
21742         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
21743         * modules/fchdir (Files): Remove lib/dirent.in.h.
21744         (Depends-on): Add dirent.
21745         (Makefile.am): Move rules to modules/dirent.
21746         * doc/posix-headers/dirent.texi: Mention the new module.
21747
21748 2008-10-18  Bruno Haible  <bruno@clisp.org>
21749
21750         Avoid -Wunused-parameter warnings in public gnulib header files.
21751         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
21752         macro.
21753         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
21754
21755 2008-10-18  Bruno Haible  <bruno@clisp.org>
21756
21757         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
21758         * doc/glibc-functions/error.texi: Mention the module 'error'.
21759         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
21760         * doc/glibc-functions/getdomainname.texi: Mention the module
21761         'getdomainname'.
21762         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
21763         * doc/glibc-functions/getpagesize.texi: Mention the module
21764         'getpagesize'.
21765         * doc/glibc-functions/getusershell.texi: Mention the module
21766         'getusershell'.
21767         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
21768         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
21769         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
21770         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
21771         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
21772         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
21773         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
21774         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
21775         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
21776         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
21777         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
21778         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
21779         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
21780         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
21781
21782 2008-10-17  Bruno Haible  <bruno@clisp.org>
21783
21784         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
21785         HP-UX and IRIX, use -0.0L.
21786         * tests/test-ceill.c (minus_zero): Likewise.
21787         * tests/test-floorl.c (minus_zero): Likewise.
21788         * tests/test-frexpl.c (minus_zero): Likewise.
21789         * tests/test-isnan.c (minus_zerol): Likewise.
21790         * tests/test-isnanl.h (minus_zero): Likewise.
21791         * tests/test-ldexpl.c (minus_zero): Likewise.
21792         * tests/test-roundl.c (minus_zero): Likewise.
21793         * tests/test-signbit.c (minus_zerol): Likewise.
21794         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
21795         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
21796         * tests/test-truncl.c (minus_zero): Likewise.
21797         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
21798         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
21799         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
21800         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
21801
21802 2008-10-17  Bruno Haible  <bruno@clisp.org>
21803
21804         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
21805         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
21806         that it gets activated only for gcc >= 3.0.
21807         * lib/dirent.in.h: Likewise.
21808         * lib/errno.in.h: Likewise.
21809         * lib/fcntl.in.h: Likewise.
21810         * lib/float.in.h: Likewise.
21811         * lib/iconv.in.h: Likewise.
21812         * lib/inttypes.in.h: Likewise.
21813         * lib/locale.in.h: Likewise.
21814         * lib/math.in.h: Likewise.
21815         * lib/netdb.in.h: Likewise.
21816         * lib/netinet_in.in.h: Likewise.
21817         * lib/search.in.h: Likewise.
21818         * lib/signal.in.h: Likewise.
21819         * lib/spawn.in.h: Likewise.
21820         * lib/stdarg.in.h: Likewise.
21821         * lib/stdint.in.h: Likewise.
21822         * lib/stdio.in.h: Likewise.
21823         * lib/stdlib.in.h: Likewise.
21824         * lib/string.in.h: Likewise.
21825         * lib/strings.in.h: Likewise.
21826         * lib/sys_file.in.h: Likewise.
21827         * lib/sys_ioctl.in.h: Likewise.
21828         * lib/sys_select.in.h: Likewise.
21829         * lib/sys_socket.in.h: Likewise.
21830         * lib/sys_stat.in.h: Likewise.
21831         * lib/sys_time.in.h: Likewise.
21832         * lib/sysexits.in.h: Likewise.
21833         * lib/time.in.h: Likewise.
21834         * lib/unistd.in.h: Likewise.
21835         * lib/wchar.in.h: Likewise.
21836         * lib/wctype.in.h: Likewise.
21837         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21838
21839 2008-10-17  Jim Meyering  <meyering@redhat.com>
21840
21841         ignore-value: don't depend on inline module
21842         * modules/ignore-value (Depends-on): Remove 'inline'.
21843         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
21844         Suggestion from Bruno Haible.
21845
21846 2008-10-17  Bruno Haible  <bruno@clisp.org>
21847
21848         New implementation of condition variables for Win32.
21849         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
21850         (gl_linked_waitqueue_t): New type.
21851         (gl_cond_t): Use it.
21852         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
21853         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
21854         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
21855         (glthread_cond_init_func, glthread_cond_wait_func,
21856         glthread_cond_timedwait_func, glthread_cond_signal_func,
21857         glthread_cond_broadcast_func, glthread_cond_destroy_func):
21858         Reimplemented on the basis of gl_linked_waitqueue_t.
21859         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
21860         gl_waitqueue_t.
21861         (gl_rwlock_t): Update.
21862         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
21863
21864 2008-10-17  Simon Josefsson  <simon@josefsson.org>
21865
21866         * modules/recvfrom (Depends-on): Add dependency on getpeername.
21867         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
21868
21869 2008-10-17  Jim Meyering  <meyering@redhat.com>
21870
21871         ignore-value: new module
21872         * modules/ignore-value: New file.
21873         * lib/ignore-value.h: New file.
21874         * MODULES.html.sh (Compiler warning management): New section,
21875         just for this module.  More to come.
21876
21877 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
21878
21879         open-safer.c: avoid 'signed and unsigned in conditional...' warning
21880         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
21881         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
21882
21883 2008-10-16  Jim Meyering  <meyering@redhat.com>
21884
21885         openat-die.c: avoid 'no previous prototype' warning
21886         * lib/openat-die.c: Include "openat.h".
21887         Reported by Reuben Thomas <rrt@sc3d.org>.
21888
21889 2008-10-16  Simon Josefsson  <simon@josefsson.org>
21890
21891         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
21892         * lib/netdb.in.h: Fix typo.
21893         Reported by Bruno Haible  <bruno@clisp.org>
21894
21895         * lib/netdb.in.h: Include sys/socket.h for platforms without
21896         netdb.h, to get structures like hostent on MinGW.
21897         * modules/netdb (Depends-on): Add sys_socket.
21898
21899 2008-10-15  Simon Josefsson  <simon@josefsson.org>
21900
21901         * modules/netdb, modules/netdb-tests: New file.
21902         * m4/netdb_h.m4: New file.
21903         * lib/netdb.in.h: Add, currently just an empty file pending
21904         definitions.
21905         * tests/test-netdb.c: New file.
21906         * doc/posix-headers/netdb.texi: Mention that we replace it if
21907         needed.
21908         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21909         netdb.
21910
21911 2008-10-15  Simon Josefsson  <simon@josefsson.org>
21912
21913         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
21914         with code.
21915
21916 2008-10-13  Bruno Haible  <bruno@clisp.org>
21917
21918         * lib/glthread/cond.c (glthread_cond_wait_func,
21919         glthread_cond_timedwait_func): Add a comment.
21920
21921 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21922
21923         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
21924         * tests/test-select.c: Likewise,
21925
21926 2008-10-13  Bruno Haible  <bruno@clisp.org>
21927
21928         * lib/glthread/cond.c (glthread_cond_wait_func,
21929         glthread_cond_timedwait_func): Fix variable name.
21930         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
21931
21932 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
21933
21934         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
21935         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
21936         struct sockaddr.sa_len.
21937         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
21938
21939 2008-10-13  Simon Josefsson  <simon@josefsson.org>
21940
21941         * build-aux/pmccabe2html: Add css and css_url parameters.
21942
21943 2008-10-12  Bruno Haible  <bruno@clisp.org>
21944
21945         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
21946         calling aclx_get.
21947         Reported by Rainer Tammer <tammer@tammer.net>.
21948
21949 2008-10-12  Bruno Haible  <bruno@clisp.org>
21950
21951         Use msvcrt aware primitives for creation/termination of Win32 threads.
21952         * lib/glthread/thread.c: Include <process.h>.
21953         (glthread_create_func): Use _beginthreadex instead of CreateThread.
21954         (wrapper_func): Update signature.
21955         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
21956
21957 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21958             Bruno Haible  <bruno@clisp.org>
21959
21960         Provide a Win32 implementation of the 'cond' module.
21961         * lib/glthread/cond.h [USE_WIN32]: New implementation.
21962         * lib/glthread/cond.c (glthread_cond_init_func,
21963         glthread_cond_wait_func, glthread_cond_timedwait_func,
21964         glthread_cond_signal_func, glthread_cond_broadcast_func,
21965         glthread_cond_destroy_func) [USE_WIN32]: New functions.
21966         * modules/cond (Dependencies): Add gettimeofday.
21967
21968 2008-10-11  Bruno Haible  <bruno@clisp.org>
21969
21970         Make sleep work on older versions of mingw.
21971         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
21972         only whether it exists.
21973         * doc/posix-functions/sleep.texi: Mention the problem with older
21974         versions of mingw.
21975
21976 2008-10-11  Bruno Haible  <bruno@clisp.org>
21977
21978         New module 'shutdown'.
21979         * modules/shutdown: New file.
21980         * lib/sys_socket.in.h (shutdown): New declaration.
21981         * lib/winsock.c (shutdown): New function.
21982         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
21983         GNULIB_SHUTDOWN.
21984         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
21985         * doc/posix-functions/shutdown.texi: Document the new module.
21986
21987 2008-10-11  Jim Meyering  <meyering@redhat.com>
21988
21989         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
21990
21991 2008-10-11  Bruno Haible  <bruno@clisp.org>
21992
21993         New module 'fclose'.
21994         * modules/fclose: New file.
21995         * lib/stdio.in.h (fclose): New declaration.
21996         * lib/fclose.c: New file.
21997         * m4/fclose.m4: New file.
21998         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
21999         REPLACE_FCLOSE.
22000         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
22001         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
22002         REPLACE_FCLOSE.
22003         * modules/close (Depends-on): fclose.
22004         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
22005
22006 2008-10-11  Bruno Haible  <bruno@clisp.org>
22007
22008         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
22009         set errno and don't call _close.
22010
22011 2008-10-10  Bruno Haible  <bruno@clisp.org>
22012
22013         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
22014         ACL, not afterwards. Fixes test failure on Cygwin.
22015
22016 2008-10-09  Ben Pfaff  <blp@gnu.org>
22017
22018         * build-aux/announce-gen: Fix gnulib version related part of usage
22019         message.  Die with a useful error message if no tarballs are
22020         found.
22021
22022 2008-10-10  Jim Meyering  <meyering@redhat.com>
22023
22024         bootstrap: use git's --depth=N option only if it's supported
22025         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
22026         recognize the --depth option.  Reported by Pádraig Brady.
22027
22028 2008-10-09  Bruno Haible  <bruno@clisp.org>
22029
22030         New module 'ioctl'.
22031         * modules/ioctl: New file.
22032         * lib/sys_socket.in.h (ioctl): Remove declaration.
22033         * lib/winsock.c: Include <sys/ioctl.h>.
22034         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
22035         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
22036         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
22037         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
22038         * doc/posix-functions/ioctl.texi: Mention the new module.
22039
22040 2008-10-09  Bruno Haible  <bruno@clisp.org>
22041
22042         New module 'sys_ioctl'.
22043         * lib/sys_ioctl.in.h: New file.
22044         * m4/sys_ioctl_h.m4: New file.
22045         * modules/sys_ioctl: New file.
22046         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
22047
22048 2008-10-09  Bruno Haible  <bruno@clisp.org>
22049
22050         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
22051         * lib/winsock.c: Include <stdarg.h>.
22052         (rpl_ioctl): Change to second argument 'int' and then varargs.
22053
22054 2008-10-09  Bruno Haible  <bruno@clisp.org>
22055
22056         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
22057         when the sys_socket module is present and the system has <winsock2.h>.
22058
22059 2008-10-09  Bruno Haible  <bruno@clisp.org>
22060
22061         * doc/posix-functions/close.texi: Mention module 'close' instead of
22062         module 'sys_socket'.
22063
22064 2008-10-09  Bruno Haible  <bruno@clisp.org>
22065
22066         * doc/glibc-headers/sys_ioctl.texi: New file.
22067         * doc/gnulib.texi: Include it.
22068
22069 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
22070             Bruno Haible  <bruno@clisp.org>
22071
22072         Combine the two replacements of 'close'.
22073         * lib/sys_socket.in.h (close): Define to a reminder to include
22074         <unistd.h>.
22075         (_gl_close_fd_maybe_socket): New declaration.
22076         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
22077         * lib/winsock.c (close): Remove undefinition.
22078         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
22079         needed for the gnulib module 'close'.
22080         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
22081         define to an error symbol or to a warning, if suitable.
22082         * lib/close.c: Include <sys/socket.h>.
22083         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
22084         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
22085         UNISTD_H_HAVE_WINSOCK2_H.
22086         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
22087         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
22088         UNISTD_H_HAVE_WINSOCK2_H.
22089         * modules/sys_socket (Files): Add m4/unistd_h.m4.
22090         (configure.ac): Set a module indicator.
22091         (Makefile.am): Substitute GNULIB_CLOSE.
22092         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
22093         * modules/poll-tests (Depends-on): Add close.
22094         * modules/select-tests (Depends-on): Likewise.
22095
22096 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
22097             Bruno Haible  <bruno@clisp.org>
22098
22099         New module 'close'.
22100         * modules/close: New file.
22101         * lib/unistd.in.h (close): Move declaration out of the
22102         FCHDIR_REPLACEMENT scope.
22103         (_gl_unregister_fd): New declaration.
22104         * lib/close.c: New file.
22105         * lib/fchdir.c (rpl_close): Remove function.
22106         * m4/close.m4: New file.
22107         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
22108         close.
22109         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
22110         REPLACE_CLOSE.
22111         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
22112         REPLACE_CLOSE.
22113         * modules/fchdir (Depends-on): Add close.
22114
22115 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
22116             Bruno Haible  <bruno@clisp.org>
22117
22118         * lib/fcntl.in.h (open): Simplify conditionals.
22119         (_gl_register_fd): New declaration.
22120         * lib/fchdir.c (rpl_open): Remove function.
22121         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
22122         also.
22123         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
22124         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
22125         open.
22126
22127 2008-10-09  Jim Meyering  <meyering@redhat.com>
22128
22129         GNUmakefile: use the more name-space-friendly "_version"
22130         * top/GNUmakefile (_dummy): Update.
22131         (_version): Rename from "version".
22132
22133 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
22134             Bruno Haible  <bruno@clisp.org>
22135
22136         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
22137         rpl_close.
22138         (_gl_register_fd): New function, extracted from rpl_open.
22139         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
22140         (rpl_open, rpl_opendir): Use _gl_register_fd.
22141
22142 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
22143
22144         Fix organization of 'open' replacement.
22145         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
22146         (gl_FUNC_OPEN): Use it.
22147         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
22148
22149 2008-10-08  Bruno Haible  <bruno@clisp.org>
22150
22151         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
22152
22153 2008-10-08  Simon Josefsson  <simon@josefsson.org>
22154
22155         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
22156         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
22157         listen).
22158
22159 2008-10-08  Eric Blake  <ebb9@byu.net>
22160
22161         GNUmakefile: add 'make version' target
22162         * top/GNUmakefile (_curr-ver): Split version update rules...
22163         (version): ...into a target.
22164
22165 2008-10-07  Bruno Haible  <bruno@clisp.org>
22166
22167         Use a more portable replacement expression for -0.0L.
22168         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
22169         instead of -0.0L. Fix m4 quotation.
22170
22171         * tests/test-signbit.c: Include <float.h>.
22172         (minus_zero): New variable.
22173         (test_signbitl): Use minus_zero instead of -zero.
22174         * modules/signbit-tests (Depends-on): Add float.
22175
22176         * tests/test-ceill.c: Include <float.h>.
22177         (zero): Remove variable.
22178         (minus_zero): New variable.
22179         (main): Use minus_zero instead of -zero.
22180         * modules/ceill-tests (Depends-on): Add float.
22181
22182         * tests/test-floorl.c: Include <float.h>.
22183         (zero): Remove variable.
22184         (minus_zero): New variable.
22185         (main): Use minus_zero instead of -zero.
22186         * modules/floorl-tests (Depends-on): Add float.
22187
22188         * tests/test-roundl.c: Include <float.h>.
22189         (zero): Remove variable.
22190         (minus_zero): New variable.
22191         (main): Use minus_zero instead of -zero.
22192         * modules/roundl-tests (Depends-on): Add float.
22193
22194         * tests/test-truncl.c: Include <float.h>.
22195         (zero): Remove variable.
22196         (minus_zero): New variable.
22197         (main): Use minus_zero instead of -zero.
22198         * modules/truncl-tests (Depends-on): Add float.
22199
22200         * tests/test-frexpl.c (zero): Remove variable.
22201         (minus_zero): New variable.
22202         (main): Use minus_zero instead of -zero.
22203         * modules/frexpl-tests (Depends-on): Add float.
22204
22205         * tests/test-isnan.c (zerol): Remove variable.
22206         (minus_zerol): New variable.
22207         (test_long_double): Use minus_zerol instead of -zerol.
22208         * modules/isnan-tests (Depends-on): Add float.
22209
22210         * tests/test-isnanl.h (zero): Remove variable.
22211         (minus_zero): New variable.
22212         (main): Use minus_zero instead of -zero.
22213         * modules/isnanl-nolibm-tests (Depends-on): Add float.
22214         * modules/isnanl-tests (Depends-on): Add float.
22215
22216         * tests/test-ldexpl.c (zero): Remove variable.
22217         (minus_zero): New variable.
22218         (main): Use minus_zero instead of -zero.
22219         * modules/ldexpl-tests (Depends-on): Add float.
22220
22221         * tests/test-snprintf-posix.h (zerol): Remove variable.
22222         (minus_zerol): New variable.
22223         (test_function): Use minus_zerol instead of -zerol.
22224         * modules/snprintf-posix-tests (Depends-on): Add float.
22225         * modules/vsnprintf-posix-tests (Depends-on): Add float.
22226
22227         * tests/test-sprintf-posix.h (zerol): Remove variable.
22228         (minus_zerol): New variable.
22229         (test_function): Use minus_zerol instead of -zerol.
22230         * modules/sprintf-posix-tests (Depends-on): Add float.
22231         * modules/vsprintf-posix-tests (Depends-on): Add float.
22232
22233         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
22234         (minus_zerol): New variable.
22235         (test_function): Use minus_zerol instead of -zerol.
22236         * modules/vasnprintf-posix-tests (Depends-on): Add float.
22237
22238         * tests/test-vasprintf-posix.c (zerol): Remove variable.
22239         (minus_zerol): New variable.
22240         (test_function): Use minus_zerol instead of -zerol.
22241         * modules/vasprintf-posix-tests (Depends-on): Add float.
22242
22243 2008-10-07  Simon Josefsson  <simon@josefsson.org>
22244
22245         * MODULES.html.sh (Support for building documentation): Mention
22246         pmccabe2html.  Sort entries.
22247
22248         Add pmccabe2html module, from gnupdf.
22249         * build-aux/pmccabe.css: New file.
22250         * build-aux/pmccabe2html: New file.
22251         * m4/pmccabe2html.m4: New file.
22252         * modules/pmccabe2html: New file.
22253
22254 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
22255
22256         flock: new module
22257         * MODULES.html.sh: Add to list of modules.
22258         * lib/flock.c: flock implementation for Windows and Unix systems
22259         which have fcntl.
22260         * doc/glibc-functions/flock.texi: Update documentation.
22261         * lib/sys_file.in.h: <sys/file.h> header file.
22262         * m4/flock.m4: M4 macros.
22263         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
22264         * modules/flock: flock module.
22265         * modules/flock-tests: flock tests module.
22266         * modules/sys_file: sys/file.h module.
22267         * tests/test-flock.c: test suite for flock.
22268
22269 2008-10-06  Jim Meyering  <meyering@redhat.com>
22270
22271         bootstrap: check for LT_INIT more portably still ;-)
22272         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
22273         Spotted by Bruno Haible.
22274
22275 2008-10-06  Eric Blake  <ebb9@byu.net>
22276
22277         test-signbit: avoid tripping Irix cc bug on -0.0L
22278         * tests/test-signbit.c (minus_zerol): Delete, and replace with
22279         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
22280         entire testsuite consistent and avoids an Irix 6.2 bug.
22281
22282 2008-10-05  Bruno Haible  <bruno@clisp.org>
22283             Jim Meyering  <jim@meyering.net>
22284
22285         Add an option for ignoring EPIPE during close_stdout.
22286         * lib/closeout.h: Include <stdbool.h>.
22287         (close_stdout_set_ignore_EPIPE): New declaration.
22288         * lib/closeout.c: Include <stdbool.h>.
22289         (ignore_EPIPE): New variable.
22290         (close_stdout_set_ignore_EPIPE): New function.
22291         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
22292         * lib/close-stream.c (close_stream): Mention the possible EPIPE
22293         failure.
22294         * modules/closeout (Depends-on): Add stdbool.
22295
22296 2008-10-05  Bruno Haible  <bruno@clisp.org>
22297
22298         * modules/accept: New file.
22299         * modules/bind: New file.
22300         * modules/connect: New file.
22301         * modules/getpeername: New file.
22302         * modules/getsockname: New file.
22303         * modules/getsockopt: New file.
22304         * modules/listen: New file.
22305         * modules/recv: New file.
22306         * modules/recvfrom: New file.
22307         * modules/send: New file.
22308         * modules/sendto: New file.
22309         * modules/setsockopt: New file.
22310         * modules/socket: New file.
22311         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
22312         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
22313         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
22314         the particular module is requested. Add a link warning when the
22315         particular module is not requested.
22316         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
22317         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
22318         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
22319         the particular module is requested.
22320         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
22321         gl_SYS_SOCKET_H_DEFAULTS): New macros.
22322         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
22323         * modules/sys_socket (Depends-on): Add link-warning.
22324         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
22325         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
22326         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
22327         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
22328         GL_LINK_WARNING.
22329         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
22330         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
22331         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
22332         * doc/posix-functions/getpeername.texi: Mention the new module
22333         'getpeername'.
22334         * doc/posix-functions/getsockname.texi: Mention the new module
22335         'getsockname'.
22336         * doc/posix-functions/getsockopt.texi: Mention the new module
22337         'getsockopt'.
22338         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
22339         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
22340         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
22341         * doc/posix-functions/send.texi: Mention the new module 'send'.
22342         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
22343         * doc/posix-functions/setsockopt.texi: Mention the new module
22344         'setsockopt'.
22345         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
22346         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
22347         listen, connect, accept.
22348         * modules/select-tests (Depends-on): Likewise.
22349
22350 2008-10-05  Bruno Haible  <bruno@clisp.org>
22351
22352         * lib/winsock.c (strerror): Remove unused #undef.
22353         (rpl_close): Remove unused local variable.
22354
22355         * modules/sys_socket (Depends-on); Add errno.
22356
22357 2008-10-05  Bruno Haible  <bruno@clisp.org>
22358
22359         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
22360         (select): Add a link warning when the 'select' module is not used.
22361         * modules/sys_select (Depends-on): Add link-warning.
22362         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
22363         Suggested by Paolo Bonzini.
22364
22365 2008-10-05  Jim Meyering  <meyering@redhat.com>
22366
22367         bootstrap: check for LT_INIT more portably
22368         * build-aux/bootstrap: Avoid using grep -E, since it's not
22369         portable enough.  Suggestion from Bruno Haible.
22370
22371 2008-10-05  Bruno Haible  <bruno@clisp.org>
22372
22373         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
22374         as being fixed by gnulib.
22375
22376 2008-10-05  Bruno Haible  <bruno@clisp.org>
22377
22378         * modules/select-tests: New file, mostly copied from
22379         modules/sys_select-tests.
22380         * tests/test-select.c: New file, mostly copied from
22381         tests/test-sys_select.c.
22382         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
22383         * modules/sys_select-tests (Depends-on): Remove all dependencies.
22384         (Makefile.am): Remove test_sys_select_LDADD.
22385
22386         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
22387         to an undefined symbol, for an error message.
22388         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
22389         (gl_SYS_SELECT_H_DEFAULTS): New macro.
22390         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
22391         winsock-select.c here.
22392         * modules/sys_select (Files): Remove lib/winsock-select.c.
22393         (Depends-on): Remove alloca.
22394         (Makefile.am): Substitute GNULIB_SELECT.
22395         * modules/select: New file.
22396         * doc/posix-functions/select.texi: Update.
22397
22398 2008-10-05  Bruno Haible  <bruno@clisp.org>
22399
22400         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
22401         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
22402         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
22403         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
22404         getdtablesize.
22405         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
22406         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
22407
22408 2008-10-05  Bruno Haible  <bruno@clisp.org>
22409
22410         * modules/getdtablesize-tests: New file.
22411         * tests/test-getdtablesize.c: New file.
22412
22413         New module 'getdtablesize'.
22414         * lib/unistd.in.h (getdtablesize): New declaration.
22415         * lib/getdtablesize.c: New file.
22416         * m4/getdtablesize.m4: New file.
22417         * modules/getdtablesize: New file.
22418         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
22419         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
22420         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
22421         HAVE_GETDTABLESIZE.
22422         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
22423
22424 2008-10-05  Bruno Haible  <bruno@clisp.org>
22425
22426         * modules/sched (Makefile.am): Fix typo.
22427         Reported by Simon Josefsson.
22428
22429 2008-10-05  Jim Meyering  <meyering@redhat.com>
22430
22431         bootstrap: check for LT_INIT, too
22432         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
22433         are deprecated.  Suggestion from Ralf Wildenhues.
22434
22435 2008-10-05  Bruno Haible  <bruno@clisp.org>
22436
22437         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
22438         overriding them by ours.
22439         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
22440
22441 2008-10-05  Jim Meyering  <meyering@redhat.com>
22442
22443         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
22444         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
22445         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
22446
22447 2008-10-04  Bruno Haible  <bruno@clisp.org>
22448
22449         * modules/dup2 (License): Change to LGPLv2+.
22450         * modules/sleep (License): Likewise.
22451         * modules/perror (License): Likewise.
22452         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
22453         Blake.
22454         * modules/signal (License): Likewise.
22455         * modules/sigprocmask (License): Likewise.
22456         * modules/raise (License): Change to LGPLv2+, with approval by Jim
22457         Meyering.
22458
22459 2008-10-04  Bruno Haible  <bruno@clisp.org>
22460
22461         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
22462         Reported by Rainer Tammer <tammer@tammer.net>.
22463
22464 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
22465             Bruno Haible  <bruno@clisp.org>
22466
22467         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
22468         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
22469         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
22470
22471 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
22472
22473         filevercmp: new module
22474         * lib/filevercmp.h: New function filevercmp comparing version strings.
22475         * lib/filevercmp.c: Implementation of filevercmp function.
22476         * modules/filevercmp: Module metadata.
22477         * tests/test-filevercmp.c: Unit test for new module.
22478         * modules/filevercmp-tests: Unit test metadata.
22479         * MODULES.html.sh: Add filevercmp module.
22480
22481 2008-10-03  Bruno Haible  <bruno@clisp.org>
22482
22483         * lib/c-ctype.h: Add comment.
22484         Reported by Jim Meyering.
22485
22486 2008-10-02  Bruno Haible  <bruno@clisp.org>
22487
22488         * modules/posix_spawn-internal (Depends-on): Add 'open'.
22489
22490 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
22491
22492         * build-aux/bootstrap: Allow renaming bootstrap, and change the
22493         name of bootstrap.conf accordingly.
22494
22495 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
22496
22497         * build-aux/bootstrap: Install git-merge-changelog configuration
22498         items into .gitconfig if needed.
22499
22500 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
22501
22502         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
22503         git repository, and initialize/update it accordingly.
22504
22505 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
22506
22507         * modules/fsync-tests: New file.
22508         * tests/test-fsync.c: New file.
22509
22510         New module 'fsync'.
22511         * lib/fsync.c: New file.
22512         * m4/fsync.m4: New file.
22513         * modules/fsync: New file.
22514         * lib/unistd.in.h (fsync): New declaration.
22515         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
22516         GNULIB_FSYNC and HAVE_FSYNC.
22517         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
22518         * MODULES.html.sh (posix_functions): Add fsync.
22519         * doc/posix-functions/fsync.texi: Mention the new module.
22520
22521 2008-10-02  Jim Meyering  <meyering@redhat.com>
22522
22523         fts.c: sync with similar code from coreutils' remove.c
22524         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
22525         Guard also with "#if defined __linux__", since for now at least,
22526         this code is Linux-kernel-specific.
22527
22528 2008-10-02  Jim Meyering  <meyering@redhat.com>
22529
22530         fts: bug fixes
22531         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
22532         Include <sys/vfs.h>, not <sys/statfs.h>.
22533
22534         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
22535         Include <sys/vfs.h>, not <sys/statfs.h>.
22536
22537 2008-10-01  Bruno Haible  <bruno@clisp.org>
22538
22539         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
22540         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
22541         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
22542         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
22543         * doc/posix-functions/posix_spawnp.texi: Likewise.
22544         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
22545         whether posix_spawn actually works.
22546         * m4/pipe.m4 (gl_PIPE): Likewise.
22547         * modules/execute (Files): Add m4/posix_spawn.m4.
22548         * modules/pipe (Files): Add m4/posix_spawn.m4.
22549         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
22550
22551 2008-10-01  Jim Meyering  <meyering@redhat.com>
22552
22553         remove trailing spaces
22554         * NEWS: Likewise.
22555         * lib/poll.c (poll): Likewise.
22556         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
22557         * lib/winsock.c (rpl_close): Likewise.
22558         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
22559         * modules/yield: Likewise.
22560         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
22561         * tests/test-sys_select.c (connect_to_socket): Likewise.
22562
22563         fts.c: adjust a new interface to be more generally useful
22564         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
22565         (fts_build): Adjust caller.
22566
22567 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22568
22569         * modules/cond-tests: New file.
22570         * tests/test-cond.c: New file.
22571
22572 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22573             Bruno Haible  <bruno@clisp.org>
22574
22575         * modules/cond (Dependencies): Add errno, time.
22576         * lib/glthread/cond.h: Include <time.h>.
22577         (gl_cond_define, gl_cond_define_initialized): Use the same definition
22578         across platforms.
22579
22580 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22581             Bruno Haible  <bruno@clisp.org>
22582
22583         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
22584
22585 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22586             Bruno Haible  <bruno@clisp.org>
22587
22588         * modules/tls-tests (Depends-on): Add thread, yield.
22589         (configure.ac): Remove all checks.
22590         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
22591         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
22592         gl_thread_self): Remove definitions. Include glthread/thread.h and
22593         glthread/yield.h instead.
22594         (test_tls): Pass an additional NULL argument to gl_thread_join.
22595
22596 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22597             Bruno Haible  <bruno@clisp.org>
22598
22599         * modules/lock-tests (Depends-on): Add thread, yield.
22600         (configure.ac): Remove all checks.
22601         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
22602         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
22603         gl_thread_self): Remove definitions. Include glthread/thread.h and
22604         glthread/yield.h instead.
22605         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
22606         additional NULL argument to gl_thread_join.
22607
22608 2008-09-30  Bruno Haible  <bruno@clisp.org>
22609
22610         Fix the Win32 implementation of the 'thread' module.
22611         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
22612         pointer type.
22613         (gl_thread_self): Invoke gl_thread_self_func.
22614         (gl_thread_self_func): New declaration.
22615         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
22616         (do_init_self_key, init_self_key): New functions.
22617         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
22618         Remove some fields.
22619         (running_threads, running_lock): Remove variables.
22620         (get_current_thread_handle): New function.
22621         (gl_thread_self_func, wrapper_func, glthread_create_func,
22622         glthread_join_func, gl_thread_exit_func): Largely rewritten and
22623         simplified.
22624
22625 2008-09-30  Bruno Haible  <bruno@clisp.org>
22626
22627         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
22628         files.
22629
22630 2008-09-30  Jim Meyering  <meyering@redhat.com>
22631
22632         fts.m4: correct the test for statfs.f_type
22633         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
22634         when checking for statfs.f_type.
22635
22636 2008-09-15  Simon Josefsson  <simon@josefsson.org>
22637
22638         tests: avoid some compiler warnings
22639         * tests/test-memchr.c (main): Pass NULL indirectly.
22640         * tests/test-getdate.c (main): Remove unused variable 'ret'.
22641
22642 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
22643
22644         getdate.y: disallow countable dayshifts like "4 yesterday ago"
22645         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
22646         exactly specified dayshifts.
22647         (dayshift): New rule.
22648         (rel): Add dayshift.
22649         (relative_time_table) [tomorrow, yesterday, today, now]:
22650         Use tDAY_SHIFT in place of tDAY_UNIT.
22651         * tests/test-getdate.c: Add tests for now-disallowed countable
22652         dayshifts, e.g., "4 yesterday ago".
22653
22654 2008-09-29  Bruno Haible  <bruno@clisp.org>
22655
22656         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
22657         * tests/test-posix_spawn1.in.sh: Renamed from
22658         tests/test-posix_spawn.in.sh.
22659         * tests/test-posix_spawn2.c: New file.
22660         * tests/test-posix_spawn2.in.sh: New file.
22661         * modules/posix_spawnp-tests (Files): Update.
22662         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
22663
22664 2008-09-29  Bruno Haible  <bruno@clisp.org>
22665
22666         Propagate effects of putenv/setenv/unsetenv to child processes.
22667         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
22668         * lib/pipe.c (create_pipe): Likewise.
22669
22670 2008-09-29  Bruno Haible  <bruno@clisp.org>
22671
22672         Enable use of shell scripts as executables in mingw.
22673         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
22674         run the program as a shell script.
22675         * lib/pipe.c (create_pipe): Likewise.
22676         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
22677         resulting array.
22678
22679 2008-09-29  Eric Blake  <ebb9@byu.net>
22680
22681         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
22682
22683 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
22684
22685         * doc/posix-functions/accept.texi: Update mingw problems.
22686         * doc/posix-functions/bind.texi: Update mingw problems.
22687         * doc/posix-functions/close.texi: Update mingw problems.
22688         * doc/posix-functions/connect.texi: Update mingw problems.
22689         * doc/posix-functions/getpeername.texi: Update mingw problems.
22690         * doc/posix-functions/getsockname.texi: Update mingw problems.
22691         * doc/posix-functions/getsockopt.texi: Update mingw problems.
22692         * doc/posix-functions/ioctl.texi: Update mingw problems.
22693         * doc/posix-functions/listen.texi: Update mingw problems.
22694         * doc/posix-functions/recv.texi: Update mingw problems.
22695         * doc/posix-functions/recvfrom.texi: Update mingw problems.
22696         * doc/posix-functions/select.texi: Update mingw problems.
22697         * doc/posix-functions/send.texi: Update mingw problems.
22698         * doc/posix-functions/sendto.texi: Update mingw problems.
22699         * doc/posix-functions/setsockopt.texi: Update mingw problems.
22700         * doc/posix-functions/socket.texi: Update mingw problems.
22701
22702 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
22703             Bruno Haible  <bruno@clisp.org>
22704
22705         * lib/sys_select.in.h: Include sys/time.h.
22706         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
22707         * modules/sys_select: Depend on sys_time.
22708         * tests/test-sys_select.c: Test that sys/select.h defines struct
22709         timeval fully.
22710
22711 2008-09-29  Bruno Haible  <bruno@clisp.org>
22712
22713         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
22714         * lib/sys_select.in.h: Likewise.
22715
22716 2008-09-29  Bruno Haible  <bruno@clisp.org>
22717
22718         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
22719
22720 2008-09-29  Bruno Haible  <bruno@clisp.org>
22721
22722         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
22723         Set LIBSOCKET instead of augmenting LIBS.
22724         * modules/sockets (Link): New section.
22725         * modules/sockets-tests (test_sockets_LDADD): New variable.
22726         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
22727         * modules/poll-tests (test_poll_LDADD): New variable.
22728         * NEWS: Document the change.
22729
22730 2008-09-29  Bruno Haible  <bruno@clisp.org>
22731
22732         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
22733         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
22734         ARPA_INET_H directly.
22735         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
22736
22737 2008-09-28  Bruno Haible  <bruno@clisp.org>
22738
22739         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
22740         from gl_HEADER_SYS_SOCKET.
22741         (gl_HEADER_SYS_SOCKET): Invoke it.
22742         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
22743
22744 2008-09-28  Bruno Haible  <bruno@clisp.org>
22745
22746         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
22747         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
22748         Needed on OSF/1 4.0.
22749
22750 2008-09-28  Bruno Haible  <bruno@clisp.org>
22751
22752         Override open more carefully.
22753         * lib/open.c (orig_open): New function.
22754         (rpl_open): Use orig_open instead of open.
22755         * lib/fcntl.in.h: Add special invocation convention.
22756         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
22757         (gl_FUNC_OPEN): Invoke it.
22758
22759         Override freopen more carefully.
22760         * lib/freopen.c (orig_freopen): New function.
22761         (rpl_freopen): Use orig_freopen instead of freopen.
22762         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
22763         (gl_FUNC_FREOPEN): Invoke it.
22764
22765         Override fopen more carefully.
22766         * lib/fopen.c (orig_fopen): New function.
22767         (rpl_fopen): Use orig_fopen instead of fopen.
22768         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
22769         (gl_FUNC_FOPEN): Invoke it.
22770         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
22771
22772 2008-09-28  Bruno Haible  <bruno@clisp.org>
22773
22774         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
22775         SIGPIPE.
22776
22777 2008-09-28  Bruno Haible  <bruno@clisp.org>
22778
22779         * tests/test-sigaction.c (handler, main): Disable the check whether
22780         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
22781         glibc systems with LinuxThreads.
22782
22783 2008-09-28  Bruno Haible  <bruno@clisp.org>
22784
22785         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
22786
22787         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
22788         with AIX xlc.
22789         * lib/fcntl.in.h (open): Likewise.
22790         Reported by Rainer Tammer <tammer@tammer.net>.
22791
22792 2008-09-28  Bruno Haible  <bruno@clisp.org>
22793
22794         * modules/posix_spawnp-tests: New file.
22795         * tests/test-posix_spawn.c: New file.
22796         * tests/test-posix_spawn.in.sh: New file.
22797
22798         New module 'posix_spawnp'.
22799         * modules/posix_spawnp: New file.
22800         * lib/spawnp.c: New file, from GNU libc with modifications.
22801         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
22802
22803         New module 'posix_spawn'.
22804         * modules/posix_spawn: New file.
22805         * lib/spawn.c: New file, from GNU libc with modifications.
22806         * doc/posix-functions/posix_spawn.texi: Mention the new module.
22807
22808         New module 'posix_spawnattr_destroy'.
22809         * modules/posix_spawnattr_destroy: New file.
22810         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
22811         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
22812         module.
22813
22814         New module 'posix_spawnattr_setsigmask'.
22815         * modules/posix_spawnattr_setsigmask: New file.
22816         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
22817         modifications.
22818         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
22819         new module.
22820
22821         New module 'posix_spawnattr_getsigmask'.
22822         * modules/posix_spawnattr_getsigmask: New file.
22823         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
22824         modifications.
22825         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
22826         new module.
22827
22828         New module 'posix_spawnattr_setsigdefault'.
22829         * modules/posix_spawnattr_setsigdefault: New file.
22830         * lib/spawnattr_setdefault.c: New file, from GNU libc with
22831         modifications.
22832         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
22833         new module.
22834
22835         New module 'posix_spawnattr_getsigdefault'.
22836         * modules/posix_spawnattr_getsigdefault: New file.
22837         * lib/spawnattr_getdefault.c: New file, from GNU libc with
22838         modifications.
22839         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
22840         new module.
22841
22842         New module 'posix_spawnattr_setschedpolicy'.
22843         * modules/posix_spawnattr_setschedpolicy: New file.
22844         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
22845         modifications.
22846         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
22847         new module.
22848
22849         New module 'posix_spawnattr_getschedpolicy'.
22850         * modules/posix_spawnattr_getschedpolicy: New file.
22851         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
22852         modifications.
22853         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
22854         new module.
22855
22856         New module 'posix_spawnattr_setschedparam'.
22857         * modules/posix_spawnattr_setschedparam: New file.
22858         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
22859         modifications.
22860         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
22861         new module.
22862
22863         New module 'posix_spawnattr_getschedparam'.
22864         * modules/posix_spawnattr_getschedparam: New file.
22865         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
22866         modifications.
22867         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
22868         new module.
22869
22870         New module 'posix_spawnattr_setpgroup'.
22871         * modules/posix_spawnattr_setpgroup: New file.
22872         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
22873         modifications.
22874         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
22875         module.
22876
22877         New module 'posix_spawnattr_getpgroup'.
22878         * modules/posix_spawnattr_getpgroup: New file.
22879         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
22880         modifications.
22881         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
22882         module.
22883
22884         New module 'posix_spawnattr_setflags'.
22885         * modules/posix_spawnattr_setflags: New file.
22886         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
22887         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
22888         module.
22889
22890         New module 'posix_spawnattr_getflags'.
22891         * modules/posix_spawnattr_getflags: New file.
22892         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
22893         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
22894         module.
22895
22896         New module 'posix_spawnattr_init'.
22897         * modules/posix_spawnattr_init: New file.
22898         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
22899         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
22900         module.
22901
22902         New module 'posix_spawn_file_actions_destroy'.
22903         * modules/posix_spawn_file_actions_destroy: New file.
22904         * lib/spawn_faction_destroy.c: New file, from GNU libc with
22905         modifications.
22906         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
22907         the new module.
22908
22909         New module 'posix_spawn_file_actions_addopen'.
22910         * modules/posix_spawn_file_actions_addopen: New file.
22911         * lib/spawn_faction_addopen.c: New file, from GNU libc with
22912         modifications.
22913         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
22914         the new module.
22915
22916         New module 'posix_spawn_file_actions_adddup2'.
22917         * modules/posix_spawn_file_actions_adddup2: New file.
22918         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
22919         modifications.
22920         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
22921         the new module.
22922
22923         New module 'posix_spawn_file_actions_addclose'.
22924         * modules/posix_spawn_file_actions_addclose: New file.
22925         * lib/spawn_faction_addclose.c: New file, from GNU libc with
22926         modifications.
22927         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
22928         the new module.
22929
22930         New module 'posix_spawn_file_actions_init'.
22931         * modules/posix_spawn_file_actions_init: New file.
22932         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
22933         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
22934         new module.
22935
22936         New module 'posix_spawn-internal'.
22937         * modules/posix_spawn-internal: New file.
22938         * lib/spawn_int.h: New file, from GNU libc with modifications.
22939         * lib/spawni.c: New file, from GNU libc with modifications.
22940         * m4/posix_spawn.m4: New file.
22941
22942         New module 'spawn'.
22943         * modules/spawn: New file.
22944         * lib/spawn.in.h: New file, from GNU libc with modifications.
22945         * m4/spawn_h.m4: New file.
22946         * doc/posix-headers/spawn.texi: Mention the new module.
22947
22948 2008-09-28  Bruno Haible  <bruno@clisp.org>
22949
22950         * modules/sched-tests: New file.
22951         * tests/test-sched.c: New file.
22952
22953         New module 'sched'.
22954         * modules/sched: New file.
22955         * lib/sched.in.h: New file.
22956         * m4/sched_h.m4: New file.
22957         * doc/posix-headers/sched.texi: Mention the new module.
22958
22959 2008-09-27  Eric Blake  <ebb9@byu.net>
22960
22961         Fix previous patch, and tweak references to $0.
22962         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
22963         (func_version, func_gnulib_dir): Don't call this program
22964         gnulib-tool.
22965         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
22966         with using $0 in function.
22967         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
22968         (func_fatal_error): Reuse the name the user invoked us with.
22969
22970 2008-09-27  Bruno Haible  <bruno@clisp.org>
22971
22972         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
22973         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
22974         (gl_ICONV_H): Not here.
22975         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
22976         instead of assigning ICONV_H directly.
22977
22978         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
22979         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
22980         WCHAR_H directly.
22981
22982 2008-09-27  Bruno Haible  <bruno@clisp.org>
22983
22984         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
22985         * modules/arpa_inet (Depends-on): Add link-warning.
22986         (Makefile.am): Insert the definition of GL_LINK-WARNING.
22987         * modules/unistd (Makefile.am): Likewise.
22988
22989 2008-09-26  Bruno Haible  <bruno@clisp.org>
22990
22991         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
22992         variables.
22993         (func_version): Essentially copied from gnulib-tool.
22994         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
22995         func_readlink): Copied from gnulib-tool.
22996
22997 2008-09-26  Bruno Haible  <bruno@clisp.org>
22998
22999         * gnulib-tool (func_version): Change directory to $gnulib_dir before
23000         invoking git-version-gen.
23001
23002 2008-09-26  Bruno Haible  <bruno@clisp.org>
23003
23004         * posix-modules: Update to directory names changed on 2008-01-19.
23005         Remove commas in output before splitting into words. No more need to
23006         avoid 'ftruncate' since 2007-02-19.
23007
23008 2008-09-26  Bruno Haible  <bruno@clisp.org>
23009
23010         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
23011
23012 2008-09-26  Bruno Haible  <bruno@clisp.org>
23013
23014         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
23015         * modules/fwriteerror (Depends-on): Add errno.
23016
23017 2008-09-26  Bruno Haible  <bruno@clisp.org>
23018
23019         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
23020         * tests/test-vc-list-files-cvs.sh: Likewise.
23021
23022 2008-09-26  Bruno Haible  <bruno@clisp.org>
23023
23024         * doc/posix-headers/sys_resource.texi: Reorder items.
23025
23026 2008-09-26  Jim Meyering  <meyering@redhat.com>
23027
23028         fts: tweak inode comparison function
23029         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
23030         inode numbers, as documented.
23031
23032         fts: sort dirent entries on inode number before traversing
23033         This avoids a quadratic, seek-related performance penalty when
23034         operating on a directory containing many entries (measurable at 10k;
23035         3.5 hours at 2 million entries with a cold cache) on certain types
23036         of file systems, including ext3 and ext4, but not tmpfs.
23037         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
23038         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
23039         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
23040         (fs_handles_readdir_ordered_dirents_efficiently): New function.
23041         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
23042         (fts_build): Set the stat.st_ino member from D_INO.
23043         If it is likely to be useful, sort dirent entries on inode number.
23044
23045         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
23046         and the struct statfs.f_type member.
23047         * modules/fts (Depends-on): Add d-ino.
23048
23049 2008-09-26  Bruno Haible  <bruno@clisp.org>
23050
23051         * modules/sigpipe-die (Depends-on): Add sigpipe.
23052
23053         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
23054         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
23055         and GNULIB_STDIO_H_SIGPIPE are set.
23056         * lib/stdio-write.c: New file.
23057         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
23058         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
23059         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
23060         REPLACE_STDIO_WRITE_FUNCS.
23061         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
23062         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
23063         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
23064         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
23065         * modules/stdio (Files): Add lib/stdio-write.c.
23066         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
23067         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
23068         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
23069         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
23070         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
23071         REPLACE_FPRINTF_POSIX.
23072         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
23073         REPLACE_PRINTF_POSIX.
23074         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
23075         REPLACE_VFPRINTF_POSIX.
23076         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
23077         REPLACE_VPRINTF_POSIX.
23078         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
23079         SIGPIPE issue.
23080         * doc/posix-functions/fputc.texi: Likewise.
23081         * doc/posix-functions/fputs.texi: Likewise.
23082         * doc/posix-functions/fwrite.texi: Likewise.
23083         * doc/posix-functions/printf.texi: Likewise.
23084         * doc/posix-functions/putc.texi: Likewise.
23085         * doc/posix-functions/putchar.texi: Likewise.
23086         * doc/posix-functions/puts.texi: Likewise.
23087         * doc/posix-functions/vfprintf.texi: Likewise.
23088         * doc/posix-functions/vprintf.texi: Likewise.
23089
23090         * modules/safe-write (Depends-on): Add write.
23091
23092         * modules/sigpipe-tests: New file.
23093         * tests/test-sigpipe.c: New file.
23094         * tests/test-sigpipe.sh: New file.
23095
23096         * modules/write: New file.
23097         * lib/unistd.in.h: Include <sys/types.h>.
23098         (write): New declaration.
23099         * lib/write.c: New file.
23100         * m4/write.m4: New file.
23101         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
23102         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
23103         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
23104         GNULIB_WRITE, REPLACE_WRITE.
23105         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
23106         and the SIGPIPE issue.
23107
23108         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
23109         (raise): New declaration.
23110         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
23111         (ext_signal): New function.
23112         (rpl_raise): New function.
23113         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
23114         GNULIB_SIGNAL_H_SIGPIPE.
23115         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
23116         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
23117
23118         * modules/sigpipe: New file.
23119         * m4/sigpipe.m4: New file.
23120
23121 2008-09-25  Derek Price  <derek@ximbiot.com>
23122             Bruno Haible  <bruno@clisp.org>
23123
23124         * gnulib-tool (func_import): Report all license incompatibilities, not
23125         just the first one.
23126
23127 2008-09-25  Bruno Haible  <bruno@clisp.org>
23128
23129         * gnulib-tool (func_import): When computing the edits, consider not
23130         only the Makefile.ams that exist but also those that will be generated.
23131
23132 2008-09-25  Simon Josefsson  <simon@josefsson.org>
23133
23134         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
23135         fixes gnulib-tool --test warning about duplicate dependency.
23136
23137 2008-09-25  Bruno Haible  <bruno@clisp.org>
23138
23139         * gnulib-tool: Don't ask the user to perform edits in the generated
23140         Makefile.ams.
23141         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
23142         apply to the Makefile.am being generated.
23143         (func_emit_tests_Makefile_am): Execute edits that apply to the
23144         Makefile.am being generated.
23145         (func_import): Setup list of Makefile.am edits before emitting the
23146         Makefile.ams, not at the end.
23147         (func_create_testdir): Update.
23148         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23149
23150 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23151
23152         * gnulib-tool (func_import): Store the --tests-base option in the
23153         comment in gnulib-cache.m4.
23154
23155 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
23156
23157         * NEWS: Document increased portability that sys_select now provides.
23158
23159         * lib/sys_select.in.h: Install select wrapper.
23160         * lib/sys_socket.in.h: Use more descriptive name when there is no
23161         select wrapper.
23162         * lib/winsock-select.c: New.
23163         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
23164         Require gl_HEADER_SYS_SOCKET.
23165         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
23166         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
23167         * tests/test-sys_select.c: Add functional tests.
23168
23169 2008-09-24  Eric Blake  <ebb9@byu.net>
23170
23171         open, fopen: close fd leak in last patch
23172         * lib/open.c (rpl_open): Close fd before returning error.
23173         * lib/fopen.c (rpl_fopen): Close fd before returning error.
23174         * doc/posix-functions/open.texi (open): Document that Irix also
23175         has the bug.
23176         * doc/posix-functions/fopen.texi (fopen): Likewise.
23177         Reported by Paolo Bonzini.
23178
23179 2008-09-24  Bruno Haible  <bruno@clisp.org>
23180
23181         Ensure that a filename ending in a slash cannot be used to access a
23182         non-directory.
23183         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
23184         to check whether it's really a directory.
23185         * lib/fopen.c: Include fcntl.h, unistd.h.
23186         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
23187         and fdopen().
23188         * modules/fopen (Depends-on): Add unistd.
23189         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
23190         * tests/test-fopen.c (main): Likewise.
23191         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
23192         * doc/posix-functions/fopen.texi: Likewise.
23193         Reported by Eric Blake.
23194
23195 2008-09-23  Eric Blake  <ebb9@byu.net>
23196
23197         c-stack: avoid compiler optimizations when provoking overflow
23198         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
23199         recursion harder to optimize, to ensure a stack overflow occurs.
23200         * tests/test-c-stack.c (recurse): Likewise.
23201         Borrowed from libsigsegv.
23202
23203         c-stack: work around Irix sigaltstack bug
23204         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
23205         whether sigaltstack uses wrong end of stack_t (copied in part from
23206         libsigsegv).
23207         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
23208         Irix bug, without requiring an over-allocation.
23209         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
23210         bug.
23211
23212         fopen: document mingw bug on directories
23213         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
23214         not allowing a stream visiting a directory, even though reading
23215         from such a stream is not portable.
23216
23217 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
23218
23219         * lib/poll.c: Rewrite.
23220         * modules/poll: Depend on alloca.
23221
23222 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
23223
23224         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
23225         instead define prototypes for a full set of wrappers.  Ensure
23226         that Cygwin does not use the compatibility code, which is only
23227         for MinGW.
23228         * lib/winsock.c: New.
23229         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
23230         * modules/sys_socket: Add lib/winsock.c.
23231
23232         * modules/poll-tests: Add errno and perror.
23233         * tests/test-poll.c: Use ioctl, not ioctlsocket.
23234
23235 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
23236
23237         * tests/test-poll.c: Downgrade minimum needed Winsock version.
23238
23239 2008-09-23  Bruno Haible  <bruno@clisp.org>
23240
23241         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
23242         * doc/glibc-functions/*: Likewise.
23243
23244 2008-09-23  Simon Josefsson  <simon@josefsson.org>
23245
23246         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
23247         success.
23248
23249 2008-09-22  Eric Blake  <ebb9@byu.net>
23250             Bruno Haible  <bruno@clisp.org>
23251
23252         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
23253         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
23254         supply %A but mishandle pseudo-NaN.
23255         Reported by Simon Josefsson.
23256
23257 2008-09-21  Bruno Haible  <bruno@clisp.org>
23258
23259         * tests/test-lock.c (main): Tweak skip message.
23260         * tests/test-tls.c (main): Likewise.
23261
23262 2008-09-21  Bruno Haible  <bruno@clisp.org>
23263
23264         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
23265         whether 'struct sigaction' has sa_sigaction here...
23266         (gl_PREREQ_SIG_HANDLER_H): ... not here.
23267         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
23268
23269 2008-09-21  Bruno Haible  <bruno@clisp.org>
23270
23271         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
23272         section.
23273         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
23274         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
23275         the new section.
23276         (Support for obsolete systems lacking POSIX:2001): New section.
23277         (String handling <string.h>): Move strdup to the new section.
23278         Suggested by Simon Josefsson and Paolo Bonzini.
23279
23280 2008-09-21  Bruno Haible  <bruno@clisp.org>
23281
23282         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
23283         exponents in %e and %g results on 'long double'. Needed for mingw's
23284         improved *printf functions.
23285         * tests/test-vasprintf-posix.c (test_function): Likewise.
23286         * tests/test-snprintf-posix.h (test_function): Likewise.
23287         * tests/test-sprintf-posix.h (test_function): Likewise.
23288         Reported by Eric Blake.
23289
23290 2008-09-21  Bruno Haible  <bruno@clisp.org>
23291
23292         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
23293         * tests/test-sprintf-posix.h (test_function): Likewise.
23294
23295 2008-09-21  Bruno Haible  <bruno@clisp.org>
23296
23297         * modules/getpass (Depends-on): Add strdup-posix.
23298
23299         New module 'strdup-posix'.
23300         * modules/strdup-posix: New file.
23301         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
23302         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
23303         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
23304         REPLACE_STRDUP.
23305         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
23306         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
23307         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23308         strdup-posix.
23309
23310         * modules/strdup (Depends-on): Remove malloc-posix.
23311
23312 2008-09-20  Bruno Haible  <bruno@clisp.org>
23313
23314         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
23315         Wildenhues.
23316
23317 2008-09-20  Bruno Haible  <bruno@clisp.org>
23318
23319         Ensure that wint_t gets defined on IRIX 5.3.
23320         * lib/wchar.in.h (wint_t): Define if not defined by the system.
23321         * lib/wctype.in.h (wint_t): Likewise.
23322         (__wctype_wint_t): Remove type.
23323         (isw*): Use wint_t instead of __wctype_wint_t.
23324         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
23325         * modules/wchar (Files): Add m4/wint_t.m4.
23326         (Makefile.am): Substitute HAVE_WINT_T.
23327         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
23328         * tests/test-wctype.c: Check that wint_t is defined.
23329         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
23330         * doc/posix-headers/wctype.texi: Likewise.
23331         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
23332
23333 2008-09-18  Bruno Haible  <bruno@clisp.org>
23334
23335         * gnulib-tool (func_exit): Update comment.
23336
23337 2008-09-18  Simon Josefsson  <simon@josefsson.org>
23338
23339         * modules/getaddrinfo (Depends-on): Remove strdup, this module
23340         assumes strdup exists and does not depend on strdup to return
23341         ENOMEM on out of memory conditions.
23342
23343 2008-09-18  Bruno Haible  <bruno@clisp.org>
23344
23345         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
23346         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
23347         digits for the exponent.
23348
23349 2008-09-18  Jim Meyering  <meyering@redhat.com>
23350             Bruno Haible  <bruno@clisp.org>
23351
23352         * lib/vasnprintf.c (decimal_point_char): Define also if
23353         NEED_PRINTF_INFINITE_LONG_DOUBLE.
23354
23355 2008-09-16  Bruno Haible  <bruno@clisp.org>
23356         and Eric Blake  <ebb9@byu.net>
23357
23358         vasnprintf: support Irix 5.3
23359         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
23360         that mishandle long double infinity.
23361         Reported by Tom G. Christensen.
23362
23363 2008-09-16  Bruno Haible  <bruno@clisp.org>
23364
23365         * doc/glibc-functions/scandir.texi: Mention the function is missing on
23366         Solaris 9.
23367         * doc/glibc-functions/alphasort.texi: Likewise.
23368         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
23369
23370 2008-09-16  Jim Meyering  <meyering@redhat.com>
23371
23372         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
23373         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
23374         a umask modification leak out of a subshell.  Otherwise, the
23375         opensolaris /bin/sh would be accepted and thus cause unwarranted
23376         failures in the coreutils test suite.
23377
23378 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
23379
23380         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
23381         to succeed.
23382
23383 2008-09-16  Jim Meyering  <meyering@redhat.com>
23384
23385         avoid spurious test failure when library is built without ACL support
23386         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
23387         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
23388         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
23389         * tests/test-copy-acl.sh: Likewise.
23390
23391 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23392
23393         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
23394         based on character occurrence counts.
23395
23396 2008-09-15  Eric Blake  <ebb9@byu.net>
23397
23398         tests: avoid some compiler warnings
23399         * tests/test-memchr.c (main): Pass NULL indirectly.
23400         * tests/test-closein.c (main): Avoid unused variable.
23401
23402 2008-09-15  Bruno Haible  <bruno@clisp.org>
23403
23404         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
23405         are missing on OpenBSD 4.0 individually.
23406         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23407
23408 2008-09-15  Bruno Haible  <bruno@clisp.org>
23409
23410         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
23411         * doc/posix-functions/strerror.texi: Mention also Cygwin.
23412         * doc/posix-functions/perror.texi: Likewise.
23413         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
23414         is missing.
23415         Reported by Eric Blake.
23416
23417         * lib/errno.in.h: Use replacement values >= 2000.
23418         Reported by Eric Blake.
23419
23420 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23421
23422         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
23423         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
23424         limit.
23425         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
23426         compareseq was aborted.
23427
23428 2008-09-14  Bruno Haible  <bruno@clisp.org>
23429
23430         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
23431         yvec_edit_count.
23432         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
23433         (fstrcmp_bounded): Simplify result computation accordingly.
23434
23435 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23436
23437         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
23438         (fstrcmp): Define in terms of fstrcmp_bounded.
23439         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
23440         lower_bound argument.
23441         Return quickly if the result is certainly < lower_bound.
23442         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
23443
23444 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23445
23446         * lib/diffseq.h (EARLY_ABORT): New macro.
23447         (compareseq): Change return type to bool. Return true when EARLY_ABORT
23448         evaluates to true.
23449
23450 2008-09-14  Bruno Haible  <bruno@clisp.org>
23451
23452         * modules/perror-tests: New file.
23453         * tests/test-perror.sh: New file.
23454         * tests/test-perror.c: New file.
23455
23456         New module 'perror'.
23457         * lib/stdio.in.h (perror): New declaration.
23458         * lib/perror.c: New file.
23459         * m4/perror.m4: New file.
23460         * modules/perror: New file.
23461         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
23462         * doc/posix-functions/perror.texi: Mention the perror module.
23463         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
23464         REPLACE_PERROR.
23465         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
23466         REPLACE_PERROR.
23467
23468 2008-09-14  Bruno Haible  <bruno@clisp.org>
23469
23470         * modules/stdio (Makefile.am): Reorder to match the order in
23471         lib/stdio.in.h.
23472         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
23473
23474 2008-09-13  Bruno Haible  <bruno@clisp.org>
23475
23476         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
23477
23478 2008-09-13  Bruno Haible  <bruno@clisp.org>
23479
23480         Extend strerror to cover the added errno values.
23481         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
23482         (rpl_strerror): Provide error messages for the added errno values and
23483         for the WSA* values.
23484         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
23485         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
23486         strerror.
23487         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
23488         * modules/strerror (Depends-on): Add errno.
23489         * doc/posix-functions/strerror.texi: Document the change.
23490         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
23491         and EOVERFLOW.
23492
23493 2008-09-13  Bruno Haible  <bruno@clisp.org>
23494
23495         * modules/EOVERFLOW: Remove file.
23496         * m4/eoverflow.m4: Remove file.
23497         * modules/EOVERFLOW-tests: Remove file.
23498         * tests/test-EOVERFLOW.c: Remove file.
23499         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
23500         * modules/ftell (Depends-on): Likewise.
23501         * modules/getdelim (Depends-on): Likewise.
23502         * modules/getugroups (Depends-on): Likewise.
23503         * modules/poll (Depends-on): Likewise.
23504         * modules/snprintf (Depends-on): Likewise.
23505         * modules/sprintf-posix (Depends-on): Likewise.
23506         * modules/vasnprintf (Depends-on): Likewise.
23507         * modules/vasprintf (Depends-on): Likewise.
23508         * modules/vfprintf-posix (Depends-on): Likewise.
23509         * modules/vsnprintf (Depends-on): Likewise.
23510         * modules/vsprintf-posix (Depends-on): Likewise.
23511         * modules/xvasprintf (Depends-on): Likewise.
23512         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
23513         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
23514         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
23515         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
23516         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
23517         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
23518         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
23519         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
23520         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
23521         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
23522         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
23523         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
23524         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
23525         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
23526         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
23527         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
23528         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
23529         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
23530         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
23531         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
23532         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
23533         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
23534         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
23535         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
23536         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
23537         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
23538         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
23539         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
23540         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
23541         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
23542         * MODULES.html.sh: Remove EOVERFLOW.
23543         * NEWS: Mention the change.
23544
23545 2008-09-13  Bruno Haible  <bruno@clisp.org>
23546
23547         * modules/errno-tests: New file.
23548         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
23549
23550         * lib/errno.in.h: New file.
23551         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
23552         * modules/errno: New file.
23553         * doc/posix-headers/errno.texi: Update documentation.
23554         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
23555
23556 2008-09-13  Bruno Haible  <bruno@clisp.org>
23557
23558         * tests/test-poll.c: Use #if for native Windows, rather than testing
23559         __MSVCRT__.
23560
23561 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23562             Bruno Haible  <bruno@clisp.org>
23563
23564         * lib/glob.c: Don't include <pwd.h> on native Windows.
23565         (WINDOWS32): New macro.
23566         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
23567
23568 2008-09-13  Bruno Haible  <bruno@clisp.org>
23569
23570         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
23571         (ETIMEDOUT): Remove macro.
23572         (glthread_cond_timedwait_multithreaded): New declaration.
23573         (glthread_cond_timedwait): Use it.
23574         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
23575         (glthread_cond_timedwait_multithreaded): New function.
23576
23577 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
23578
23579         * modules/poll-tests: Do not check for io.h.
23580         * tests/test-poll.c: Check for __MSVCRT__ instead.
23581
23582 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
23583
23584         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
23585         * modules/poll-tests: Add inet_pton, stdbool, sockets.
23586         * tests/test-poll.c: Use them.  Use _pipe on Windows.
23587
23588 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
23589
23590         * modules/poll-tests: New.
23591         * tests/test-poll.c: New.
23592
23593 2008-09-12  Eric Blake  <ebb9@byu.net>
23594
23595         frexp: test for NetBSD failure on -0.0
23596         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
23597         not all, bugs from NetBSD 3.0 have been fixed.
23598         * doc/posix-functions/frexp.texi (frexp): Document bug.
23599         Reported by Thomas Klausner.
23600
23601         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
23602         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
23603         literal -0.0.
23604         Reported by Jonathan C. Patschke <jp@centtech.com>.
23605
23606 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23607
23608         * lib/glthread/cond.h: Use dummy implementation also if
23609         USE_WIN32_THREADS.
23610
23611 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23612
23613         * modules/fnmatch-posix (License): Change to LGPLv2+.
23614         * modules/fnmatch-gnu (License): Likewise.
23615
23616 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23617
23618         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
23619
23620 2008-09-11  Jim Meyering  <meyering@redhat.com>
23621
23622         * users.txt: Add gtk-vnc.
23623
23624 2008-09-08  Simon Josefsson  <simon@josefsson.org>
23625
23626         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
23627         rotate amounts.
23628
23629         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
23630         required for 16-bit and 8-bit rotates.
23631         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
23632         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
23633         UINT8_MAX instead of hard-coded constants.
23634         Suggested by Paul Eggert.
23635
23636 2008-09-07  Bruno Haible  <bruno@clisp.org>
23637
23638         * tests/test-striconveh.c (main): Check behaviour when converting from
23639         UTF-7.
23640
23641         Make striconveh work better with stateful encodings.
23642         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
23643         that iconv does not increment the inptr when returning -1/EINVAL.
23644
23645 2008-09-07  Bruno Haible  <bruno@clisp.org>
23646
23647         * build-aux/config.rpath: Update according to libtool-2.2.6.
23648         * build-aux/config.libpath: Likewise.
23649
23650 2008-09-06  Bruno Haible  <bruno@clisp.org>
23651
23652         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
23653         * lib/freadptr.c (freadptr): Likewise.
23654         * lib/freadseek.c (freadptrinc): Likewise.
23655         Reported by Simon Josefsson.
23656
23657 2008-09-06  Bruno Haible  <bruno@clisp.org>
23658
23659         * modules/freadptr (License): Change to LGPLv2+.
23660         * modules/freadseek (License): Likewise.
23661         Suggested by Eric Blake.
23662
23663         * modules/memchr2 (License): Change to LGPLv2+.
23664         Approved by Eric Blake.
23665
23666 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23667             Bruno Haible  <bruno@clisp.org>
23668
23669         Make gnulib-tool work with native 'sed' on AIX.
23670         * gnulib-tool (sed_noop): New variable.
23671         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
23672         func_add_or_update, func_create_testdir): Use it to initialize sed
23673         script variables.
23674         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23675
23676 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
23677             Bruno Haible  <bruno@clisp.org>
23678
23679         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
23680         also works after #include directives.
23681
23682 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
23683
23684         getdate.y: reject an out-of-range timezone value
23685         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
23686         the range [-24...+24].  When specified with only one or two digits,
23687         * tests/test-getdate.c: Tests for the fix.
23688         * doc/getdate.texi: Document this change.
23689
23690 2008-09-03  Bruno Haible  <bruno@clisp.org>
23691
23692         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
23693
23694 2008-09-02  Simon Josefsson  <simon@josefsson.org>
23695
23696         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
23697         <bruce.korb@gmail.com> with ideas from Ben Pfaff
23698         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
23699         Blake <ebb9@byu.net>.
23700
23701         * tests/test-bitrotate.c: Add more test vectors.
23702
23703 2008-09-02  Eric Blake  <ebb9@byu.net>
23704
23705         vasnprintf-posix: handle large precision via %.*d
23706         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
23707         when handling it ourselves.
23708         * tests/test-vasnprintf-posix.c (test_function): Add test.
23709         * tests/test-snprintf-posix.h (test_function): Likewise.
23710         * tests/test-sprintf-posix.h (test_function): Likewise.
23711         * tests/test-vasprintf-posix.c (test_function): Likewise.
23712         Reported by Alain Guibert.
23713
23714 2008-09-01  Eric Blake  <ebb9@byu.net>
23715
23716         c-stack: make configure-time check more robust
23717         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
23718         successful sigaction call.
23719         Reported by Tom G. Christensen.
23720
23721 2008-09-01  Bruno Haible  <bruno@clisp.org>
23722
23723         New module 'findprog-lgpl'.
23724         * modules/findprog-lgpl: New file.
23725         * lib/findprog-lgpl.c: New file.
23726         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
23727         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
23728         to decide whether to use strdup or xstrdup, concatenated_filename or
23729         xconcatenated_filename.
23730
23731 2008-09-01  Bruno Haible  <bruno@clisp.org>
23732
23733         Split module 'concat-filename' into 'concat-filename' (LGPL) and
23734         'xconcat-filename' (GPL).
23735         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
23736         (License): Change to LGPLv2+.
23737         * modules/xconcat-filename: New file.
23738         * lib/concat-filename.h (concatenated_filename): Change specification.
23739         (xconcatenated_filename): New declaration.
23740         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
23741         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
23742         memory situations.
23743         * lib/xconcat-filename.c: New file.
23744         * NEWS: Mention the change.
23745         * lib/findprog.c: Include concat-filename.h, not filename.h.
23746         (find_in_path): Use xconcatenated_filename instead of
23747         concatenated_filename.
23748         * lib/javacomp.c: Include concat-filename.h, not filename.h.
23749         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
23750         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
23751         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
23752         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
23753         instead of concatenated_filename.
23754         * lib/javaexec.c: Include concat-filename.h, not filename.h.
23755         (execute_java_class): Use xconcatenated_filename instead of
23756         concatenated_filename.
23757         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
23758         * modules/javacomp (Depends-on): Likewise.
23759         * modules/javaexec (Depends-on): Likewise.
23760
23761 2008-09-01  Bruno Haible  <bruno@clisp.org>
23762
23763         Split module 'filename' into 'filename' and 'concat-filename'.
23764         * modules/filename: Keep only lib/filename.h.
23765         (License): Change to LGPLv2+.
23766         * modules/concat-filename: New file, extracted from modules/filename.
23767         * lib/filename.h (concatenated_filename): Remove declaration.
23768         * lib/concat-filename.h: New file, extracted from lib/filename.h.
23769         * lib/concat-filename.c: Include concat-filename.h.
23770         * NEWS: Mention the change.
23771
23772 2008-09-01  Simon Josefsson  <simon@josefsson.org>
23773
23774         * lib/bitrotate.h (rotl8, rotr8): Add.
23775
23776         * modules/bitrotate (configure.ac): Need
23777         AC_REQUIRE([AC_C_INLINE]).
23778         (Description): Mention stdint.h.  Reported by Bruno Haible
23779         <bruno@clisp.org>.
23780
23781         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
23782         Paolo Bonzini <bonzini@gnu.org>.
23783
23784 2008-08-31  Bruno Haible  <bruno@clisp.org>
23785
23786         Assume Solaris specific bi-arch conventions on Solaris systems.
23787         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
23788         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
23789         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
23790         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
23791         like acl_libdirstem.
23792         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
23793         acl_libdirstem.
23794         * NEWS: Mention the change.
23795         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
23796
23797 2008-08-31  Jim Meyering  <meyering@redhat.com>
23798
23799         * lib/strftime.h: Add comments describing the two added arguments.
23800
23801         remove duplicate #include directives
23802         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
23803         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
23804
23805 2008-08-31  Bruno Haible  <bruno@clisp.org>
23806
23807         New module 'sigpipe-die'.
23808         * modules/sigpipe-die: New file.
23809         * lib/sigpipe-die.h: New file.
23810         * lib/sigpipe-die.c: New file.
23811         * MODULES.html.sh (Signal handling): Add sigpipe-die.
23812
23813 2008-08-31  Bruno Haible  <bruno@clisp.org>
23814
23815         Don't override previously installed signal handlers.
23816         * lib/fatal-signal.c (saved_sigactions): New variable.
23817         (uninstall_handlers): Reset the signal to the saved handler, not
23818         to SIG_DFL (except when ignored).
23819         (install_handlers): Save the previous handlers.
23820
23821 2008-08-30  Bruno Haible  <bruno@clisp.org>
23822
23823         * gnulib-tool (func_reset_sigpipe): New function.
23824         (func_get_automake_snippet, func_modules_transitive_closure,
23825         func_import): Invoke it before a join command that reads from stdin,
23826         to avoid "echo: write error: Broken pipe" error messages on stderr.
23827         Reported by Sam Steingold <sds@gnu.org>.
23828
23829 2008-08-30  Bruno Haible  <bruno@clisp.org>
23830
23831         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
23832         Code copied from m4/open.m4.
23833         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
23834         access and the filename ends in a slash. Code copied from lib/open.c.
23835         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
23836         * tests/test-fopen.c (main): Check against bug with trailing slash.
23837
23838 2008-08-29  Bruno Haible  <bruno@clisp.org>
23839
23840         Avoid some "gcc -pedantic" warnings.
23841         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
23842         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
23843         * lib/dirent.in.h: Likewise.
23844         * lib/fcntl.in.h: Likewise.
23845         * lib/float.in.h: Likewise.
23846         * lib/iconv.in.h: Likewise.
23847         * lib/inttypes.in.h: Likewise.
23848         * lib/locale.in.h: Likewise.
23849         * lib/math.in.h: Likewise.
23850         * lib/netinet_in.in.h: Likewise.
23851         * lib/search.in.h: Likewise.
23852         * lib/signal.in.h: Likewise.
23853         * lib/stdarg.in.h: Likewise.
23854         * lib/stdint.in.h: Likewise.
23855         * lib/stdio.in.h: Likewise.
23856         * lib/stdlib.in.h: Likewise.
23857         * lib/string.in.h: Likewise.
23858         * lib/strings.in.h: Likewise.
23859         * lib/sys_select.in.h: Likewise.
23860         * lib/sys_socket.in.h: Likewise.
23861         * lib/sys_stat.in.h: Likewise.
23862         * lib/sys_time.in.h: Likewise.
23863         * lib/sysexits.in.h: Likewise.
23864         * lib/time.in.h: Likewise.
23865         * lib/unistd.in.h: Likewise.
23866         * lib/wchar.in.h: Likewise.
23867         * lib/wctype.in.h: Likewise.
23868         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
23869         * modules/fchdir (Makefile.am): Likewise.
23870         * modules/fcntl (Makefile.am): Likewise.
23871         * modules/float (Makefile.am): Likewise.
23872         * modules/iconv_open (Makefile.am): Likewise.
23873         * modules/inttypes (Makefile.am): Likewise.
23874         * modules/locale (Makefile.am): Likewise.
23875         * modules/math (Makefile.am): Likewise.
23876         * modules/netinet_in (Makefile.am): Likewise.
23877         * modules/search (Makefile.am): Likewise.
23878         * modules/signal (Makefile.am): Likewise.
23879         * modules/stdarg (Makefile.am): Likewise.
23880         * modules/stdint (Makefile.am): Likewise.
23881         * modules/stdio (Makefile.am): Likewise.
23882         * modules/stdlib (Makefile.am): Likewise.
23883         * modules/string (Makefile.am): Likewise.
23884         * modules/strings (Makefile.am): Likewise.
23885         * modules/sys_select (Makefile.am): Likewise.
23886         * modules/sys_socket (Makefile.am): Likewise.
23887         * modules/sys_stat (Makefile.am): Likewise.
23888         * modules/sys_time (Makefile.am): Likewise.
23889         * modules/sysexits (Makefile.am): Likewise.
23890         * modules/time (Makefile.am): Likewise.
23891         * modules/unistd (Makefile.am): Likewise.
23892         * modules/wchar (Makefile.am): Likewise.
23893         * modules/wctype (Makefile.am): Likewise.
23894         Reported by Reuben Thomas <rrt@sc3d.org>.
23895
23896 2008-08-29  Bruno Haible  <bruno@clisp.org>
23897
23898         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
23899         any more.
23900
23901 2008-08-29  Simon Josefsson  <simon@josefsson.org>
23902
23903         * MODULES.html.sh (Misc): Add bitrotate.
23904
23905         * modules/bitrotate: New file.
23906
23907         * lib/bitrotate.h: New file.
23908
23909         * modules/bitrotate-tests: New file.
23910
23911         * tests/test-bitrotate.c: New file.
23912
23913         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
23914         on the bitrotate module.
23915
23916         * lib/arctwo.c: Use new bitrotate module.
23917
23918 2008-08-29  Jim Meyering  <meyering@redhat.com>
23919
23920         bootstrap: merge changes from coreutils
23921         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
23922         of copied files.  Remove a kludge, now that this is fixed.
23923         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
23924         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
23925         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
23926
23927 2008-08-29  Bruno Haible  <bruno@clisp.org>
23928
23929         * MODULES.html.sh: Remove --cvs-urls option.
23930
23931 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
23932
23933         maint.mk: adjust to file name change
23934         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
23935
23936 2008-08-28  Jim Meyering  <meyering@redhat.com>
23937
23938         * modules/getndelim2 (License): Relicense to LGPLv2+.
23939         Approved by Richard Stallman for the version of 1995, and by
23940         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
23941
23942 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
23943
23944         * lib/getdelim.c (flockfile, funlockfile): Make all of them
23945         dummy if one is not available.  Do not touch them if
23946         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
23947         (getc_maybe_unlocked): New.
23948         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
23949
23950 2008-08-26  Eric Blake  <ebb9@byu.net>
23951
23952         doc/INSTALL: resync from autoconf
23953         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
23954         (INSTALL_PRELUDE): Delete; this is done more efficiently by
23955         moving...
23956         * install.texi [!autoconf]: ...here.  Resync from autoconf.
23957         * INSTALL: Regenerate.
23958         * INSTALL.ISO: New file.
23959         * INSTALL.UTF-8: Likewise.
23960
23961 2008-08-26  Jim Meyering  <meyering@redhat.com>
23962
23963         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
23964         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
23965         these definitions conditional, so that they may be overridden, too.
23966
23967 2008-08-26  Bruno Haible  <bruno@clisp.org>
23968
23969         Generate INSTALL file variants with prettier quotes.
23970         * doc/Makefile (INSTALL_PRELUDE): New macro.
23971         (INSTALL): Use it.
23972         (INSTALL.ISO, INSTALL.UTF-8): New rules.
23973
23974 2008-08-26  Bruno Haible  <bruno@clisp.org>
23975
23976         Run makeinfo in an English locale.
23977         * doc/Makefile (MAKEINFO): New variable.
23978
23979 2008-08-26  Bruno Haible  <bruno@clisp.org>
23980
23981         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
23982         Suggested by Eric Blake.
23983
23984 2008-08-25  Bruno Haible  <bruno@clisp.org>
23985
23986         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
23987
23988 2008-08-25  Eric Blake  <ebb9@byu.net>
23989
23990         c-stack: test that stack overflow can be caught
23991         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
23992         that platform allows handling stack overflow; at least OS/2 EMX
23993         has sigaltstack, but crashes before transferring control to
23994         handler on stack overflow.
23995         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
23996         check for HAVE_STACK_OVERFLOW_HANDLING.
23997         Reported by Elbert Pol.
23998
23999 2008-08-25  Bruno Haible  <bruno@clisp.org>
24000
24001         * doc/posix-functions/strftime.texi: Fix description of strftime
24002         module.
24003
24004 2008-08-24  Bruno Haible  <bruno@clisp.org>
24005
24006         * tests/uniwidth/test-uc_width2.c: New file.
24007         * tests/uniwidth/test-uc_width2.sh: New file.
24008         * modules/uniwidth/width-tests (Files): Add the new files.
24009         (TESTS): Add uniwidth/test-uc_width2.sh.
24010         (TESTS_ENVIRONMENT): New variable.
24011         (check_PROGRAMS): Add test-uc_width2.
24012         (test_uc_width2_SOURCES): New variable.
24013
24014         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
24015         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
24016         not 0x00AB.
24017         Reported by Alexander V. Lukyanov <lav@netis.ru>.
24018
24019 2008-08-22  Eric Blake  <ebb9@byu.net>
24020
24021         test-lock, test-tls: mention why a test is skipped
24022         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
24023         skipped.
24024         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
24025
24026         count-one-bits: relax license
24027         * modules/count-one-bits (License): Relicense to LGPLv2+.
24028         Suggested by Ludovic Courtès, approved by Ben Pfaff.
24029
24030 2008-08-22  Andreas Schwab  <schwab@suse.de>
24031
24032         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
24033         Remove spurious space in assignment.
24034
24035 2008-08-21  Simon Josefsson  <simon@josefsson.org>
24036
24037         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
24038         Paul Eggert <eggert@CS.UCLA.EDU>.
24039
24040 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
24041
24042         * modules/gettext: Add m4/threadlib.m4.
24043
24044 2008-08-19  Eric Blake  <ebb9@byu.net>
24045
24046         test-c-stack: fix compilation failure on FreeBSD 5.0
24047         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
24048         headers before <sys/resource.h>.
24049         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
24050         the bug.
24051         Reported by Nelson H. F. Beebe.
24052
24053         strverscmp: migrate from "strverscmp.h" to <string.h>
24054         * modules/string (Makefile.am): Add new hooks.
24055         * modules/strverscmp (Files): Remove strverscmp.h.
24056         (Depends-on): Add string.
24057         (configure.ac): Add indicator.
24058         (Include): Mention new header.
24059         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
24060         defaults.
24061         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
24062         results.
24063         * lib/strverscmp.h: Delete.
24064         * lib/string.in.h (strverscmp): Provide declaration, when needed.
24065         * tests/test-strverscmp.c (includes): Adjust client.
24066         * lib/check-version.c (includes): Likewise.
24067         * NEWS: Document the change.
24068
24069         strverscmp: add unit test
24070         * modules/strverscmp-tests: New file.
24071         * tests/test-strverscmp.c: Likewise.
24072
24073 2008-08-19  Simon Josefsson  <simon@josefsson.org>
24074
24075         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
24076         regarding Windows crypto stuff, from Mono.
24077
24078 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
24079
24080         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
24081         if present, for intel RND.  Return error on failures.
24082
24083 2008-08-18  Ben Pfaff  <blp@gnu.org>
24084
24085         gitlog-to-changelog: give better diagnostic for failed pipe-open
24086         * build-aux/gitlog-to-changelog: Improve error message: suggest
24087         that the version of Git may be too old.
24088
24089 2008-08-18  Simon Josefsson  <simon@josefsson.org>
24090
24091         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
24092         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
24093
24094 2008-08-18  Bruno Haible  <bruno@clisp.org>
24095
24096         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
24097         pthread_in_use().
24098
24099 2008-08-18  Bruno Haible  <bruno@clisp.org>
24100
24101         * lib/glthread/threadlib.c: Include <pthread.h>.
24102
24103 2008-08-18  Bruno Haible  <bruno@clisp.org>
24104
24105         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
24106         glthread_recursive_lock_* macros.
24107         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
24108         Fix syntax error.
24109
24110 2008-08-18  Bruno Haible  <bruno@clisp.org>
24111
24112         * lib/glthread/thread.c: Avoid forcing a context switch right after
24113         thread creation.
24114
24115 2008-08-17  Bruno Haible  <bruno@clisp.org>
24116
24117         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
24118         * lib/glthread/thread.h: Provide Win32 specific implementation.
24119         * modules/thread (Files): Add lib/glthread/thread.c.
24120         (Depends-on): Add lock.
24121         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
24122
24123 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24124
24125         New module 'yield'.
24126         * modules/yield: New file.
24127         * lib/glthread/yield.h: New file.
24128         * m4/yield.m4: New file.
24129         * MODULES.html.sh (Multithreading): Add yield.
24130
24131 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24132
24133         New module 'thread'.
24134         * modules/thread: New file.
24135         * lib/glthread/thread.h: New file.
24136         * m4/thread.m4: New file.
24137         * MODULES.html.sh (Multithreading): Add thread.
24138
24139 2008-08-17  Bruno Haible  <bruno@clisp.org>
24140
24141         * lib/glthread/lock.h: Include <stdlib.h> always.
24142         * lib/glthread/tls.h: Likewise.
24143         * lib/glthread/cond.h: Likewise.
24144
24145 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24146
24147         New module 'cond'.
24148         * modules/cond: New file.
24149         * lib/glthread/cond.h: New file.
24150         * lib/glthread/cond.c: New file.
24151         * m4/cond.m4: New file.
24152         * MODULES.html.sh (Multithreading): Add cond.
24153
24154 2008-08-16  Eric Blake  <ebb9@byu.net>
24155
24156         c-stack: fix regression on Irix 5.3 from 2008-06-21
24157         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
24158         sa_sigaction...
24159         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
24160         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
24161         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
24162         * modules/signal (Makefile.am): Use the value.
24163         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
24164         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
24165         * doc/posix-headers/signal.texi (signal.h): Document this
24166         portability issue.
24167         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
24168         Reported by Tom G. Christensen.
24169
24170 2008-08-17  Bruno Haible  <bruno@clisp.org>
24171
24172         New module 'threadlib'.
24173         * modules/threadlib: New file.
24174         * lib/glthread/threadlib.c: New file, extracted from
24175         lib/glthread/lock.c.
24176         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
24177         functions.
24178         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
24179         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
24180         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
24181         macros.
24182         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
24183         (gl_DISABLE_THREADS): Remove macro.
24184         * modules/lock (Files): Remove build-aux/config.rpath.
24185         (Depends-on): Remove havelib. Add threadlib.
24186         (configure.ac-early): Remove section.
24187         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
24188         * modules/tls (Depends-on): Remove lock. Add threadlib.
24189         (Link): New section, copied from threadlib.
24190         * MODULES.html.sh (Multithreading): Add threadlib.
24191
24192 2008-08-14  Bruno Haible  <bruno@clisp.org>
24193
24194         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
24195         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
24196         glthread_rwlock_unlock, glthread_rwlock_destroy,
24197         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
24198         glthread_recursive_lock_destroy): Define as macros always.
24199         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
24200         glthread_lock_lock.
24201         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
24202         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
24203         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
24204         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
24205         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
24206         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
24207         (glthread_recursive_lock_lock_func): Renamed from
24208         glthread_recursive_lock_lock.
24209         (glthread_recursive_lock_unlock_func): Renamed from
24210         glthread_recursive_lock_unlock.
24211         (glthread_recursive_lock_destroy_func): Renamed from
24212         glthread_recursive_lock_destroy.
24213
24214 2008-08-14  Bruno Haible  <bruno@clisp.org>
24215
24216         * lib/glthread/lock.h: Renamed from lib/lock.h.
24217         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
24218         * lib/glthread/tls.h: Renamed from lib/tls.h.
24219         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
24220         * lib/fstrcmp.c: Update includes.
24221         * lib/strsignal.c: Update includes.
24222         * modules/lock (Files, Makefile.am): Update.
24223         (Include): Change to "glthread/lock.h".
24224         * modules/tls (Files, Makefile.am): Update.
24225         (Include): Change to "glthread/tls.h".
24226         * tests/test-lock.c: Update includes.
24227         * tests/test-tls.c: Update includes.
24228         * NEWS: Mention the renamed header files.
24229
24230 2008-08-11  Jim Meyering  <meyering@redhat.com>
24231
24232         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
24233
24234 2008-08-11  Eric Blake  <ebb9@byu.net>
24235
24236         test-c-stack: avoid C99-ism
24237         * tests/test-c-stack.c (main): Fix whitespace, move declaration
24238         before statement.
24239         Reported by Alain Guibert.
24240
24241 2008-08-10  Jim Meyering  <meyering@redhat.com>
24242
24243         ensure that return value of uinttostr et al are not ignored
24244         * lib/inttostr.h (__GNUC_PREREQ): Define.
24245         (__attribute_warn_unused_result__): Define.
24246         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
24247
24248 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
24249
24250         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
24251         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
24252
24253 2008-08-07  Jim Meyering  <meyering@redhat.com>
24254
24255         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
24256
24257         * modules/mkstemp (License): Relicense under LGPLv2+.
24258         * modules/tempname (License): Likewise.
24259
24260 2008-08-06  Bruno Haible  <bruno@clisp.org>
24261
24262         * lib/poll.c (poll): Further micro-optimization.
24263
24264 2008-08-06  Jim Meyering  <meyering@redhat.com>
24265
24266         inet_pton.c: use locale-independent tolower
24267         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
24268         (inet_pton6): Use c_tolower rather than tolower.
24269         * modules/inet_pton (Depends-on): Add c-ctype.
24270
24271 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
24272
24273         * lib/poll.c (poll): Avoid division when timeout is 0, cache
24274         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
24275
24276 2008-08-06  Jim Meyering  <meyering@redhat.com>
24277
24278         * modules/inet_pton (License): Relicense under LGPLv2+.
24279
24280 2008-08-03  Bruno Haible  <bruno@clisp.org>
24281
24282         Additional non-aborting API for lock and tls.
24283         * lib/lock.h: Include <errno.h>.
24284         (glthread_lock_init): New macro/function.
24285         (gl_lock_init): Define as wrapper around glthread_lock_init.
24286         (glthread_lock_lock): New macro/function.
24287         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
24288         (glthread_lock_unlock): New macro/function.
24289         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
24290         (glthread_lock_destroy): New macro/function.
24291         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
24292         (glthread_rwlock_init): New macro/function.
24293         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
24294         (glthread_rwlock_rdlock): New macro/function.
24295         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
24296         (glthread_rwlock_wrlock): New macro/function.
24297         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
24298         (glthread_rwlock_unlock): New macro/function.
24299         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
24300         (glthread_rwlock_destroy): New macro/function.
24301         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
24302         (glthread_recursive_lock_init): New macro/function.
24303         (gl_recursive_lock_init): Define as wrapper around
24304         glthread_recursive_lock_init.
24305         (glthread_recursive_lock_lock): New macro/function.
24306         (gl_recursive_lock_lock): Define as wrapper around
24307         glthread_recursive_lock_lock.
24308         (glthread_recursive_lock_unlock): New macro/function.
24309         (gl_recursive_lock_unlock): Define as wrapper around
24310         glthread_recursive_lock_unlock.
24311         (glthread_recursive_lock_destroy): New macro/function.
24312         (gl_recursive_lock_destroy): Define as wrapper around
24313         glthread_recursive_lock_destroy.
24314         (glthread_once): New macro/function.
24315         (gl_once): Define as wrapper around glthread_once.
24316         Update function declarations.
24317         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
24318         glthread_rwlock_init. Return error code.
24319         (glthread_rwlock_rdlock_multithreaded): Renamed from
24320         glthread_rwlock_rdlock. Return error code.
24321         (glthread_rwlock_wrlock_multithreaded): Renamed from
24322         glthread_rwlock_wrlock. Return error code.
24323         (glthread_rwlock_unlock_multithreaded): Renamed from
24324         glthread_rwlock_unlock. Return error code.
24325         (glthread_rwlock_destroy_multithreaded): Renamed from
24326         glthread_rwlock_destroy. Return error code.
24327         (glthread_recursive_lock_init_multithreaded): Renamed from
24328         glthread_recursive_lock_init. Return error code.
24329         (glthread_recursive_lock_lock_multithreaded): Renamed from
24330         glthread_recursive_lock_lock. Return error code.
24331         (glthread_recursive_lock_unlock_multithreaded): Renamed from
24332         glthread_recursive_lock_unlock. Return error code.
24333         (glthread_recursive_lock_destroy_multithreaded): Renamed from
24334         glthread_recursive_lock_destroy. Return error code.
24335         (glthread_once_call): Make static.
24336         (glthread_once_multithreaded): Renamed from glthread_once.
24337         * lib/tls.h: Include <errno.h>.
24338         (glthread_tls_key_init): New macro/function.
24339         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
24340         (glthread_tls_set): New macro/function.
24341         (gl_tls_set): Define as wrapper around glthread_tls_set.
24342         (glthread_tls_key_destroy): New macro/function.
24343         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
24344         Update function declarations.
24345         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
24346         glthread_tls_get.
24347         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
24348
24349 2008-08-04  Eric Blake  <ebb9@byu.net>
24350
24351         gnumakefile: use space, not TAB, outside of targets
24352         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
24353
24354 2008-08-02  Jim Meyering  <meyering@redhat.com>
24355
24356         getdate.y: avoid locale-dependent date parsing failure
24357         In Turkish locales, getdate would fail to recognize keywords
24358         containing a lowercase "i".  The solution is not to rely on
24359         locale-sensitive case-conversion.
24360         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
24361         (lookup_word): Use c_toupper in place of toupper.
24362         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
24363         Reported by Vefa Bicakci <bicave@superonline.com> in
24364         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
24365         * modules/getdate (Depends-on): Add c-ctype.
24366
24367 2008-08-02  Bruno Haible  <bruno@clisp.org>
24368
24369         * gnulib-tool (func_import): When updating or creating a .gitignore
24370         file, prepend each added line with a slash, and ignore leading slashes
24371         from the existing lines.
24372         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
24373
24374 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24375
24376         Portability fix for GNU make 3.79.1.
24377         * top/GNUmakefile: Avoid 'else COND', which older GNU make
24378         versions do not understand.
24379
24380 2008-08-01  Bruno Haible  <bruno@clisp.org>
24381
24382         Work around bug of HP-UX 10.20 cc with -0.0 literal.
24383         * tests/test-isnanf.h (zero): New variable.
24384         (main): Avoid literal -0.0f.
24385         * tests/test-isnand.h (zero): New variable.
24386         (main): Avoid literal -0.0.
24387         * tests/test-isnanl.h (zero): New variable.
24388         (main): Avoid literal -0.0L.
24389         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
24390         (test_float, test_double, test_long_double): Avoid literals -0.0f,
24391         -0.0, -0.0L.
24392         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
24393         (test_signbitd): Avoid literal -0.0.
24394         (test_signbitl): Avoid literal -0.0L.
24395         * tests/test-ceilf1.c (zero): New variable.
24396         (main): Avoid literal -0.0f.
24397         * tests/test-ceill.c (zero): New variable.
24398         (main): Avoid literal -0.0L.
24399         * tests/test-floorf1.c (zero): New variable.
24400         (main): Avoid literal -0.0f.
24401         * tests/test-floorl.c (zero): New variable.
24402         (main): Avoid literal -0.0L.
24403         * tests/test-roundf1.c (zero): New variable.
24404         (main): Avoid literal -0.0f.
24405         * tests/test-round1.c (zero): New variable.
24406         (main): Avoid literal -0.0.
24407         * tests/test-roundl.c (zero): New variable.
24408         (main): Avoid literal -0.0L.
24409         * tests/test-truncf1.c (zero): New variable.
24410         (main): Avoid literal -0.0f.
24411         * tests/test-trunc1.c (zero): New variable.
24412         (main): Avoid literal -0.0.
24413         * tests/test-truncl.c (zero): New variable.
24414         (main): Avoid literal -0.0L.
24415         * tests/test-frexp.c (zero): New variable.
24416         (main): Avoid literal -0.0.
24417         * tests/test-frexpl.c (zero): New variable.
24418         (main): Avoid literal -0.0L.
24419         * tests/test-ldexpl.c (zero): New variable.
24420         (main): Avoid literal -0.0L.
24421         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
24422         (zerod, zerol): New variables.
24423         (test_function): Avoid literals -0.0, -0.0L.
24424         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
24425         (zerod, zerol): New variables.
24426         (test_function): Avoid literals -0.0, -0.0L.
24427         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
24428         (zerod, zerol): New variables.
24429         (test_function): Avoid literals -0.0, -0.0L.
24430         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
24431         (zerod, zerol): New variables.
24432         (test_function): Avoid literals -0.0, -0.0L.
24433         * tests/test-strtod.c (zero): New variable.
24434         (main): Avoid literal -0.0.
24435         Reported by Jonathan C. Patschke <jp@centtech.com>.
24436
24437 2008-07-31  Jim Meyering  <meyering@redhat.com>
24438
24439         sha256.h: correct definition of SHA224_DIGEST_SIZE
24440         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
24441         Reported by Paulie Pena IV <paulie4@gmail.com>.
24442         Define as 224 / 8, rather than as a literal.
24443         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
24444         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
24445         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
24446
24447 2008-07-31  Bruno Haible  <bruno@clisp.org>
24448
24449         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
24450         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
24451         Reported by Jonathan Patschke <jp@centtech.com>.
24452
24453 2008-07-31  Bruno Haible  <bruno@clisp.org>
24454
24455         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
24456         Reported by Paolo Bonzini <bonzini@gnu.org>.
24457
24458 2008-07-30  Eric Blake  <ebb9@byu.net>
24459
24460         test-strtod: allow compilation without -lm
24461         * tests/test-strtod.c (main): Avoid link dependence on fabs.
24462         Reported by Dennis Clarke <blastwave@gmail.com>.
24463
24464 2008-07-28  Jim Meyering  <meyering@redhat.com>
24465
24466         bootstrap: work also when there are no .po files in po/
24467         * build-aux/bootstrap (update_po_files): Complete the change
24468         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
24469
24470 2008-07-27  Jim Meyering  <meyering@redhat.com>
24471
24472         * users.txt: Add zile.
24473
24474 2008-07-26  Ben Pfaff  <blp@gnu.org>
24475
24476         Add missing dependencies on new m4/exponent[fdl].m4 files.
24477         * modules/isnanf-nolibm: Add m4/exponentf.m4.
24478         * modules/isnand-nolibm: Add m4/exponentd.m4.
24479         * modules/isnanl-nolibm: Add m4/exponentl.m4.
24480         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
24481         m4/isnan[fdl].m4, because the macros actually used moved.
24482         Reported by Jim Meyering.
24483
24484 2008-07-14  Ben Pfaff  <blp@gnu.org>
24485
24486         Add isinf module.
24487         * lib/isinf.c: New file.
24488         * lib/math.in.h: Define isinf macro if we have decided to replace
24489         it.
24490         * m4/isinf.m4: New file.
24491         * m4/math_h.m4: Initialize and substitute variables for isinf
24492         module.
24493         * modules/isinf: New file.
24494         * modules/isinf-tests: New file.
24495         * modules/math: Add substitutions for new module.
24496         * tests/test-isinf.c: New file.
24497         * doc/posix-functions/isinf.texi: Mention new module.
24498         * MODULES.html.sh: Mention new module.
24499
24500 2008-07-14  Ben Pfaff  <blp@gnu.org>
24501
24502         Factor out some macros for use by additional modules.
24503         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
24504         exponentf.m4.
24505         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
24506         exponentd.m4.
24507         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
24508         file exponentl.m4.
24509         * m4/exponentf.m4: New file.
24510         * m4/exponentd.m4: New file.
24511         * m4/exponentl.m4: New file.
24512         * modules/isnanf: Use new file m4/exponentf.m4.
24513         * modules/isnand: Use new file m4/exponentd.m4.
24514         * modules/isnanl: Use new file m4/exponentl.m4.
24515
24516 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
24517
24518         mktime.c: normalize tp->tm_isdst value to -1/0/1.
24519         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
24520         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
24521         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
24522
24523         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
24524         readlink on platforms without PATH_MAX.
24525
24526 2008-07-21  Eric Blake  <ebb9@byu.net>
24527
24528         Warn, not fail, on stale version.
24529         * top/GNUmakefile (_curr-ver): Tone down previous patch.
24530
24531         Don't allow installation with stale devel version number.
24532         * top/GNUmakefile (_is-install-target): New macro.
24533         (_curr-ver): Forbid installation with stale version number.
24534
24535 2008-07-20  Bruno Haible  <bruno@clisp.org>
24536
24537         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
24538         TESTS_ENVIRONMENT.
24539         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
24540
24541 2008-07-20  Bruno Haible  <bruno@clisp.org>
24542
24543         * lib/c-stack.h (c_stack_action): Add documentation.
24544         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
24545
24546 2008-07-20  Bruno Haible  <bruno@clisp.org>
24547
24548         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
24549         * modules/readlink (License): Likewise.
24550
24551 2008-07-17  Eric Blake  <ebb9@byu.net>
24552
24553         * modules/c-stack (Link): Fix typo.
24554
24555         Make c-stack use libsigsegv, when available.
24556         * modules/c-stack (Depends-on): Add libsigsegv.
24557         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
24558         needed.
24559         * lib/c-stack.c (SIGSTKSZ): Define fallback.
24560         (segv_handler, overflow_handler, c_stack_action)
24561         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
24562         implementation when libsigsegv is available, but only when using
24563         the library is necessary.
24564         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
24565         comment, explaining why XSI check fails on Linux.
24566         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
24567         * tests/test-c-stack2.sh: Tweak skip message.
24568         * NEWS: Document new link-time requirements.
24569
24570 2008-07-16  Eric Blake  <ebb9@byu.net>
24571
24572         c-stack: Expose false positives when not using libsigsegv.
24573         * modules/c-stack-tests (Files): Expand test.
24574         * tests/test-c-stack.c (main): Add means to conditionally trigger
24575         non-overflow SIGSEGV.
24576         * tests/test-c-stack2.sh: New file.
24577
24578 2008-07-14  Bruno Haible  <bruno@clisp.org>
24579
24580         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
24581         Reported by Eric Blake.
24582
24583 2008-07-14  Sam Steingold  <sds@gnu.org>
24584             Bruno Haible  <bruno@clisp.org>
24585
24586         New module libsigsegv.
24587         * modules/libsigsegv: New file.
24588         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
24589         modifications.
24590         * MODULES.html.sh (Signal handling): New section.
24591
24592 2008-07-14  Bruno Haible  <bruno@clisp.org>
24593
24594         * modules/unictype/ctype-* (Description): Add the word "function".
24595         Improves the resulting doc in MODULES.html.
24596
24597 2008-07-12  Ben Pfaff  <blp@gnu.org>
24598
24599         Add longlong module.
24600         * modules/longlong: New file.
24601
24602 2008-07-12  Bruno Haible  <bruno@clisp.org>
24603
24604         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
24605         to empty.
24606
24607 2008-07-10  Ben Pfaff  <blp@gnu.org>
24608
24609         Add isnan module.
24610         * doc/posix-functions/isnan.texi: Mention new module.
24611         * lib/math.in.h: Define isnan macro if we have decided to replace
24612         it.
24613         * m4/isnan.m4: New file.
24614         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
24615         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
24616         also.
24617         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
24618         redundancy.
24619         * m4/math_h.m4: Initialize and substitute variables for isnan
24620         module.
24621         * modules/isnan: New file.
24622         * modules/isnan-tests: New file.
24623         * modules/math: Add substitutions for new module.
24624         * tests/test-isnan.c: New file.
24625         * MODULES.html.sh: Mention new module.
24626
24627 2008-07-10  Ben Pfaff  <blp@gnu.org>
24628
24629         Add isnanf module.
24630         * lib/isnanf.m4: New file.
24631         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
24632         (gl_HAVE_ISNANF_IN_LIBM): New macro.
24633         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
24634         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
24635         * modules/isnanf: New file.
24636         * modules/isnanf-tests: New file.
24637         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
24638         files.
24639         * tests/test-isnanf-nolibm.c: factored most of its contents into
24640         new file tests/test-isnanf.h.
24641         * tests/test-isnanf.h: New file.
24642         * tests/test-isnanf.c: New file.
24643         * MODULES.html.sh: Mention new module.
24644         * doc/glibc-functions/isnanf.texi: Mention new module.
24645
24646 2008-07-10  Ben Pfaff  <blp@gnu.org>
24647
24648         Add isnand module.
24649         * lib/isnand.h: New file.
24650         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
24651         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
24652         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
24653         functionality also.
24654         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
24655         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
24656         (gl_HAVE_ISNAND_IN_LIBM): New macro.
24657         * modules/isnand: New file.
24658         * modules/isnand-tests: New file.
24659         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
24660         files.
24661         * tests/test-isnand-nolibm.c: factored most of its contents into
24662         new file tests/test-isnand.h.
24663         * tests/test-isnand.h: New file.
24664         * tests/test-isnand.c: New file.
24665         * MODULES.html.sh: Mention new module.
24666
24667 2008-07-10  Ben Pfaff  <blp@gnu.org>
24668
24669         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
24670         * lib/isnand.h: Rename lib/isnand-nolibm.h.
24671         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
24672         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
24673         * modules/isnanf-nolibm: Update references to renamed files.
24674         * modules/isnand-nolibm: Likewise.
24675         * modules/isnanf-nolibm-tests: Likewise.
24676         * modules/isnand-nolibm-tests: Likewise.
24677         * lib/frexp.c: Likewise.
24678         * lib/isfinite.c: Likewise.
24679         * lib/signbitd.c: Likewise.
24680         * lib/signbitf.c: Likewise.
24681         * lib/vasnprintf.c: Likewise.
24682         * tests/test-ceilf1.c: Likewise.
24683         * tests/test-ceilf2.c: Likewise.
24684         * tests/test-floorf1.c: Likewise.
24685         * tests/test-floorf2.c: Likewise.
24686         * tests/test-frexp.c: Likewise.
24687         * tests/test-round1.c: Likewise.
24688         * tests/test-round2.c: Likewise.
24689         * tests/test-roundf1.c: Likewise.
24690         * tests/test-strtod.c: Likewise.
24691         * tests/test-trunc1.c: Likewise.
24692         * tests/test-trunc2.c: Likewise.
24693         * tests/test-truncf1.c: Likewise.
24694         * tests/test-truncf2.c: Likewise.
24695         * NEWS: Mention the renamed header files.
24696
24697 2008-07-11  Jim Meyering  <meyering@redhat.com>
24698
24699         vc-list-files: make the last-resort awk code more portable
24700         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
24701         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
24702         does not support it.
24703
24704 2008-07-10  Eric Blake  <ebb9@byu.net>
24705
24706         Work with tar's bootstrap.
24707         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
24708         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
24709         an m4 comment.
24710
24711 2008-07-09  Jim Meyering  <meyering@redhat.com>
24712
24713         posix-shell.m4: fix typo that made this test malfunction
24714         * m4/posix-shell.m4: Remove capitalization in variable name.
24715
24716 2008-07-08  Bruno Haible  <bruno@clisp.org>
24717
24718         * m4/onceonly.m4: Update comments.
24719         Reported by Ben Pfaff <blp@cs.stanford.edu>.
24720
24721 2008-07-04  Jim Meyering  <meyering@redhat.com>
24722
24723         * users.txt: Add vc-dwim.
24724         (bison, coreutils): Use the gitweb URL.
24725
24726 2008-07-03  Jim Meyering  <meyering@redhat.com>
24727
24728         * users.txt: Add libffcall.  From Sam Steingold.
24729
24730 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
24731
24732         getdate.y: do not ignore TZ with relative day, month or year offset
24733         * lib/getdate.y (get_date): Move the tz-handling block to follow the
24734         relative-date-handling, since otherwise, the latter would clobber the
24735         sole output (an updated Start value) of the tz-handling block.
24736         * tests/test-getdate.c: Tests for the fix
24737
24738 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24739
24740         Recognize 'foo_LIBRARIES += libgnu.a'.
24741         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
24742         makefile snippet has already specified an installation location,
24743         also using '+='.
24744
24745 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
24746
24747         getdate.y: factor out common actions
24748         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
24749         Use them in place of open-coded actions.
24750
24751 2008-07-01  Simon Josefsson  <simon@josefsson.org>
24752
24753         Add self-test for getdate module.
24754         * modules/getdate-tests: New file.
24755         * tests/test-getdate.c: New file.
24756
24757 2008-06-29  Bruno Haible  <bruno@clisp.org>
24758
24759         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
24760         .gitignore.
24761         Reported by Sylvain Beucler <beuc@beuc.net>.
24762
24763 2008-06-29  Bruno Haible  <bruno@clisp.org>
24764
24765         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
24766         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
24767
24768 2008-06-29  Bruno Haible  <bruno@clisp.org>
24769
24770         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
24771         EXTRA_DIST.
24772         Reported by Sylvain Beucler <beuc@beuc.net>.
24773
24774 2008-06-26  Jim Meyering  <meyering@redhat.com>
24775
24776         make several modules depend on the "open" module
24777         This provides slightly increased consistency when opening-for-write
24778         the name of a non-directory spelled with a trailing slash.
24779         * modules/chdir-safer: Likewise.
24780         * modules/chown: Likewise.
24781         * modules/clean-temp: Likewise.
24782         * modules/copy-file: Likewise.
24783         * modules/fchdir: Likewise.
24784         * modules/fcntl-safer: Likewise.
24785         * modules/pipe: Likewise.
24786         * modules/utime: Likewise.
24787         Prompted by Eric Blake and Bruno Haible.
24788
24789 2008-06-24  Andreas Schwab  <schwab@suse.de>
24790
24791         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
24792         literals can be used as initializers for global variables.
24793
24794 2008-06-23  Eric Blake  <ebb9@byu.net>
24795
24796         Make gnulib-cache.m4 easier to diff.
24797         * gnulib-tool (func_import): Allow newlines when reading cached
24798         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
24799
24800 2008-06-23  Bruno Haible  <bruno@clisp.org>
24801
24802         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
24803         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
24804         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
24805         m4/signalblocking.m4.
24806         (gl_PREREQ_SIGACTION): Don't invoke it.
24807         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
24808         gl_PREREQ_SIG_HANDLER_H.
24809         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
24810         Don't check for sigaction here.
24811
24812 2008-06-23  Bruno Haible  <bruno@clisp.org>
24813
24814         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
24815         (install_handlers): Don't set the SA_RESETHAND flag.
24816
24817 2008-06-23  Bruno Haible  <bruno@clisp.org>
24818
24819         * m4/sigaction.m4: Comment fixes.
24820         * lib/signal.in.h: Likewise.
24821
24822 2008-06-23  Eric Blake  <ebb9@byu.net>
24823
24824         Fix typo.
24825         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
24826
24827         Avoid SA_ namespace.
24828         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
24829         Reported by Ralf Wildenhues.
24830
24831         Avoid test failure due to SA_RESTORER.
24832         * tests/test-sigaction.c (SA_MASK): New macro.
24833         (main): Avoid failing due to extension flags being set.
24834         Reported by Jim Meyering.
24835
24836         Revert use of sig-handler.h in sigprocmask.c.
24837         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
24838         it requires the existence of struct sigaction.
24839         * lib/sigprocmask.c (handler_t): Restore typedef.
24840         (rpl_signal, old_handlers): Use local type.
24841
24842 2008-06-22  Bruno Haible  <bruno@clisp.org>
24843
24844         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
24845         conditionally.
24846         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
24847
24848 2008-06-22  Bruno Haible  <bruno@clisp.org>
24849
24850         * doc/posix-functions/siginterrupt.texi: Move note.
24851
24852         * lib/signal.in.h (SA_RESTART): New macro.
24853         * lib/sigaction.c: Update comment.
24854
24855         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
24856
24857         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
24858         (gl_PREREQ_SIGPROCMASK): Invoke it.
24859         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
24860
24861         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
24862
24863         * lib/sigprocmask.c: Update a comment.
24864
24865 2008-06-21  Eric Blake  <ebb9@byu.net>
24866
24867         Use sigaction module rather than signal().
24868         * modules/c-stack (Depends-on): Add sigaction.
24869         * modules/fatal-signal (Depends-on): Likewise.
24870         * modules/nanosleep (Depends-on): Likewise.
24871         * modules/sigprocmask (Files): Add sig-handler.h.
24872         * modules/sigaction (Files): Likewise.
24873         * lib/sig-handler.h (get_handler): New file, suggested by Paul
24874         Eggert.
24875         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
24876         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
24877         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
24878         (init_fatal_signals): Likewise.
24879         * lib/nanosleep.c (rpl_nanosleep): Likewise.
24880         (siginterrupt): Delete fallback.
24881         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
24882         instead.
24883         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
24884         siginterrupt.
24885
24886         New module sigaction, for mingw.
24887         * modules/sigaction: New module...
24888         * modules/sigaction-tests: ...and its test.
24889         * m4/sigaction.m4: New file.
24890         * lib/sigaction.c: Likewise.
24891         * tests/test-sigaction.c: Likewise.
24892         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
24893         * modules/signal (Makefile.am): Likewise.
24894         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
24895         needed.
24896         * doc/posix-headers/signal.texi (signal.h): Mention provided
24897         types.
24898         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
24899         that sigaction is preferable.
24900         * doc/posix-functions/sigaction.texi (sigaction): Mention new
24901         module.
24902         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24903         sigaction.
24904
24905         Improve robustness of sigprocmask by overriding signal.
24906         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
24907         is in use.
24908         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
24909         (SIGKILL, SIGSTOP): Provide fallbacks.
24910         (rpl_signal): Implement.
24911         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
24912         signal can be called inside handlers.
24913
24914         Fix nanosleep module on mingw.
24915         * modules/nanosleep (Depends-on): Add sys_select.
24916         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
24917
24918         Fix licensing of sigprocmask.
24919         * modules/raise (License): Relicense as LGPL.
24920
24921 2008-06-21  Bruno Haible  <bruno@clisp.org>
24922
24923         * lib/propername.c (proper_name_utf8): Don't use the transliterated
24924         result if it contains question marks.
24925         Reported by Michael Geng <linux@michaelgeng.de>.
24926
24927 2008-06-19  Bruno Haible  <bruno@clisp.org>
24928
24929         Fix CVS-ism.
24930         * doc/gnulib.texi: Include updated-stamp.texi.
24931         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
24932         (updated-stamp.texi): New rule.
24933         (gnulib.info): Depend on it.
24934         * doc/.gitignore: Add updated-stamp.texi.
24935         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
24936
24937 2008-06-19  Bruno Haible  <bruno@clisp.org>
24938
24939         * doc/Makefile (gnulib.info): Update and simplify dependencies.
24940         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
24941
24942 2008-06-19  Eric Blake  <ebb9@byu.net>
24943
24944         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
24945         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
24946         Reported by Stepan Kasal.
24947
24948 2008-06-18  Bruno Haible  <bruno@clisp.org>
24949
24950         * lib/fatal-signal.c (init_fatal_signals): Add comment.
24951         Reported by Eric Blake.
24952
24953 2008-06-18  Eric Blake  <ebb9@byu.net>
24954
24955         Work around cygwin 1.5.25 strsignal bug.
24956         * tests/test-strsignal.c: Allow for const char *.
24957         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
24958
24959 2008-06-18  Simon Josefsson  <simon@josefsson.org>
24960
24961         * users.txt: Update URL to article and add author/date
24962         information.
24963
24964 2008-06-17  Bruno Haible  <bruno@clisp.org>
24965
24966         New macro gl_DISABLE_THREADS.
24967         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
24968         if the user did not pass --enable-threads or --disable-threads option.
24969         (gl_DISABLE_THREADS): New macro.
24970         Reported by Eric Blake <ebb9@byu.net>.
24971
24972 2008-06-17  Bruno Haible  <bruno@clisp.org>
24973
24974         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
24975         when the macro ignores it.
24976         Based on a patch by Eric Blake <ebb9@byu.net>.
24977
24978 2008-06-17  Bruno Haible  <bruno@clisp.org>
24979
24980         * modules/tls (License): Change to LGPLv2+.
24981         Reported by Eric Blake.
24982
24983 2008-06-17  Eric Blake  <ebb9@byu.net>
24984
24985         Simplify c-stack prerequisites.
24986         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
24987         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
24988         no longer requires <ucontext.h> to exist.  Optimize setrlimit
24989         check.
24990         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
24991         <sys/resource.h>.
24992
24993         Move c-stack test into testsuite.
24994         * modules/c-stack-tests: New file.
24995         * lib/c-stack.c [DEBUG]: Move test program...
24996         * tests/test-c-stack.c: ...into this new file.  Skip rather than
24997         fail test if sigaltstack is lacking.
24998         * tests/test-c-stack.sh: New driver file.
24999
25000 2008-06-16  Eric Blake  <ebb9@byu.net>
25001
25002         Use raise module consistently.
25003         * modules/fatal-signal (Depends-on): Add raise.
25004         * modules/sigprocmask (Depends-on): Likewise.
25005         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
25006         * lib/sigprocmask.c (sigprocmask): Likewise.
25007         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
25008         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
25009
25010         Fix compliance bug in sigpending.
25011         * lib/sigprocmask.c (sigpending): Return pending array via
25012         parameter, not return value.
25013
25014 2008-06-14  Eric Blake  <ebb9@byu.net>
25015
25016         Improve obstack-printf test code.
25017         * tests/test-obstack-printf.c (test_function): Fix comment, and
25018         simplify usage of obstack_* in macros.  Add a test for coverage.
25019         Reported by Bruno Haible.
25020
25021 2008-06-14  Bruno Haible  <bruno@clisp.org>
25022
25023         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
25024         array size as a constant, not as a const variable.
25025         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
25026         AC_USE_SYSTEM_EXTENSIONS.
25027         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
25028         Test whether the obstack_printf function actually exists.
25029         * modules/obstack-printf (Depends-on): Add extensions.
25030         (Include): Remove obstack.h.
25031         * modules/obstack-printf-posix (Depends-on): Add extensions.
25032         (Include): Remove obstack.h.
25033
25034 2008-06-13  Eric Blake  <ebb9@byu.net>
25035
25036         Add obstack-printf and obstack-printf-posix modules.
25037         * modules/obstack-printf: New file.
25038         * modules/obstack-printf-posix: Likewise.
25039         * MODULES.html.sh (Misc): Mention them.
25040         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
25041         Likewise.
25042         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
25043         Likewise.
25044         * modules/stdio (Makefile.am): Accomodate new modules.
25045         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
25046         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
25047         Declare.
25048         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
25049         functions.
25050         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
25051         (gl_REPLACE_OBSTACK_PRINTF): New macros
25052         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
25053         * tests/test-obstack-printf.c: New file.
25054         * modules/obstack-printf-tests: Likewise.
25055         * modules/obstack-printf-posix-tests: Likewise.
25056
25057 2008-06-11  Bruno Haible  <bruno@clisp.org>
25058
25059         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
25060         * lib/open.c: Include errno.h.
25061         (open): Fail when attempting to write to a file that has a trailing
25062         slash.
25063         * tests/test-open.c (main): Test against trailing slash bug.
25064         * doc/posix-functions/open.texi: Mention the trailing slash bug.
25065
25066 2008-06-10  Bruno Haible  <bruno@clisp.org>
25067
25068         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
25069         for $? to work inside the trap command, with various /bin/sh-s.
25070         * tests/test-vc-list-files-cvs.sh: Likewise.
25071
25072 2008-06-10  Bruno Haible  <bruno@clisp.org>
25073
25074         * lib/acl-internal.h: Don't include gettext.h here.
25075         * lib/set-mode-acl.c: Include gettext.h here.
25076         * lib/copy-acl.c: Likewise.
25077
25078 2008-06-10  Bruno Haible  <bruno@clisp.org>
25079
25080         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
25081         * lib/wait-process.c (wait_subprocess): Likewise.
25082         * lib/execute.h (execute): Add termsigp argument.
25083         * lib/execute.c (execute): Likewise.
25084         * lib/csharpcomp.c (compile_csharp_using_pnet,
25085         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
25086         * lib/csharpexec.c (execute_csharp_using_pnet,
25087         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
25088         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
25089         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
25090         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
25091         is_jikes_present): Update.
25092         * lib/javaexec.c (execute_java_class): Update.
25093         * lib/javaversion.c (execute_and_read_line): Update.
25094         * NEWS: Document the changes.
25095         Reported by Eric Blake.
25096
25097 2008-06-10  Eric Blake  <ebb9@byu.net>
25098
25099         Add missing include.
25100         * tests/test-strstr.c (includes): Add <signal.h>.
25101         * tests/test-strcasestr.c (includes): Likewise.
25102         * tests/test-memmem.c (includes): Likewise.
25103
25104 2008-06-10  Bruno Haible  <bruno@clisp.org>
25105
25106         * lib/wait-process.c (wait_subprocess): Add an assertion.
25107
25108 2008-06-10  Bruno Haible  <bruno@clisp.org>
25109
25110         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
25111
25112 2008-06-10  Bruno Haible  <bruno@clisp.org>
25113
25114         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
25115         using alarm().
25116         * tests/test-strcasestr.c (main): Likewise.
25117         * tests/test-strstr.c (main): Likewise.
25118
25119 2008-06-09  Bruno Haible  <bruno@clisp.org>
25120
25121         Work around the Solaris 10 ACE ACLs ABI change.
25122         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
25123         declare if ACL_NO_TRIVIAL is present.
25124         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
25125         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
25126         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
25127         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
25128         define if ACL_NO_TRIVIAL is present.
25129         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
25130         and use the current ABI.
25131         (file_has_acl): Use same #if condition as elsewhere.
25132         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
25133         in use, and use the current ABI.
25134         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
25135         Reported by Jim Meyering.
25136
25137 2008-06-09  Eric Blake  <ebb9@byu.net>
25138
25139         Work around environments that (stupidly) ignore SIGALRM.
25140         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
25141         before using alarm().
25142         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25143         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25144         Reported by Ian Beckwith <ianb@erislabs.net>.
25145
25146         Produce autobuild blurb earlier in log.
25147         * modules/autobuild (configure.ac-early): Move AB_INIT here.
25148
25149 2008-06-09  Jim Meyering  <meyering@redhat.com>
25150         and OndÅ™ej Vašík  <ovasik@redhat.com>
25151
25152         utimens.c: correct kernel bug work-around
25153         OndÅ™ej Vašík found that the invalid return value of 280 indicates
25154         failure, not success, and the kernel bug we're trying to work
25155         around affects not just the utimensat call, but also the fallback
25156         futimens call.
25157         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
25158         not success.
25159         [HAVE_FUTIMENS]: Use the same work-around, here.
25160
25161 2008-06-09  Jim Meyering  <meyering@redhat.com>
25162
25163         add more guards around definition of ACE_-related code
25164         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
25165         ALLOW and ACE_OWNER are also defined.
25166
25167 2008-06-08  Bruno Haible  <bruno@clisp.org>
25168
25169         * lib/acl-internal.h: Add me as co-author.
25170         * lib/file-has-acl.c: Likewise.
25171         * lib/set-mode-acl.c: Likewise.
25172         * lib/copy-acl.c: Likewise.
25173
25174 2008-06-08  Bruno Haible  <bruno@clisp.org>
25175
25176         Add support for AIX ACLs.
25177         * lib/acl-internal.h (acl_nontrivial): New declaration.
25178         * lib/file-has-acl.c (acl_nontrivial): New function.
25179         (file_has_acl): Add implementation using AIX 4 ACL API.
25180         * lib/set-mode-acl.c (qset_acl): Likewise.
25181         * lib/copy-acl.c (qcopy_acl): Likewise.
25182
25183 2008-06-08  Bruno Haible  <bruno@clisp.org>
25184
25185         Add support for HP-UX ACLs.
25186         * lib/acl-internal.h (acl_nontrivial): New declaration.
25187         * lib/file-has-acl.c (acl_nontrivial): New function.
25188         (file_has_acl): Add implementation using HP-UX 11 ACL API.
25189         * lib/set-mode-acl.c (qset_acl): Likewise.
25190         * lib/copy-acl.c (qcopy_acl): Likewise.
25191
25192 2008-06-08  Bruno Haible  <bruno@clisp.org>
25193
25194         Add support for Cygwin ACLs.
25195         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
25196         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
25197         the chmod_or_fchmod call.
25198         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
25199
25200 2008-06-08  Bruno Haible  <bruno@clisp.org>
25201
25202         Fix bug with setuid modes in Solaris 10+ code.
25203         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
25204         succeeded, when the mode contains some special bits.
25205
25206 2008-06-08  Bruno Haible  <bruno@clisp.org>
25207
25208         Add support for Solaris 7..10 ACLs.
25209         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
25210         declarations.
25211         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
25212         functions.
25213         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
25214         * lib/set-mode-acl.c (qset_acl): Likewise.
25215         * lib/copy-acl.c (qcopy_acl): Likewise.
25216
25217 2008-06-08  Bruno Haible  <bruno@clisp.org>
25218
25219         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
25220         declaration.
25221         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
25222         (acl_access_nontrivial): Remove MacOS X case.
25223         (file_has_acl): Use acl_extended_nontrivial.
25224         * lib/copy-acl.c (qcopy_acl): Likewise.
25225
25226 2008-06-08  Bruno Haible  <bruno@clisp.org>
25227
25228         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
25229
25230 2008-06-08  Jim Meyering  <meyering@redhat.com>
25231
25232         * modules/acl (Maintainer): Add Bruno Haible.
25233
25234 2008-06-07  Bruno Haible  <bruno@clisp.org>
25235
25236         Improve support for Tru64 ACLs.
25237         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
25238         ACL on OSF/1.
25239
25240 2008-06-07  Bruno Haible  <bruno@clisp.org>
25241
25242         Add support for MacOS X ACLs.
25243         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
25244         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
25245         * lib/set-mode-acl.c (qset_acl): Likewise.
25246         * lib/copy-acl.c (qcopy_acl): Likewise.
25247
25248 2008-06-07  Bruno Haible  <bruno@clisp.org>
25249
25250         Fix memory leak introduced on 2008-05-22.
25251         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
25252         use.
25253
25254 2008-06-07  Bruno Haible  <bruno@clisp.org>
25255
25256         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
25257         to construct an empty ACL.
25258
25259 2008-06-07  Bruno Haible  <bruno@clisp.org>
25260
25261         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
25262         precisely.
25263         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
25264
25265 2008-06-07  Bruno Haible  <bruno@clisp.org>
25266
25267         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
25268         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
25269
25270 2008-06-07  Bruno Haible  <bruno@clisp.org>
25271
25272         * doc/posix-functions/_setjmp.texi: Explain the use of this function
25273         regardless of POSIX.
25274         * doc/posix-functions/_longjmp.texi: Likewise.
25275         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
25276         SystemV platform in this case.
25277
25278 2008-06-06  Eric Blake  <ebb9@byu.net>
25279
25280         Document abort() bugs.
25281         * doc/posix-functions/abort.texi (abort): Mention anomalies.
25282
25283         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
25284         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
25285         sigsetjmp.
25286         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
25287         siglongjmp, but only as a macro.
25288         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
25289         is obsolete.
25290         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
25291
25292         Tweak documentation to cover cygwin argz bugs.
25293         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
25294         argz bug fix; no code change needed since no cygwin releases
25295         occurred between the last fix and the bug being tested.
25296         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
25297         module and recently fixed cygwin bugs.
25298         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
25299         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
25300         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
25301         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
25302         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
25303         Likewise.
25304         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
25305         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
25306         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
25307         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
25308         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
25309         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
25310         Likewise.
25311
25312         Avoid gcc warning on cygwin.
25313         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
25314         !ACL_NO_TRIVIAL]: Avoid unused variable.
25315
25316 2008-06-05  Eric Blake  <ebb9@byu.net>
25317
25318         Be tolerant of UNKNOWN version in gnulib-tool test dir.
25319         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
25320         git-version-gen fails to come up with a version.
25321         Reported by Simon Josefsson.
25322
25323 2008-06-05  Jim Meyering  <meyering@redhat.com>
25324             Paul Eggert  <eggert@cs.ucla.edu>
25325
25326         utimens.c: work around a probable Linux kernel bug
25327         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
25328         appears to be a kernel bug that causes utimensat to return 280
25329         instead of 0, indicating success.
25330
25331 2008-06-04  Bruno Haible  <bruno@clisp.org>
25332
25333         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
25334         2008-06-01 commit.
25335
25336 2008-06-04  Bruno Haible  <bruno@clisp.org>
25337
25338         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
25339         * lib/file-has-acl.c (acl_access_nontrivial): New function.
25340         (file_has_acl): Use it. Save errno afterwards.
25341         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
25342
25343 2008-06-03  Bruno Haible  <bruno@clisp.org>
25344
25345         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
25346         draft code. Simplify #ifs.
25347         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
25348         Put Solaris code after POSIX-draft code. Fix comments regarding
25349         Solaris 10, HP-UX. Mention Cygwin.
25350         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
25351
25352 2008-06-03  Eric Blake  <ebb9@byu.net>
25353
25354         Provide fallback for older kernels.
25355         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
25356         Provide runtime fallback if kernel lacks support.
25357         Reported by Mike Frysinger.
25358
25359 2008-06-02  Bruno Haible  <bruno@clisp.org>
25360
25361         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
25362         it exists.
25363
25364 2008-06-02  Bruno Haible  <bruno@clisp.org>
25365
25366         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
25367         * lib/copy-acl.c (qcopy_acl): Update comment.
25368
25369 2008-06-02  Bruno Haible  <bruno@clisp.org>
25370
25371         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
25372         like ACL APIs.
25373
25374 2008-06-02  Bruno Haible  <bruno@clisp.org>
25375
25376         * tests/test-file-has-acl.sh: Use different code for Cygwin.
25377         * tests/test-set-mode-acl.sh: Likewise.
25378         * tests/test-copy-acl.sh: Likewise.
25379         * tests/test-copy-file.sh: Likewise.
25380
25381 2008-06-02  Bruno Haible  <bruno@clisp.org>
25382
25383         * tests/test-file-has-acl.sh: Remove unused code.
25384
25385 2008-06-01  Bruno Haible  <bruno@clisp.org>
25386
25387         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
25388         (copy_acl): Just a wrapper around qcopy_acl that emits the error
25389         messages.
25390         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
25391
25392 2008-06-01  Bruno Haible  <bruno@clisp.org>
25393
25394         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
25395         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
25396         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
25397         APIs.
25398         * modules/acl-tests (configure.ac): Remove tests now contained in
25399         m4/acl.m4.
25400
25401 2008-06-02  Jim Meyering  <meyering@redhat.com>
25402
25403         announce-gen: use a better key-server host name
25404         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
25405         it may be more consistently reliable.  Suggested by Werner Koch
25406         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
25407
25408 2008-06-01  Bruno Haible  <bruno@clisp.org>
25409
25410         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
25411         Reported by Voroskoi Andras <voroskoi@gmail.com>.
25412
25413 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
25414
25415         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
25416
25417 2008-06-01  Bruno Haible  <bruno@clisp.org>
25418
25419         New ACL tests.
25420         * tests/test-file-has-acl.sh: New file.
25421         * tests/test-file-has-acl.c: New file.
25422         * tests/test-set-mode-acl.sh: New file.
25423         * tests/test-set-mode-acl.c: New file.
25424         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
25425         * tests/test-copy-acl.c: New file.
25426         * modules/acl-tests: New file, based on modules/copy-file-tests.
25427         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
25428         (Depends-on): Add acl-tests.
25429         (configure.ac): Remove checks.
25430         (Makefile.am): Don't create test-sameacls program here any more.
25431
25432 2008-06-01  Bruno Haible  <bruno@clisp.org>
25433
25434         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
25435         * tests/test-sameacls.c: Include progname.h.
25436         (main): Invoke set_program_name. Portability fixes for MacOS X,
25437         Solaris, HP-UX.
25438
25439 2008-06-01  Bruno Haible  <bruno@clisp.org>
25440
25441         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
25442         function.
25443         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
25444
25445 2008-06-01  Bruno Haible  <bruno@clisp.org>
25446
25447         * modules/rpmatch (Depends-on): Add strdup.
25448
25449 2008-06-01  Bruno Haible  <bruno@clisp.org>
25450
25451         * lib/pipe.c: Include unistd-safer.h.
25452         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
25453         * modules/pipe (Depends-on): Add unistd-safer.
25454
25455 2008-05-30  Simon Josefsson  <simon@josefsson.org>
25456
25457         * modules/autobuild (configure.ac): Call AB_INIT.
25458
25459 2008-05-30  Simon Josefsson  <simon@josefsson.org>
25460
25461         * tests/test-getaddrinfo.c: Don't print debug messages by default.
25462         Suggested by Bruno Haible <bruno@clisp.org>.
25463
25464 2008-05-30  Simon Josefsson  <simon@josefsson.org>
25465
25466         * tests/test-base64.c: Cast size_t to unsigned long when invoking
25467         printf.  Use %lu instead of %d.  Reported by Bruno Haible
25468         <bruno@clisp.org>.
25469
25470 2008-05-29  Eric Blake  <ebb9@byu.net>
25471
25472         Prefer new POSIX 200x interfaces over futimesat.
25473         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
25474         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
25475         when available.
25476         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
25477
25478 2008-05-28  Bruno Haible  <bruno@clisp.org>
25479
25480         * modules/stpcpy (License): Change to LGPLv2+.
25481         Requested by David Lutterkort <dlutter@redhat.com>.
25482
25483 2008-05-27  Bruno Haible  <bruno@clisp.org>
25484
25485         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
25486         current mingw.
25487         Reported by Jose E. Marchesi <jemarch@gnu.org>.
25488
25489 2008-05-27  Bruno Haible  <bruno@clisp.org>
25490
25491         * modules/iconv_open (Link): New section, from module 'iconv'.
25492         * modules/striconv (Link): Likewise.
25493         * modules/striconveh (Link): Likewise.
25494         * modules/xstriconv (Link): Likewise.
25495         * modules/unicodeio (Link): Likewise.
25496         * modules/propername (Link): Likewise.
25497         Reported by Jim Meyering.
25498
25499 2008-05-26  Jim Meyering  <meyering@redhat.com>
25500
25501         sha256: do not artificially restrict buffer length to be < 2^32
25502         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
25503         uint32_t to size_t.
25504         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
25505         to match.
25506
25507         avoid unaligned access errors, e.g., on sparc
25508         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
25509         direct access through a possibly-unaligned uint64* pointer.
25510         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
25511         direct access through a possibly-unaligned uint32* pointer.
25512         Prompted by this patch from Tom "spot" Callaway:
25513         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
25514
25515         sha512.c: fix typo in comment
25516         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
25517
25518 2008-05-25  Bruno Haible  <bruno@clisp.org>
25519
25520         * lib/set-mode-acl.c: Renamed from lib/acl.c.
25521         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
25522         (Makefile.am): Update lib_SOURCES.
25523
25524 2008-05-25  Bruno Haible  <bruno@clisp.org>
25525
25526         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
25527
25528 2008-05-25  Jim Meyering  <meyering@redhat.com>
25529
25530         useless-if-before-free: freed expr may have white-space differences
25531         * build-aux/useless-if-before-free: Recognize cases in which the
25532         freed expression differs from the tested one in embedded white
25533         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
25534         $1 was used, so we can't make any regexp shy.  Improved tests now
25535         detect this.
25536
25537         useless-if-before-free: accept white space in the expression.
25538         * build-aux/useless-if-before-free: For now, any white space
25539         in the expression must be identical in the free argument.
25540
25541         useless-if-before-free: efficiency tweak
25542         * build-aux/useless-if-before-free: Make the expression-matching
25543         regexp "shy".
25544         Make the *outer* regexp shy, not the expr-matching one.
25545
25546         update code-in-comment to accept cast of free arg
25547         * build-aux/useless-if-before-free: Update regexp.
25548
25549 2008-05-25  Bruno Haible  <bruno@clisp.org>
25550
25551         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
25552         * modules/copy-file-tests (Files, Makefile.am): Update.
25553         * tests/test-copy-file.c (func_test_copy): Update.
25554
25555 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
25556
25557         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
25558
25559 2008-05-23  Bruno Haible  <bruno@clisp.org>
25560
25561         Improve support for ACLs on OSF/1.
25562         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
25563         Remove fallback for unknown flavors of ACLs.
25564
25565 2008-05-22  Bruno Haible  <bruno@clisp.org>
25566
25567         Add support for ACLs on OSF/1.
25568         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
25569         replacements.
25570         (acl_free_text): New macro fallback.
25571         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
25572         acl_free.
25573         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
25574         acl_free_text function. Require AC_C_INLINE.
25575
25576 2008-05-22  Bruno Haible  <bruno@clisp.org>
25577
25578         Make copy_acl work on MacOS X 10.5.
25579         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
25580         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
25581         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
25582         If MODE_INSIDE_ACL, don't assume that every system has the same text
25583         representation for ACLs as FreeBSD.
25584         * lib/copy-acl.c (copy_acl): Add support for platforms with
25585         !MODE_INSIDE_ACL.
25586         * lib/file-has-acl.c (file_has_acl): Likewise.
25587         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
25588         FreeBSD, MacOS X, or IRIX, respectively.
25589
25590 2008-05-22  Bruno Haible  <bruno@clisp.org>
25591
25592         * lib/acl.h: Don't include <sys/acl.h>.
25593         (GETACLCNT): Move fallback to lib/acl-internal.h.
25594         * lib/acl-internal.h: Include <sys/acl.h> here.
25595         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
25596
25597 2008-05-22  Bruno Haible  <bruno@clisp.org>
25598
25599         Split off copy_acl function to separate file.
25600         * lib/copy-acl.c: New file, extracted from lib/acl.c.
25601         * lib/acl.c (copy_acl): Moved function to separate file.
25602         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
25603         * modules/acl (Files): Add lib/copy-acl.c.
25604         (Makefiles.am): Augment lib_SOURCES.
25605
25606 2008-05-22  Bruno Haible  <bruno@clisp.org>
25607
25608         * modules/copy-file-tests: New file.
25609         * tests/test-copy-file.sh: New file.
25610         * tests/test-copy-file.c: New file.
25611         * tests/test-copy-file-sameacls.c: New file.
25612
25613 2008-05-22  Eric Blake  <ebb9@byu.net>
25614
25615         Avoid gcc warning.
25616         * tests/test-memcmp.c (main): Pass NULL indirectly.
25617
25618 2008-05-21  Bruno Haible  <bruno@clisp.org>
25619
25620         Add reference doc about ACLs.
25621         * doc/acl-resources.txt: New file.
25622         * doc/acl-cygwin.txt: New file.
25623
25624 2008-05-21  Bruno Haible  <bruno@clisp.org>
25625
25626         Avoid one more warning from gcc.
25627         * lib/vasnprintf.c (IF_LINT): Update comments.
25628         (VASNPRINTF): Use it also for the 'prefix' array initializer.
25629
25630 2008-05-21  Jim Meyering  <meyering@redhat.com>
25631
25632         avoid a warning from gcc
25633         * lib/vasnprintf.c (IF_LINT): Define.
25634         (scale10_round_decimal_long_double):
25635         Use it to avoid a "may be used uninitialized" warning.
25636         (scale10_round_decimal_double): Likewise.
25637
25638 2008-05-21  Simon Josefsson  <simon@josefsson.org>
25639
25640         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
25641         declared.
25642
25643 2008-05-20  Bruno Haible  <bruno@clisp.org>
25644
25645         * tests/test-memcmp.c (main): Test also the sign of the result. Test
25646         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
25647
25648 2008-05-20  Simon Josefsson  <simon@josefsson.org>
25649
25650         * modules/memcmp-tests: New file.
25651         * tests/test-memcmp.c: New file.
25652
25653 2008-05-19  Bruno Haible  <bruno@clisp.org>
25654
25655         * modules/propername (Notice, configure.ac): Put quoted "..." into
25656         --keyword option.
25657         * lib/propername.h: Update comments accordingly.
25658         Reported by Eric Blake.
25659
25660 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
25661
25662         * modules/getpass-gnu (Depends-on): Add fseeko.
25663
25664 2008-05-19  Simon Josefsson  <simon@josefsson.org>
25665
25666         * modules/base64-tests: New file.
25667
25668 2008-05-19  Bo Borgerson <gigabo@gmail.com>
25669
25670         * lib/base64.c (base64_decode_ctx): If a decode context structure
25671         was passed in use it to ignore newlines.  If a context structure
25672         was _not_ passed in, continue to treat newlines as garbage (this
25673         is the historical behavior).  Formerly base64_decode.
25674         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
25675         takes a decode context structure.
25676         * lib/base64.h (base64_decode): Macro for four-argument calls.
25677         (base64_decode_alloc): Likewise.
25678         * lib/base64.c (base64_decode_ctx): If a decode context structure
25679         was passed in use it to ignore newlines.  If a context structure
25680         was _not_ passed in, continue to treat newlines as garbage (this
25681         is the historical behavior).  Formerly base64_decode.
25682         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
25683         takes a decode context structure.
25684         * lib/base64.h (base64_decode): Macro for four-argument calls.
25685         (base64_decode_alloc): Likewise.
25686
25687 2008-05-19  Jim Meyering  <meyering@redhat.com>
25688
25689         avoid a warning from gcc
25690         * lib/trim.c (IF_LINT): Define.
25691         (trim2): Use it to avoid a "may be used uninitialized" warning.
25692
25693         Fix doc typo.
25694         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
25695
25696 2008-05-19  Bruno Haible  <bruno@clisp.org>
25697
25698         * doc/glibc-functions/getpass.texi: Document limits of other
25699         implementations.
25700
25701 2008-05-19  Simon Josefsson  <simon@josefsson.org>
25702             Bruno Haible <bruno@clisp.org>
25703
25704         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
25705
25706 2008-05-18  Bruno Haible  <bruno@clisp.org>
25707
25708         * modules/propername: New file, from GNU gettext.
25709         * lib/propername.h: New file, from GNU gettext.
25710         * lib/propername.c: New file, from GNU gettext.
25711         * MODULES.html.sh (Internationalization functions): Add propername.
25712
25713 2008-05-16  Jim Meyering  <meyering@redhat.com>
25714             Bruno Haible  <bruno@clisp.org>
25715
25716         Avoid some warnings from "gcc -Wshadow".
25717         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
25718
25719 2008-05-15  Eric Blake  <ebb9@byu.net>
25720
25721         Extend previous patch to cygwin 1.7.0.
25722         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
25723         fast implementation in cygwin >= 1.7.0.
25724         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25725         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25726
25727 2008-05-15  Bruno Haible  <bruno@clisp.org>
25728
25729         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
25730         implementation in glibc >= 2.9.
25731         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25732         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25733
25734 2008-05-15  Bruno Haible  <bruno@clisp.org>
25735
25736         * MODULES.html.sh (Internationalization functions): Remove linebreak.
25737         (Unicode string functions): Add unilbrk/*.
25738         Reported by Karl Berry.
25739
25740 2008-05-15  Eric Blake  <ebb9@byu.net>
25741
25742         Fix violation of <stdbool.h> replacement in regex.
25743         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
25744         * lib/regexec.c (re_search_internal): Likewise.
25745         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
25746
25747 2008-05-15  Jim Meyering  <meyering@redhat.com>
25748
25749         avoid distracting test output when git or cvs is not found
25750         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
25751         * tests/test-vc-list-files-git.sh: Likewise.
25752
25753 2008-05-15  Eric Blake  <ebb9@byu.net>
25754
25755         Glibc finally accepted the memmem speedup code, bugzilla #5514.
25756         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
25757         glibc version.
25758         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
25759         * doc/posix-functions/strstr.texi (strstr): Likewise.
25760         * lib/str-two-way.h (MAX): Sychronize with glibc.
25761
25762 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
25763
25764         * lib/regcomp.c (optimize_utf8): Add a note on why we test
25765         opr.ctx_type.
25766         (calc_first): Initialize constraint field.
25767         (duplicate_node_closure): Use it instead of special casing ANCHORS.
25768         Fix grammar.
25769         (duplicate_node): Merge constraint field for all node types.
25770         (calc_eclosure_iter): Look at constraint field for all node types.
25771         * lib/regex_internal.c (create_cd_newstate): Don't look at
25772         opr.ctx_type.
25773
25774 2008-05-14  Bruno Haible  <bruno@clisp.org>
25775
25776         Help GCC to do better code generation.
25777         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
25778         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
25779         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
25780         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
25781         Declare with attribute 'malloc' if supported.
25782
25783 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
25784
25785         use "echo STR|wc -c" rather than unportable "expr length STR"
25786         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
25787         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
25788
25789 2008-05-14  Jim Meyering  <meyering@redhat.com>
25790
25791         use dd ibs=$n count=1 ... rather than less-portable head -c$n
25792         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
25793         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
25794         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
25795         via Collin Lasse.
25796
25797 2008-05-14  Eric Blake  <ebb9@byu.net>
25798
25799         Avoid quadratic growth in gl_LIBSOURCES.
25800         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
25801         Suggested by Bruno Haible.
25802
25803         Test xmemdup0.
25804         * modules/xmemdup0-tests: New file.
25805         * tests/test-xmemdup0.c: Likewise.
25806
25807 2008-05-13  Eric Blake  <ebb9@byu.net>
25808
25809         Split xmemdup0 into its own module.
25810         * modules/xmemdup0: New file.
25811         * lib/xmemdup0.h: Likewise.
25812         * lib/xmemdup0.c: Likewise.
25813         * MODULES.html.sh (Memory management functions): Add xmemdup0.
25814         * lib/xalloc.h (xmemdup0): Remove.
25815         * lib/xmalloc.c (xmemdup0): Likewise.
25816
25817 2008-05-13  Eric Blake  <ebb9@byu.net>
25818             Bruno Haible  <bruno@clisp.org>
25819
25820         Reduce number of forks required during autoconf.
25821         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
25822         and gl_LIBSOURCES_DIR.
25823         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
25824         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
25825         m4_syscmd per file.
25826         <m4_foreach_w>: Move...
25827         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
25828
25829 2008-05-13  Eric Blake  <ebb9@byu.net>
25830
25831         * gnulib-tool: Fix various comment typos.
25832
25833 2008-05-12  Bruno Haible  <bruno@clisp.org>
25834
25835         Tailor the linebreaking algorithm.
25836         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
25837
25838 2008-05-12  Bruno Haible  <bruno@clisp.org>
25839
25840         Update to Unicode 5.0.0.
25841         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
25842         LBP_JV, LBP_JT. Redistribute values.
25843         (unilbrk_table): Change size.
25844         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
25845         Unicode TR#14 rev. 22.
25846         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
25847         LBP_JV, LBP_JT. Redistribute values.
25848         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
25849         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
25850         Update.
25851         * lib/unilbrk/lbrkprop1.h: Regenerated.
25852         * lib/unilbrk/lbrkprop2.h: Regenerated.
25853         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
25854         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
25855         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
25856         Likewise.
25857         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
25858         Likewise.
25859         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
25860         result.
25861         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
25862         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
25863         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
25864         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
25865         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
25866         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
25867
25868 2008-05-11  Bruno Haible  <bruno@clisp.org>
25869
25870         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
25871
25872 2008-05-11  Bruno Haible  <bruno@clisp.org>
25873
25874         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
25875         * modules/unilbrk/gen-lbrk: New file.
25876
25877 2008-05-11  Bruno Haible  <bruno@clisp.org>
25878
25879         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
25880         * m4/sha512.m4 (gl_SHA512): Likewise.
25881
25882 2008-05-11  Jim Meyering  <meyering@redhat.com>
25883
25884         New modules: crypto/sha256, crypto/sha512 (from coreutils)
25885         * modules/crypto/sha256: New file.
25886         * modules/crypto/sha512: Likewise.
25887         * lib/sha256.c: Likewise.
25888         * lib/sha256.h: Likewise.
25889         * lib/sha512.c: Likewise.
25890         * lib/sha512.h: Likewise.
25891         * lib/u64.h: Likewise.
25892         * m4/sha256.m4: Likewise.
25893         * m4/sha512.m4: Likewise.
25894         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
25895
25896 2008-05-10  Bruno Haible  <bruno@clisp.org>
25897
25898         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
25899         (Input/Output <stdio.h>): Add xprintf.
25900         (Signal handling <signal.h>): Add strsignal.
25901         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
25902         (Core language properties): Add func.
25903         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
25904         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
25905         strings.
25906         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
25907         (Input/output): New section.
25908         (File system functions): Add openat-die, stat-macros.
25909         (Networking functions): Add sockets.
25910         (Unicode string functions): Add unictype/*.
25911         (Support for building libraries and executables): Add gperf.
25912         (Support for building documentation): Add agpl-3.0.
25913         (Misc): Add nocrash.
25914
25915 2008-05-10  Bruno Haible  <bruno@clisp.org>
25916
25917         * modules/unictype/gen-ctype: New file.
25918
25919 2008-05-10  Jim Meyering  <meyering@redhat.com>
25920
25921         Make chdir-safer.c more efficient on a system with no symlinks.
25922         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
25923         also if ELOOP is zero.  Suggested by Bruno Haible.
25924
25925         Make chdir-safer.c slightly safer.
25926         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
25927         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
25928
25929         Avoid compile failure on systems without ELOOP (like mingw).
25930         * lib/chdir-safer.c (ELOOP): Define if not already defined.
25931         Reported by Bruno Haible.
25932
25933 2008-05-10  Bruno Haible  <bruno@clisp.org>
25934
25935         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
25936         (is_utf8_encoding): Use a case-insensitive comparison.
25937         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
25938         streq.
25939
25940 2008-05-10  Bruno Haible  <bruno@clisp.org>
25941
25942         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
25943         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
25944         * lib/unilbrk/ulc-common.h (iconv_string_length,
25945         iconv_string_keeping_offsets): Remove declarations.
25946         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
25947         Don't include <iconv.h>, streq.h, xsize.h.
25948         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
25949         conversion.
25950         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
25951         <iconv.h>, streq.h, xsize.h.
25952         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
25953         conversion.
25954         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
25955         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
25956         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
25957         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
25958
25959 2008-05-10  Bruno Haible  <bruno@clisp.org>
25960
25961         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
25962         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
25963
25964         * modules/unilbrk/u32-width-linebreaks-tests: New file.
25965         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
25966
25967         * modules/unilbrk/u16-width-linebreaks-tests: New file.
25968         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
25969
25970         * modules/unilbrk/u8-width-linebreaks-tests: New file.
25971         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
25972
25973         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
25974         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
25975
25976         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
25977         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
25978
25979         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
25980         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
25981
25982         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
25983         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
25984
25985 2008-05-10  Bruno Haible  <bruno@clisp.org>
25986
25987         Split up 'linebreak' module.
25988         * lib/unilbrk.h: New file, based on lib/linebreak.h.
25989         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
25990         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
25991         modifications.
25992         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
25993         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
25994         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
25995         lib/linebreak.c.
25996         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
25997         lib/linebreak.c.
25998         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
25999         lib/linebreak.c.
26000         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
26001         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
26002         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
26003         lib/linebreak.c.
26004         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
26005         lib/linebreak.c.
26006         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
26007         lib/linebreak.c.
26008         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
26009         lib/linebreak.c.
26010         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
26011         lib/linebreak.c.
26012         * modules/unilbrk/base: New file.
26013         * modules/unilbrk/tables: New file.
26014         * modules/unilbrk/u8-possible-linebreaks: New file.
26015         * modules/unilbrk/u16-possible-linebreaks: New file.
26016         * modules/unilbrk/u32-possible-linebreaks: New file.
26017         * modules/unilbrk/ulc-common: New file.
26018         * modules/unilbrk/ulc-possible-linebreaks: New file.
26019         * modules/unilbrk/u8-width-linebreaks: New file.
26020         * modules/unilbrk/u16-width-linebreaks: New file.
26021         * modules/unilbrk/u32-width-linebreaks: New file.
26022         * modules/unilbrk/ulc-width-linebreaks: New file.
26023         * lib/linebreak.h: Remove file.
26024         * lib/linebreak.c: Remove file.
26025         * m4/linebreak.m4: Remove file.
26026         * modules/linebreak: Remove file.
26027         * NEWS: Mention the changes.
26028
26029 2008-05-09  Eric Blake  <ebb9@byu.net>
26030
26031         Add xmemdup0.
26032         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
26033         implementation.
26034         * lib/xmalloc.c (xmemdup0): New C implementation.
26035
26036 2008-05-08  Bruno Haible  <bruno@clisp.org>
26037
26038         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
26039
26040 2008-05-07  Eric Blake  <ebb9@byu.net>
26041
26042         Support cross-compilation of <wctype.h>.
26043         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
26044         AC_CACHE_CHECK.
26045
26046 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
26047
26048         * build-aux/vc-list-files: Add support for bzr.
26049
26050 2008-05-03  Jim Meyering  <meyering@redhat.com>
26051
26052         avoid failed assertion with tight malloc
26053         * tests/test-getndelim2.c: Correct an off-by-one assertion.
26054
26055 2008-05-03  Simon Josefsson  <simon@josefsson.org>
26056
26057         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
26058         are needed from arpa/inet.h.
26059         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
26060         Reported by Bruno Haible.
26061
26062 2008-05-02  Jim Meyering  <meyering@redhat.com>
26063
26064         avoid compilation error on FreeBSD 6
26065         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
26066
26067 2008-05-01  Jim Meyering  <meyering@redhat.com>
26068
26069         useless-if-before-free: correct --help's exit status description
26070         * build-aux/useless-if-before-free (usage): Like grep, exit 0
26071         for one or more matches, etc.  Reported by Bruno Haible.
26072
26073         vc-list-files: make the stand-alone gnulib test work
26074         * modules/vc-list-files-tests (configure.ac):
26075         Define and AC_SUBST abs_aux_dir.
26076         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
26077         $(abs_top_srcdir) to each script and having each of them
26078         duplicate the work of setting PATH, set PATH here, using
26079         the new variable, abs_aux_dir instead.
26080         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
26081         * tests/test-vc-list-files-git.sh: Likewise.
26082         Reported by Bruno Haible.
26083
26084 2008-05-01  Bruno Haible  <bruno@clisp.org>
26085
26086         * lib/getndelim2.c (getndelim2): Fix newsize computation during
26087         reallocation. Rename 'done' to 'found_delimiter'.
26088
26089 2008-05-01  Jim Meyering  <meyering@redhat.com>
26090
26091         vc-list-files: accommodate /bin/sh like the one from Solaris 10
26092         * build-aux/vc-list-files: Use `...`, not $(...).
26093
26094 2008-04-30  Jim Meyering  <meyering@redhat.com>
26095
26096         add tests for vc-list-files
26097         * modules/vc-list-files-tests: New module.
26098         * tests/test-vc-list-files-cvs.sh: New file.
26099         * tests/test-vc-list-files-git.sh: New file.
26100
26101         avoid a warning from gcc
26102         * lib/getndelim2.c (IF_LINT): Define.
26103         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
26104
26105         vc-list-files: work properly with build-aux/cvsu, too
26106         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
26107         to all cvs-based clauses.
26108
26109         vc-list-files: work properly in the CVS+awk case, too
26110         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
26111
26112         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
26113         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
26114         take more than one file argument, so .  Add quotes, just in case $dir
26115         ever contains a shell meta-character.  Prompted by Soren Hansen in
26116         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
26117
26118 2008-04-29  Eric Blake  <ebb9@byu.net>
26119
26120         Optimize getndelim2 to use block operations when possible.
26121         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
26122         freadseek, and memchr2.
26123         * lib/getndelim2.c (getndelim2): Use them for block reads.
26124
26125 2008-04-29  Bruno Haible  <bruno@clisp.org>
26126
26127         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
26128         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
26129         * modules/inet_ntop (Depends-on): Add extensions.
26130         * modules/inet_pton (Depends-on): Likewise.
26131         Reported by Simon Josefsson.
26132
26133 2008-04-29  Jim Meyering  <meyering@redhat.com>
26134
26135         When the is more than one match in a block, match all of them.
26136         * build-aux/useless-if-before-free: Iterate through each block
26137         until there are no more matches.
26138
26139         Fix broken useless-if-before-free script.
26140         * build-aux/useless-if-before-free: Fix typo: missing "?" after
26141         the expression to match cast of argument to free-like function.
26142
26143 2008-04-29  Eric Blake  <ebb9@byu.net>
26144
26145         Use new header.
26146         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
26147
26148 2008-04-29  Jim Meyering  <meyering@redhat.com>
26149
26150         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
26151         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
26152         by gnulib to exist and to declare e.g., inet_ntop.
26153         Don't include "inet_ntop.h", now removed.
26154
26155         * m4/arpa_inet_h.m4: Remove trailing blanks.
26156
26157 2008-04-29  Eric Blake  <ebb9@byu.net>
26158
26159         Silence valgrind on safe reads beyond potential array bounds.
26160         * lib/rawmemchr.valgrind: New file.
26161         * lib/strchrnul.valgrind: Likewise.
26162         * modules/rawmemchr (Files): Distribute new file.
26163         * modules/strchrnul (Files): Likewise.
26164         Suggested by Bruno Haible.
26165
26166 2008-04-29  Bruno Haible  <bruno@clisp.org>
26167
26168         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
26169         (inet_ntop, inet_pton): Change portability warning's wording.
26170         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
26171         Invoke gl_CHECK_NEXT_HEADERS.
26172         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
26173         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
26174         set ARPA_INET_H.
26175         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
26176         * modules/arpa_inet (Description): No longer only for systems that
26177         lack it.
26178         (Depends-on): Add include_next.
26179         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
26180         HAVE_ARPA_INET_H.
26181
26182 2008-04-29  Jim Meyering  <meyering@redhat.com>
26183
26184         * modules/mkdir (License): Re-license as LGPLv2+.
26185
26186 2008-04-29  Bruno Haible  <bruno@clisp.org>
26187
26188         * modules/rawmemchr (Maintainer): Set to Eric.
26189         * modules/strchrnul (Maintainer): Likewise.
26190
26191 2008-04-29  Simon Josefsson  <simon@josefsson.org>
26192
26193         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
26194         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
26195
26196         * modules/arpa_inet (arpa/inet.h): Use them.
26197
26198 2008-04-28  Eric Blake  <ebb9@byu.net>
26199
26200         Test getndelim2.
26201         * modules/getndelim2-tests: New file.
26202         * tests/test-getndelim2.c: Likewise.
26203         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
26204         stream.
26205         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
26206
26207         * MODULES.html.sh: Document new module.
26208
26209 2008-04-20  Bruno Haible  <bruno@clisp.org>
26210
26211         * lib/c-stack.c (die): Use raise.
26212         * modules/c-stack (Depends-on): Add raise.
26213
26214 2008-04-28  Bruno Haible  <bruno@clisp.org>
26215
26216         Expect rpmatch to be declared.
26217         * lib/yesno.c (rpmatch): Remove declaration.
26218
26219         Declare rpmatch.
26220         * lib/stdlib.in.h (rpmatch): New declaration.
26221         * lib/rpmatch.c: Include <stdlib.h> first.
26222         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
26223         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
26224         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
26225         HAVE_RPMATCH.
26226         * modules/rpmatch (Depends-on): Add stdlib, extensions.
26227         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
26228         (Include): Set to <stdlib.h>.
26229         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
26230         HAVE_RPMATCH.
26231         * NEWS: Document the change.
26232
26233 2008-04-28  Bruno Haible  <bruno@clisp.org>
26234
26235         Change rpmatch to use nl_langinfo when appropriate.
26236         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
26237         (N_): New macro.
26238         (localized_pattern): New function/macro.
26239         (try): Remove match, nomatch arguments. Copy the pattern into safe
26240         memory before caching it.
26241         (rpmatch): Use localized_pattern. Add translator comments.
26242         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
26243         Suggested by Eric Blake.
26244         * modules/rpmatch (Depends-on): Add stdbool.
26245
26246 2008-04-28  Eric Blake  <ebb9@byu.net>
26247
26248         Add rawmemchr module, matching glibc.
26249         * modules/string (Makefile.am): New indicator.
26250         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
26251         * lib/string.in.h (rawmemchr): Declare when appropriate.
26252         * modules/rawmemchr: New file.
26253         * m4/rawmemchr.m4: Likewise.
26254         * lib/rawmemchr.c: Likewise.
26255         * modules/rawmemchr-tests: Likewise.
26256         * tests/test-rawmemchr.c: Likewise.
26257         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
26258         module.
26259         * modules/strchrnul (Depends-on): Add rawmemchr.
26260         * lib/strchrnul.c (strchrnul): Optimize a corner case.
26261
26262         Whitespace cleanup.
26263         * tests/test-strchrnul.c: Reindent.
26264         * lib/strchrnul.c: Likewise.
26265
26266         Optimize and test strchrnul.
26267         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
26268         * modules/strchrnul-tests: New file.
26269         * tests/test-strchrnul.c: Likewise.
26270
26271         Remove intprops dependency.
26272         * modules/memchr (Depends-on): Remove intprops.
26273         * modules/memrchr (Depends-on): Likewise.
26274         * modules/memchr2 (Depends-on): Likewise.
26275         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
26276         * lib/memrchr.c (__memrchr): Likewise.
26277         * lib/memrchr2.c (memchr2): Likewise.
26278         Reported by Simon Josefsson.
26279
26280 2008-04-28  Simon Josefsson  <simon@josefsson.org>
26281
26282         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
26283         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26284
26285 2008-04-28  Simon Josefsson  <simon@josefsson.org>
26286
26287         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
26288
26289         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
26290
26291         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
26292
26293         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
26294         declarations.
26295         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
26296
26297         * m4/inet_pton.m4: Don't check for header files.
26298
26299         * m4/inet_ntop.m4: Don't check for header files.
26300
26301 2008-04-28  Simon Josefsson  <simon@josefsson.org>
26302
26303         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
26304         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
26305         trigger for cygwin).
26306         Reported by Bruno Haible  <bruno@clisp.org>.
26307
26308 2008-04-28  Bruno Haible  <bruno@clisp.org>
26309
26310         * doc/posix-functions/strdup.texi: Mention mingw problem.
26311
26312 2008-04-27  Bruno Haible  <bruno@clisp.org>
26313
26314         * modules/stat-time-tests (Depends-on): Add sleep.
26315         * tests/test-stat-time.c (force_unlink): New function.
26316         (cleanup): Use it.
26317         (test_mtime): Remove the ctime related tests.
26318         (test_ctime): New function, containing the ctime related tests.
26319         (main): Call test_ctime, except on native Windows platforms.
26320
26321 2008-04-27  Bruno Haible  <bruno@clisp.org>
26322
26323         * lib/rpmatch.c (rpmatch): Add some comments.
26324         Reported by James Youngman <jay@gnu.org>.
26325
26326 2008-04-27  Bruno Haible  <bruno@clisp.org>
26327
26328         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
26329         quiet NaNs.
26330
26331 2008-04-27  Bruno Haible  <bruno@clisp.org>
26332
26333         Make test-yesno.sh work on mingw.
26334         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
26335         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
26336         (main): Set stdin to binary mode.
26337         * modules/yesno-tests (Depends-on): Add binary-io.
26338
26339 2008-04-27  Bruno Haible  <bruno@clisp.org>
26340
26341         Fix 'isfinite' on x86, x86_64, ia64 platforms.
26342         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
26343         argument that lie outside the IEEE 854 domain.
26344         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
26345         (gl_ISFINITE): Use it.
26346         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
26347
26348 2008-04-27  Bruno Haible  <bruno@clisp.org>
26349
26350         Allow local renaming in config.h.
26351         * lib/memrchr.c (memrchr): Don't undefine outside libc.
26352
26353 2008-04-27  Bruno Haible  <bruno@clisp.org>
26354
26355         * lib/memchr.c (__memchr): Change type of 'i'.
26356         * lib/memchr2.c (memchr2): Likewise.
26357
26358 2008-04-26  Eric Blake  <ebb9@byu.net>
26359         and Bruno Haible  <bruno@clisp.org>
26360
26361         Optimize and test memrchr.
26362         * modules/memrchr (Depends-on): Add intprops.
26363         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
26364         * modules/memrchr-tests: New file.
26365         * tests/test-memrchr.c: New file.
26366
26367 2008-04-26  Bruno Haible  <bruno@clisp.org>
26368
26369         Add tentative support for DragonFly BSD.
26370         * lib/stdio-impl.h: Add macros for DragonFly BSD.
26371         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
26372         fp.
26373         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
26374         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
26375         * lib/fpurge.c (fpurge): Likewise.
26376         * lib/freadable.c (freaadable): Likewise.
26377         * lib/freadahead.c (freadahead): Likewise.
26378         * lib/freading.c (freading): Likewise.
26379         * lib/freadptr.c (freadptr): Likewise.
26380         * lib/freadseek.c (freadptrinc): Likewise.
26381         * lib/fseeko.c (fseeko): Likewise.
26382         * lib/fseterr.c (fseterr): Likewise.
26383         * lib/fwritable.c (fwritable): Likewise.
26384         * lib/fwriting.c (fwriting): Likewise.
26385
26386 2008-04-26  Bruno Haible  <bruno@clisp.org>
26387
26388         * lib/stdio-impl.h: New file.
26389         * lib/fbufmode.c: Include stdio-impl.h.
26390         (fbufmode): Use fp_, remove redundant #defines.
26391         * lib/fflush.c: Include stdio-impl.h.
26392         (clear_ungetc_buffer): Remove redundant #defines.
26393         * lib/fpurge.c: Include stdio-impl.h.
26394         (fpurge): Remove redundant #defines.
26395         * lib/freadable.c: Include stdio-impl.h.
26396         (freadable): Remove redundant #defines.
26397         * lib/freadahead.c: Include stdio-impl.h.
26398         (freadahead): Remove redundant #defines.
26399         * lib/freading.c: Include stdio-impl.h.
26400         (freading): Remove redundant #defines.
26401         * lib/freadptr.c: Include stdio-impl.h.
26402         (freadptr): Remove redundant #defines.
26403         * lib/freadseek.c: Include stdio-impl.h.
26404         (freadptrinc): Remove redundant #defines.
26405         * lib/fseeko.c: Include stdio-impl.h.
26406         (rpl_fseeko): Remove redundant #defines.
26407         * lib/fseterr.c: Include stdio-impl.h.
26408         (fseterr): Remove redundant #defines.
26409         * lib/fwritable.c: Include stdio-impl.h.
26410         (fwritable: Remove redundant #defines.
26411         * lib/fwriting.c: Include stdio-impl.h.
26412         (fwriting): Remove redundant #defines.
26413         * modules/fbufmode (Files): Add lib/stdio-impl.h.
26414         * modules/fflush (Files): Likewise.
26415         * modules/fpurge (Files): Likewise.
26416         * modules/freadable (Files): Likewise.
26417         * modules/freadahead (Files): Likewise.
26418         * modules/freading (Files): Likewise.
26419         * modules/freadptr (Files): Likewise.
26420         * modules/freadseek (Files): Likewise.
26421         * modules/fseeko (Files): Likewise.
26422         * modules/fseterr (Files): Likewise.
26423         * modules/fwritable (Files): Likewise.
26424         * modules/fwriting (Files): Likewise.
26425
26426 2008-04-26  Bruno Haible  <bruno@clisp.org>
26427
26428         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
26429         restore_seek_optimization, update_fpos_cache): New functions, extracted
26430         from rpl_fflush.
26431         (rpl_fflush): Use them.
26432         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
26433         (gl_REPLACE_FFLUSH): Use it.
26434
26435 2008-04-26  Bruno Haible  <bruno@clisp.org>
26436
26437         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
26438         on Solaris.
26439         * tests/test-xstrtoimax.sh: Likewise.
26440         * tests/test-xstrtoumax.sh: Likewise.
26441         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26442
26443 2008-04-26  Bruno Haible  <bruno@clisp.org>
26444
26445         * modules/memchr-tests: New file.
26446         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
26447
26448 2008-04-26  Eric Blake  <ebb9@byu.net>
26449             Bruno Haible  <bruno@clisp.org>
26450
26451         * lib/memchr.c: Include intprops.h.
26452         (__memchr): Optimize parallel detection of matching bytes. Rename local
26453         variables. Add explanatory comments.
26454
26455 2008-04-26  Bruno Haible  <bruno@clisp.org>
26456
26457         Fix module 'memchr', broken since 2000-10-28.
26458         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
26459
26460 2008-04-26  Bruno Haible  <bruno@clisp.org>
26461
26462         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
26463         comments.
26464
26465 2008-04-25  Eric Blake  <ebb9@byu.net>
26466
26467         Use native fstatat on cygwin 1.7.0.
26468         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
26469         first.
26470
26471 2008-04-23  Eric Blake  <ebb9@byu.net>
26472
26473         Improve memchr2 performance.
26474         * lib/memchr2.c (memchr2): Further optimize parallel detection of
26475         NUL bytes.
26476         * modules/memchr2 (Depends-on): Use intprops.h.
26477
26478 2008-04-23  Simon Josefsson  <simon@josefsson.org>
26479
26480         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
26481         an inline function instead of a CPP macro.  Patch by Ben Pfaff
26482         <blp@cs.stanford.edu>.
26483
26484 2008-04-23  Simon Josefsson  <simon@josefsson.org>
26485
26486         * lib/arpa_inet.in.h: New file.
26487
26488         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
26489         (Makefile.am): Sed in substitute header file.
26490
26491         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
26492         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
26493
26494         * modules/inet_ntop (configure.ac): Use
26495         gl_ARPA_INET_MODULE_INDICATOR.
26496
26497         * modules/inet_pton (configure.ac): Use
26498         gl_ARPA_INET_MODULE_INDICATOR.
26499
26500 2008-04-22  Jim Meyering  <meyering@redhat.com>
26501
26502         * modules/verify (License): Re-license as LGPLv2+.
26503
26504 2008-04-22  Simon Josefsson  <simon@josefsson.org>
26505
26506         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
26507         parameter to void* as per POSIX standard (MinGW uses char*).
26508
26509 2008-04-21  Bruno Haible  <bruno@clisp.org>
26510
26511         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
26512         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
26513         Define to replacements if REPLACE_ISWCNTRL is 1.
26514         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
26515         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
26516         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
26517         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
26518         what it fixes.
26519         * doc/posix-functions/iswalpha.texi: Likewise.
26520         * doc/posix-functions/iswblank.texi: Likewise.
26521         * doc/posix-functions/iswcntrl.texi: Likewise.
26522         * doc/posix-functions/iswdigit.texi: Likewise.
26523         * doc/posix-functions/iswgraph.texi: Likewise.
26524         * doc/posix-functions/iswlower.texi: Likewise.
26525         * doc/posix-functions/iswprint.texi: Likewise.
26526         * doc/posix-functions/iswpunct.texi: Likewise.
26527         * doc/posix-functions/iswspace.texi: Likewise.
26528         * doc/posix-functions/iswupper.texi: Likewise.
26529         * doc/posix-functions/iswxdigit.texi: Likewise.
26530         Reported by Alain Guibert.
26531
26532 2008-04-21  Bruno Haible  <bruno@clisp.org>
26533
26534         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
26535         Patch by Alain Guibert.
26536
26537 2008-04-21  Bruno Haible  <bruno@clisp.org>
26538
26539         Fix test failures on mingw.
26540         * tests/test-xstrtol.c (print_no_progname): New function.
26541         (main): Install it in error_print_progname hook.
26542         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
26543         * tests/test-xstrtoimax.sh: Likewise.
26544         * tests/test-xstrtoumax.sh: Likewise.
26545
26546 2008-04-21  Bruno Haible  <bruno@clisp.org>
26547
26548         Fix test failure on mingw.
26549         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
26550
26551 2008-04-21  Bruno Haible  <bruno@clisp.org>
26552
26553         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
26554         Actually assign a value.
26555
26556 2008-04-20  Bruno Haible  <bruno@clisp.org>
26557
26558         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
26559         take 2.
26560         * lib/canonicalize.c (canonicalize_file_name): Elide if the
26561         'canonicalize-lgpl' module is also used.
26562         * lib/canonicalize-lgpl.c: Undo last change.
26563         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
26564
26565 2008-04-20  Bruno Haible  <bruno@clisp.org>
26566
26567         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
26568         config.h. Provide _mkdir based fallback for mingw.
26569         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
26570         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
26571         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
26572         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
26573         rather than defining mkdir in config.h.
26574         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
26575         (gl_SYS_STAT_H_DEFAULTS): New macro.
26576         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
26577         HAVE_IO_H any more.
26578         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
26579         HAVE_DECL_MKDIR and HAVE_IO_H.
26580
26581 2008-04-20  Bruno Haible  <bruno@clisp.org>
26582
26583         * lib/isapipe.c: Port to native Windows platforms.
26584
26585 2008-04-20  Bruno Haible  <bruno@clisp.org>
26586
26587         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
26588
26589 2008-04-21  Eric Blake  <ebb9@byu.net>
26590
26591         Work around preprocessors that don't handle UINTMAX_MAX.
26592         * lib/memchr2.c (memchr2): Avoid embedded #if.
26593         Reported by Alain Guibert, fix suggested by Bruno Haible.
26594
26595 2008-04-21  Simon Josefsson  <simon@josefsson.org>
26596
26597         * doc/posix-functions/strftime.texi (strftime): Explain better
26598         Windows incompatibility.  Suggested by Micah Cowan
26599         <micah@cowan.name>.
26600
26601 2008-04-20  Bruno Haible  <bruno@clisp.org>
26602
26603         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
26604         unistr/u8-mblen.
26605
26606 2008-04-20  Bruno Haible  <bruno@clisp.org>
26607
26608         Fix test failure on platforms with non-GNU iconv.
26609         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
26610         (U_TO_U8): Use it, rather than u16_to_u8.
26611         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
26612         units at the end of the input string.
26613         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
26614
26615 2008-04-20  Bruno Haible  <bruno@clisp.org>
26616
26617         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
26618         when the resulting length is 0.
26619         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
26620
26621 2008-04-20  Bruno Haible  <bruno@clisp.org>
26622
26623         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
26624         works.
26625         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
26626
26627 2008-04-20  Bruno Haible  <bruno@clisp.org>
26628
26629         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
26630         * modules/tsearch-tests (configure.ac): Test for initstate function.
26631
26632 2008-04-20  Bruno Haible  <bruno@clisp.org>
26633
26634         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
26635         for nlink_t if missing.
26636         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
26637
26638 2008-04-19  Bruno Haible  <bruno@clisp.org>
26639
26640         Work around snprintf bug on Linux libc5.
26641         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
26642         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
26643         gl_SNPRINTF_SIZE1.
26644         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
26645         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
26646         that test failed.
26647         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
26648         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
26649         * modules/snprintf (Files): Add m4/printf.m4.
26650         * modules/vsnprintf (Files): Likewise.
26651         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
26652         * doc/posix-functions/vsnprintf.texi: Likewise.
26653
26654 2008-04-19  Bruno Haible  <bruno@clisp.org>
26655
26656         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
26657         from 0.0058 to less than 10^-7.
26658
26659 2008-04-19  Bruno Haible  <bruno@clisp.org>
26660
26661         Fix rounding when a precision is given.
26662         * lib/vasnprintf.c (is_borderline): New function.
26663         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
26664         9...9x.
26665         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
26666         %e, %g.
26667         * tests/test-vasprintf-posix.c (test_function): Likewise.
26668         * tests/test-snprintf-posix.h (test_function): Likewise.
26669         * tests/test-sprintf-posix.h (test_function): Likewise.
26670         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
26671         * tests/test-printf-posix.h (test_function): Likewise.
26672         * tests/test-printf-posix.output: Update.
26673         Reported by John Darrington <john@darrington.wattle.id.au> via
26674         Ben Pfaff <blp@cs.stanford.edu>.
26675
26676 2008-04-18  Simon Josefsson  <simon@josefsson.org>
26677
26678         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
26679         Suggested by Bruno Haible <bruno@clisp.org>.
26680
26681 2008-04-17  Bruno Haible  <bruno@clisp.org>
26682
26683         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
26684         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
26685         implementation.
26686         Patch by Bruce Merry <bmerry@gmail.com>.
26687
26688 2008-04-17  Simon Josefsson  <simon@josefsson.org>
26689
26690         * doc/posix-functions/strftime.texi (strftime): Mention that %e
26691         doesn't work under Windows.
26692
26693 2008-04-16  Bruno Haible  <bruno@clisp.org>
26694
26695         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
26696         New macros.
26697         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
26698         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
26699         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
26700         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
26701         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
26702         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
26703         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
26704         macros.
26705         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
26706         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
26707         Northern Sotho, Uighur.
26708
26709 2008-04-16  Bruno Haible  <bruno@clisp.org>
26710
26711         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
26712         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
26713         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
26714         Reported by Daniel Bergström <daniel@octocode.com>.
26715
26716 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
26717             Bruno Haible  <bruno@clisp.org>
26718
26719         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
26720         function.
26721         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
26722         New functions, mostly extracted from gl_locale_name_default.
26723         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
26724
26725 2008-04-16  Eric Blake  <ebb9@byu.net>
26726
26727         Adjust strtod detection to catch glibc 2.7 bug.
26728         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
26729         Reported by John Gatewood Ham.
26730
26731 2008-04-16  Bruno Haible  <bruno@clisp.org>
26732
26733         Add tentative support for Linux libc5.
26734         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
26735         * lib/fpurge.c (fpurge): Likewise.
26736         * lib/freadable.c (freadable): Likewise.
26737         * lib/freadahead.c (freadahead): Likewise.
26738         * lib/freading.c (freading): Likewise.
26739         * lib/freadptr.c (freadptr): Likewise.
26740         * lib/freadseek.c (freadptrinc): Likewise.
26741         * lib/fseeko.c (rpl_fseeko): Likewise.
26742         * lib/fseterr.c (fseterr): Likewise.
26743         * lib/fwritable.c (fwritable): Likewise.
26744         * lib/fwriting.c (fwriting): Likewise.
26745         Reported by Alain Guibert <alguibert+bts@free.fr>.
26746
26747 2008-04-15  Bruno Haible  <bruno@clisp.org>
26748
26749         * modules/mathl (configure.ac): Define module indicator.
26750
26751 2008-04-15  Bruno Haible  <bruno@clisp.org>
26752
26753         * lib/logl.c (logl): Remove unused variables.
26754
26755 2008-04-15  Bruno Haible  <bruno@clisp.org>
26756
26757         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
26758         fails.
26759
26760 2008-04-15  Bruno Haible  <bruno@clisp.org>
26761
26762         * lib/trim.c (trim2): Fix argument of isspace() macro.
26763
26764 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
26765
26766         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
26767         to 0.
26768         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
26769
26770 2008-04-14  Bruno Haible  <bruno@clisp.org>
26771
26772         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
26773         AC_LANG_PROGRAM argument.
26774         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
26775         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
26776         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
26777         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
26778         * m4/math_h.m4 (gl_MATH_H): Likewise.
26779         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
26780         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
26781         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
26782         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
26783         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
26784         * m4/regex.m4 (gl_REGEX): Likewise.
26785         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
26786         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
26787         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
26788         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
26789         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
26790         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
26791         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
26792         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
26793
26794 2008-04-14  Jim Meyering  <meyering@redhat.com>
26795
26796         test-strtod: fix typos: s/abs/fabs/
26797         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
26798
26799 2008-04-13  Bruno Haible  <bruno@clisp.org>
26800
26801         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
26802         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
26803         module is also used and while not building the reloc-wrapper.
26804
26805 2008-04-13  Bruno Haible  <bruno@clisp.org>
26806
26807         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
26808
26809 2008-04-13  Bruno Haible  <bruno@clisp.org>
26810
26811         Fix AIX compilation failure introduced on 2008-04-02.
26812         * tests/test-frexp.c (exp): Undefine before redefining.
26813         * tests/test-frexpl.c (exp): Likewise.
26814
26815 2008-04-13  Bruno Haible  <bruno@clisp.org>
26816
26817         Work around a HP-UX stdio bug.
26818         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
26819         * tests/test-ftello.c (main): Likewise.
26820         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
26821         * doc/posix-functions/ftello.texi: Likewise.
26822
26823 2008-04-13  Bruno Haible  <bruno@clisp.org>
26824
26825         Make test-signbit pass on HP-UX/hppa.
26826         * tests/test-signbit.c (minus_zerol): New variable.
26827         (test_signbitl): Use it.
26828
26829 2008-04-13  Bruno Haible  <bruno@clisp.org>
26830
26831         Make truncl work on OSF/1 4.0.
26832         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
26833         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
26834         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
26835         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
26836         HAVE_DECL_TRUNCL.
26837         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
26838         HAVE_DECL_TRUNCL.
26839         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
26840
26841 2008-04-13  Bruno Haible  <bruno@clisp.org>
26842
26843         * lib/unictype.h: Remove trailing comma from enumeration definitions.
26844
26845 2008-04-13  Bruno Haible  <bruno@clisp.org>
26846
26847         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
26848         expression, so as to avoid HP-UX 11 cc compiler bug.
26849
26850 2008-04-13  Bruno Haible  <bruno@clisp.org>
26851
26852         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
26853
26854 2008-04-13  Bruno Haible  <bruno@clisp.org>
26855
26856         * lib/git-merge-changelog.c: Remove empty declaration outside of
26857         functions.
26858
26859 2008-04-13  Bruno Haible  <bruno@clisp.org>
26860
26861         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
26862
26863 2008-04-13  Bruno Haible  <bruno@clisp.org>
26864
26865         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
26866         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
26867         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
26868         also if it exists but lacks definitions of the SHUT_* macros.
26869         * modules/sys_socket (Description): Update.
26870         Reported by Elbert Pol <e.pol@chello.nl>.
26871
26872 2008-04-13  Bruno Haible  <bruno@clisp.org>
26873
26874         * lib/localcharset.c (OS2): Don't redefine if already defined.
26875         Reported by Elbert Pol <e.pol@chello.nl>.
26876
26877 2008-04-13  Bruno Haible  <bruno@clisp.org>
26878
26879         * lib/binary-io.h [__EMX__]: Include <io.h>.
26880         Reported by Elbert Pol <e.pol@chello.nl>.
26881
26882 2008-04-12  Bruno Haible  <bruno@clisp.org>
26883
26884         * lib/fpucw.h: Enable the definitions also for x86_64.
26885         Needed for NetBSD/x86_64.
26886         Reported by Thomas Klausner <tk@giga.or.at>.
26887
26888 2008-04-12  Bruno Haible  <bruno@clisp.org>
26889
26890         * tests/test-strtod.c: Include isnand.h.
26891         (main): Use isnand instead of isnan.
26892         Reported by Jim Meyering.
26893
26894 2008-04-12  Bruno Haible  <bruno@clisp.org>
26895
26896         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
26897         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
26898
26899 2008-04-12  Jim Meyering  <meyering@redhat.com>
26900
26901         * m4/math_h.m4 (gl_MATH_H): Fix typos.
26902
26903 2008-04-12  Bruno Haible  <bruno@clisp.org>
26904
26905         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
26906         Reported by Elbert Pol <e.pol@chello.nl>.
26907
26908 2008-04-12  Eric Blake  <ebb9@byu.net>
26909
26910         Work around Solaris 10 math.h bug.
26911         * m4/math_h.m4 (gl_MATH_H): Check for bug.
26912         (gl_MATH_H_DEFAULTS): Set up default.
26913         * modules/math (Makefile.am): Replace new indicators.
26914         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
26915         * tests/test-math.c (main): Test this.
26916         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
26917         * doc/posix-headers/math.texi (math.h): Mention bug.
26918         Reported by Nelson H. F. Beebe and Jim Meyering.
26919
26920 2008-04-11  Bruno Haible  <bruno@clisp.org>
26921
26922         Adapt to future versions of Apple GCC.
26923         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
26924         Reported by Peter O'Gorman <peter@pogma.com>.
26925
26926 2008-04-11  Bruno Haible  <bruno@clisp.org>
26927
26928         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
26929
26930 2008-04-11  Bruno Haible  <bruno@clisp.org>
26931
26932         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
26933
26934         * modules/getaddrinfo-tests (Makefile.am): Define
26935         test_getaddrinfo_LDADD.
26936
26937 2008-04-11  Bruno Haible  <bruno@clisp.org>
26938
26939         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
26940         (init): Fix syntax error.
26941         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
26942         is declared.
26943
26944 2008-04-11  Bruno Haible  <bruno@clisp.org>
26945
26946         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
26947         * modules/glob (Depends-on): Add stdbool.
26948
26949 2008-04-11  Bruno Haible  <bruno@clisp.org>
26950
26951         * lib/trim.c: Include <string.h>.
26952
26953 2008-04-11  Eric Blake  <ebb9@byu.net>
26954
26955         Avoid compile failure on OS/2.
26956         * lib/regex_internal.h (internal_function): Disable optimization
26957         on OS/2 (__EMX__), where it caused compiler error.
26958         Reported by Elbert Pol.
26959
26960 2008-04-11  Bruno Haible  <bruno@clisp.org>
26961
26962         Flush the standard error stream before aborting. Needed on mingw.
26963         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
26964         * tests/test-array_list.c (ASSERT): Likewise.
26965         * tests/test-array_oset.c (ASSERT): Likewise.
26966         * tests/test-avltree_list.c (ASSERT): Likewise.
26967         * tests/test-avltree_oset.c (ASSERT): Likewise.
26968         * tests/test-avltreehash_list.c (ASSERT): Likewise.
26969         * tests/test-binary-io.c (ASSERT): Likewise.
26970         * tests/test-byteswap.c (ASSERT): Likewise.
26971         * tests/test-c-ctype.c (ASSERT): Likewise.
26972         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
26973         * tests/test-c-strcasestr.c (ASSERT): Likewise.
26974         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
26975         * tests/test-c-strstr.c (ASSERT): Likewise.
26976         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
26977         * tests/test-canonicalize.c (ASSERT): Likewise.
26978         * tests/test-carray_list.c (ASSERT): Likewise.
26979         * tests/test-ceilf1.c (ASSERT): Likewise.
26980         * tests/test-ceilf2.c (ASSERT): Likewise.
26981         * tests/test-ceill.c (ASSERT): Likewise.
26982         * tests/test-count-one-bits.c (ASSERT): Likewise.
26983         * tests/test-fbufmode.c (ASSERT): Likewise.
26984         * tests/test-fflush2.c (ASSERT): Likewise.
26985         * tests/test-floorf1.c (ASSERT): Likewise.
26986         * tests/test-floorf2.c (ASSERT): Likewise.
26987         * tests/test-floorl.c (ASSERT): Likewise.
26988         * tests/test-fopen.c (ASSERT): Likewise.
26989         * tests/test-fpending.c (ASSERT): Likewise.
26990         * tests/test-fprintf-posix.c (ASSERT): Likewise.
26991         * tests/test-fpurge.c (ASSERT): Likewise.
26992         * tests/test-freadable.c (ASSERT): Likewise.
26993         * tests/test-freadahead.c (ASSERT): Likewise.
26994         * tests/test-freading.c (ASSERT): Likewise.
26995         * tests/test-freadptr.c (ASSERT): Likewise.
26996         * tests/test-freadptr2.c (ASSERT): Likewise.
26997         * tests/test-freadseek.c (ASSERT): Likewise.
26998         * tests/test-freopen.c (ASSERT): Likewise.
26999         * tests/test-frexp.c (ASSERT): Likewise.
27000         * tests/test-frexpl.c (ASSERT): Likewise.
27001         * tests/test-fseek.c (ASSERT): Likewise.
27002         * tests/test-fseeko.c (ASSERT): Likewise.
27003         * tests/test-fstrcmp.c (ASSERT): Likewise.
27004         * tests/test-ftell.c (ASSERT): Likewise.
27005         * tests/test-ftello.c (ASSERT): Likewise.
27006         * tests/test-func.c (ASSERT): Likewise.
27007         * tests/test-fwritable.c (ASSERT): Likewise.
27008         * tests/test-fwriting.c (ASSERT): Likewise.
27009         * tests/test-getdelim.c (ASSERT): Likewise.
27010         * tests/test-getline.c (ASSERT): Likewise.
27011         * tests/test-i-ring.c (ASSERT): Likewise.
27012         * tests/test-iconv-utf.c (ASSERT): Likewise.
27013         * tests/test-iconv.c (ASSERT): Likewise.
27014         * tests/test-isfinite.c (ASSERT): Likewise.
27015         * tests/test-isnand.c (ASSERT): Likewise.
27016         * tests/test-isnanf.c (ASSERT): Likewise.
27017         * tests/test-isnanl.h (ASSERT): Likewise.
27018         * tests/test-ldexpl.c (ASSERT): Likewise.
27019         * tests/test-linked_list.c (ASSERT): Likewise.
27020         * tests/test-linkedhash_list.c (ASSERT): Likewise.
27021         * tests/test-localename.c (ASSERT): Likewise.
27022         * tests/test-lseek.c (ASSERT): Likewise.
27023         * tests/test-mbscasecmp.c (ASSERT): Likewise.
27024         * tests/test-mbscasestr1.c (ASSERT): Likewise.
27025         * tests/test-mbscasestr2.c (ASSERT): Likewise.
27026         * tests/test-mbscasestr3.c (ASSERT): Likewise.
27027         * tests/test-mbscasestr4.c (ASSERT): Likewise.
27028         * tests/test-mbschr.c (ASSERT): Likewise.
27029         * tests/test-mbscspn.c (ASSERT): Likewise.
27030         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
27031         * tests/test-mbspbrk.c (ASSERT): Likewise.
27032         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
27033         * tests/test-mbsrchr.c (ASSERT): Likewise.
27034         * tests/test-mbsspn.c (ASSERT): Likewise.
27035         * tests/test-mbsstr1.c (ASSERT): Likewise.
27036         * tests/test-mbsstr2.c (ASSERT): Likewise.
27037         * tests/test-mbsstr3.c (ASSERT): Likewise.
27038         * tests/test-memchr2.c (ASSERT): Likewise.
27039         * tests/test-memmem.c (ASSERT): Likewise.
27040         * tests/test-open.c (ASSERT): Likewise.
27041         * tests/test-printf-frexp.c (ASSERT): Likewise.
27042         * tests/test-printf-frexpl.c (ASSERT): Likewise.
27043         * tests/test-printf-posix.c (ASSERT): Likewise.
27044         * tests/test-quotearg.c (ASSERT): Likewise.
27045         * tests/test-rbtree_list.c (ASSERT): Likewise.
27046         * tests/test-rbtree_oset.c (ASSERT): Likewise.
27047         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
27048         * tests/test-round1.c (ASSERT): Likewise.
27049         * tests/test-roundf1.c (ASSERT): Likewise.
27050         * tests/test-roundl.c (ASSERT): Likewise.
27051         * tests/test-signbit.c (ASSERT): Likewise.
27052         * tests/test-sleep.c (ASSERT): Likewise.
27053         * tests/test-snprintf-posix.c (ASSERT): Likewise.
27054         * tests/test-snprintf.c (ASSERT): Likewise.
27055         * tests/test-sprintf-posix.c (ASSERT): Likewise.
27056         * tests/test-stat-time.c (ASSERT): Likewise.
27057         * tests/test-strcasestr.c (ASSERT): Likewise.
27058         * tests/test-strerror.c (ASSERT): Likewise.
27059         * tests/test-striconv.c (ASSERT): Likewise.
27060         * tests/test-striconveh.c (ASSERT): Likewise.
27061         * tests/test-striconveha.c (ASSERT): Likewise.
27062         * tests/test-strsignal.c (ASSERT): Likewise.
27063         * tests/test-strstr.c (ASSERT): Likewise.
27064         * tests/test-strtod.c (ASSERT): Likewise.
27065         * tests/test-trunc1.c (ASSERT): Likewise.
27066         * tests/test-trunc2.c (ASSERT): Likewise.
27067         * tests/test-truncf1.c (ASSERT): Likewise.
27068         * tests/test-truncf2.c (ASSERT): Likewise.
27069         * tests/test-truncl.c (ASSERT): Likewise.
27070         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
27071         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
27072         * tests/test-vasnprintf.c (ASSERT): Likewise.
27073         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
27074         * tests/test-vasprintf.c (ASSERT): Likewise.
27075         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
27076         * tests/test-vprintf-posix.c (ASSERT): Likewise.
27077         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
27078         * tests/test-vsnprintf.c (ASSERT): Likewise.
27079         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
27080         * tests/test-wcwidth.c (ASSERT): Likewise.
27081         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
27082         * tests/test-xprintf-posix.c (ASSERT): Likewise.
27083         * tests/test-xvasprintf.c (ASSERT): Likewise.
27084         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
27085         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
27086         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
27087         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
27088         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
27089         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
27090         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
27091         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
27092         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
27093         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
27094         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
27095         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
27096         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
27097         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
27098         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
27099         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
27100         * tests/unictype/test-block_list.c (ASSERT): Likewise.
27101         * tests/unictype/test-block_of.c (ASSERT): Likewise.
27102         * tests/unictype/test-block_test.c (ASSERT): Likewise.
27103         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
27104         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
27105         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
27106         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
27107         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
27108         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
27109         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
27110         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
27111         * tests/unictype/test-combining.c (ASSERT): Likewise.
27112         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
27113         * tests/unictype/test-digit.c (ASSERT): Likewise.
27114         * tests/unictype/test-mirror.c (ASSERT): Likewise.
27115         * tests/unictype/test-numeric.c (ASSERT): Likewise.
27116         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
27117         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
27118         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
27119         * tests/unictype/test-scripts.c (ASSERT): Likewise.
27120         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
27121         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
27122         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
27123         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
27124         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
27125         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
27126         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
27127         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
27128         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
27129         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
27130         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
27131         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
27132         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
27133         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
27134         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
27135         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
27136         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
27137         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
27138         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
27139         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
27140         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
27141         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
27142         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
27143         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
27144         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
27145         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
27146         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
27147         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
27148         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
27149         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
27150         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
27151         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
27152         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
27153         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
27154         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
27155         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
27156         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
27157         Reported by Eric Blake.
27158
27159 2008-04-11  Bruno Haible  <bruno@clisp.org>
27160
27161         * lib/wchar.in.h: Tweak comment.
27162
27163 2008-04-11  Bruno Haible  <bruno@clisp.org>
27164
27165         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
27166         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
27167         gl_COMMON.
27168         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
27169
27170 2008-04-11  Bruno Haible  <bruno@clisp.org>
27171
27172         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
27173
27174 2008-04-11  Simon Josefsson  <simon@josefsson.org>
27175
27176         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
27177         of attempting to use non-existing /dev/*random.  Based on patch
27178         from Adam Strzelecki <ono@java.pl> in
27179         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
27180
27181 2008-04-08  Bruno Haible  <bruno@clisp.org>
27182
27183         Add tentative support for emx+gcc.
27184         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
27185         * lib/fpurge.c (fpurge): Likewise.
27186         * lib/freadable.c (freadable): Likewise.
27187         * lib/freadahead.c (freadahead): Likewise.
27188         * lib/freading.c (freading): Likewise.
27189         * lib/freadptr.c (freadptr): Likewise.
27190         * lib/freadseek.c (freadptrinc): Likewise.
27191         * lib/fseeko.c (rpl_fseeko): Likewise.
27192         * lib/fseterr.c (fseterr): Likewise.
27193         * lib/fwritable.c (fwritable): Likewise.
27194         * lib/fwriting.c (fwriting): Likewise.
27195         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
27196
27197 2008-04-09  Eric Blake  <ebb9@byu.net>
27198
27199         Avoid some autoconf warnings.
27200         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
27201         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
27202         * m4/afs.m4 (gl_AFS): Likewise.
27203         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
27204         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
27205         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
27206         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
27207         (gl_INTEGER_TYPE_SUFFIX): Likewise.
27208         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
27209         (AC_CHECK_DECLS_ONCE): Likewise.
27210         Rename file...
27211         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
27212         gnulib-tool requires autoconf 2.59 or better.
27213         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
27214
27215 2008-04-08  Eric Blake  <ebb9@byu.net>
27216
27217         Use 'git describe --match' if present (added in git 1.5.5).
27218         * build-aux/git-version-gen: Limit result to tags that match 'v*'
27219         if possible.
27220
27221 2008-04-08  Bruno Haible  <bruno@clisp.org>
27222
27223         Add tentative support for OpenServer.
27224         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
27225         _ptr, _cnt.
27226         * lib/fpurge.c (fpurge): Likewise.
27227         * lib/freadable.c (freadable): Likewise.
27228         * lib/freadahead.c (freadahead): Likewise.
27229         * lib/freading.c (freading): Likewise.
27230         * lib/freadptr.c (freadptr): Likewise.
27231         * lib/freadseek.c (freadptrinc): Likewise.
27232         * lib/fseeko.c (rpl_fseeko): Likewise.
27233         * lib/fseterr.c (fseterr): Likewise.
27234         * lib/fwritable.c (fwritable): Likewise.
27235         * lib/fwriting.c (fwriting): Likewise.
27236         Reported by Roger Cornelius <rac@tenzing.org> and
27237         Brian K. White <brian@aljex.com>.
27238
27239 2008-04-06  Jim Meyering  <meyering@redhat.com>
27240
27241         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
27242
27243 2008-04-06  Bruno Haible  <bruno@clisp.org>
27244
27245         Avoid possible error with non-ASCII bytes in UTF-8 locales.
27246         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
27247         * tests/test-printf-posix.sh: Likewise.
27248         * tests/test-vfprintf-posix.sh: Likewise.
27249         * tests/test-vprintf-posix.sh: Likewise.
27250         * tests/test-xprintf-posix.sh: Likewise.
27251
27252 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27253
27254         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
27255         hide error from 'ls', needed on OS/2.
27256         Report by Elbert Pol <elbert.pol@gmail.com>.
27257
27258 2008-04-04  Eric Blake  <ebb9@byu.net>
27259
27260         Make test-fseeko.c failures meaningful.
27261         * tests/test-fseeko.c: Print line number on failure.
27262         * tests/test-fseek.c: Likewise.
27263         Reported by Nelson H. F. Beebe.
27264
27265         Improve strtod bug detection check.
27266         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
27267         required for Solaris 10.
27268         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
27269
27270 2008-04-04  Bruno Haible  <bruno@clisp.org>
27271
27272         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
27273         by m4/setenv.m4.
27274
27275 2008-04-03  Eric Blake  <ebb9@byu.net>
27276
27277         Ensure sane .version contents.
27278         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
27279         version string.
27280         * build-aux/git-version-gen: Improve documentation.
27281
27282         Make GNU make output nicer.
27283         * top/GNUmakefile [!_have-Makefile]: Add dependency on
27284         MAKECMDGOALS to enforce message for all command line targets.  Set
27285         srcdir for use in maint.mk.
27286
27287         Another maintainer tweak.
27288         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
27289         a target that regenerates version.
27290
27291 2008-04-03  Jim Meyering  <meyering@redhat.com>
27292
27293         vc-list-files: don't cause coreutils "make po-check" failure
27294         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
27295
27296 2008-04-03  Eric Blake  <ebb9@byu.net>
27297
27298         Allow VPATH usage of vc-list-files.
27299         * build-aux/vc-list-files (scriptversion): Add timestamp.
27300         (options): Add --help, --version, -C.
27301         (CVS): Support installed cvsu.
27302
27303 2008-04-02  Bruno Haible  <bruno@clisp.org>
27304
27305         Avoid some "statement with no effect" warnings from gcc.
27306         * tests/test-wctype.c (main): Explicitly ignore unused values.
27307         Reported by Jim Meyering.
27308
27309 2008-04-02  Jim Meyering  <meyering@redhat.com>
27310
27311         Avoid some warnings from "gcc -Wshadow".
27312         * tests/test-frexp.c (exp): Define to a different identifier.
27313         * tests/test-frexpl.c (exp): Likewise.
27314
27315 2008-04-03  Jim Meyering  <meyering@redhat.com>
27316
27317         bootstrap: remove dangling *.[ch] symlinks from lib
27318         * build-aux/bootstrap [dangling symlink removal]: Move find's
27319         -depth option to precede all others, to avoid a warning.
27320         Remove *.[ch] files too, and from "$source_base" (usually lib/).
27321
27322 2008-04-02  Bruno Haible  <bruno@clisp.org>
27323
27324         Avoid some warnings from "gcc -Wshadow".
27325         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
27326         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
27327         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
27328         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
27329         Reported by Jim Meyering.
27330
27331 2008-04-01  Bruno Haible  <bruno@clisp.org>
27332
27333         Fix test to work on IRIX 6.5 with cc.
27334         * tests/test-math.c (numeric_equal): New function.
27335         (main): Use it.
27336
27337 2008-04-01  Bruno Haible  <bruno@clisp.org>
27338
27339         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
27340
27341 2008-04-01  Bruno Haible  <bruno@clisp.org>
27342
27343         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
27344         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27345         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
27346         (Depends-on): Remove math.
27347
27348         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
27349         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27350         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
27351         (Depends-on): Remove math.
27352
27353         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
27354         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27355         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
27356         (Depends-on): Remove math.
27357         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
27358         (Depends-on): Remove math.
27359
27360         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
27361         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27362         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
27363         (Depends-on): Remove math.
27364         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
27365         (Depends-on): Remove math.
27366
27367         * tests/test-round1.c: Include nan.h.
27368         (main): Use NaNd instead of NAN.
27369         * modules/round-tests (Files): Add tests/nan.h.
27370
27371         * tests/test-trunc1.c: Include nan.h.
27372         (main): Use NaNd instead of NAN.
27373         * modules/trunc-tests (Files): Add tests/nan.h.
27374
27375         * tests/test-roundf1.c: Include nan.h.
27376         (main): Use NaNf instead of NAN.
27377         * modules/roundf-tests (Files): Add tests/nan.h.
27378
27379         * tests/test-truncf1.c: Include nan.h.
27380         (main): Use NaNf instead of NAN.
27381         * modules/truncf-tests (Files): Add tests/nan.h.
27382
27383         * tests/test-ceilf1.c: Include nan.h.
27384         (main): Use NaNf instead of NAN.
27385         * modules/ceilf-tests (Files): Add tests/nan.h.
27386
27387         * tests/test-floorf1.c: Include nan.h.
27388         (main): Use NaNf instead of NAN.
27389         * modules/floorf-tests (Files): Add tests/nan.h.
27390
27391         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
27392         (main): Use NaNf instead of NAN.
27393         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
27394
27395         * tests/test-isnand.c: Include nan.h instead of <math.h>.
27396         (main): Use NaNd instead of NAN.
27397         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
27398
27399         * tests/test-frexp.c: Include nan.h.
27400         (main): Use NaNd instead of NAN.
27401         * modules/frexp-tests (Files): Add tests/nan.h.
27402
27403         * lib/isnan.c: Don't include <math.h>.
27404         (FUNC): Don't use NAN macro.
27405         * modules/isnand-nolibm (Depends-on): Remove math.
27406         * modules/isnanf-nolibm (Depends-on): Remove math.
27407         * modules/isnanl (Depends-on): Remove math.
27408         * modules/isnanl-nolibm (Depends-on): Remove math.
27409
27410         * tests/nan.h: New file.
27411
27412 2008-04-01  Eric Blake  <ebb9@byu.net>
27413
27414         Fix typos.
27415         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
27416         values to be the right type.
27417
27418         For now, cater to gnulib strtod inaccuracies.
27419         * tests/test-strtod.c (main): Allow 1-ulp error on expected
27420         fractional results.  While not as nice from a QoI perspective, it
27421         is a quicker patch than correctly implementing decimal to binary
27422         rounding.
27423
27424 2008-03-31  Eric Blake  <ebb9@byu.net>
27425
27426         Guarantee a definition of NAN.
27427         * lib/math.in.h (NAN): Define if missing.
27428         * tests/test-math.c (main): Test it.
27429         * doc/posix-headers/math.texi (math.h): Document this.
27430         * lib/isnan.c (rpl_isnand): Use it.
27431         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
27432         * tests/test-floorf1.c (NaN): Likewise.
27433         * tests/test-frexp.c (NaN): Likewise.
27434         * tests/test-isnand.c (NaN): Likewise.
27435         * tests/test-isnanf.c (NaN): Likewise.
27436         * tests/test-round1.c (NaN): Likewise.
27437         * tests/test-roundf1.c (NaN): Likewise.
27438         * tests/test-snprintf-posix.h (NaN): Likewise.
27439         * tests/test-sprintf-posix.h (NaN): Likewise.
27440         * tests/test-trunc1.c (NaN): Likewise.
27441         * tests/test-truncf1.c (NaN): Likewise.
27442         * tests/test-vasnprintf-posix.c (NaN): Likewise.
27443         * tests/test-vasprintf-posix.c (NaN): Likewise.
27444         * modules/isnand-nolibm (Depends-on): Add math.
27445         * modules/isnanf-nolibm (Depends-on): Likewise.
27446         * modules/isnanl (Depends-on): Likewise.
27447         * modules/isnanl-nolibm (Depends-on): Likewise.
27448         * modules/snprintf-posix-tests (Depends-on): Likewise.
27449         * modules/sprintf-posix-tests (Depends-on): Likewise.
27450         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
27451         * modules/vsprintf-posix-tests (Depends-on): Likewise.
27452         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
27453         * modules/vasprintf-posix-tests (Depends-on): Likewise.
27454
27455 2008-03-31  Bruno Haible  <bruno@clisp.org>
27456
27457         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
27458         * doc/posix-functions/strtod.texi: Likewise.
27459
27460 2008-03-31  Bruno Haible  <bruno@clisp.org>
27461
27462         * tests/test-strtod.c (main): Don't use C99 syntax.
27463
27464 2008-03-31  Bruno Haible  <bruno@clisp.org>
27465
27466         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
27467         Reported by Eric Blake.
27468
27469 2008-03-31  Jim Meyering  <meyering@redhat.com>
27470
27471         Don't compare actual signbit return values.
27472         * tests/test-strtod.c (main): Rather, compare only their
27473         zero/non-zero nature.
27474
27475 2008-03-31  Eric Blake  <ebb9@byu.net>
27476
27477         More strtod documentation.
27478         * doc/posix-functions/strtod.texi (strtod): Interpret more test
27479         failures as distinct bugs.
27480
27481 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
27482
27483         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
27484         Problem reported by Erik Benada in
27485         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
27486
27487 2008-03-30  Bruno Haible  <bruno@clisp.org>
27488
27489         * tests/test-strtod.c: Add comments about which assertion fails on which
27490         platform.
27491         * doc/posix-functions/strtod.texi: Add info about many more platforms.
27492
27493 2008-03-30  Eric Blake  <ebb9@byu.net>
27494
27495         Test signbit behavior on zeros.
27496         * tests/test-signbit.c (test_signbitf): Add tests for zero.
27497         (test_signbitd, test_signbitl): Likewise.
27498
27499         More strtod touchups.
27500         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
27501         sign of negative underflow, for now.  Use .5, not .1.
27502         * doc/posix-functions/strtod.texi (strtod): Mention these
27503         limitations.
27504         Reported by Jim Meyering.
27505
27506 2008-03-30  Bruno Haible  <bruno@clisp.org>
27507
27508         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
27509         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
27510
27511 2008-03-30  Bruno Haible  <bruno@clisp.org>
27512
27513         Avoid failure when attempting to return empty iconv results on some
27514         platforms.
27515         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
27516         allocation, don't report ENOMEM when the resulting string is empty.
27517
27518 2008-03-30  Bruno Haible  <bruno@clisp.org>
27519
27520         Fix buffer overrun.
27521         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
27522         Don't consider the width for tmp_length. Check count against tmp_length
27523         before doing the padding. Ensure enough allocation during padding.
27524
27525 2008-03-30  Eric Blake  <ebb9@byu.net>
27526
27527         strtod touchups.
27528         * lib/strtod.c (strtod): Avoid compiler warnings.
27529         Reported by Jim Meyering.
27530
27531 2008-03-30  Bruno Haible  <bruno@clisp.org>
27532
27533         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
27534         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
27535         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
27536         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
27537         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
27538         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
27539         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
27540         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
27541
27542         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
27543         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
27544         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
27545         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
27546         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
27547         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
27548         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
27549         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
27550
27551         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
27552         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
27553         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
27554         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
27555         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
27556         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
27557         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
27558         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
27559
27560         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
27561         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
27562
27563         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
27564         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
27565
27566         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
27567         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
27568
27569         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
27570         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
27571         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
27572
27573         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
27574         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
27575         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
27576
27577         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
27578         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
27579         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
27580
27581         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
27582         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
27583         * modules/vasprintf (Depends-on): Add EOVERFLOW.
27584
27585         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
27586         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
27587         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
27588         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
27589         (Depends-on): Add EOVERFLOW.
27590         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
27591         (Depends-on): Add EOVERFLOW.
27592         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
27593         (Depends-on): Add EOVERFLOW.
27594         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
27595         (Depends-on): Add EOVERFLOW.
27596         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
27597         (Depends-on): Add EOVERFLOW.
27598         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
27599         (Depends-on): Add EOVERFLOW.
27600         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
27601         (Depends-on): Add EOVERFLOW.
27602         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
27603         (Depends-on): Add EOVERFLOW.
27604
27605         * lib/sprintf.c (EOVERFLOW): Remove fallback.
27606         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
27607         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
27608
27609         * lib/snprintf.c (EOVERFLOW): Remove fallback.
27610         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
27611         * modules/snprintf (Depends-on): Add EOVERFLOW.
27612
27613         * lib/poll.c (EOVERFLOW): Remove fallback.
27614         * modules/poll (Depends-on): Add EOVERFLOW.
27615
27616         * lib/getugroups.c (EOVERFLOW): Remove fallback.
27617         * modules/getugroups (Depends-on): Add EOVERFLOW.
27618
27619         * lib/getdelim.c (EOVERFLOW): Remove fallback.
27620         * modules/getdelim (Depends-on): Add EOVERFLOW.
27621
27622         * lib/ftell.c (EOVERFLOW): Remove fallback.
27623         * modules/ftell (Depends-on): Add EOVERFLOW.
27624
27625         * lib/fprintf.c (EOVERFLOW): Remove fallback.
27626         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
27627         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
27628
27629         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
27630
27631         * modules/EOVERFLOW-tests: New file.
27632         * tests/test-EOVERFLOW.c: New file.
27633
27634         * modules/EOVERFLOW: New file.
27635         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
27636
27637 2008-03-30  Bruno Haible  <bruno@clisp.org>
27638
27639         Fix bug introduced on 2007-06-10.
27640         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
27641         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
27642
27643 2008-03-30  Bruno Haible  <bruno@clisp.org>
27644
27645         Improve freadseek's efficiency after ungetc.
27646         * lib/freadseek.c: Include freadahead.h.
27647         (freadptrinc): New function, extracted from freadseek.
27648         (freadseek): Use it in a loop. Use freadahead to determine the number
27649         of loop iterations.
27650         * modules/freadseek (Depends-on): Add freadahead.
27651         (configure.ac): Require AC_C_INLINE.
27652
27653 2008-03-30  Bruno Haible  <bruno@clisp.org>
27654
27655         * lib/freadseek.c (freadseek): Don't ignore the return value of
27656         freadptr.
27657
27658 2008-03-29  Eric Blake  <ebb9@byu.net>
27659
27660         Add hex float support.
27661         * modules/strtod (Depends-on): Add c-ctype.
27662         (Link): Mention POW_LIB.
27663         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
27664         whitespace between 'e' and exponent.
27665         * tests/test-strtod.c (main): Enable hex float tests.
27666         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
27667         now provides.
27668
27669         Document various strtod bugs, with some fixes.
27670         * doc/posix-functions/strtod.texi (strtod): Document bugs with
27671         "-0x", "inf", "nan", and hex constants.
27672         * doc/posix-functions/atof.texi (atof): Likewise.
27673         * modules/stdlib (Makefile.am): Support strtod.
27674         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
27675         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
27676         detect additional strtod bugs.
27677         * lib/stdlib.in.h (rpl_strtod): Add declarations.
27678         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
27679         bool where appropriate.  Parse 'inf' and 'nan'.
27680         * tests/test-strtod.c: New file.
27681         * modules/strtod (Depends-on): Add stdbool, stdlib.
27682         (configure.ac): Turn on module indicator.
27683         * modules/strtod-tests: New module.
27684
27685 2008-03-29  Eric Blake  <ebb9@byu.net>
27686
27687         Fix ftell on mingw.
27688         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
27689         * modules/ftell-tests (Depends-on): Add binary-io.
27690         * modules/ftello-tests (Depends-on): Likewise.
27691         * tests/test-ftell.c (main): Enhance test to cover behavior after
27692         ungetc.  Enforce binary mode.
27693         * tests/test-ftello.c (main): Likewise.
27694
27695         Pass test-freadseek on cygwin.
27696         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
27697         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
27698         ungetc buffer.
27699
27700         * tests/test-fflush2.c (main): Fix typo.
27701
27702 2008-03-29  Bruno Haible  <bruno@clisp.org>
27703
27704         * tests/test-fflush2.c (main): Temporarily disable the contents of
27705         this test.
27706         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
27707         Reported by Eric Blake.
27708
27709 2008-03-28  Simon Josefsson  <simon@josefsson.org>
27710
27711         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
27712         (GC_SHA224_DIGEST_SIZE): Add.
27713
27714         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
27715         (gc_hash_digest_length): Likewise.
27716         (gc_hash_buffer): Likewise.
27717
27718 2008-03-25  Bruno Haible  <bruno@clisp.org>
27719
27720         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
27721         detail which gettext release to use.
27722         Reported by Simon Josefsson.
27723
27724 2008-03-26  Jim Meyering  <meyering@redhat.com>
27725
27726         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
27727         * modules/gnumakefile (clean-GNUmakefile): Also, use
27728         test ... && ... || : syntax rather than if-then ... fi.
27729
27730         gnumakefile: Don't double-quote-expand $(VPATH) value.
27731         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
27732
27733 2008-03-24  Eric Blake  <ebb9@byu.net>
27734
27735         Alter GNUmakefile to install into top directory.
27736         * modules/maintainer-makefile: Split, and add dependency...
27737         * modules/gnumakefile: to this new module.
27738         * build-aux/GNUmakefile: Move...
27739         * top/GNUmakefile: ...here.
27740         * build-aux/maint.mk: Move...
27741         * top/maint.mk: ...here.
27742         * MODULES.html.sh (Support for maintaining...): Document new
27743         module.
27744
27745 2008-03-23  Bruno Haible  <bruno@clisp.org>
27746
27747         * gnulib-tool: New options --vc-files, --no-vc-files.
27748         (func_usage): Document them.
27749         (vc_files): New variable.
27750         (func_import): Consider vc_files.
27751         (func_create_testdir): Set vc_files to empty.
27752         Suggested by Jim Meyering and Karl Berry.
27753
27754 2008-03-23  Bruno Haible  <bruno@clisp.org>
27755
27756         Fix regex compilation error on HP-UX 11.
27757         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
27758         * modules/regex (Files): Add m4/mbstate_t.m4.
27759         Reported by Ton Voon <ton.voon@altinity.com>.
27760
27761 2008-03-23  Bruno Haible  <bruno@clisp.org>
27762
27763         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
27764
27765 2008-03-23  Eric Blake  <ebb9@byu.net>
27766             Bruno Haible  <bruno@clisp.org>
27767
27768         Install files from top/ in the destination directory.
27769         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
27770         augmentation also for the files from top/.
27771         (func_import, func_create_testdir): Rewrite file names:
27772         top/filename -> filename.
27773
27774 2008-03-23  Bruno Haible  <bruno@clisp.org>
27775
27776         Tweak "gnulib --version" output.
27777         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
27778
27779 2008-03-23  Bruno Haible  <bruno@clisp.org>
27780
27781         Tweak "gnulib --version" output.
27782         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
27783         rather than contents of ChangeLog, when possible.
27784
27785 2008-03-21  Eric Blake  <ebb9@byu.net>
27786
27787         More --version tweaks.
27788         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
27789         date of last ChangeLog entry.
27790
27791 2008-03-21  Jim Meyering  <meyering@redhat.com>
27792
27793         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
27794
27795 2008-03-20  Eric Blake  <ebb9@byu.net>
27796
27797         VPATH fix.
27798         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
27799
27800 2008-03-20  Simon Josefsson  <simon@josefsson.org>
27801
27802         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
27803         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
27804
27805 2008-03-20  Eric Blake  <ebb9@byu.net>
27806
27807         Sync GNUmakefile with coreutils.
27808         * build-aux/GNUmakefile (have-Makefile): Rename...
27809         (_have-Makefile): ...to this, for namespace consideration.
27810         (GNUmakefile.cfg): Include, if present.
27811         (_autoreconf): Define a default.
27812         (_is-dist-target): New rule for rebuilds to pick up intra-release
27813         version.
27814         (maint-cfg.mk): Rename...
27815         (cfg.mk): ...to this.
27816
27817 2008-03-18  Jim Meyering  <meyering@redhat.com>
27818
27819         New script and module: mktempd
27820         * MODULES.html.sh (maint+release support): Add mktempd.
27821         * build-aux/mktempd: New file.
27822         * modules/mktempd: New file.
27823
27824 2008-03-15  Jim Meyering  <meyering@redhat.com>
27825
27826         Undo last change.
27827         * lib/sha1.c, lib/md5.c: 63 != ~63.
27828         Reported by Andreas Schwab.
27829
27830         sha1.c, md5.c: Hoist a redundant expression.
27831         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
27832         "ctx->buflen" only once, before calling *_process_block.
27833         * lib/md5.c (md5_process_bytes): Likewise.
27834
27835 2008-03-14  Eric Blake  <ebb9@byu.net>
27836
27837         Bump copyright year in files generated by gnulib-tool.
27838         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
27839         gnulib-tool, rather than hard-coding it.
27840
27841         Fix 'gnulib-tool --version' output to work with git.
27842         * gnulib-tool (func_gnulib_dir): New function, extracted from...
27843         (startup): ...here.
27844         (func_version): Use it to invoke git-version-gen, rather than
27845         relying on CVS keyword expansion.  Modernize wording.
27846         (cvsdatestamp, last_checkin_date, version): Kill unused
27847         variables.
27848
27849 2008-03-12  Jim Meyering  <meyering@redhat.com>
27850
27851         Recognize optional cast of the argument to free.
27852         * build-aux/useless-if-before-free: Update regexps.
27853
27854         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
27855
27856 2008-03-11  Bruno Haible  <bruno@clisp.org>
27857
27858         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
27859         by a single package.
27860         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
27861         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
27862         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
27863         Reported by Sam Steingold <sds@gnu.org>.
27864
27865 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
27866
27867         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
27868         repositories.
27869
27870 2008-03-11  Bruno Haible  <bruno@clisp.org>
27871
27872         Avoid conflicts between local macro definitions.
27873         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
27874         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
27875
27876 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
27877             Bruno Haible  <bruno@clisp.org>
27878
27879         Make va_copy work with some version of xlc on AIX 5.1.
27880         * lib/stdarg.in.h: New file.
27881         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
27882         On AIX, use a <stdarg.h> file substitute.
27883         * modules/stdarg (Files): Add lib/stdarg.in.h.
27884         (Depends-on): Add include_next.
27885         (Makefile.am): Build a stdarg.h substitute if requested.
27886         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
27887
27888 2008-03-10  Bruno Haible  <bruno@clisp.org>
27889
27890         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
27891         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
27892         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
27893
27894 2008-03-10  Bruno Haible  <bruno@clisp.org>
27895
27896         * modules/stdlib (Depends-on): Add include_next, remove
27897         absolute-header.
27898
27899 2008-03-09  Bruno Haible  <bruno@clisp.org>
27900
27901         * lib/freadahead.h (freadahead): Document more precisely.
27902         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
27903         the sum of both buffer sizes.
27904         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
27905         * NEWS: Document the change.
27906
27907 2008-03-09  Bruno Haible  <bruno@clisp.org>
27908
27909         Extend freadptr to return also the buffer size.
27910         * lib/freadptr.h (freadptr): Add sizep argument.
27911         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
27912         (freadptr): Add sizep argument. Determine buffer size like freadahead
27913         does.
27914         * tests/test-freadptr.c: Don't include freadahead.h.
27915         (main): Adapt for new calling convention of freadptr.
27916         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
27917         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
27918         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
27919         tests/test-freadptr2.sh.
27920         (Depends): Remove freadahead.
27921         (TESTS): Add test-freadptr2.sh.
27922         (check_PROGRAMS): Add test-freadptr2.
27923
27924 2008-03-09  Bruno Haible  <bruno@clisp.org>
27925
27926         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
27927         Report and solution by Simon Josefsson.
27928
27929 2008-03-06  Bruno Haible  <bruno@clisp.org>
27930
27931         Make fflush after ungetc work on BSD platforms.
27932         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
27933         * tests/test-fflush2.c: New file.
27934         * tests/test-fflush2.sh: New file.
27935         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
27936         tests/test-fflush2.c.
27937         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
27938         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
27939
27940 2008-03-06  Eric Blake  <ebb9@byu.net>
27941
27942         Likewise for ftello.
27943         * modules/ftello (Dependencies): Add extensions.
27944         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
27945
27946 2008-03-06  Bruno Haible  <bruno@clisp.org>
27947
27948         * modules/fseeko (Dependencies): Add extensions.
27949         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
27950         Needed on glibc systems.
27951
27952 2008-03-06  Bruno Haible  <bruno@clisp.org>
27953
27954         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
27955         email address.
27956         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
27957
27958 2008-03-06  Bruno Haible  <bruno@clisp.org>
27959
27960         * users.txt: Add libgnupdf.
27961
27962 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
27963
27964         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
27965         (Header File Substitutes, Function Substitutes,
27966         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
27967         (Build robot for gnulib): Fix typo.
27968
27969 2008-03-06  Bruno Haible  <bruno@clisp.org>
27970
27971         * doc/gnulib-tool.texi (VCS Issues): Small updates.
27972         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
27973
27974 2008-03-06  Bruno Haible  <bruno@clisp.org>
27975
27976         * doc/func.texi: New file, extracted from doc/gnulib.texi.
27977         * doc/gnulib.texi: Include it.
27978
27979 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27980
27981         * modules/func (License): Change license to unlimited; there was
27982         no LGPL parts in the module anyway.
27983
27984 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27985
27986         * modules/__func__: Renamed to modules/func.
27987         * modules/__func__-tests: Renamed to modules/func-tests.
27988         * tests/test-__func__.c: Renamed to tests/test-func.c.
27989         * m4/__func__.m4: Renamed to m4/func.m4.
27990         * doc/gnulib.texi (__func__): Section renamed to func.
27991         Suggested by Eric Blake <ebb9@byu.net>.
27992
27993 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27994
27995         * doc/gnulib.texi (__func__): Use C99 terminology when talking
27996         about __func__.  Make example self-contained.  Suggested by Eric
27997         Blake <ebb9@byu.net>.
27998
27999         * tests/test-__func__.c (main): Avoid extraneous () around __func.
28000         Suggested by Eric Blake <ebb9@byu.net>.
28001
28002 2008-03-06  Simon Josefsson  <simon@josefsson.org>
28003
28004         * modules/__func__: New file.
28005         * modules/__func__-tests: New file.
28006         * tests/test-__func__.c: New file.
28007         * m4/__func__.m4: New file.
28008         * doc/gnulib.texi (__func__): Document __func__ module.
28009
28010 2008-03-05  Simon Josefsson  <simon@josefsson.org>
28011
28012         * modules/byteswap (License): Re-license as LGPLv2+.
28013
28014 2008-03-05  Simon Josefsson  <simon@josefsson.org>
28015
28016         * doc/Makefile: Add pdf target.
28017
28018 2008-03-05  Simon Josefsson  <simon@josefsson.org>
28019
28020         * modules/inline (License): Use 'unlimited', since there are only
28021         *.m4 files in this module.
28022
28023 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
28024             Bruno Haible  <bruno@clisp.org>
28025
28026         Add support for HP C 7.1 on OpenVMS 8.3.
28027         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
28028
28029 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
28030
28031         Update VMS specifics.
28032         * lib/getopt.c [VMS]: Remove include of unixlib.h.
28033
28034 2008-03-02  Jim Meyering  <meyering@redhat.com>
28035
28036         Remove the last dependency on the "free" module.
28037         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
28038         Reported by Bob Proulx.
28039
28040         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
28041
28042         Remove useless "if" tests before free.  Deprecate "free" module.
28043         * doc/posix-functions/free.texi: Mention that this
28044         module is no longer useful.
28045         * modules/free (Notice): Say this module is obsolete.
28046         * modules/readutmp (Depends-on): Remove free.
28047         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
28048         * lib/putenv.c (putenv): Likewise.
28049         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
28050         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
28051         * tests/test-c-strcasestr.c (main): Likewise.
28052         * tests/test-c-strstr.c (main): Likewise.
28053         * tests/test-mbscasestr1.c (main): Likewise.
28054         * tests/test-mbscasestr2.c (main): Likewise.
28055         * tests/test-mbsstr1.c (main): Likewise.
28056         * tests/test-mbsstr2.c (main): Likewise.
28057         * tests/test-memmem.c (main): Likewise.
28058         * tests/test-strcasestr.c (main): Likewise.
28059         * tests/test-striconv.c (main): Likewise.
28060         * tests/test-striconveh.c (main): Likewise.
28061         * tests/test-striconveha.c (main): Likewise.
28062         * tests/test-strstr.c (main): Likewise.
28063
28064         * build-aux/git-version-gen: Adjust a comment and the Usage string.
28065
28066         bootstrap: sync from coreutils again
28067         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
28068
28069 2008-03-01  Jim Meyering  <meyering@redhat.com>
28070
28071         bootstrap: sync from coreutils
28072         * build-aux/bootstrap (update_po_files): Copy a .po file into place
28073         also when the target doesn't exist.
28074
28075 2008-03-01  Eric Blake  <ebb9@byu.net>
28076
28077         Fix bugs in last patch.
28078         * lib/memchr2.c (memchr2): Fix typo.
28079         * tests/test-memchr2.c: Test previous bug, and don't use GNU
28080         extension.
28081         Reported by Bruce Korb.
28082
28083         New module 'memchr2'.
28084         * modules/memchr2: New file.
28085         * modules/memchr2-tests: Likewise.
28086         * lib/memchr2.h: Likewise.
28087         * lib/memchr2.c: Likewise, based on memchr.c.
28088         * tests/test-memchr2.c: New test.
28089         * MODULES.html.sh (String handling): Add memchr2.
28090
28091 2008-02-29  Bruno Haible  <bruno@clisp.org>
28092
28093         * modules/freadseek-tests: New file.
28094         * tests/test-freadseek.sh: New file.
28095         * tests/test-freadseek.c: New file.
28096
28097         New module 'freadseek'.
28098         * modules/freadseek: New file.
28099         * lib/freadseek.h: New file.
28100         * lib/freadseek.c: New file.
28101         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
28102
28103 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28104
28105         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
28106         wydawca.
28107
28108         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
28109         program_invocation_name and program_invocation_short_name are
28110         present.
28111
28112 2008-02-28  Bruno Haible  <bruno@clisp.org>
28113
28114         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
28115         * tests/test-freadptr.sh: Also test non-seekable stdin.
28116
28117 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
28118
28119         * build-aux/bootstrap (source_base, m4_base)
28120         (doc_base, tests_base): New variables.
28121         (gnulib_tool_options): Do not hardcode base directories, use
28122         the above variables instead.
28123
28124 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
28125
28126         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
28127
28128 2008-02-28  Bruno Haible  <bruno@clisp.org>
28129
28130         * modules/freadptr-tests: New file.
28131         * tests/test-freadptr.sh: New file.
28132         * tests/test-freadptr.c: New file.
28133
28134         New module 'freadptr'.
28135         * modules/freadptr: New file.
28136         * lib/freadptr.h: New file.
28137         * lib/freadptr.c: New file.
28138         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
28139
28140 2008-02-26  Karl Berry  <karl@freefriends.org>
28141
28142         Sync from Libtool:
28143         * libltdl/argz.c (argz_add, argz_count): New functions.
28144         * libltdl/argz.in.h: Declare them.
28145         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
28146
28147 2008-02-22  Bruno Haible  <bruno@clisp.org>
28148
28149         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
28150         is a pointer type.  Needed for HP-UX 10.
28151         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
28152         * doc/posix-functions/gmtime_r.texi: Likewise.
28153         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
28154
28155 2008-02-24  Bruno Haible  <bruno@clisp.org>
28156
28157         * modules/environ-tests: New file.
28158         * tests/test-environ.c: New file.
28159
28160         New module 'environ'.
28161         * modules/environ: New file.
28162         * lib/unistd.in.h (environ): New declaration.
28163         * m4/environ.m4: New file.
28164         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
28165         after use.
28166         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
28167         HAVE_DECL_ENVIRON.
28168         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
28169         HAVE_DECL_ENVIRON.
28170         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
28171         wrong claim that 'environ' is missing on some systems.
28172         * modules/execute (Depends-on): Add environ.
28173         * lib/execute.c (environ): Remove fallback declaration.
28174         * modules/pipe (Depends-on): Add environ.
28175         * lib/pipe.c (environ): Remove fallback declaration.
28176         * modules/setenv (Depends-on): Add environ.
28177         * lib/setenv.c (environ): Remove fallback declaration.
28178         * modules/unsetenv (Depends-on): Add environ.
28179         * lib/unsetenv.c (environ): Remove fallback declaration.
28180         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
28181         m4/environ.m4.
28182         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
28183         (gl_PREREQ_UNSETENV): Likewise.
28184
28185 2008-02-24  Bruno Haible  <bruno@clisp.org>
28186
28187         * doc/posix-functions/environ.texi: Document the MacOS X problem.
28188
28189 2008-02-20  Bob Proulx  <bob@proulx.com>
28190
28191         Enable use of older two part flavor 'git describe'.
28192         * build-aux/git-version-gen: If using the older two part flavor of
28193         git version then recreate the third part now present in the
28194         newer three part flavor of git describe.
28195
28196 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
28197
28198         * lib/fts.c (fts_build): Typo correction to comment.
28199
28200 2008-02-17  Bruno Haible  <bruno@clisp.org>
28201
28202         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
28203         generating no-op conflicts.
28204
28205 2008-02-17  Bruno Haible  <bruno@clisp.org>
28206
28207         Speed up by 10%.
28208         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
28209         result_entries, rather than an index-based loop.
28210
28211 2008-02-17  Bruno Haible  <bruno@clisp.org>
28212
28213         Speed up by 25%.
28214         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
28215         'hashcode_cached'.
28216         (entry_create): New function.
28217         (entry_hashcode): Use the cached hashcode if possible.
28218         (read_changelog_file, try_split_merged_entry): Use entry_create.
28219
28220 2008-02-17  Bruno Haible  <bruno@clisp.org>
28221
28222         Speed up from O(n^2) to O(n) for long ChangeLog files.
28223         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
28224         (read_changelog_file): Change implementation of entries_reversed list
28225         to rbtreehash.
28226         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
28227
28228 2008-02-17  Bruno Haible  <bruno@clisp.org>
28229
28230         New option --split-merged-entry.
28231         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
28232         (find_paragraph_end, try_split_merged_entry): New functions.
28233         (long_options): Add option --split-merged-entry.
28234         (usage): Document option --split-merged-entry.
28235         (main): Implement option --split-merged-entry.
28236         Reported by Eric Blake.
28237
28238 2008-02-17  Bruno Haible  <bruno@clisp.org>
28239
28240         * lib/git-merge-changelog.c: Include c-strstr.h.
28241         (main): Support the "git pull --rebase" situation.
28242         * modules/git-merge-changelog (Depends-on): Add c-strstr.
28243         Reported by Eric Blake.
28244
28245 2008-02-16  Eric Blake  <ebb9@byu.net>
28246
28247         Avoid doubling \ in common case of "c-maybe" quoting style.
28248         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
28249         eliding outer quotes.
28250         * lib/quotearg.h: Document this.
28251         * tests/test-quotearg.c (result_strings, inputs, results_g)
28252         (flag_results, locale_results): Test it by adding a new string to
28253         each test group.
28254         (compare_strings): Test new string.
28255
28256 2008-02-13  Eric Blake  <ebb9@byu.net>
28257
28258         Avoid trigraph quoting in default output.
28259         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
28260         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
28261         unless explicitly requested.
28262         * tests/test-quotearg.c (flag_results, main): Add additional tests.
28263
28264 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
28265
28266         Don't rely on signed integer overflowing to negative value.
28267         * lib/getugroups.c (getugroups): Include <limits.h>.
28268         Instead, compare against INT_MAX, and increment only if the test passes.
28269
28270 2008-02-13  Jim Meyering  <meyering@redhat.com>
28271         and Eric Blake  <ebb9@byu.net>
28272
28273         Avoid shadowing warning and compile errors on Linux.
28274         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
28275         forwarding macros on Linux.
28276         (dcgettext): Define a stub, for Linux.
28277         (results_g, main): Avoid warnings.
28278
28279 2008-02-12  Eric Blake  <ebb9@byu.net>
28280
28281         Silence warning in last patch.
28282         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
28283
28284         Quotearg part 4: add tests, fix c-maybe colon quoting.
28285         * lib/quotearg.h: Improve documentation.
28286         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
28287         escapes when adding outer quotes.  When quoting trigraphs, use
28288         valid C notation.  When quoting NUL, omit extra characters if next
28289         character is not digit.  Alter prototype.
28290         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
28291         callers.
28292         * modules/quotearg-tests: New module.
28293         * tests/test-quotearg.c: New test.
28294
28295 2008-02-07  Eric Blake  <ebb9@byu.net>
28296
28297         Quotearg part 3: add flag to control outer quote elision.
28298         * lib/quotearg.h (c_maybe_quoting_style): New style.
28299         (enum quoting_flags): Better documentation of flags.
28300         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
28301         c-maybe style.
28302         (quotearg_buffer_restyled): Handle new flag to elide outer
28303         quotes.
28304
28305         Quotearg part 2: add flag that can control NUL elision.
28306         * lib/quotearg.h (set_quoting_flags): New prototype.
28307         * lib/quotearg.c (struct quoting_options): Add flag field.
28308         (set_quoting_flags): New function.
28309         (quotearg_buffer_restyled): Add flags parameter.
28310         (quotearg_alloc_mem): Set the flag if length cannot be returned.
28311         (quotearg_n_options): Set the flag, since length cannot be
28312         returned.
28313         (quoting_options_from_style): Default flags correctly.
28314
28315         Quotearg part 1: more wrappers, restore quotearg_char state.
28316         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
28317         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
28318         (quotearg_colon_mem): New wrappers.
28319         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
28320         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
28321         functions.
28322         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
28323         (quotearg_colon_mem): New functions.
28324
28325 2008-02-11  Bruno Haible  <bruno@clisp.org>
28326
28327         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
28328         library in the current directory: it does not work with parallel make.
28329         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
28330
28331 2008-02-11  Bruno Haible  <bruno@clisp.org>
28332
28333         * .gitattributes: New file.
28334
28335 2008-02-11  Jim Meyering  <meyering@redhat.com>
28336
28337         useless-if-before-free: Fix reversed exit values.
28338         * build-aux/useless-if-before-free: Use correct values
28339         for EXIT_MATCH and EXIT_NO_MATCH.
28340
28341         * build-aux/useless-if-before-free: Close stdout carefully.
28342
28343 2008-02-10  Bruno Haible  <bruno@clisp.org>
28344
28345         New module 'git-merge-changelog'.
28346         * modules/git-merge-changelog: New file.
28347         * lib/git-merge-changelog.c: New file.
28348
28349 2008-02-10  Jim Meyering  <meyering@redhat.com>
28350
28351         useless-if-before-free: New option: --list (-l).
28352
28353         useless-if-before-free: Don't exit immediately upon open failure.
28354         * build-aux/useless-if-before-free: Exit 2 for errors.
28355         Upon failure to open a file, don't exit immediately.
28356         Rather, just warn and continue with any remaining files.
28357
28358 2008-02-10  Bruno Haible  <bruno@clisp.org>
28359
28360         New abstract list operation 'node_set_value'.
28361         * lib/gl_list.h (gl_list_node_set_value): New function.
28362         (struct gl_list_implementation): New field node_set_value.
28363         * lib/gl_list.c (gl_list_node_set_value): New function.
28364         * lib/gl_array_list.c (gl_array_node_set_value): New function.
28365         (gl_array_list_implementation): Update.
28366         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
28367         (gl_carray_list_implementation): Update.
28368         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
28369         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
28370         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
28371         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
28372         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
28373         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
28374         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
28375         Update.
28376         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
28377         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
28378         (gl_sublist_list_implementation): Update.
28379
28380 2008-02-10  Bruno Haible  <bruno@clisp.org>
28381
28382         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
28383         Needed when ELEMENT is #defined to 'some_type *'.
28384
28385 2008-02-10  Jim Meyering  <meyering@redhat.com>
28386
28387         New script and module: useless-if-before-free
28388         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
28389         * build-aux/useless-if-before-free: New file.
28390         * modules/useless-if-before-free: New file.
28391
28392         * build-aux/gitlog-to-changelog: Use committer date, not author date.
28393
28394         xstrtol_error: Fix typo.
28395         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
28396         s/exit_failure/exit_status/.
28397
28398 2008-02-09  Jim Meyering  <meyering@redhat.com>
28399
28400         New script and module: gitlog-to-changelog
28401         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
28402         * modules/gitlog-to-changelog: New file.
28403         * build-aux/gitlog-to-changelog: New file.
28404
28405 2008-02-08  Jim Meyering  <meyering@redhat.com>
28406
28407         Avoid two "parameter unused" warnings.
28408         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
28409         Mark "st" as used.
28410
28411         Use "git COMMAND", not "git-COMMAND".
28412         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
28413         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
28414         * build-aux/git-version-gen: Use "git status", not "git-status".
28415
28416 2008-02-07  Bruno Haible  <bruno@clisp.org>
28417
28418         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
28419         Avoids a crash on Windows Vista.
28420         Reported by Adam Strzelecki <ono@java.pl> via
28421         Simon Josefsson <simon@josefsson.org>.
28422
28423 2008-02-06  Bruno Haible  <bruno@clisp.org>
28424
28425         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
28426         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
28427         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
28428         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
28429         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
28430         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28431         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
28432         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
28433         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28434         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28435         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28436         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28437         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28438         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28439         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28440         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
28441         left-adjust flag.
28442         * tests/test-snprintf-posix.h (test_function): Likewise.
28443         * tests/test-sprintf-posix.h (test_function): Likewise.
28444         * tests/test-vasprintf-posix.c (test_function): Likewise.
28445         * doc/posix-functions/fprintf.texi: Update.
28446         * doc/posix-functions/printf.texi: Update.
28447         * doc/posix-functions/snprintf.texi: Update.
28448         * doc/posix-functions/sprintf.texi: Update.
28449         * doc/posix-functions/vfprintf.texi: Update.
28450         * doc/posix-functions/vprintf.texi: Update.
28451         * doc/posix-functions/vsnprintf.texi: Update.
28452         * doc/posix-functions/vsprintf.texi: Update.
28453         Reported by Peter Fales <psfales@alcatel-lucent.com>.
28454
28455 2008-02-06  Bruno Haible  <bruno@clisp.org>
28456
28457         Fix bug introduced on 2008-01-26.
28458         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
28459
28460 2008-02-06  Bruno Haible  <bruno@clisp.org>
28461
28462         Fix bug introduced on 2007-06-10.
28463         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
28464         !NEED_PRINTF_FLAG_ZERO.
28465
28466 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
28467
28468         getloadavg: use libperfstat on AIX5
28469         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
28470
28471 2008-02-03  Bruno Haible  <bruno@clisp.org>
28472
28473         * lib/diffseq.h: Add comments about required #includes.
28474         Reported by Michael Biggs <gnulib@doubleplum.net>.
28475
28476 2008-02-01  Bruno Haible  <bruno@clisp.org>
28477
28478         * users.txt: Add gnuit.
28479
28480 2008-01-31  Bruno Haible  <bruno@clisp.org>
28481
28482         * lib/md4.c (set_uint32): Mark as inline.
28483         * lib/md5.c (set_uint32): Likewise.
28484         * lib/sha1.c (set_uint32): Likewise.
28485         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
28486         * m4/md5.m4 (gl_MD5): Likewise.
28487         * m4/sha1.m4 (gl_SHA1): Likewise.
28488
28489 2008-01-31  Jim Meyering  <meyering@redhat.com>
28490
28491         Use "sizeof VAR", rather than a literal "4".
28492         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
28493         * lib/md4.c (md4_read_ctx): Likewise.
28494         * lib/sha1.c (sha1_read_ctx): Likewise.
28495
28496 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28497
28498         * tests/test-sha1.c: New file, based on test-md5.c.
28499
28500         * modules/crypto/sha1-tests: New file.
28501
28502 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28503
28504         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
28505
28506 2008-01-31  Jim Meyering  <meyering@redhat.com>
28507
28508         Prefer "sizeof v" over the equivalent "4".
28509         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
28510         * lib/md5.c (set_uint32): Likewise.
28511         * lib/sha1.c (set_uint32): Likewise.
28512
28513 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28514
28515         * lib/sha1.c (set_uint32): Mark function as static.
28516
28517 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28518
28519         md2: clarify comments to say that alignment is not required.
28520         * lib/md2.h: Remove warning about alignment in comment.
28521         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
28522         never been required.
28523
28524 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28525
28526         md4: adapt alignment constraint fix from sha1.
28527         * lib/md4.c (set_uint32): New function, from sha1.c
28528         (md4_read_ctx): Use it.
28529         (md4_finish_ctx): Doc fix.
28530         * lib/md4.h: Doc fix.
28531
28532 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28533
28534         md5: adapt alignment constraint fix from sha1.
28535         * lib/md5.c (set_uint32): New function, from sha1.c
28536         (md5_read_ctx): Use it.
28537         (md5_finish_ctx): Doc fix.
28538         * lib/md5.h: Doc fix.
28539
28540 2008-01-30  Peter Palfrader  <weasel@debian.org>
28541
28542         sha1: remove the result buffer alignment constraint
28543         * lib/sha1.c (set_uint32): New function.
28544         (sha1_read_ctx): Rewrite to remove the result buffer alignment
28545         constraint.
28546         (sha1_finish_ctx): Remove comment warning about alignment constraint.
28547         * lib/sha1.h: Likewise.
28548
28549 2008-01-30  Andreas Schwab  <schwab@suse.de>
28550             Bruno Haible  <bruno@clisp.org>
28551
28552         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
28553         correct definition of LDBL_MIN_EXP.
28554
28555 2008-01-30  Karl Berry  <karl@gnu.org>
28556
28557         * config/srclist-update: try to preserve x bit on updates.
28558         * config/srclistvars.sh: update for karl.
28559
28560 2008-01-29  Jim Meyering  <meyering@redhat.com>
28561
28562         vasnprintf.c: Avoid warning about unused label
28563         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
28564         "overflow" label definition and associated code with the
28565         same cpp condition that guards the sole use of that label.
28566
28567 2008-01-26  Bruno Haible  <bruno@clisp.org>
28568
28569         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
28570         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
28571         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
28572         * lib/isnanl-nolibm.h (isnanl): Likewise.
28573         Reported by Paul Eggert <eggert@cs.ucla.edu>.
28574
28575 2008-01-26  Bruno Haible  <bruno@clisp.org>
28576
28577         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
28578         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
28579
28580 2008-01-26  Bruno Haible  <bruno@clisp.org>
28581
28582         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
28583         GCC >= 4.0 built-in.
28584         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
28585
28586 2008-01-26  Bruno Haible  <bruno@clisp.org>
28587
28588         Rename isnan, applicable to 'double' only, to isnand.
28589         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
28590         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
28591         (configure.ac): Update.
28592         (Include): Replace "isnan.h" with "isnand.h".
28593         * m4/isnand.m4: Renamed from m4/isnan.m4.
28594         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
28595         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
28596         instead of isnan.c.
28597         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
28598         instead of HAVE_ISNAN_IN_LIBC.
28599         (isnand): Renamed from isnan.
28600         * lib/isnand.c: New file.
28601         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
28602         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
28603         (Makefile.am): Update.
28604         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
28605         Include isnand.h instead of isnan.h.
28606         (main): Test isnand instead of isnan.
28607         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
28608         isnan-nolibm.
28609         * modules/frexp (Depends-on): Likewise.
28610         * modules/frexp-tests (Depends-on): Likewise.
28611         * modules/frexp-nolibm (Depends-on): Likewise.
28612         * modules/frexp-nolibm-tests (Depends-on): Likewise.
28613         * modules/isfinite (Depends-on): Likewise.
28614         * modules/round-tests (Depends-on): Likewise.
28615         * modules/signbit (Depends-on): Likewise.
28616         * modules/signbit-tests (Depends-on): Likewise.
28617         * modules/snprintf-posix (Depends-on): Likewise.
28618         * modules/sprintf-posix (Depends-on): Likewise.
28619         * modules/trunc-tests (Depends-on): Likewise.
28620         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
28621         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
28622         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
28623         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
28624         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
28625         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
28626         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
28627         * modules/vasnprintf-posix (Depends-on): Likewise.
28628         * modules/vasprintf-posix (Depends-on): Likewise.
28629         * modules/vfprintf-posix (Depends-on): Likewise.
28630         * modules/vsnprintf-posix (Depends-on): Likewise.
28631         * modules/vsprintf-posix (Depends-on): Likewise.
28632         * lib/frexp.c: Include isnand.h instead of isnan.h.
28633         (ISNAN): Set to isnand instead of isnan.
28634         * lib/isfinite.c: Include isnand.h instead of isnan.h.
28635         (gl_isfinited): Use isnand instead of isnan.
28636         * lib/signbitd.c: Include isnand.h instead of isnan.h.
28637         (gl_signbitd): Use isnand instead of isnan.
28638         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
28639         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
28640         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
28641         (main): Use isnand instead of isnan.
28642         * tests/test-round1.c: Include isnand.h.
28643         (main): Use isnand instead of isnan.
28644         * tests/test-round2.c: Include isnand.h instead of isnan.h.
28645         (ISNAN): Set to isnand instead of isnan.
28646         * tests/test-trunc1.c: Include isnand.h.
28647         (main): Use isnand instead of isnan.
28648         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
28649         (equal): Use isnand instead of isnan.
28650         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
28651         isnand-nolibm.
28652         * NEWS: Mention the change.
28653
28654 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
28655             Bruno Haible  <bruno@clisp.org>
28656
28657         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
28658         the GCC builtins for signbits are present and set
28659         REPLACE_SIGNBIT_USING_GCC if so.
28660         * lib/math.in.h (signbit): Define using GCC builtins if
28661         REPLACE_SIGNBIT_USING_GCC is set.
28662         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
28663         REPLACE_SIGNBIT_USING_GCC.
28664         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
28665
28666 2008-01-25  Jim Meyering  <meyering@redhat.com>
28667
28668         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
28669         * lib/poll.c: Include <config.h>, not "config.h".
28670         * tests/test-getaddrinfo.c: Likewise.
28671
28672 2008-01-25  Simon Josefsson  <simon@josefsson.org>
28673
28674         * modules/sockets-tests: New file.
28675
28676 2008-01-24  Simon Josefsson  <simon@josefsson.org>
28677
28678         * modules/sockets: New module, can be used to call WSA_Startup and
28679         WSA_Cleanup when needed.
28680
28681         * lib/sockets.h, lib/sockets.c: New files.
28682
28683         * m4/sockets.m4: New file.
28684
28685         * tests/test-sockets.c: New file.
28686
28687 2008-01-19  Bruno Haible  <bruno@clisp.org>
28688
28689         * doc/posix-headers: Renamed from doc/headers.
28690         * doc/posix-functions: Renamed from doc/functions.
28691         * doc/gnulib.texi: Update.
28692
28693 2008-01-19  Bruno Haible  <bruno@clisp.org>
28694
28695         * doc/glibc-functions/strcasestr.texi: Include contents of
28696         doc/functions/strcasestr.texi, fixing the list of platforms.
28697         * doc/functions/strcasestr.texi: Remove file.
28698
28699 2008-01-19  Bruno Haible  <bruno@clisp.org>
28700
28701         * doc/glibc-functions/memmem.texi: Include contents of
28702         doc/functions/memmem.texi.
28703         * doc/functions/memmem.texi: Remove file.
28704
28705 2008-01-18  Bruno Haible  <bruno@clisp.org>
28706
28707         * doc/glibc-functions/*.texi: New files.
28708         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
28709         to use the new files.
28710
28711 2008-01-17  Bruno Haible  <bruno@clisp.org>
28712
28713         * tests/test-gethostname.c (main): Fix printf statement.
28714
28715 2008-01-17  Simon Josefsson  <simon@josefsson.org>
28716
28717         * modules/gethostname-tests: New file.
28718
28719         * tests/test-gethostname.c: New file.
28720
28721 2008-01-17  Simon Josefsson  <simon@josefsson.org>
28722
28723         * lib/gethostname.c: Include string.h unconditionally, strncpy is
28724         used by the UNAME case.  Reported by Bruno Haible
28725         <bruno@clisp.org>.
28726
28727 2008-01-17  Eric Blake  <ebb9@byu.net>
28728
28729         Convert c-strcasestr to be more efficient.
28730         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
28731         (Depends-on): Add c-strcase, remove malloca, strnlen.
28732         * tests/test-c-strcasestr.c (main): Enhance test.
28733         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
28734
28735 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
28736
28737         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
28738         Use it in creating po/Makevars.
28739
28740 2008-01-15  Simon Josefsson  <simon@josefsson.org>
28741
28742         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
28743         Applications that requires it should initialize libgcrypt
28744         manually.
28745
28746 2008-01-16  Simon Josefsson  <simon@josefsson.org>
28747
28748         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
28749
28750 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
28751
28752         Fix problem with getdate on mingw32 reported by Simon Josefsson
28753         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
28754         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
28755         tzname", when deciding whether to declare tzname.
28756         * lib/strftime.c (tzname): Likewise.
28757
28758 2008-01-15  Bruno Haible  <bruno@clisp.org>
28759
28760         Work around a MacOS X 10.5 bug in frexpl().
28761         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
28762         * doc/functions/frexpl.texi: Document the bug.
28763         Reported by Elias Pipping <pipping@gentoo.org>.
28764
28765 2008-01-14  Eric Blake  <ebb9@byu.net>
28766
28767         Touch up previous patch.
28768         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
28769         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
28770
28771         Convert strcasestr module to use Two-Way algorithm.
28772         * modules/strcasestr-simple: New module, based on the old
28773         strcasestr, but with Two-Way rather than KMP.
28774         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
28775         * lib/string.in.h (rpl_strcasestr): Declare.
28776         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
28777         performance.
28778         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
28779         * modules/string (Makefile.am): Support strcasestr.
28780         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
28781         * modules/strcasestr-tests (Depends-on): Check for alarm.
28782         * tests/test-strcasestr.c: Augment test.
28783         * lib/str-two-way.h: Clean up stray macro.
28784         * NEWS: Document new module.
28785         * MODULES.html.sh (string handling): Likewise.
28786         * doc/functions/strcasestr.texi: New file.
28787         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
28788         here, since it is not a POSIX function.
28789
28790 2008-01-14  Colin Watson  <cjwatson@debian.org>
28791             Bruno Haible  <bruno@clisp.org>
28792
28793         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
28794         works fine; if not, set REPLACE_STRSIGNAL.
28795         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
28796         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28797         REPLACE_STRSIGNAL.
28798         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
28799         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
28800         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
28801
28802 2008-01-14  Bruno Haible  <bruno@clisp.org>
28803
28804         * modules/strsignal (Include): Change to <string.h>.
28805
28806 2008-01-14  Colin Watson  <cjwatson@debian.org>
28807
28808         * modules/argp (Notice): Add a notice recommending to change
28809         XGETTEXT_OPTIONS.
28810         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
28811
28812 2008-01-13  Colin Watson  <cjwatson@debian.org>
28813
28814         * modules/strsignal-tests: New file.
28815         * tests/test-strsignal.c: New file.
28816
28817         * lib/strsignal.c: New file, from glibc with modifications.
28818         * lib/siglist.h: New file, from glibc with modifications.
28819         * lib/string.in.h (strsignal): New declaration.
28820         * m4/strsignal.m4: New file.
28821         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28822         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
28823         * modules/strsignal: New file.
28824         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
28825         HAVE_DECL_STRSIGNAL.
28826
28827 2008-01-13  Bruno Haible  <bruno@clisp.org>
28828
28829         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
28830         locale encoding is not ASCII. Needed for OpenBSD 4.0.
28831         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
28832         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
28833
28834 2008-01-13  Bruno Haible  <bruno@clisp.org>
28835
28836         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
28837         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
28838         * lib/argp.h (__attribute__): Likewise.
28839         * lib/c-stack.c (__attribute__): Likewise.
28840         * lib/error.h (__attribute__): Likewise.
28841         * lib/fts.c (__attribute__): Likewise.
28842         * lib/openat.h (__attribute__): Likewise.
28843         * lib/stdio.in.h (__attribute__): Likewise.
28844         * lib/string.in.h (__attribute__): Likewise.
28845         * lib/utimens.c (__attribute__): Likewise.
28846         * lib/vasnprintf.h (__attribute__): Likewise.
28847         * lib/xalloc.h (__attribute__): Likewise.
28848         * lib/xprintf.h (__attribute__): Likewise.
28849         * lib/xstrtol.h (__attribute__): Likewise.
28850         * lib/xvasprintf.h (__attribute__): Likewise.
28851
28852 2008-01-12  Bruno Haible  <bruno@clisp.org>
28853
28854         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
28855         * doc/glibc-headers/a.out.texi: New file.
28856         * doc/glibc-headers/aliases.texi: New file.
28857         * doc/glibc-headers/alloca.texi: New file.
28858         * doc/glibc-headers/ar.texi: New file.
28859         * doc/glibc-headers/argp.texi: New file.
28860         * doc/glibc-headers/argz.texi: New file.
28861         * doc/glibc-headers/byteswap.texi: New file.
28862         * doc/glibc-headers/crypt.texi: New file.
28863         * doc/glibc-headers/endian.texi: New file.
28864         * doc/glibc-headers/envz.texi: New file.
28865         * doc/glibc-headers/err.texi: New file.
28866         * doc/glibc-headers/error.texi: New file.
28867         * doc/glibc-headers/execinfo.texi: New file.
28868         * doc/glibc-headers/fpu_control.texi: New file.
28869         * doc/glibc-headers/fstab.texi: New file.
28870         * doc/glibc-headers/fts.texi: New file.
28871         * doc/glibc-headers/getopt.texi: New file.
28872         * doc/glibc-headers/ieee754.texi: New file.
28873         * doc/glibc-headers/ifaddrs.texi: New file.
28874         * doc/glibc-headers/libintl.texi: New file.
28875         * doc/glibc-headers/mcheck.texi: New file.
28876         * doc/glibc-headers/mntent.texi: New file.
28877         * doc/glibc-headers/obstack.texi: New file.
28878         * doc/glibc-headers/paths.texi: New file.
28879         * doc/glibc-headers/printf.texi: New file.
28880         * doc/glibc-headers/pty.texi: New file.
28881         * doc/glibc-headers/resolv.texi: New file.
28882         * doc/glibc-headers/shadow.texi: New file.
28883         * doc/glibc-headers/sysexits.texi: New file.
28884         * doc/glibc-headers/ttyent.texi: New file.
28885
28886 2008-01-12  Jim Meyering  <meyering@redhat.com>
28887
28888         announce-gen: emit Gnulib's git-based version string.
28889         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
28890         New option --gnulib-version=V, where V is expected to be
28891         the output of running git describe in the gnulib directory.
28892         (get_tool_versions): Request feedback on xdelta.  I suspect it's
28893         not useful, and plan to stop publishing an xdelta file with each
28894         coreutils release.
28895
28896         * build-aux/announce-gen: Also check for lzma-compressed files.
28897
28898 2008-01-11  Bruno Haible  <bruno@clisp.org>
28899
28900         * tests/test-memmem.c (main): Increase maximum allowed time.
28901         * tests/test-strstr.c (main): Likewise.
28902
28903 2008-01-11  Bruno Haible  <bruno@clisp.org>
28904
28905         * doc/functions/memmem.texi: Add more precisions about platforms.
28906         * doc/functions/strstr.texi: Likewise.
28907
28908 2008-01-10  Eric Blake  <ebb9@byu.net>
28909
28910         * m4/strstr.m4: Delete cruft from copy-n-paste.
28911         Reported by Bruno Haible.
28912
28913 2008-01-10  Bruno Haible  <bruno@clisp.org>
28914
28915         Make c-strstr rely on strstr.
28916         * lib/c-strstr.c: Don't include str-kmp.h.
28917         (c_strstr): Define in terms of strstr.
28918         * modules/c-strstr (Files): Remove lib/str-kmp.h.
28919         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
28920
28921 2008-01-10  Bruno Haible  <bruno@clisp.org>
28922
28923         * doc/gnulib.texi (String Functions in C Locale): New section.
28924         * doc/c-ctype.texi: New file.
28925         * doc/c-strcase.texi: New file.
28926         * doc/c-strcaseeq.texi: New file.
28927         * doc/c-strcasestr.texi: New file.
28928         * doc/c-strstr.texi: New file.
28929         * doc/c-strtod.texi: New file.
28930         * doc/c-strtold.texi: New file.
28931
28932 2008-01-10  Eric Blake  <ebb9@byu.net>
28933
28934         * lib/relocatable.h: Fix a comment.
28935
28936 2008-01-10  Eric Blake  <ebb9@byu.net>
28937
28938         Share two-way algorithm.
28939         * lib/str-two-way.h: New file, merged from...
28940         * lib/memmem.c: ...here...
28941         * lib/strstr.c: ...and here.
28942         * modules/memmem (Files): Use it.
28943         * modules/strstr (Files): Likewise.
28944
28945         Avoid quadratic strstr implementations.
28946         * lib/strstr.c: New file.
28947         * m4/strstr.m4: Likewise.
28948         * modules/strstr: Likewise.
28949         * modules/strstr-tests: Likewise.
28950         * tests/test-strstr.c: Likewise.
28951         * lib/string.in.h (rpl_strstr): Declare.
28952         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
28953         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
28954         * modules/string (Makefile.am): Likewise.
28955         * MODULES.html.sh (string handling): Mention new module.
28956         * doc/functions/strstr.texi (strstr): Document the bug.
28957
28958 2008-01-10  Bruno Haible  <bruno@clisp.org>
28959
28960         * lib/relocatable.h (relocate): State whether result is freshly
28961         allocated or not.
28962         * lib/relocatable.c (relocate): Return a freshly allocated string
28963         instead of a pointer to a privately held string.
28964         Reported by Sylvain Beucler <beuc@gnu.org>.
28965
28966 2008-01-10  Colin Watson  <cjwatson@debian.org>
28967
28968         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
28969         s/S_ISNLK/S_ISLNK/.
28970
28971 2008-01-09  Bruno Haible  <bruno@clisp.org>
28972
28973         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
28974         and other files.
28975         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
28976         if it's only a guess.
28977         * modules/memmem: Simplify by depending on memmem-simple.
28978
28979 2008-01-09  Bruno Haible  <bruno@clisp.org>
28980
28981         Work around OpenBSD 4.0 tdelete() bug.
28982         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
28983         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
28984         macros and don't redefine the enum values.
28985         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
28986         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
28987         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
28988
28989 2008-01-09  Bruno Haible  <bruno@clisp.org>
28990
28991         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
28992         (main): Don't perform the tests if setlocale did not install a UTF-8
28993         locale. Needed on OpenBSD 4.0.
28994         * modules/wcwidth-tests (Depends-on): Add localcharset.
28995
28996 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
28997
28998         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
28999         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
29000         * NEWS: announce this.
29001         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
29002
29003 2008-01-09  Simon Josefsson  <simon@josefsson.org>
29004         and Eric Blake  <ebb9@byu.net>
29005
29006         Add memmem-simple module.
29007         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
29008         (gl_FUNC_MEMMEM): Separate performance from presence checks.
29009         * modules/memmem-simple: New file.
29010         * modules/memmem (Description): Tweak.
29011         * MODULES.html.sh (string handling): Mention new module.
29012         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
29013         addressed by memmem-simple.
29014         * NEWS: Document the difference.
29015
29016 2008-01-09  Eric Blake  <ebb9@byu.net>
29017
29018         Give gcc some memmem optimization hints.
29019         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
29020         (strcasestr): Declare as pure.
29021         * modules/memmem (Maintainer): Claim my implementation.
29022
29023 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29024
29025         Support AIX 6.1 and higher.
29026         * build-aux/config.libpath: Likewise.
29027         * build-aux/config.rpath: Likewise.
29028
29029 2008-01-08  Jim Meyering  <meyering@redhat.com>
29030             Bruno Haible  <bruno@clisp.org>
29031
29032         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
29033         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
29034         Reported by Peter Fales in
29035         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
29036
29037 2008-01-08  Bruno Haible  <bruno@clisp.org>
29038
29039         * modules/unictype/category-of (Depends-on): Add
29040         unictype/category-none.
29041         * modules/unictype/category-and-tests (Depends-on): Add
29042         unictype/category-{L,N,Lu,Nd}.
29043         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
29044         * modules/unictype/category-or-tests (Depends-on): Add
29045         unictype/category-{L,N}.
29046         * modules/unictype/category-name-tests (Depends-on): Add
29047         unictype/category-{Z,Nl}.
29048         Reported by Simon Josefsson.
29049
29050 2008-01-08  Bruno Haible  <bruno@clisp.org>
29051
29052         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
29053         convention better.
29054         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
29055         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
29056         Reported by Peter Miller <millerp@canb.auug.org.au>.
29057
29058 2008-01-08  Eric Blake  <ebb9@byu.net>
29059
29060         Rewrite memmem to guarantee linear complexity without malloc.
29061         * lib/memmem.c (memmem): Use Two-Way rather than
29062         Knuth-Morris-Pratt, to allow O(1) space usage.
29063         (critical_factorization, two_way_short_needle)
29064         (two_way_long_needle): New functions.
29065         (knuth_morris_pratt): Delete.
29066         * modules/memmem (Depends-on): No longer need malloca or stdbool.
29067         Add stdint.
29068         * tests/test-memmem.c (main): Add tests for periodic needle and
29069         sublinear performance.
29070         * doc/functions/memmem.texi (memmem): Document other deficiencies
29071         in cygwin and older glibc.
29072
29073 2008-01-08  Bruno Haible  <bruno@clisp.org>
29074
29075         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
29076         augmentation.
29077
29078 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
29079
29080         Add a configure time option: --disable-acl.
29081         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
29082         AC_ARG_ENABLE(acl).
29083
29084 2008-01-06  Simon Josefsson  <simon@josefsson.org>
29085
29086         * tests/test-localename.c: Don't include obsolete "setenv.h".
29087
29088         * modules/localename-tests (Depends-on): Need unsetenv.
29089
29090 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29091
29092         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
29093
29094 2008-01-06  Colin Watson  <cjwatson@debian.org>
29095
29096         * users.txt: Add man-db.
29097
29098 2008-01-07  Bruno Haible  <bruno@clisp.org>
29099
29100         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
29101         previous section name.
29102
29103 2008-01-07  Bruno Haible  <bruno@clisp.org>
29104
29105         * lib/progname.c (set_program_name): Don't strip off a leading
29106         "lt-" prefix outside a .libs directory.
29107         Suggested by Paul Eggert.
29108
29109 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
29110             Bruno Haible  <bruno@clisp.org>
29111
29112         Improve memory cleanup in 'relocatable' module.
29113         * lib/relocatable.h (compute_curr_prefix): Change return type to
29114         'char *'.
29115         * lib/relocatable.c (compute_curr_prefix): Change return type to
29116         'char *'. Free curr_installdir after use.
29117         (relocate): Free curr_prefix_better after use.
29118         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
29119
29120 2008-01-01  Bruno Haible  <bruno@clisp.org>
29121
29122         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
29123         failure on older glibc systems.
29124         Reported by Peter Fales <psfales@alcatel-lucent.com>.
29125
29126 2008-01-05  Eric Blake  <ebb9@byu.net>
29127
29128         Avoid quadratic system memmem.
29129         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
29130         Reported by Ralf Wildenhues.
29131
29132         Fix memmem test for mingw.
29133         * modules/memmem-tests (configure.ac): Check for alarm.
29134         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
29135         it.
29136         * doc/functions/memmem.texi: New file.
29137         * doc/gnulib.texi (Function Substitutes): Add memmem.
29138         Reported by Bruno Haible.
29139
29140 2008-01-04  Bruno Haible  <bruno@clisp.org>
29141
29142         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
29143         Require gl_HEADER_STRINGS_H_DEFAULTS, not
29144         gl_HEADER_STRING_H_DEFAULTS.
29145
29146 2008-01-04  Eric Blake  <ebb9@byu.net>
29147
29148         Shorten duration of memmem test.
29149         * tests/test-memmem.c (main): Use alarm to declare failure if test
29150         is taking too long.
29151         Reported by Ralf Wildenhues.
29152
29153 2007-12-21  Simon Josefsson  <simon@josefsson.org>
29154
29155         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
29156         string, needed by strerror.
29157
29158 2008-01-03  Colin Watson  <cjwatson@debian.org>
29159             Bruno Haible  <bruno@clisp.org>
29160
29161         * doc/gnulib-tool.texi (Localization): New section.
29162
29163 2008-01-02  Bruno Haible  <bruno@clisp.org>
29164
29165         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
29166         variables to 'unsigned char *' type.
29167         Reported by Paul Eggert.
29168
29169 2008-01-02  Jim Meyering  <jim@meyering.net>
29170
29171         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
29172
29173 2007-12-31  Jim Meyering  <jim@meyering.net>
29174
29175         Avoid use of private FTS type name.
29176         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
29177
29178 2007-12-30  Karl Berry  <karl@gnu.org>
29179
29180         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
29181         work around defect in Texinfo and/or the standalone Info browser.
29182
29183 2007-12-30  Bruno Haible  <bruno@clisp.org>
29184
29185         Unify 5 copies of the KMP code.
29186         * lib/str-kmp.h: New file.
29187         * lib/c-strcasestr.c: Include str-kmp.h.
29188         (knuth_morris_pratt): Remove function.
29189         (c_strcasestr): Update.
29190         * lib/c-strstr.c: Include str-kmp.h.
29191         (knuth_morris_pratt): Remove function.
29192         (c_strcasestr): Update.
29193         * lib/mbscasestr.c: Include str-kmp.h.
29194         (knuth_morris_pratt_unibyte): Remove function.
29195         * lib/mbsstr.c: Include str-kmp.h.
29196         (knuth_morris_pratt_unibyte): Remove function.
29197         * lib/strcasestr.c: Include str-kmp.h.
29198         (knuth_morris_pratt): Remove function.
29199         (strcasestr): Update.
29200         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
29201         * modules/c-strstr (Files): Likewise.
29202         * modules/mbscasestr (Files): Likewise.
29203         * modules/mbsstr (Files): Likewise.
29204         * modules/strcasestr (Files): Likewise.
29205         Suggested by Paul Eggert.
29206
29207 2007-12-30  Bruno Haible  <bruno@clisp.org>
29208
29209         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
29210         defined.
29211
29212 2007-12-30  Bruno Haible  <bruno@clisp.org>
29213
29214         * lib/xmalloca.h: Include xalloc.h.
29215         (xnmalloca): New macro.
29216
29217 2007-12-30  Bruno Haible  <bruno@clisp.org>
29218
29219         * lib/malloca.h (nmalloca): New macro.
29220         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
29221         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
29222         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
29223         knuth_morris_pratt_multibyte): Likewise.
29224         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
29225         knuth_morris_pratt_multibyte): Likewise.
29226         * lib/memmem.c (knuth_morris_pratt): Likewise.
29227         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
29228
29229 2007-12-25  Bruno Haible  <bruno@clisp.org>
29230
29231         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
29232         * lib/glob.c: Don't include openat.h.
29233         (link_exists2_p): Add back the code that deals with the
29234         !GLOB_ALTDIRFUNC case.
29235         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
29236         let it do the filename concatenation.
29237         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
29238         * modules/glob (Depends-on): Remove openat.
29239
29240 2007-12-31  Bruno Haible  <bruno@clisp.org>
29241
29242         * modules/dirfd (License): Change to LGPLv2+.
29243         Approved by Jim Meyering.
29244
29245 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
29246
29247         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
29248         when multiplying M by sizeof (size_t).
29249
29250 2007-12-10  Martin Lambers  <marlam@marlam.de>
29251
29252         Override getpagesize on mingw.
29253         * lib/getpagesize.c: New file.
29254         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
29255         * modules/getpagesize (Files): Add lib/getpagesize.c.
29256         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
29257         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
29258         REPLACE_GETPAGESIZE.
29259         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
29260
29261 2007-12-25  Bruno Haible  <bruno@clisp.org>
29262
29263         * modules/localcharset (Notice): New field.
29264         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
29265         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
29266
29267 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
29268             Bruno Haible  <bruno@clisp.org>
29269
29270         Avoid using the syntax symbol() in formatted documentation.
29271         * MODULES.html.sh (func_module): When replacing symbol() with a
29272         hyperlink, remove the parentheses. Show an error if some remain.
29273         Recognize and render the '...' syntax.
29274         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
29275         Rework. Add paragraph about GCC's inlining.
29276         * doc/alloca.texi: Likewise.
29277         * doc/error.texi: Remove parentheses from symbol reference.
29278         * doc/gnulib-intro.texi: Likewise.
29279         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
29280         * modules/fnmatch (Description): Reword to say "the ... function".
29281         * modules/full-read (Description): Likewise.
29282         * modules/full-write (Description): Likewise.
29283         * modules/safe-read (Description): Likewise.
29284         * modules/safe-write (Description): Likewise.
29285         * modules/strchrnul (Description): Likewise.
29286         * modules/trim (Description): Likewise.
29287         * modules/error (Description): Remove parentheses from symbol
29288         references.
29289         * modules/verror (Description): Likewise.
29290         Reported by Karl Berry.
29291
29292 2007-12-25  Bruno Haible  <bruno@clisp.org>
29293
29294         Fixup after 2007-10-16 commit.
29295         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
29296
29297 2007-12-24  Bruno Haible  <bruno@clisp.org>
29298
29299         Make --enable-relocatable work with DESTDIR.
29300         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
29301         to compute installdir from destprog.
29302         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
29303         also set the RELOC_DESTDIR variable.
29304         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
29305
29306 2007-12-24  Bruno Haible  <bruno@clisp.org>
29307
29308         Fix link error due to xalloc_die().
29309         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
29310         of xreadlink.
29311         * lib/relocwrapper.c: Update comments.
29312         * build-aux/install-reloc: Remove xreadlink.c from file list.
29313         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
29314         xreadlink.c.
29315         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
29316
29317 2007-12-24  Bruno Haible  <bruno@clisp.org>
29318
29319         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
29320         * lib/setenv.h: Remove file.
29321         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
29322         lib/setenv.h.
29323         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
29324         (Depends-on): Add stdlib.
29325         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
29326         gl_FUNC_UNSETENV.
29327         (Include): Replace setenv.h with <stdlib.h>.
29328         * modules/unsetenv: New file.
29329         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
29330         * lib/unsetenv.c: Include <stdlib.h> first.
29331         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
29332         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
29333         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
29334         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
29335         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
29336         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
29337         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
29338         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
29339         * doc/functions/unsetenv.texi: Update.
29340         * modules/xsetenv (Depends-on): Add unsetenv.
29341         * modules/getdate (Depends-on): Likewise.
29342         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
29343         * lib/xsetenv.c: Don't include setenv.h.
29344         * lib/getdate.y: Likewise.
29345         * lib/relocwrapper.c: Likewise.
29346         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
29347         (Depends-on): Add stdlib.
29348         * NEWS: Mention the changes.
29349         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
29350
29351 2007-12-23  Bruno Haible  <bruno@clisp.org>
29352
29353         * lib/memmem.c (memmem): Use lowercase variable names. Tab
29354         indentation.
29355
29356 2007-12-23  Bruno Haible  <bruno@clisp.org>
29357
29358         * lib/c-strcasestr.c: Add more comments.
29359         * lib/c-strstr.c: Likewise.
29360         * lib/mbscasestr.c: Likewise.
29361         * lib/mbsstr.c: Likewise.
29362         * lib/strcasestr.c: Likewise.
29363         * lib/memmem.c: Likewise.
29364
29365 2007-12-23  Bruno Haible  <bruno@clisp.org>
29366
29367         * tests/test-memmem.c: Include <string.h> first.
29368
29369 2007-12-22  Bruno Haible  <bruno@clisp.org>
29370
29371         * gnulib-tool (func_create_testdir): Change $auxdir while generating
29372         the contents of $testsbase.
29373         Reported by Ralf Wildenhues.
29374
29375 2007-12-22  Bruno Haible  <bruno@clisp.org>
29376
29377         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
29378         two variables local_ldadd_before, local_ldadd_last.
29379
29380 2007-12-20  Eric Blake  <ebb9@byu.net>
29381
29382         Work around circular library issue when cross-compiling.
29383         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
29384         that progname.o does not need to pull in rpl_memcmp.
29385
29386 2007-12-19  Eric Blake  <ebb9@byu.net>
29387
29388         Fix memmem to avoid O(n^2) worst-case complexity.
29389         * lib/memmem.c (knuth_morris_pratt): New function.
29390         (memmem): Use it if first few naive iterations fail.
29391         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
29392         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
29393         * modules/memchr (License): Likewise.
29394         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
29395         malloca.
29396         * tests/test-memmem.c: Rewrite, borrowing ideas from
29397         test-mbsstr1.c; the old version wouldn't even compile!
29398         * modules/memmem-tests: New file.
29399         * lib/string.in.h (rpl_memmem): Add declaration.
29400         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
29401         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
29402         REPLACE_MEMMEM.
29403
29404 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
29405
29406         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
29407         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
29408         before any system include files, and undef after them all.  This
29409         should fix a problem on VMS reported by John E. Malmberg in
29410         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
29411
29412 2007-12-17  Eric Blake  <ebb9@byu.net>
29413
29414         Revert addition of verify, for BSD/OS.
29415         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
29416         can't handle large files, for the sake of obsolete platforms.
29417         * modules/fseeko (Depends-on): Remove verify.
29418         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
29419         * doc/functions/ftello.texi (ftello): Likewise.
29420         * doc/functions/fgetpos.texi (fgetpos): Likewise.
29421         Reported by Larry Jones.
29422
29423 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
29424
29425         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
29426         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
29427
29428 2007-12-17  Jim Meyering  <meyering@redhat.com>
29429
29430         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
29431         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
29432         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
29433         * modules/getcwd (Depends-on): Add openat.
29434         Reported by Petr Salinger.
29435
29436 2007-12-17  Bruno Haible  <bruno@clisp.org>
29437
29438         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
29439         avoid a segmentation fault of the configure test on x86_64 systems.
29440
29441 2007-12-15  Jim Meyering  <meyering@redhat.com>
29442
29443         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
29444
29445 2007-12-13  Eric Blake  <ebb9@byu.net>
29446
29447         Another fseek test.
29448         * tests/test-fseek.c (main): Also test ungetc handling.
29449         * tests/test-fseeko.c (main): Likewise.
29450         * modules/fseeko (Depends-on): Add verify.
29451         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
29452         large.
29453         Reported by Larry Jones.
29454
29455         Fix fseeko on mingw.
29456         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
29457         seek.
29458
29459         Beef up fseek tests.
29460         * tests/test-fseek.c (main): Also test eof handling.
29461         * tests/test-fseeko.c (main): Likewise.
29462         Reported by Larry Jones.
29463
29464 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
29465
29466         Fix fseeko on BSD-based platforms.
29467         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
29468         successful seek.
29469
29470 2007-12-12  Eric Blake  <ebb9@byu.net>
29471
29472         Allow circular dependency of separate libtests.a
29473         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
29474         when use_libtests.
29475
29476 2007-12-11  Eric Blake  <ebb9@byu.net>
29477
29478         Fix bug with -0.0L in previous patch.
29479         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
29480         * tests/test-isnan.c (main): Also test on zeroes.
29481         * tests/test-isnanf.c (main): Likewise.
29482         * tests/test-isnanl.h (main): Likewise.
29483
29484         Detect pseudo-denormals on x86 even when cross-compiling.
29485         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
29486         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
29487         invalid bit patterns that happen to satisfy ==.
29488
29489         Avoid link failures with separate libtests.a.
29490         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
29491         last, to satisfy circular dependencies.
29492
29493 2007-12-11  Eric Blake  <ebb9@byu.net>
29494         and Bruno Haible  <bruno@clisp.org>
29495
29496         Fix OpenBSD 4.0 <float.h> handling of long double.
29497         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
29498         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
29499         * doc/headers/float.texi (float.h): Document OpenBSD bug.
29500
29501 2007-12-11  Jim Meyering  <meyering@redhat.com>
29502
29503         * users.txt: Add libvirt.
29504
29505         Support versions of autoconf prior to 2.59c.
29506         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
29507         if it is not already defined.
29508
29509 2007-12-09  Bruno Haible  <bruno@clisp.org>
29510
29511         Let 'gnulib-tool --import' collect sources needed for the tests in
29512         tests/ rather than in lib/.
29513         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
29514         argument. If true, add rules to generate libtests.a, and put libtests.a
29515         into $(LDADD). Consider source files in subdirectories and set
29516         uses_subdirs.
29517         (func_emit_initmacro_start, func_emit_initmacro_end,
29518         func_emit_initmacro_done): Pass all arguments explicitly.
29519         (func_import): Determine two module lists main_modules,
29520         testsrelated_modules. Determine use_libtests. Determine two variables
29521         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
29522         instead of just sed_transform_lib_file. Determine two variables
29523         main_files and testsrelated_files. Compute 'files' as the union of
29524         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
29525         func_add_or_update. In the generated gnulib-comp.m4, collect the
29526         object files for tests/ in different variables than those for lib/.
29527         Substitute LIBTESTS_LIBDEPS.
29528         (func_create_testdir): Combine the uses_subdirs results from
29529         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
29530
29531 2007-12-09  Bruno Haible  <bruno@clisp.org>
29532
29533         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
29534         the build-aux directory.
29535
29536 2007-12-09  Bruno Haible  <bruno@clisp.org>
29537
29538         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
29539         introduced on 2006-09-09.
29540
29541 2007-12-07  Jim Meyering  <meyering@redhat.com>
29542
29543         Let these macros work also with autoconf-2.59.
29544         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
29545         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
29546         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
29547
29548 2007-12-06  Jim Meyering  <meyering@redhat.com>
29549
29550         Avoid a configure-time syntax error in gl_FUNC_ACL.
29551         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
29552         function in each branch, before testing the cache variable.
29553
29554 2007-12-04  Eric Blake  <ebb9@byu.net>
29555
29556         Make scripts executable.
29557         * build-aux/config.guess: Add execute permissions.
29558         * build-aux/config.sub: Likewise.
29559         * build-aux/gendocs.sh: Likewise.
29560
29561         Fix frexp on mingw.
29562         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
29563         cross-compiling.
29564         * doc/functions/frexp.texi (frexp): Document the bug.
29565
29566         Make cygwin fseeko check more reliable.
29567         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
29568         version numbers, rather than unrelated feature check.
29569         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
29570         * doc/functions/ftello.texi (ftello): Likewise.
29571         Reported by Bruno Haible.
29572
29573         * m4/strerror.m4: Bump version number.
29574
29575 2007-12-03  Bruno Haible  <bruno@clisp.org>
29576
29577         * doc/functions/mprotect.texi: Mention the mingw problem.
29578
29579 2007-12-03  Eric Blake  <ebb9@byu.net>
29580
29581         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
29582         REPLACE_STRERROR is initialized before this macro.
29583
29584 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
29585
29586         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
29587         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
29588         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
29589         put -lsec in even for programs other than 'ls'.  This fixes a problem
29590         for gettext reported by Bruno Haible in
29591         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
29592         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
29593         Add support for Solaris 10.  This isn't efficient, but should get the
29594         job done for now.
29595
29596 2007-12-03  James Youngman  <jay@gnu.org>
29597
29598         * doc/regexprops-generic.texi: change "an close-group" to "a
29599         close-group" and "illegal" to "not allowed".
29600
29601 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29602
29603         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
29604         pr_byname.h. Needed for the rare case when the maintainer has done
29605         "make maintainer-clean" in the source directory and then attempts a
29606         build outside the source directory.
29607         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
29608         scripts_byname.h.
29609
29610 2007-12-02  Martin Lambers <marlam@marlam.de>
29611             Bruno Haible  <bruno@clisp.org>
29612
29613         * lib/getpagesize.h: Remove file.
29614         * lib/unistd.in.h: Include declaration of getpagesize here.
29615         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
29616         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
29617         HAVE_SYS_PARAM_H.
29618         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
29619         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
29620         * modules/getpagesize (Files): Remove lib/getpagesize.h.
29621         (Depends-on): Add unistd.
29622         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
29623         (Include): Use <unistd.h> instead of getpagesize.h.
29624         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
29625         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
29626         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
29627         gl_GETPAGESIZE invocation, already handled by module dependency.
29628         * lib/pagealign_alloc.c: Don't include getpagesize.h.
29629
29630 2007-12-02  Bruno Haible  <bruno@clisp.org>
29631
29632         * modules/strings-tests: New file.
29633         * tests/test-strings.c: New file.
29634
29635         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
29636         * lib/strings.in.h: New file.
29637         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
29638         * m4/strings_h.m4: New file.
29639         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
29640         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
29641         * modules/strings: New file.
29642         * modules/string (Makefile.am): Update.
29643         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
29644         Reported by Karl Berry.
29645
29646 2007-12-01  Eric Blake  <ebb9@byu.net>
29647
29648         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
29649         accomodate fix in cygwin 1.5.25.
29650
29651 2007-12-01  Jim Meyering  <meyering@redhat.com>
29652
29653         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
29654         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
29655         that would inhibit utf8-optimization of a regexp containing line-
29656         or buffer-anchors, e.g., `^', `$'.
29657
29658 2007-11-30  Bruno Haible  <bruno@clisp.org>
29659
29660         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
29661         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
29662         glthread_recursive_lock_init.
29663         * lib/lock.c (glthread_recursive_lock_init)
29664         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
29665         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
29666
29667 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
29668
29669         New function qset_acl, like set_acl but with syscall semantics.
29670         * lib/acl.h (qset_acl): New decl.
29671         * lib/acl.c (qset_acl): New function.
29672         (set_acl): Use new function.  Use more-consistent diagnostics.
29673
29674 2007-11-28  Jim Meyering  <meyering@redhat.com>
29675
29676         * modules/physmem (License): Change from GPL to LGPLv2+.
29677
29678 2007-11-26  Bruno Haible  <bruno@clisp.org>
29679
29680         * lib/vasnprintf.c (decode_long_double): Don't abort if the
29681         'long double' type has excess precision.
29682         Reported by Jim Meyering in
29683         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
29684
29685 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29686
29687         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
29688         Sync from <http://gnu.org/licenses>.
29689         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
29690         with license text from same location.
29691         * doc/maintain.texi, doc/standards.texi:  Sync from
29692         <http://savannah.gnu.org/projects/gnustandards>.
29693
29694 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
29695         and Jim Meyering  <meyering@redhat.com>
29696
29697         Adjust getdate' grammar to accept a slightly more regular language.
29698         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
29699         Before, the former was rejected.
29700         * lib/getdate.y (digits_to_date_time): New function, factored
29701         out of ...
29702         (number): ...here.  Just call digits_to_date_time.
29703         (hybrid): New non-terminal to handle an <unsigned number,
29704         signed relative offset> sequence consistently.
29705
29706 2007-11-18  Jim Meyering  <meyering@redhat.com>
29707
29708         Pull my changes from coreutils:
29709         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
29710         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
29711         use of $gnulib_tool_option_extras, so that it's separated from the
29712         preceding argument.
29713
29714         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
29715         * build-aux/bootstrap (cp_mark_as_generated): Create any required
29716         parent destination directories before copying a file into place.
29717
29718 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
29719
29720         bootstrap: work also with 4-argument variant of AC_INIT
29721         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
29722
29723 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
29724
29725         Port test-getaddrinfo to Solaris.
29726         Problem reported by Bruno Haible in
29727         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
29728         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
29729         explanation of setting 'hints'.
29730         Don't reject an implementation merely because it returns EAI_SERVICE.
29731         (EAI_SERVICE): Define to 0 if not defined.
29732
29733 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
29734
29735         The license of gnu-make and posix-shell is now "GPLed build tool".
29736         * modules/gnu-make (License): Likewise.
29737         * modules/posix-shell (License): Likewise.
29738
29739         New module posix-shell, for determining a POSIX shell
29740         or perhaps something that is close enough to a POSIX shell.
29741         * m4/posix-shell.m4: New file.
29742         * modules/posix-shell: New file.
29743
29744         * MODULES.html.sh: Mention new module.
29745
29746         New module gnu-make, for determining whether we're using GNU Make.
29747         * m4/gnu-make.m4: New file.
29748         * modules/gnu-make: New file.
29749         * MODULES.html.sh: Mention new module.
29750
29751 2007-11-14  Jim Meyering  <meyering@redhat.com>
29752
29753         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
29754         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
29755         use this macro to create a function _definition_.
29756         Remove useless "#undef ARGMATCH_DIE".
29757
29758 2007-11-14  Bruno Haible  <bruno@clisp.org>
29759
29760         * lib/config.charset: Update for OpenBSD 4.1.
29761         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
29762
29763 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
29764
29765         Document 64-bit #if problems in stdint.texi.
29766         * doc/headers/stdint.texi (stdint.h): Mention problems with
29767         64-bit-#if, and how to work around them.
29768
29769         Don't insist on 'long long int' support in the preprocessor.  It
29770         breaks too many things.  For example, PRIdMAX still uses a 'long
29771         long int' format with the latest Sun compiler, even though
29772         HAVE_LONG_LONG_INT isn't defined due to that compiler's
29773         preprocessor problem.  This causes the latest coreutils to dump
29774         core on Solaris 10 sparc with the Sun C compiler.
29775         Instead, fix the 2007-10-16 problem in a different way, by evaluating
29776         the troublesome expressions at configure-time, not at #if-time.
29777         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
29778         preprocessor.
29779         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
29780         compile-time C checks, done at 'configure'-time.
29781         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
29782         * modules/inttypes (Makefile): Substitute the new symbols that
29783         gl_INTTYPES_H now generates.
29784         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
29785
29786 2007-11-12  Bruno Haible  <bruno@clisp.org>
29787
29788         Tests for Unicode character classification functions.
29789
29790         * modules/unictype/bidicategory-byname-tests: New file.
29791         * modules/unictype/bidicategory-name-tests: New file.
29792         * modules/unictype/bidicategory-of-tests: New file.
29793         * modules/unictype/bidicategory-test-tests: New file.
29794         * modules/unictype/block-list-tests: New file.
29795         * modules/unictype/block-of-tests: New file.
29796         * modules/unictype/block-test-tests: New file.
29797         * modules/unictype/category-C-tests: New file.
29798         * modules/unictype/category-Cc-tests: New file.
29799         * modules/unictype/category-Cf-tests: New file.
29800         * modules/unictype/category-Cn-tests: New file.
29801         * modules/unictype/category-Co-tests: New file.
29802         * modules/unictype/category-Cs-tests: New file.
29803         * modules/unictype/category-L-tests: New file.
29804         * modules/unictype/category-Ll-tests: New file.
29805         * modules/unictype/category-Lm-tests: New file.
29806         * modules/unictype/category-Lo-tests: New file.
29807         * modules/unictype/category-Lt-tests: New file.
29808         * modules/unictype/category-Lu-tests: New file.
29809         * modules/unictype/category-M-tests: New file.
29810         * modules/unictype/category-Mc-tests: New file.
29811         * modules/unictype/category-Me-tests: New file.
29812         * modules/unictype/category-Mn-tests: New file.
29813         * modules/unictype/category-N-tests: New file.
29814         * modules/unictype/category-Nd-tests: New file.
29815         * modules/unictype/category-Nl-tests: New file.
29816         * modules/unictype/category-No-tests: New file.
29817         * modules/unictype/category-P-tests: New file.
29818         * modules/unictype/category-Pc-tests: New file.
29819         * modules/unictype/category-Pd-tests: New file.
29820         * modules/unictype/category-Pe-tests: New file.
29821         * modules/unictype/category-Pf-tests: New file.
29822         * modules/unictype/category-Pi-tests: New file.
29823         * modules/unictype/category-Po-tests: New file.
29824         * modules/unictype/category-Ps-tests: New file.
29825         * modules/unictype/category-S-tests: New file.
29826         * modules/unictype/category-Sc-tests: New file.
29827         * modules/unictype/category-Sk-tests: New file.
29828         * modules/unictype/category-Sm-tests: New file.
29829         * modules/unictype/category-So-tests: New file.
29830         * modules/unictype/category-Z-tests: New file.
29831         * modules/unictype/category-Zl-tests: New file.
29832         * modules/unictype/category-Zp-tests: New file.
29833         * modules/unictype/category-Zs-tests: New file.
29834         * modules/unictype/category-and-not-tests: New file.
29835         * modules/unictype/category-and-tests: New file.
29836         * modules/unictype/category-byname-tests: New file.
29837         * modules/unictype/category-name-tests: New file.
29838         * modules/unictype/category-none-tests: New file.
29839         * modules/unictype/category-of-tests: New file.
29840         * modules/unictype/category-or-tests: New file.
29841         * modules/unictype/category-test-withtable-tests: New file.
29842         * modules/unictype/combining-class-tests: New file.
29843         * modules/unictype/ctype-alnum-tests: New file.
29844         * modules/unictype/ctype-alpha-tests: New file.
29845         * modules/unictype/ctype-blank-tests: New file.
29846         * modules/unictype/ctype-cntrl-tests: New file.
29847         * modules/unictype/ctype-digit-tests: New file.
29848         * modules/unictype/ctype-graph-tests: New file.
29849         * modules/unictype/ctype-lower-tests: New file.
29850         * modules/unictype/ctype-print-tests: New file.
29851         * modules/unictype/ctype-punct-tests: New file.
29852         * modules/unictype/ctype-space-tests: New file.
29853         * modules/unictype/ctype-upper-tests: New file.
29854         * modules/unictype/ctype-xdigit-tests: New file.
29855         * modules/unictype/decimal-digit-tests: New file.
29856         * modules/unictype/digit-tests: New file.
29857         * modules/unictype/mirror-tests: New file.
29858         * modules/unictype/numeric-tests: New file.
29859         * modules/unictype/property-alphabetic-tests: New file.
29860         * modules/unictype/property-ascii-hex-digit-tests: New file.
29861         * modules/unictype/property-bidi-arabic-digit-tests: New file.
29862         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
29863         * modules/unictype/property-bidi-block-separator-tests: New file.
29864         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
29865         * modules/unictype/property-bidi-common-separator-tests: New file.
29866         * modules/unictype/property-bidi-control-tests: New file.
29867         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
29868         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
29869         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
29870         * modules/unictype/property-bidi-european-digit-tests: New file.
29871         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
29872         * modules/unictype/property-bidi-left-to-right-tests: New file.
29873         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
29874         * modules/unictype/property-bidi-other-neutral-tests: New file.
29875         * modules/unictype/property-bidi-pdf-tests: New file.
29876         * modules/unictype/property-bidi-segment-separator-tests: New file.
29877         * modules/unictype/property-bidi-whitespace-tests: New file.
29878         * modules/unictype/property-byname-tests: New file.
29879         * modules/unictype/property-combining-tests: New file.
29880         * modules/unictype/property-composite-tests: New file.
29881         * modules/unictype/property-currency-symbol-tests: New file.
29882         * modules/unictype/property-dash-tests: New file.
29883         * modules/unictype/property-decimal-digit-tests: New file.
29884         * modules/unictype/property-default-ignorable-code-point-tests: New file.
29885         * modules/unictype/property-deprecated-tests: New file.
29886         * modules/unictype/property-diacritic-tests: New file.
29887         * modules/unictype/property-extender-tests: New file.
29888         * modules/unictype/property-format-control-tests: New file.
29889         * modules/unictype/property-grapheme-base-tests: New file.
29890         * modules/unictype/property-grapheme-extend-tests: New file.
29891         * modules/unictype/property-grapheme-link-tests: New file.
29892         * modules/unictype/property-hex-digit-tests: New file.
29893         * modules/unictype/property-hyphen-tests: New file.
29894         * modules/unictype/property-id-continue-tests: New file.
29895         * modules/unictype/property-id-start-tests: New file.
29896         * modules/unictype/property-ideographic-tests: New file.
29897         * modules/unictype/property-ids-binary-operator-tests: New file.
29898         * modules/unictype/property-ids-trinary-operator-tests: New file.
29899         * modules/unictype/property-ignorable-control-tests: New file.
29900         * modules/unictype/property-iso-control-tests: New file.
29901         * modules/unictype/property-join-control-tests: New file.
29902         * modules/unictype/property-left-of-pair-tests: New file.
29903         * modules/unictype/property-line-separator-tests: New file.
29904         * modules/unictype/property-logical-order-exception-tests: New file.
29905         * modules/unictype/property-lowercase-tests: New file.
29906         * modules/unictype/property-math-tests: New file.
29907         * modules/unictype/property-non-break-tests: New file.
29908         * modules/unictype/property-not-a-character-tests: New file.
29909         * modules/unictype/property-numeric-tests: New file.
29910         * modules/unictype/property-other-alphabetic-tests: New file.
29911         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
29912         * modules/unictype/property-other-grapheme-extend-tests: New file.
29913         * modules/unictype/property-other-id-continue-tests: New file.
29914         * modules/unictype/property-other-id-start-tests: New file.
29915         * modules/unictype/property-other-lowercase-tests: New file.
29916         * modules/unictype/property-other-math-tests: New file.
29917         * modules/unictype/property-other-uppercase-tests: New file.
29918         * modules/unictype/property-paired-punctuation-tests: New file.
29919         * modules/unictype/property-paragraph-separator-tests: New file.
29920         * modules/unictype/property-pattern-syntax-tests: New file.
29921         * modules/unictype/property-pattern-white-space-tests: New file.
29922         * modules/unictype/property-private-use-tests: New file.
29923         * modules/unictype/property-punctuation-tests: New file.
29924         * modules/unictype/property-quotation-mark-tests: New file.
29925         * modules/unictype/property-radical-tests: New file.
29926         * modules/unictype/property-sentence-terminal-tests: New file.
29927         * modules/unictype/property-soft-dotted-tests: New file.
29928         * modules/unictype/property-space-tests: New file.
29929         * modules/unictype/property-terminal-punctuation-tests: New file.
29930         * modules/unictype/property-test-tests: New file.
29931         * modules/unictype/property-titlecase-tests: New file.
29932         * modules/unictype/property-unassigned-code-value-tests: New file.
29933         * modules/unictype/property-unified-ideograph-tests: New file.
29934         * modules/unictype/property-uppercase-tests: New file.
29935         * modules/unictype/property-variation-selector-tests: New file.
29936         * modules/unictype/property-white-space-tests: New file.
29937         * modules/unictype/property-xid-continue-tests: New file.
29938         * modules/unictype/property-xid-start-tests: New file.
29939         * modules/unictype/property-zero-width-tests: New file.
29940         * modules/unictype/scripts-tests: New file.
29941         * modules/unictype/syntax-c-ident-tests: New file.
29942         * modules/unictype/syntax-c-whitespace-tests: New file.
29943         * modules/unictype/syntax-java-ident-tests: New file.
29944         * modules/unictype/syntax-java-whitespace-tests: New file.
29945         * tests/unictype/test-bidi_byname.c: New file.
29946         * tests/unictype/test-bidi_name.c: New file.
29947         * tests/unictype/test-bidi_of.c: New file.
29948         * tests/unictype/test-bidi_test.c: New file.
29949         * tests/unictype/test-block_list.c: New file.
29950         * tests/unictype/test-block_of.c: New file.
29951         * tests/unictype/test-block_test.c: New file.
29952         * tests/unictype/test-categ_and.c: New file.
29953         * tests/unictype/test-categ_and_not.c: New file.
29954         * tests/unictype/test-categ_byname.c: New file.
29955         * tests/unictype/test-categ_name.c: New file.
29956         * tests/unictype/test-categ_none.c: New file.
29957         * tests/unictype/test-categ_of.c: New file.
29958         * tests/unictype/test-categ_or.c: New file.
29959         * tests/unictype/test-categ_test_withtable.c: New file.
29960         * tests/unictype/test-combining.c: New file.
29961         * tests/unictype/test-decdigit.c: New file.
29962         * tests/unictype/test-digit.c: New file.
29963         * tests/unictype/test-mirror.c: New file.
29964         * tests/unictype/test-numeric.c: New file.
29965         * tests/unictype/test-pr_byname.c: New file.
29966         * tests/unictype/test-pr_test.c: New file.
29967         * tests/unictype/test-predicate-part1.h: New file.
29968         * tests/unictype/test-predicate-part2.h: New file.
29969         * tests/unictype/test-scripts.c: New file.
29970         * tests/unictype/test-sy_c_ident.c: New file.
29971         * tests/unictype/test-sy_java_ident.c: New file.
29972
29973         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
29974         for Unicode 5.0.0.
29975         * tests/unictype/test-categ_Cc.c: Likewise.
29976         * tests/unictype/test-categ_Cf.c: Likewise.
29977         * tests/unictype/test-categ_Cn.c: Likewise.
29978         * tests/unictype/test-categ_Co.c: Likewise.
29979         * tests/unictype/test-categ_Cs.c: Likewise.
29980         * tests/unictype/test-categ_L.c: Likewise.
29981         * tests/unictype/test-categ_Ll.c: Likewise.
29982         * tests/unictype/test-categ_Lm.c: Likewise.
29983         * tests/unictype/test-categ_Lo.c: Likewise.
29984         * tests/unictype/test-categ_Lt.c: Likewise.
29985         * tests/unictype/test-categ_Lu.c: Likewise.
29986         * tests/unictype/test-categ_M.c: Likewise.
29987         * tests/unictype/test-categ_Mc.c: Likewise.
29988         * tests/unictype/test-categ_Me.c: Likewise.
29989         * tests/unictype/test-categ_Mn.c: Likewise.
29990         * tests/unictype/test-categ_N.c: Likewise.
29991         * tests/unictype/test-categ_Nd.c: Likewise.
29992         * tests/unictype/test-categ_Nl.c: Likewise.
29993         * tests/unictype/test-categ_No.c: Likewise.
29994         * tests/unictype/test-categ_P.c: Likewise.
29995         * tests/unictype/test-categ_Pc.c: Likewise.
29996         * tests/unictype/test-categ_Pd.c: Likewise.
29997         * tests/unictype/test-categ_Pe.c: Likewise.
29998         * tests/unictype/test-categ_Pf.c: Likewise.
29999         * tests/unictype/test-categ_Pi.c: Likewise.
30000         * tests/unictype/test-categ_Po.c: Likewise.
30001         * tests/unictype/test-categ_Ps.c: Likewise.
30002         * tests/unictype/test-categ_S.c: Likewise.
30003         * tests/unictype/test-categ_Sc.c: Likewise.
30004         * tests/unictype/test-categ_Sk.c: Likewise.
30005         * tests/unictype/test-categ_Sm.c: Likewise.
30006         * tests/unictype/test-categ_So.c: Likewise.
30007         * tests/unictype/test-categ_Z.c: Likewise.
30008         * tests/unictype/test-categ_Zl.c: Likewise.
30009         * tests/unictype/test-categ_Zp.c: Likewise.
30010         * tests/unictype/test-categ_Zs.c: Likewise.
30011         * tests/unictype/test-ctype_alnum.c: Likewise.
30012         * tests/unictype/test-ctype_alpha.c: Likewise.
30013         * tests/unictype/test-ctype_blank.c: Likewise.
30014         * tests/unictype/test-ctype_cntrl.c: Likewise.
30015         * tests/unictype/test-ctype_digit.c: Likewise.
30016         * tests/unictype/test-ctype_graph.c: Likewise.
30017         * tests/unictype/test-ctype_lower.c: Likewise.
30018         * tests/unictype/test-ctype_print.c: Likewise.
30019         * tests/unictype/test-ctype_punct.c: Likewise.
30020         * tests/unictype/test-ctype_space.c: Likewise.
30021         * tests/unictype/test-ctype_upper.c: Likewise.
30022         * tests/unictype/test-ctype_xdigit.c: Likewise.
30023         * tests/unictype/test-decdigit.h: Likewise.
30024         * tests/unictype/test-digit.h: Likewise.
30025         * tests/unictype/test-numeric.h: Likewise.
30026         * tests/unictype/test-pr_alphabetic.c: Likewise.
30027         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
30028         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
30029         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
30030         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
30031         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
30032         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
30033         * tests/unictype/test-pr_bidi_control.c: Likewise.
30034         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
30035         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
30036         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
30037         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
30038         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
30039         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
30040         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
30041         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
30042         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
30043         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
30044         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
30045         * tests/unictype/test-pr_combining.c: Likewise.
30046         * tests/unictype/test-pr_composite.c: Likewise.
30047         * tests/unictype/test-pr_currency_symbol.c: Likewise.
30048         * tests/unictype/test-pr_dash.c: Likewise.
30049         * tests/unictype/test-pr_decimal_digit.c: Likewise.
30050         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
30051         * tests/unictype/test-pr_deprecated.c: Likewise.
30052         * tests/unictype/test-pr_diacritic.c: Likewise.
30053         * tests/unictype/test-pr_extender.c: Likewise.
30054         * tests/unictype/test-pr_format_control.c: Likewise.
30055         * tests/unictype/test-pr_grapheme_base.c: Likewise.
30056         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
30057         * tests/unictype/test-pr_grapheme_link.c: Likewise.
30058         * tests/unictype/test-pr_hex_digit.c: Likewise.
30059         * tests/unictype/test-pr_hyphen.c: Likewise.
30060         * tests/unictype/test-pr_id_continue.c: Likewise.
30061         * tests/unictype/test-pr_id_start.c: Likewise.
30062         * tests/unictype/test-pr_ideographic.c: Likewise.
30063         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
30064         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
30065         * tests/unictype/test-pr_ignorable_control.c: Likewise.
30066         * tests/unictype/test-pr_iso_control.c: Likewise.
30067         * tests/unictype/test-pr_join_control.c: Likewise.
30068         * tests/unictype/test-pr_left_of_pair.c: Likewise.
30069         * tests/unictype/test-pr_line_separator.c: Likewise.
30070         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
30071         * tests/unictype/test-pr_lowercase.c: Likewise.
30072         * tests/unictype/test-pr_math.c: Likewise.
30073         * tests/unictype/test-pr_non_break.c: Likewise.
30074         * tests/unictype/test-pr_not_a_character.c: Likewise.
30075         * tests/unictype/test-pr_numeric.c: Likewise.
30076         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
30077         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
30078         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
30079         * tests/unictype/test-pr_other_id_continue.c: Likewise.
30080         * tests/unictype/test-pr_other_id_start.c: Likewise.
30081         * tests/unictype/test-pr_other_lowercase.c: Likewise.
30082         * tests/unictype/test-pr_other_math.c: Likewise.
30083         * tests/unictype/test-pr_other_uppercase.c: Likewise.
30084         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
30085         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
30086         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
30087         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
30088         * tests/unictype/test-pr_private_use.c: Likewise.
30089         * tests/unictype/test-pr_punctuation.c: Likewise.
30090         * tests/unictype/test-pr_quotation_mark.c: Likewise.
30091         * tests/unictype/test-pr_radical.c: Likewise.
30092         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
30093         * tests/unictype/test-pr_soft_dotted.c: Likewise.
30094         * tests/unictype/test-pr_space.c: Likewise.
30095         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
30096         * tests/unictype/test-pr_titlecase.c: Likewise.
30097         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
30098         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
30099         * tests/unictype/test-pr_uppercase.c: Likewise.
30100         * tests/unictype/test-pr_variation_selector.c: Likewise.
30101         * tests/unictype/test-pr_white_space.c: Likewise.
30102         * tests/unictype/test-pr_xid_continue.c: Likewise.
30103         * tests/unictype/test-pr_xid_start.c: Likewise.
30104         * tests/unictype/test-pr_zero_width.c: Likewise.
30105         * tests/unictype/test-sy_c_whitespace.c: Likewise.
30106         * tests/unictype/test-sy_java_whitespace.c: Likewise.
30107
30108 2007-11-12  Bruno Haible  <bruno@clisp.org>
30109
30110         Unicode character classification functions.
30111         * lib/unictype.h: New file.
30112         * modules/unictype/base: New file.
30113         * modules/unictype/category-L: New file.
30114         * modules/unictype/category-Lu: New file.
30115         * modules/unictype/category-Ll: New file.
30116         * modules/unictype/category-Lt: New file.
30117         * modules/unictype/category-Lm: New file.
30118         * modules/unictype/category-Lo: New file.
30119         * modules/unictype/category-M: New file.
30120         * modules/unictype/category-Mn: New file.
30121         * modules/unictype/category-Mc: New file.
30122         * modules/unictype/category-Me: New file.
30123         * modules/unictype/category-N: New file.
30124         * modules/unictype/category-Nd: New file.
30125         * modules/unictype/category-Nl: New file.
30126         * modules/unictype/category-No: New file.
30127         * modules/unictype/category-P: New file.
30128         * modules/unictype/category-Pc: New file.
30129         * modules/unictype/category-Pd: New file.
30130         * modules/unictype/category-Ps: New file.
30131         * modules/unictype/category-Pe: New file.
30132         * modules/unictype/category-Pi: New file.
30133         * modules/unictype/category-Pf: New file.
30134         * modules/unictype/category-Po: New file.
30135         * modules/unictype/category-S: New file.
30136         * modules/unictype/category-Sm: New file.
30137         * modules/unictype/category-Sc: New file.
30138         * modules/unictype/category-Sk: New file.
30139         * modules/unictype/category-So: New file.
30140         * modules/unictype/category-Z: New file.
30141         * modules/unictype/category-Zs: New file.
30142         * modules/unictype/category-Zl: New file.
30143         * modules/unictype/category-Zp: New file.
30144         * modules/unictype/category-C: New file.
30145         * modules/unictype/category-Cc: New file.
30146         * modules/unictype/category-Cf: New file.
30147         * modules/unictype/category-Cs: New file.
30148         * modules/unictype/category-Co: New file.
30149         * modules/unictype/category-Cn: New file.
30150         * modules/unictype/category-or: New file.
30151         * modules/unictype/category-of: New file.
30152         * modules/unictype/category-test: New file.
30153         * modules/unictype/category-test-withtable: New file.
30154         * modules/unictype/category-byname: New file.
30155         * modules/unictype/category-none: New file.
30156         * modules/unictype/category-and: New file.
30157         * modules/unictype/category-and-not: New file.
30158         * modules/unictype/category-name: New file.
30159         * modules/unictype/combining-class: New file.
30160         * modules/unictype/category-all: New file.
30161         * modules/unictype/bidicategory-all: New file.
30162         * modules/unictype/bidicategory-byname: New file.
30163         * modules/unictype/bidicategory-name: New file.
30164         * modules/unictype/bidicategory-of: New file.
30165         * modules/unictype/bidicategory-test: New file.
30166         * modules/unictype/decimal-digit: New file.
30167         * modules/unictype/digit: New file.
30168         * modules/unictype/numeric: New file.
30169         * modules/unictype/mirror: New file.
30170         * modules/unictype/property-white-space: New file.
30171         * modules/unictype/property-alphabetic: New file.
30172         * modules/unictype/property-other-alphabetic: New file.
30173         * modules/unictype/property-not-a-character: New file.
30174         * modules/unictype/property-default-ignorable-code-point: New file.
30175         * modules/unictype/property-other-default-ignorable-code-point: New
30176         file.
30177         * modules/unictype/property-deprecated: New file.
30178         * modules/unictype/property-logical-order-exception: New file.
30179         * modules/unictype/property-variation-selector: New file.
30180         * modules/unictype/property-private-use: New file.
30181         * modules/unictype/property-unassigned-code-value: New file.
30182         * modules/unictype/property-uppercase: New file.
30183         * modules/unictype/property-other-uppercase: New file.
30184         * modules/unictype/property-lowercase: New file.
30185         * modules/unictype/property-other-lowercase: New file.
30186         * modules/unictype/property-titlecase: New file.
30187         * modules/unictype/property-soft-dotted: New file.
30188         * modules/unictype/property-id-start: New file.
30189         * modules/unictype/property-other-id-start: New file.
30190         * modules/unictype/property-id-continue: New file.
30191         * modules/unictype/property-other-id-continue: New file.
30192         * modules/unictype/property-xid-start: New file.
30193         * modules/unictype/property-xid-continue: New file.
30194         * modules/unictype/property-pattern-white-space: New file.
30195         * modules/unictype/property-pattern-syntax: New file.
30196         * modules/unictype/property-join-control: New file.
30197         * modules/unictype/property-grapheme-base: New file.
30198         * modules/unictype/property-grapheme-extend: New file.
30199         * modules/unictype/property-other-grapheme-extend: New file.
30200         * modules/unictype/property-grapheme-link: New file.
30201         * modules/unictype/property-bidi-control: New file.
30202         * modules/unictype/property-bidi-left-to-right: New file.
30203         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
30204         * modules/unictype/property-bidi-arabic-right-to-left: New file.
30205         * modules/unictype/property-bidi-european-digit: New file.
30206         * modules/unictype/property-bidi-eur-num-separator: New file.
30207         * modules/unictype/property-bidi-eur-num-terminator: New file.
30208         * modules/unictype/property-bidi-arabic-digit: New file.
30209         * modules/unictype/property-bidi-common-separator: New file.
30210         * modules/unictype/property-bidi-block-separator: New file.
30211         * modules/unictype/property-bidi-segment-separator: New file.
30212         * modules/unictype/property-bidi-whitespace: New file.
30213         * modules/unictype/property-bidi-non-spacing-mark: New file.
30214         * modules/unictype/property-bidi-boundary-neutral: New file.
30215         * modules/unictype/property-bidi-pdf: New file.
30216         * modules/unictype/property-bidi-embedding-or-override: New file.
30217         * modules/unictype/property-bidi-other-neutral: New file.
30218         * modules/unictype/property-hex-digit: New file.
30219         * modules/unictype/property-ascii-hex-digit: New file.
30220         * modules/unictype/property-ideographic: New file.
30221         * modules/unictype/property-unified-ideograph: New file.
30222         * modules/unictype/property-radical: New file.
30223         * modules/unictype/property-ids-binary-operator: New file.
30224         * modules/unictype/property-ids-trinary-operator: New file.
30225         * modules/unictype/property-zero-width: New file.
30226         * modules/unictype/property-space: New file.
30227         * modules/unictype/property-non-break: New file.
30228         * modules/unictype/property-iso-control: New file.
30229         * modules/unictype/property-format-control: New file.
30230         * modules/unictype/property-dash: New file.
30231         * modules/unictype/property-hyphen: New file.
30232         * modules/unictype/property-punctuation: New file.
30233         * modules/unictype/property-line-separator: New file.
30234         * modules/unictype/property-paragraph-separator: New file.
30235         * modules/unictype/property-quotation-mark: New file.
30236         * modules/unictype/property-sentence-terminal: New file.
30237         * modules/unictype/property-terminal-punctuation: New file.
30238         * modules/unictype/property-currency-symbol: New file.
30239         * modules/unictype/property-math: New file.
30240         * modules/unictype/property-other-math: New file.
30241         * modules/unictype/property-paired-punctuation: New file.
30242         * modules/unictype/property-left-of-pair: New file.
30243         * modules/unictype/property-combining: New file.
30244         * modules/unictype/property-composite: New file.
30245         * modules/unictype/property-decimal-digit: New file.
30246         * modules/unictype/property-numeric: New file.
30247         * modules/unictype/property-diacritic: New file.
30248         * modules/unictype/property-extender: New file.
30249         * modules/unictype/property-ignorable-control: New file.
30250         * modules/unictype/property-test: New file.
30251         * modules/unictype/property-byname: New file.
30252         * modules/unictype/property-all: New file.
30253         * modules/unictype/scripts: New file.
30254         * modules/unictype/scripts-all: New file.
30255         * modules/unictype/block-of: New file.
30256         * modules/unictype/block-test: New file.
30257         * modules/unictype/block-list: New file.
30258         * modules/unictype/block-all: New file.
30259         * modules/unictype/syntax-c-whitespace: New file.
30260         * modules/unictype/syntax-java-whitespace: New file.
30261         * modules/unictype/syntax-c-ident: New file.
30262         * modules/unictype/syntax-java-ident: New file.
30263         * modules/unictype/ctype-alnum: New file.
30264         * modules/unictype/ctype-alpha: New file.
30265         * modules/unictype/ctype-cntrl: New file.
30266         * modules/unictype/ctype-digit: New file.
30267         * modules/unictype/ctype-graph: New file.
30268         * modules/unictype/ctype-lower: New file.
30269         * modules/unictype/ctype-print: New file.
30270         * modules/unictype/ctype-punct: New file.
30271         * modules/unictype/ctype-space: New file.
30272         * modules/unictype/ctype-upper: New file.
30273         * modules/unictype/ctype-xdigit: New file.
30274         * modules/unictype/ctype-blank: New file.
30275         * lib/unictype/bidi_byname.c: New file.
30276         * lib/unictype/bidi_name.c: New file.
30277         * lib/unictype/bidi_of.c: New file.
30278         * lib/unictype/bidi_test.c: New file.
30279         * lib/unictype/bitmap.h: New file.
30280         * lib/unictype/block_test.c: New file.
30281         * lib/unictype/blocks.c: New file.
30282         * lib/unictype/categ_C.c: New file.
30283         * lib/unictype/categ_Cc.c: New file.
30284         * lib/unictype/categ_Cf.c: New file.
30285         * lib/unictype/categ_Cn.c: New file.
30286         * lib/unictype/categ_Co.c: New file.
30287         * lib/unictype/categ_Cs.c: New file.
30288         * lib/unictype/categ_L.c: New file.
30289         * lib/unictype/categ_Ll.c: New file.
30290         * lib/unictype/categ_Lm.c: New file.
30291         * lib/unictype/categ_Lo.c: New file.
30292         * lib/unictype/categ_Lt.c: New file.
30293         * lib/unictype/categ_Lu.c: New file.
30294         * lib/unictype/categ_M.c: New file.
30295         * lib/unictype/categ_Mc.c: New file.
30296         * lib/unictype/categ_Me.c: New file.
30297         * lib/unictype/categ_Mn.c: New file.
30298         * lib/unictype/categ_N.c: New file.
30299         * lib/unictype/categ_Nd.c: New file.
30300         * lib/unictype/categ_Nl.c: New file.
30301         * lib/unictype/categ_No.c: New file.
30302         * lib/unictype/categ_P.c: New file.
30303         * lib/unictype/categ_Pc.c: New file.
30304         * lib/unictype/categ_Pd.c: New file.
30305         * lib/unictype/categ_Pe.c: New file.
30306         * lib/unictype/categ_Pf.c: New file.
30307         * lib/unictype/categ_Pi.c: New file.
30308         * lib/unictype/categ_Po.c: New file.
30309         * lib/unictype/categ_Ps.c: New file.
30310         * lib/unictype/categ_S.c: New file.
30311         * lib/unictype/categ_Sc.c: New file.
30312         * lib/unictype/categ_Sk.c: New file.
30313         * lib/unictype/categ_Sm.c: New file.
30314         * lib/unictype/categ_So.c: New file.
30315         * lib/unictype/categ_Z.c: New file.
30316         * lib/unictype/categ_Zl.c: New file.
30317         * lib/unictype/categ_Zp.c: New file.
30318         * lib/unictype/categ_Zs.c: New file.
30319         * lib/unictype/categ_and.c: New file.
30320         * lib/unictype/categ_and_not.c: New file.
30321         * lib/unictype/categ_byname.c: New file.
30322         * lib/unictype/categ_name.c: New file.
30323         * lib/unictype/categ_none.c: New file.
30324         * lib/unictype/categ_of.c: New file.
30325         * lib/unictype/categ_or.c: New file.
30326         * lib/unictype/categ_test.c: New file.
30327         * lib/unictype/combining.c: New file.
30328         * lib/unictype/ctype_alnum.c: New file.
30329         * lib/unictype/ctype_alpha.c: New file.
30330         * lib/unictype/ctype_blank.c: New file.
30331         * lib/unictype/ctype_cntrl.c: New file.
30332         * lib/unictype/ctype_digit.c: New file.
30333         * lib/unictype/ctype_graph.c: New file.
30334         * lib/unictype/ctype_lower.c: New file.
30335         * lib/unictype/ctype_print.c: New file.
30336         * lib/unictype/ctype_punct.c: New file.
30337         * lib/unictype/ctype_space.c: New file.
30338         * lib/unictype/ctype_upper.c: New file.
30339         * lib/unictype/ctype_xdigit.c: New file.
30340         * lib/unictype/decdigit.c: New file.
30341         * lib/unictype/digit.c: New file.
30342         * lib/unictype/identsyntaxmap.h: New file.
30343         * lib/unictype/mirror.c: New file.
30344         * lib/unictype/numeric.c: New file.
30345         * lib/unictype/pr_alphabetic.c: New file.
30346         * lib/unictype/pr_ascii_hex_digit.c: New file.
30347         * lib/unictype/pr_bidi_arabic_digit.c: New file.
30348         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
30349         * lib/unictype/pr_bidi_block_separator.c: New file.
30350         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
30351         * lib/unictype/pr_bidi_common_separator.c: New file.
30352         * lib/unictype/pr_bidi_control.c: New file.
30353         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
30354         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
30355         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
30356         * lib/unictype/pr_bidi_european_digit.c: New file.
30357         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
30358         * lib/unictype/pr_bidi_left_to_right.c: New file.
30359         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
30360         * lib/unictype/pr_bidi_other_neutral.c: New file.
30361         * lib/unictype/pr_bidi_pdf.c: New file.
30362         * lib/unictype/pr_bidi_segment_separator.c: New file.
30363         * lib/unictype/pr_bidi_whitespace.c: New file.
30364         * lib/unictype/pr_byname.c: New file.
30365         * lib/unictype/pr_byname.gperf: New file.
30366         * lib/unictype/pr_combining.c: New file.
30367         * lib/unictype/pr_composite.c: New file.
30368         * lib/unictype/pr_currency_symbol.c: New file.
30369         * lib/unictype/pr_dash.c: New file.
30370         * lib/unictype/pr_decimal_digit.c: New file.
30371         * lib/unictype/pr_default_ignorable_code_point.c: New file.
30372         * lib/unictype/pr_deprecated.c: New file.
30373         * lib/unictype/pr_diacritic.c: New file.
30374         * lib/unictype/pr_extender.c: New file.
30375         * lib/unictype/pr_format_control.c: New file.
30376         * lib/unictype/pr_grapheme_base.c: New file.
30377         * lib/unictype/pr_grapheme_extend.c: New file.
30378         * lib/unictype/pr_grapheme_link.c: New file.
30379         * lib/unictype/pr_hex_digit.c: New file.
30380         * lib/unictype/pr_hyphen.c: New file.
30381         * lib/unictype/pr_id_continue.c: New file.
30382         * lib/unictype/pr_id_start.c: New file.
30383         * lib/unictype/pr_ideographic.c: New file.
30384         * lib/unictype/pr_ids_binary_operator.c: New file.
30385         * lib/unictype/pr_ids_trinary_operator.c: New file.
30386         * lib/unictype/pr_ignorable_control.c: New file.
30387         * lib/unictype/pr_iso_control.c: New file.
30388         * lib/unictype/pr_join_control.c: New file.
30389         * lib/unictype/pr_left_of_pair.c: New file.
30390         * lib/unictype/pr_line_separator.c: New file.
30391         * lib/unictype/pr_logical_order_exception.c: New file.
30392         * lib/unictype/pr_lowercase.c: New file.
30393         * lib/unictype/pr_math.c: New file.
30394         * lib/unictype/pr_non_break.c: New file.
30395         * lib/unictype/pr_not_a_character.c: New file.
30396         * lib/unictype/pr_numeric.c: New file.
30397         * lib/unictype/pr_other_alphabetic.c: New file.
30398         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
30399         * lib/unictype/pr_other_grapheme_extend.c: New file.
30400         * lib/unictype/pr_other_id_continue.c: New file.
30401         * lib/unictype/pr_other_id_start.c: New file.
30402         * lib/unictype/pr_other_lowercase.c: New file.
30403         * lib/unictype/pr_other_math.c: New file.
30404         * lib/unictype/pr_other_uppercase.c: New file.
30405         * lib/unictype/pr_paired_punctuation.c: New file.
30406         * lib/unictype/pr_paragraph_separator.c: New file.
30407         * lib/unictype/pr_pattern_syntax.c: New file.
30408         * lib/unictype/pr_pattern_white_space.c: New file.
30409         * lib/unictype/pr_private_use.c: New file.
30410         * lib/unictype/pr_punctuation.c: New file.
30411         * lib/unictype/pr_quotation_mark.c: New file.
30412         * lib/unictype/pr_radical.c: New file.
30413         * lib/unictype/pr_sentence_terminal.c: New file.
30414         * lib/unictype/pr_soft_dotted.c: New file.
30415         * lib/unictype/pr_space.c: New file.
30416         * lib/unictype/pr_terminal_punctuation.c: New file.
30417         * lib/unictype/pr_test.c: New file.
30418         * lib/unictype/pr_titlecase.c: New file.
30419         * lib/unictype/pr_unassigned_code_value.c: New file.
30420         * lib/unictype/pr_unified_ideograph.c: New file.
30421         * lib/unictype/pr_uppercase.c: New file.
30422         * lib/unictype/pr_variation_selector.c: New file.
30423         * lib/unictype/pr_white_space.c: New file.
30424         * lib/unictype/pr_xid_continue.c: New file.
30425         * lib/unictype/pr_xid_start.c: New file.
30426         * lib/unictype/pr_zero_width.c: New file.
30427         * lib/unictype/scripts.c: New file.
30428         * lib/unictype/sy_c_ident.c: New file.
30429         * lib/unictype/sy_c_whitespace.c: New file.
30430         * lib/unictype/sy_java_ident.c: New file.
30431         * lib/unictype/sy_java_whitespace.c: New file.
30432
30433         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
30434         Unicode 5.0.0.
30435         * lib/unictype/blocks.h: Likewise.
30436         * lib/unictype/categ_C.h: Likewise.
30437         * lib/unictype/categ_Cc.h: Likewise.
30438         * lib/unictype/categ_Cf.h: Likewise.
30439         * lib/unictype/categ_Cn.h: Likewise.
30440         * lib/unictype/categ_Co.h: Likewise.
30441         * lib/unictype/categ_Cs.h: Likewise.
30442         * lib/unictype/categ_L.h: Likewise.
30443         * lib/unictype/categ_Ll.h: Likewise.
30444         * lib/unictype/categ_Lm.h: Likewise.
30445         * lib/unictype/categ_Lo.h: Likewise.
30446         * lib/unictype/categ_Lt.h: Likewise.
30447         * lib/unictype/categ_Lu.h: Likewise.
30448         * lib/unictype/categ_M.h: Likewise.
30449         * lib/unictype/categ_Mc.h: Likewise.
30450         * lib/unictype/categ_Me.h: Likewise.
30451         * lib/unictype/categ_Mn.h: Likewise.
30452         * lib/unictype/categ_N.h: Likewise.
30453         * lib/unictype/categ_Nd.h: Likewise.
30454         * lib/unictype/categ_Nl.h: Likewise.
30455         * lib/unictype/categ_No.h: Likewise.
30456         * lib/unictype/categ_P.h: Likewise.
30457         * lib/unictype/categ_Pc.h: Likewise.
30458         * lib/unictype/categ_Pd.h: Likewise.
30459         * lib/unictype/categ_Pe.h: Likewise.
30460         * lib/unictype/categ_Pf.h: Likewise.
30461         * lib/unictype/categ_Pi.h: Likewise.
30462         * lib/unictype/categ_Po.h: Likewise.
30463         * lib/unictype/categ_Ps.h: Likewise.
30464         * lib/unictype/categ_S.h: Likewise.
30465         * lib/unictype/categ_Sc.h: Likewise.
30466         * lib/unictype/categ_Sk.h: Likewise.
30467         * lib/unictype/categ_Sm.h: Likewise.
30468         * lib/unictype/categ_So.h: Likewise.
30469         * lib/unictype/categ_Z.h: Likewise.
30470         * lib/unictype/categ_Zl.h: Likewise.
30471         * lib/unictype/categ_Zp.h: Likewise.
30472         * lib/unictype/categ_Zs.h: Likewise.
30473         * lib/unictype/categ_of.h: Likewise.
30474         * lib/unictype/combining.h: Likewise.
30475         * lib/unictype/ctype_alnum.h: Likewise.
30476         * lib/unictype/ctype_alpha.h: Likewise.
30477         * lib/unictype/ctype_blank.h: Likewise.
30478         * lib/unictype/ctype_cntrl.h: Likewise.
30479         * lib/unictype/ctype_digit.h: Likewise.
30480         * lib/unictype/ctype_graph.h: Likewise.
30481         * lib/unictype/ctype_lower.h: Likewise.
30482         * lib/unictype/ctype_print.h: Likewise.
30483         * lib/unictype/ctype_punct.h: Likewise.
30484         * lib/unictype/ctype_space.h: Likewise.
30485         * lib/unictype/ctype_upper.h: Likewise.
30486         * lib/unictype/ctype_xdigit.h: Likewise.
30487         * lib/unictype/decdigit.h: Likewise.
30488         * lib/unictype/digit.h: Likewise.
30489         * lib/unictype/mirror.h: Likewise.
30490         * lib/unictype/numeric.h: Likewise.
30491         * lib/unictype/pr_alphabetic.h: Likewise.
30492         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
30493         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
30494         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
30495         * lib/unictype/pr_bidi_block_separator.h: Likewise.
30496         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
30497         * lib/unictype/pr_bidi_common_separator.h: Likewise.
30498         * lib/unictype/pr_bidi_control.h: Likewise.
30499         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
30500         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
30501         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
30502         * lib/unictype/pr_bidi_european_digit.h: Likewise.
30503         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
30504         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
30505         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
30506         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
30507         * lib/unictype/pr_bidi_pdf.h: Likewise.
30508         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
30509         * lib/unictype/pr_bidi_whitespace.h: Likewise.
30510         * lib/unictype/pr_combining.h: Likewise.
30511         * lib/unictype/pr_composite.h: Likewise.
30512         * lib/unictype/pr_currency_symbol.h: Likewise.
30513         * lib/unictype/pr_dash.h: Likewise.
30514         * lib/unictype/pr_decimal_digit.h: Likewise.
30515         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
30516         * lib/unictype/pr_deprecated.h: Likewise.
30517         * lib/unictype/pr_diacritic.h: Likewise.
30518         * lib/unictype/pr_extender.h: Likewise.
30519         * lib/unictype/pr_format_control.h: Likewise.
30520         * lib/unictype/pr_grapheme_base.h: Likewise.
30521         * lib/unictype/pr_grapheme_extend.h: Likewise.
30522         * lib/unictype/pr_grapheme_link.h: Likewise.
30523         * lib/unictype/pr_hex_digit.h: Likewise.
30524         * lib/unictype/pr_hyphen.h: Likewise.
30525         * lib/unictype/pr_id_continue.h: Likewise.
30526         * lib/unictype/pr_id_start.h: Likewise.
30527         * lib/unictype/pr_ideographic.h: Likewise.
30528         * lib/unictype/pr_ids_binary_operator.h: Likewise.
30529         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
30530         * lib/unictype/pr_ignorable_control.h: Likewise.
30531         * lib/unictype/pr_iso_control.h: Likewise.
30532         * lib/unictype/pr_join_control.h: Likewise.
30533         * lib/unictype/pr_left_of_pair.h: Likewise.
30534         * lib/unictype/pr_line_separator.h: Likewise.
30535         * lib/unictype/pr_logical_order_exception.h: Likewise.
30536         * lib/unictype/pr_lowercase.h: Likewise.
30537         * lib/unictype/pr_math.h: Likewise.
30538         * lib/unictype/pr_non_break.h: Likewise.
30539         * lib/unictype/pr_not_a_character.h: Likewise.
30540         * lib/unictype/pr_numeric.h: Likewise.
30541         * lib/unictype/pr_other_alphabetic.h: Likewise.
30542         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
30543         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
30544         * lib/unictype/pr_other_id_continue.h: Likewise.
30545         * lib/unictype/pr_other_id_start.h: Likewise.
30546         * lib/unictype/pr_other_lowercase.h: Likewise.
30547         * lib/unictype/pr_other_math.h: Likewise.
30548         * lib/unictype/pr_other_uppercase.h: Likewise.
30549         * lib/unictype/pr_paired_punctuation.h: Likewise.
30550         * lib/unictype/pr_paragraph_separator.h: Likewise.
30551         * lib/unictype/pr_pattern_syntax.h: Likewise.
30552         * lib/unictype/pr_pattern_white_space.h: Likewise.
30553         * lib/unictype/pr_private_use.h: Likewise.
30554         * lib/unictype/pr_punctuation.h: Likewise.
30555         * lib/unictype/pr_quotation_mark.h: Likewise.
30556         * lib/unictype/pr_radical.h: Likewise.
30557         * lib/unictype/pr_sentence_terminal.h: Likewise.
30558         * lib/unictype/pr_soft_dotted.h: Likewise.
30559         * lib/unictype/pr_space.h: Likewise.
30560         * lib/unictype/pr_terminal_punctuation.h: Likewise.
30561         * lib/unictype/pr_titlecase.h: Likewise.
30562         * lib/unictype/pr_unassigned_code_value.h: Likewise.
30563         * lib/unictype/pr_unified_ideograph.h: Likewise.
30564         * lib/unictype/pr_uppercase.h: Likewise.
30565         * lib/unictype/pr_variation_selector.h: Likewise.
30566         * lib/unictype/pr_white_space.h: Likewise.
30567         * lib/unictype/pr_xid_continue.h: Likewise.
30568         * lib/unictype/pr_xid_start.h: Likewise.
30569         * lib/unictype/pr_zero_width.h: Likewise.
30570         * lib/unictype/scripts.h: Likewise.
30571         * lib/unictype/scripts_byname.gperf: Likewise.
30572         * lib/unictype/sy_c_ident.h: Likewise.
30573         * lib/unictype/sy_c_whitespace.h: Likewise.
30574         * lib/unictype/sy_java_ident.h: Likewise.
30575         * lib/unictype/sy_java_whitespace.h: Likewise.
30576
30577         * lib/unictype/Makefile: New file.
30578         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
30579         glibc.
30580         * lib/unictype/3level.h: New file, copied from glibc.
30581         * lib/unictype/3levelbit.h: New file.
30582
30583 2007-11-11  Bruno Haible  <bruno@clisp.org>
30584
30585         * modules/gperf: New file.
30586         * modules/iconv_open (Depends-on): Add it.
30587         (Makefile.am): Remove the GPERF definition.
30588
30589 2007-11-11  Bruno Haible  <bruno@clisp.org>
30590
30591         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
30592         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
30593
30594 2007-11-11  Bruno Haible  <bruno@clisp.org>
30595
30596         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
30597         (usage): Remove function.
30598
30599 2007-11-11  Bruno Haible  <bruno@clisp.org>
30600
30601         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
30602         gl_FUNC_CEILF_LIBS.
30603         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
30604         gl_FUNC_CEIL_LIBS.
30605         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
30606         gl_FUNC_CEILL_LIBS.
30607         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
30608         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
30609         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
30610
30611 2007-11-11  Bruno Haible  <bruno@clisp.org>
30612
30613         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
30614         roundf were declared but do not exist on functions.
30615         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
30616         roundl were declared but do not exist on functions.
30617         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
30618         HAVE_FLOORL_AND_CEILL, respectively.
30619         Needed for Sun C on Solaris 10.
30620
30621 2007-11-11  Bruno Haible  <bruno@clisp.org>
30622
30623         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
30624         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
30625         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
30626         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
30627         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
30628         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
30629         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
30630         HAVE_DECL_ROUNDF.
30631         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
30632         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
30633         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
30634         of HAVE_DECL_ROUND*.
30635         * modules/math (Makefile.am): Update.
30636
30637 2007-11-10  Bruno Haible  <bruno@clisp.org>
30638
30639         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
30640         ptrdiff_t as m4/intl.m4.
30641
30642 2007-11-10  Jim Meyering  <meyering@redhat.com>
30643
30644         Avoid link failure for the argmatch test.
30645         * tests/test-argmatch.c (usage): Define function to avoid a link
30646         failure: argmatch_die requires a usage function.
30647
30648 2007-11-09  Bruno Haible  <bruno@clisp.org>
30649
30650         * doc/functions/snprintf.texi: Mention BeOS deficiency.
30651         * doc/functions/vsnprintf.texi: Likewise.
30652         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
30653         with a size argument < 2.
30654
30655 2007-11-09  Bruno Haible  <bruno@clisp.org>
30656
30657         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
30658         buffer. Fixes an inefficiency introduced on 2007-11-03.
30659
30660 2007-11-09  Bruno Haible  <bruno@clisp.org>
30661
30662         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
30663         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
30664
30665 2007-11-08  Jim Meyering  <meyering@redhat.com>
30666
30667         Change cache variable name prefix "jm_" to "gl_" everywhere.
30668         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
30669         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
30670         * m4/uptime.m4: s/gl_/jm_/
30671
30672 2007-11-07  Bruno Haible  <bruno@clisp.org>
30673
30674         Update to GNU gettext 0.17.
30675         * m4/intl.m4: Update to GNU gettext 0.17.
30676         * m4/po.m4: Likewise.
30677         * modules/gettext (Files): Remove m4/ulonglong.m4.
30678         (configure.ac): Require gettext infrastructure from version 0.17.
30679
30680 2007-11-06  Bruno Haible  <bruno@clisp.org>
30681
30682         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
30683         symbolic values are not defined in a public header.
30684         * lib/freadable.c (freadable) [QNX]: Likewise.
30685         * lib/freadahead.c (freadahead) [QNX]: Likewise.
30686         * lib/freading.c (freading) [QNX]: Likewise.
30687         * lib/fseterr.c (fseterr) [QNX]: Likewise.
30688         * lib/fwritable.c (fwritable) [QNX]: Likewise.
30689         * lib/fwriting.c (fwriting) [QNX]: Likewise.
30690         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
30691         Reported by Alain Magloire.
30692
30693         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
30694
30695 2007-11-05  Bruno Haible  <bruno@clisp.org>
30696
30697         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
30698         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
30699         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
30700         Reported by Eric Blake.
30701
30702 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30703             Bruno Haible  <bruno@clisp.org>
30704
30705         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
30706         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
30707         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
30708         (malloc): Undefine also before including <stdlib.h>.
30709         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
30710         Needed on OSF/1 4.0.
30711
30712 2007-11-05  Jim Meyering  <meyering@redhat.com>
30713
30714         git-version-gen: sync from coreutils.
30715         * build-aux/git-version-gen: Add comments.
30716         Change the first '-' to '.' in the snapshot version string,
30717         e.g., 6.9-377-08144 -> 6.9.377-08144
30718         Remove first parameter.
30719         Don't declare a version "-dirty" merely because a time
30720         stamp has changed.
30721
30722 2007-11-04  Bruno Haible  <bruno@clisp.org>
30723
30724         * lib/lock.h: Protect all macro definitions containing an 'if'
30725         statement through a "do { ... } while (0)".
30726         * lib/tls.h: Likewise.
30727
30728 2007-11-04  Bruno Haible  <bruno@clisp.org>
30729
30730         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
30731
30732 2007-11-04  Bruno Haible  <bruno@clisp.org>
30733
30734         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
30735         * modules/fprintf-posix (Depends-on): Add nocrash.
30736         * modules/snprintf-posix (Depends-on): Likewise.
30737         * modules/sprintf-posix (Depends-on): Likewise.
30738         * modules/vasnprintf-posix (Depends-on): Likewise.
30739         * modules/vasprintf-posix (Depends-on): Likewise.
30740         * modules/vfprintf-posix (Depends-on): Likewise.
30741         * modules/vsnprintf-posix (Depends-on): Likewise.
30742         * modules/vsprintf-posix (Depends-on): Likewise.
30743         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
30744         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
30745         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
30746         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
30747         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
30748         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
30749         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
30750
30751 2007-11-04  Bruno Haible  <bruno@clisp.org>
30752
30753         * modules/nocrash: New file.
30754         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
30755         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
30756
30757 2007-11-04  Bruno Haible  <bruno@clisp.org>
30758
30759         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
30760         precision handling.
30761         * tests/test-vasprintf-posix.c (test_function): Likewise.
30762         * tests/test-snprintf-posix.h (test_function): Likewise.
30763         * tests/test-sprintf-posix.h (test_function): Likewise.
30764
30765         Fix *printf behaviour for large precisions on mingw and BeOS.
30766         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
30767         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
30768         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
30769         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
30770         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30771         gl_PRINTF_PRECISION and test its result. Invoke
30772         gl_PREREQ_VASNPRINTF_PRECISION.
30773         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30774         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30775         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30776         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30777         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30778         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30779         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30780         * doc/functions/fprintf.texi: Update.
30781         * doc/functions/printf.texi: Update.
30782         * doc/functions/snprintf.texi: Update.
30783         * doc/functions/sprintf.texi: Update.
30784         * doc/functions/vfprintf.texi: Update.
30785         * doc/functions/vprintf.texi: Update.
30786         * doc/functions/vsnprintf.texi: Update.
30787         * doc/functions/vsprintf.texi: Update.
30788
30789 2007-11-04  Bruno Haible  <bruno@clisp.org>
30790
30791         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
30792
30793 2007-11-04  Bruno Haible  <bruno@clisp.org>
30794
30795         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
30796         Reported by Sylvain Beucler <beuc@gnu.org>.
30797
30798 2007-11-03  Bruno Haible  <bruno@clisp.org>
30799
30800         * tests/test-fprintf-posix2.sh: New file.
30801         * tests/test-fprintf-posix2.c: New file.
30802         * modules/fprintf-posix-tests (Files): Add them.
30803         (TESTS): Add test-fprintf-posix2.sh.
30804         (configure.ac): Check for getrlimit and setrlimit.
30805         (check_PROGRAMS): Add test-fprintf-posix2.
30806
30807         * tests/test-printf-posix2.sh: New file.
30808         * tests/test-printf-posix2.c: New file.
30809         * modules/printf-posix-tests (Files): Add them.
30810         (TESTS): Add test-printf-posix2.sh.
30811         (configure.ac): Check for getrlimit and setrlimit.
30812         (check_PROGRAMS): Add test-printf-posix2.
30813
30814         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
30815         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
30816         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
30817         (decode_double): New function, copied from decode_long_double.
30818         (scale10_round_decimal_decoded): New function, extracted from
30819         scale10_round_decimal_long_double.
30820         (scale10_round_decimal_long_double): Use it.
30821         (scale10_round_decimal_double): New function.
30822         (floorlog10): New function.
30823         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
30824         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
30825         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
30826         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30827         gl_PRINTF_ENOMEM and test its result. Invoke
30828         gl_PREREQ_VASNPRINTF_ENOMEM.
30829         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30830         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30831         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30832         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30833         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30834         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30835         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30836         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
30837         * modules/snprintf-posix (Depends-on): Likewise.
30838         * modules/sprintf-posix (Depends-on): Likewise.
30839         * modules/vasnprintf-posix (Depends-on): Likewise.
30840         * modules/vasprintf-posix (Depends-on): Likewise.
30841         * modules/vfprintf-posix (Depends-on): Likewise.
30842         * modules/vsnprintf-posix (Depends-on): Likewise.
30843         * modules/vsprintf-posix (Depends-on): Likewise.
30844         * doc/functions/fprintf.texi: Update.
30845         * doc/functions/printf.texi: Update.
30846         * doc/functions/snprintf.texi: Update.
30847         * doc/functions/sprintf.texi: Update.
30848         * doc/functions/vfprintf.texi: Update.
30849         * doc/functions/vprintf.texi: Update.
30850         * doc/functions/vsnprintf.texi: Update.
30851         * doc/functions/vsprintf.texi: Update.
30852
30853 2007-11-03  Bruno Haible  <bruno@clisp.org>
30854
30855         * modules/frexp-nolibm-tests: New file.
30856
30857         * modules/frexp-nolibm: New file.
30858         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
30859
30860 2007-11-03  Bruno Haible  <bruno@clisp.org>
30861
30862         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
30863         value is C99 compliant.
30864         Needed for OSF/1 5.1.
30865
30866 2007-11-03  Bruno Haible  <bruno@clisp.org>
30867
30868         Fix out-of-memory handling of vasnprintf.
30869         * lib/printf-parse.c: Include <errno.h>.
30870         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
30871         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
30872         is already set.
30873
30874 2007-11-02  Eric Blake  <ebb9@byu.net>
30875
30876         Fix tests on cygwin.
30877         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
30878
30879 2007-11-01  Bruno Haible  <bruno@clisp.org>
30880
30881         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
30882         warning.
30883         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
30884         needed for POSIX compatibility.
30885
30886 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
30887
30888         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
30889         for compatibility with GNU.
30890
30891 2007-11-01  Bruno Haible  <bruno@clisp.org>
30892
30893         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
30894         (putenv): Renamed from rpl_putenv. Change argument type from
30895         'const char *' to 'char *'.
30896         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
30897         of defining putenv in config.h, just set REPLACE_PUTENV.
30898         * modules/putenv (Depends-on): Add stdlib.
30899         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30900         (Include): Use <stdlib.h>.
30901         * lib/stdlib.in.h (putenv): New declaration.
30902         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
30903         REPLACE_PUTENV.
30904         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
30905         REPLACE_PUTENV.
30906         Needed for MacOS X 10.5.0.
30907         Reported by Peter O'Gorman <peter@pogma.com>.
30908
30909 2007-11-01  Jim Meyering  <meyering@redhat.com>
30910
30911         Treat an empty date string exactly like "0".
30912         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
30913         if the remaining date string (to be parsed) is empty, use "0".
30914         Reported by Mischa Molhoek and discussed in this thread:
30915         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
30916
30917 2007-10-31  Bruno Haible  <bruno@clisp.org>
30918
30919         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
30920         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
30921         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
30922         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
30923         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
30924         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
30925
30926 2007-10-31  Bruno Haible  <bruno@clisp.org>
30927
30928         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
30929         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
30930         (AC_TYPE_LONG_LONG_INT): Use it.
30931         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
30932         it as well.
30933         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
30934         to m4/longlong.m4.
30935         * modules/stdint (Files): Remove m4/ulonglong.m4.
30936         * modules/strtoull (Files): Use m4/longlong.m4 instead of
30937         m4/ulonglong.m4.
30938         * modules/strtoumax (Files): Likewise.
30939
30940 2007-10-30  Bruno Haible  <bruno@clisp.org>
30941
30942         * modules/xvasprintf-posix: New file.
30943         Suggested by Eric Blake.
30944
30945 2007-10-30  Bruno Haible  <bruno@clisp.org>
30946
30947         * modules/xprintf-posix-tests: New file.
30948         * tests/test-xprintf-posix.sh: New file.
30949         * tests/test-xprintf-posix.c: New file.
30950         * tests/test-xfprintf-posix.c: New file.
30951
30952         * modules/xprintf-posix: New file.
30953
30954 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30955
30956         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
30957         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
30958         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
30959
30960 2007-10-29  Bruno Haible  <bruno@clisp.org>
30961
30962         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
30963         contain the special marker '_cv_'.
30964         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
30965         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
30966         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
30967         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
30968         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
30969         Reported by Ralf Wildenhues.
30970
30971 2007-10-29  Bruno Haible  <bruno@clisp.org>
30972
30973         * gnulib-tool (func_import): When --lgpl is not specified, set
30974         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
30975         GPLv3.
30976         Reported by Simon Josefsson.
30977
30978 2007-10-28  Bruno Haible  <bruno@clisp.org>
30979
30980         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
30981         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
30982         HAVE_DECL_ISFINITE.
30983         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30984         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
30985         HAVE_DECL_ISFINITE.
30986
30987 2007-10-28  Bruno Haible  <bruno@clisp.org>
30988
30989         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
30990         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
30991
30992 2007-10-28  Bruno Haible  <bruno@clisp.org>
30993
30994         Fix link errors with Sun C 5.0 on Solaris 10.
30995         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
30996         function is declared but not present in the compiler's libm.
30997         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
30998         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
30999         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
31000         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
31001         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
31002         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
31003         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
31004         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
31005         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
31006         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
31007         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
31008         HAVE_DECL_FLOORL.
31009
31010 2007-10-28  Bruno Haible  <bruno@clisp.org>
31011
31012         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
31013         gl_FUNC_FLOORL. Cache the result.
31014         (gl_FUNC_FLOORL): Use it.
31015         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
31016         gl_FUNC_CEILL. Cache the result.
31017         (gl_FUNC_CEILL): Use it.
31018
31019         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
31020         gl_FUNC_FLOOR. Cache the result.
31021         (gl_FUNC_FLOOR): Use it.
31022         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
31023         gl_FUNC_CEIL. Cache the result.
31024         (gl_FUNC_CEIL): Use it.
31025
31026         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
31027         gl_FUNC_FLOORF. Cache the result.
31028         (gl_FUNC_FLOORF): Use it.
31029         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
31030         gl_FUNC_CEILF. Cache the result.
31031         (gl_FUNC_CEILF): Use it.
31032
31033 2007-10-28  Bruno Haible  <bruno@clisp.org>
31034
31035         * gnulib-tool: Allow specifying the LGPL version number through
31036         --lgpl=2 or --lgpl=3.
31037         (func_usage): Document --lgpl with argument.
31038         Handle --lgpl=... arguments.
31039         (func_import): Recognize also gl_LGPL calls with an argument. When
31040         --lgpl=2 is used and the module's license is just LGPL, report an
31041         error. Set sed_transform_lib_file according to the lgpl variable. In
31042         the generated files, use --lgpl or gl_LGPL invocations with argument,
31043         if necessary.
31044         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
31045         an LGPv2+ license.
31046         * doc/gnulib-tool.texi (Modified imports): Update explanation of
31047         gl_LGPL macro.
31048
31049 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31050             Bruno Haible  <bruno@clisp.org>
31051
31052         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
31053         (u16_uctomb_aux): Likewise.
31054         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
31055         !HAVE_INLINE.
31056         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
31057
31058 2007-10-28  Bruno Haible  <bruno@clisp.org>
31059
31060         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
31061         Invoke AM_GETTEXT_OPTION if it exists.
31062         * modules/vasprintf: Likewise.
31063         * modules/verror: Likewise.
31064         * modules/xprintf: Likewise.
31065         * modules/xvasprintf: Likewise.
31066
31067 2007-10-27  Ben Pfaff  <blp@gnu.org>
31068
31069         * lib/math.in.h: Define isfinite macro and prototypes for
31070         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
31071         implementations.
31072         * m4/math_h.m4: New substitutions for isfinite module.
31073         * lib/isfinite.c: New file.
31074         * m4/isfinite.m4: New file.
31075         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
31076         * modules/isfinite: New file.
31077         * modules/isfinite-tests: New file.
31078         * tests/tests-isfinite.c: New file.
31079         * doc/functions/isfinite.texi: Mention isfinite module.
31080         * MODULES.html.sh: Mention new module.
31081
31082 2007-10-27  Ben Pfaff  <blp@gnu.org>
31083
31084         Ralf Wildenhues reported that Tru64 4.0D declares the round
31085         functions but does not have definitions.
31086         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
31087         cannot be found in any library, set the output variable to
31088         "missing" instead of "".
31089         * m4/round.m4: Also use our substitute if we cannot find round in
31090         any library, even if it is declared.
31091         * m4/roundf.m4: Likewise for roundf.
31092         * m4/roundl.m4: Likewise for roundl.
31093         * lib/math.in.h: Undefine roundf, round, roundl before defining
31094         their replacements, to allow for hypothetical systems where these
31095         may be defined as macros but not available in libraries.
31096
31097 2007-10-27  Bruno Haible  <bruno@clisp.org>
31098
31099         * doc/gnulib.texi: Invoke @firstparagraphindent.
31100         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
31101         changes in gnulib.
31102         (Source changes): New section.
31103
31104 2007-10-26  Bruno Haible  <bruno@clisp.org>
31105
31106         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
31107         borrowed from autoconf.
31108
31109 2007-10-26  Bruno Haible  <bruno@clisp.org>
31110
31111         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
31112         strerror returned the empty string. Needed on HP-UX 11.00.
31113
31114 2007-10-24  Micah Cowan  <micah@cowan.name>
31115
31116         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
31117         * build-aux/bootstrap: Remove support for now-unnecessary option,
31118         --cvs-user, and envvars CVS_USER, CVS_RSH.
31119
31120 2007-10-24  Jim Meyering  <meyering@redhat.com>
31121
31122         Avoid diagnostics from sha1sum when there is no cached checksum.
31123         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
31124         if the po.s1 file hasn't been created yet.
31125
31126         * build-aux/bootstrap: Sync from coreutils:
31127         2007-10-24  Jim Meyering  <meyering@redhat.com>
31128         Get gnulib from the git repository, not from an obsolete cvs one.
31129         * build-aux/bootstrap: Suggestion from Micah Cowan.
31130         2007-10-04  Jim Meyering  <jim@meyering.net>
31131         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
31132         (update_po_files): Work also when there are no .po files in po/.
31133
31134 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
31135
31136         * README: Append ".git" to git and cg examples.
31137         Problem reported by Benoit Sigoure.
31138
31139 2007-10-23  Micah Cowan  <micah@cowan.name>
31140
31141         * users.txt: Add wget.
31142
31143 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31144
31145         Fix linking of some unistdio tests on FreeBSD.
31146         * modules/unistdio/u16-vsnprintf-tests
31147         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
31148         * modules/unistdio/u16-vsprintf-tests
31149         (test_u16_vsnprintf1_LDADD): Likewise.
31150         * modules/unistdio/u32-vsnprintf-tests
31151         (test_u32_vsnprintf1_LDADD): Likewise.
31152         * modules/unistdio/u32-vsprintf-tests
31153         (test_u32_vsprintf1_LDADD): Likewise.
31154         * modules/unistdio/u8-vsnprintf-tests
31155         (test_u8_vsnprintf1_LDADD): Likewise.
31156         * modules/unistdio/u8-vsprintf-tests
31157         (test_u8_vsprintf1_LDADD): Likewise.
31158         * modules/unistdio/ulc-vsnprintf-tests
31159         (test_ulc_vsnprintf1_LDADD): Likewise.
31160         * modules/unistdio/ulc-vsprintf-tests
31161         (test_ulc_vsprintf1_LDADD): Likewise.
31162
31163         Fix linking of some uniconv tests on FreeBSD.
31164         * modules/uniconv/u16-conv-from-enc-tests
31165         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
31166         * modules/uniconv/u16-conv-to-enc-tests
31167         (test_u16_conv_to_enc_LDADD): Likewise.
31168         * modules/uniconv/u16-strconv-from-enc-tests
31169         (test_u16_strconv_from_enc_LDADD): Likewise.
31170         * modules/uniconv/u16-strconv-to-enc-tests
31171         (test_u16_strconv_to_enc_LDADD): Likewise.
31172         * modules/uniconv/u32-conv-from-enc-tests
31173         (test_u32_conv_from_enc_LDADD): Likewise.
31174         * modules/uniconv/u32-conv-to-enc-tests
31175         (test_u32_conv_to_enc_LDADD): Likewise.
31176         * modules/uniconv/u32-strconv-from-enc-tests
31177         (test_u32_strconv_from_enc_LDADD): Likewise.
31178         * modules/uniconv/u32-strconv-to-enc-tests
31179         (test_u32_strconv_to_enc_LDADD): Likewise.
31180         * modules/uniconv/u8-conv-from-enc-tests
31181         (test_u8_conv_from_enc_LDADD): Likewise.
31182         * modules/uniconv/u8-conv-to-enc-tests
31183         (test_u8_conv_to_enc_LDADD): Likewise.
31184         * modules/uniconv/u8-strconv-from-enc-tests
31185         (test_u8_strconv_from_enc_LDADD): Likewise.
31186         * modules/uniconv/u8-strconv-to-enc-tests
31187         (test_u8_strconv_to_enc_LDADD): Likewise.
31188
31189 2007-10-22  Bruno Haible  <bruno@clisp.org>
31190
31191         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
31192         size.
31193
31194 2007-10-22  Eric Blake  <ebb9@byu.net>
31195
31196         Tweak x*printf documentation.
31197         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
31198         variable name and comments.
31199         Suggested by Bruno Haible.
31200
31201 2007-10-22  Bruno Haible  <bruno@clisp.org>
31202
31203         * lib/acl.c (copy_acl): Fix file name in comment.
31204
31205 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
31206
31207         Fix Tru64 problem with stdbool.h.
31208         * lib/stdbool.in.h (false, true):
31209         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
31210         Don't declare as an enum in this situation; it runs afoul of Tru64.
31211         Problem reported by Steven M. Schweda in
31212         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
31213
31214 2007-10-22  Eric Blake  <ebb9@byu.net>
31215
31216         Also wrap vf?printf.
31217         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
31218         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
31219         (xvprintf, xvfprintf): New functions.
31220
31221 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31222
31223         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
31224         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
31225
31226         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
31227         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
31228
31229 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
31230
31231         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
31232         by Bruno Haible.
31233
31234 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31235
31236         * lib/getloadavg.c
31237         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
31238         Undef `sys' after including sys/table.h, for Tru64 4.0D.
31239
31240         * tests/test-i-ring.c: Work for C89.
31241
31242 2007-10-22  Bruno Haible  <bruno@clisp.org>
31243
31244         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
31245         -1u, in preprocessor expression, so that we don't test for the bug
31246         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
31247         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
31248
31249 2007-10-22  Eric Blake  <ebb9@byu.net>
31250
31251         * tests/test-yesno.sh: Silence stderr during test.
31252
31253 2007-10-22  Simon Josefsson  <simon@josefsson.org>
31254
31255         * modules/crypto/gc-camellia: New file.
31256
31257         * m4/gc-camellia.m4: New file.
31258
31259         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
31260
31261         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
31262
31263 2007-10-22  Simon Josefsson  <simon@josefsson.org>
31264
31265         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
31266         --help to stdout.  Reported by sms@antinode.org (Steven
31267         M. Schweda).
31268
31269 2007-10-22  Simon Josefsson  <simon@josefsson.org>
31270
31271         * users.txt: Fix link to libksba.
31272
31273 2007-10-21  Ben Pfaff  <blp@gnu.org>
31274
31275         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
31276         round.c roundf implementation that depends on floorf and ceilf to
31277         be tested unconditionally.
31278
31279 2007-10-21  Ben Pfaff  <blp@gnu.org>
31280
31281         * m4/check-libm-func.m4: Removed.
31282         * m4/check-math-lib.m4: New file.
31283         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
31284         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
31285         definition and lack of AC_LIBOBJ([roundf]).
31286         * m4/roundl.m4: Ditto, and similarly for roundl.
31287         * modules/round: Reference new m4 file.
31288         * modules/roundf: Ditto.
31289         * modules/roundl: Ditto.
31290         * tests/test-round2.c (main): Use ROUND instead of round.
31291         Bug report from Bruno Haible.
31292
31293 2007-10-21  Bruno Haible  <bruno@clisp.org>
31294
31295         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
31296         context.
31297
31298 2007-10-21  Bruno Haible  <bruno@clisp.org>
31299
31300         * tests/test-wcwidth.c (main): Allow negative result for some control
31301         characters.
31302
31303         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
31304         Needed on OSF/1 5.1.
31305
31306 2007-10-21  Bruno Haible  <bruno@clisp.org>
31307
31308         * tests/test-floorf1.c: Include isnanf.h.
31309         (main): Use isnanf() instead of isnan().
31310         * tests/test-ceilf1.c: Include isnanf.h.
31311         (main): Use isnanf() instead of isnan().
31312         * tests/test-truncf1.c: Include isnanf.h.
31313         (main): Use isnanf() instead of isnan().
31314         * tests/test-roundf1.c: Include isnanf.h.
31315         (main): Use isnanf() instead of isnan().
31316
31317 2007-10-21  Eric Blake  <ebb9@byu.net>
31318
31319         * users.txt: Update URL for m4.
31320
31321 2007-10-21  Bruno Haible  <bruno@clisp.org>
31322
31323         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
31324
31325 2007-10-21  Bruno Haible  <bruno@clisp.org>
31326
31327         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
31328         Git's management files if the CVS files are not present.
31329
31330 2007-10-20  Bruno Haible  <bruno@clisp.org>
31331
31332         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
31333         gcc-3.4.x.
31334
31335 2007-10-20  Ben Pfaff  <blp@gnu.org>
31336
31337         * lib/math.in.h: Declare round, roundf, roundl if we are providing
31338         implementations.
31339         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
31340         * lib/round.c: New file.
31341         * lib/roundf.c: New file.
31342         * lib/roundl.c: New file.
31343         * m4/round.m4: New file.
31344         * m4/roundf.m4: New file.
31345         * m4/roundl.m4: New file.
31346         * m4/check-libm-func-m4: New file.
31347         * modules/math: Replace round, roundf, roundl related @VARS@ in
31348         math.in.h.
31349         * modules/round: New file.
31350         * modules/round-tests: New file.
31351         * modules/roundf: New file.
31352         * modules/roundf-tests: New file.
31353         * modules/roundl: New file.
31354         * modules/roundl-tests: New file.
31355         * tests/test-round1.c: New file.
31356         * tests/test-round2.c: New file.
31357         * tests/test-roundf1.c: New file.
31358         * tests/test-roundf2.c: New file.
31359         * tests/test-roundl.c: New file.
31360         * doc/functions/round.texi: Mention round module.
31361         * doc/functions/roundf.texi: Mention roundf module.
31362         * doc/functions/roundl.texi: Mention roundl module.
31363         * MODULES.html.sh: Mention new modules.
31364         Thanks to Bruno Haible for suggestions.
31365
31366 2007-10-20  Jim Meyering  <meyering@redhat.com>
31367
31368         * lib/xprintf.c: Include <config.h> unconditionally.
31369
31370         Change xprintf's license to GPL.
31371         * modules/xprintf (License): s/LGPL/GPL/, since this module
31372         depends on modules (exit and exitfail) which are GPL.
31373         Suggestion from Bruno Haible.
31374
31375         xprintf fixes.
31376         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
31377         Use a clearer diagnostic.
31378         Patch from Bruno Haible.
31379
31380 2007-10-20  Bruno Haible  <bruno@clisp.org>
31381
31382         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
31383         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
31384         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31385
31386 2007-10-20  Bruno Haible  <bruno@clisp.org>
31387
31388         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
31389         precision in the comparison result > x - 1 or similar.
31390         * tests/test-ceilf2.c (correct_result_p): Likewise.
31391         * tests/test-truncf2.c (correct_result_p): Likewise.
31392         * tests/test-trunc2.c (correct_result_p): Likewise.
31393         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31394
31395 2007-10-20  Bruno Haible  <bruno@clisp.org>
31396
31397         * modules/ceil: New file.
31398         * m4/ceil.m4: New file.
31399         * doc/functions/ceil.texi: Mention the 'ceil' module.
31400
31401 2007-10-20  Bruno Haible  <bruno@clisp.org>
31402
31403         * modules/floor: New file.
31404         * m4/floor.m4: New file.
31405         * doc/functions/floor.texi: Mention the 'floor' module.
31406
31407 2007-10-20  Bruno Haible  <bruno@clisp.org>
31408
31409         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
31410         of %a.
31411         * modules/floorf-tests (Depends-on): Likewise.
31412         * modules/truncf-tests (Depends-on): Likewise.
31413         * modules/trunc-tests (Depends-on): Likewise.
31414         Reported by Ben Pfaff.
31415
31416 2007-10-19  Jim Meyering  <meyering@redhat.com>
31417
31418         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
31419         Don't bother testing specific errno values.  Just test ferror.
31420
31421         New module: xprintf
31422         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
31423
31424 2007-10-19  Bruno Haible  <bruno@clisp.org>
31425
31426         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
31427         syntax.
31428         * modules/javaexec (Makefile.am): Likewise.
31429         * modules/relocatable-prog (Makefile.am): Likewise.
31430         Suggested by Jim Meyering.
31431
31432 2007-10-18  Bruno Haible  <bruno@clisp.org>
31433
31434         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
31435         Reported by Jim Meyering.
31436
31437 2007-10-18  Eric Blake  <ebb9@byu.net>
31438
31439         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
31440
31441 2007-10-18  Bruno Haible  <bruno@clisp.org>
31442
31443         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
31444         the format string into writable memory. Needed in Fortify conditions.
31445
31446 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
31447             Bruno Haible  <bruno@clisp.org>
31448
31449         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
31450         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
31451         * modules/trim (Depends-on): Add mbchar.
31452         (configure.ac): Add gl_FUNC_MBRTOWC.
31453         (Makefile.am): Augment lib_SOURCES.
31454
31455 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
31456
31457         Modify glob.c to use fstatat and dirfd, to simplify it.
31458         Suggested by Eric Blake.
31459         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
31460         Don't include <stdbool.h>; not used.
31461         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
31462         (link_exists_p): Simplify implementation, since we can now assume
31463         dirfd and fstatat.
31464         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
31465
31466 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31467
31468         * gnulib-tool (func_get_dependencies): Fix sed script to
31469         match only tests.
31470
31471 2007-10-17  Bruno Haible  <bruno@clisp.org>
31472
31473         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
31474         allow locale names without encoding suffix.
31475         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
31476         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
31477
31478 2007-10-16  Bruno Haible  <bruno@clisp.org>
31479
31480         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
31481         * lib/getgroups.c (getgroups): Likewise.
31482         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
31483
31484 2007-10-16  Bruno Haible  <bruno@clisp.org>
31485
31486         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
31487         * modules/malloc-posix (License): Likewise.
31488         * modules/realloc-posix (License): Likewise.
31489         * modules/calloc-posix (License): Likewise.
31490         * modules/intprops (License): Change from GPL to LGPL, with
31491         Paul Eggert's approval.
31492
31493 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
31494
31495         Merge glibc changes into lib/glob.c.
31496
31497         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
31498         2007-10-15 04:59:03 UTC.  Here are the changes:
31499
31500         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
31501
31502         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
31503
31504         * lib/glob.c: Add some branch prediction throughout.
31505
31506         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
31507
31508         [BZ #5103]
31509         * lib/glob.c (glob): Recognize patterns starting \/.
31510
31511         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
31512
31513         [BZ #3996]
31514         * lib/glob.c (attribute_hidden): Define if not defined.
31515         (glob): Unescape dirname, filename or username when needed and not
31516         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
31517         is NULL.  Handle unescaped [ in pattern without closing ].
31518         Don't pass GLOB_CHECK down to recursive glob for directories.
31519         (__glob_pattern_type): New function.
31520         (__glob_pattern_p): Implement using __glob_pattern_type.
31521         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
31522         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
31523         Remove unreachable code.
31524
31525         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
31526
31527         * lib/glob.c (glob_in_dir): Add some comments and asserts to
31528         explain why there are no leaks.
31529
31530         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
31531
31532         [BZ #3253]
31533         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
31534         time, rather allocate increasingly bigger arrays of pointers, if
31535         possible with alloca, if too large with malloc.
31536
31537 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
31538
31539         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
31540         Problem reported by H.Merijn Brand in
31541         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
31542         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
31543         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
31544
31545 2007-10-15  Bruno Haible  <bruno@clisp.org>
31546
31547         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
31548         with explicit rpl_ prefix.
31549         * lib/fopen.c (fopen): Likewise.
31550         * lib/freopen.c (freopen): Likewise.
31551         * lib/iconv.c (iconv): Likewise.
31552         * lib/iconv_close.c (iconv_close): Likewise.
31553
31554 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31555
31556         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
31557
31558 2007-10-15  Bruno Haible  <bruno@clisp.org>
31559
31560         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
31561         <stddef.h> instead of <stdlib.h> since we only need NULL.
31562         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31563
31564 2007-10-15  Bruno Haible  <bruno@clisp.org>
31565
31566         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
31567         Replace paragraph talking about LIBOBJS.
31568         Reported by Colin Watson <cjwatson@debian.org>.
31569
31570 2007-10-15  Bruno Haible  <bruno@clisp.org>
31571
31572         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
31573         <stdlib.h> before using NULL.
31574
31575 2007-10-15  Simon Josefsson  <simon@josefsson.org>
31576
31577         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
31578         Reported by Albert Chin <china@thewrittenword.com>.
31579
31580 2007-10-14  Bruno Haible  <bruno@clisp.org>
31581
31582         * modules/iconv_open-utf-tests: New file.
31583         * tests/test-iconv-utf.c: New file.
31584
31585         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
31586         * modules/iconv_open-utf: New file.
31587         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
31588         (iconv, iconv_close): New declarations.
31589         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
31590         be defined.
31591         (iconv_open): Add special handling of conversion between UTF-8 and
31592         UTF-{16,32}{BE,LE}.
31593         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
31594         * lib/iconv_close.c: New file.
31595         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
31596         gl_FUNC_ICONV_OPEN.
31597         (gl_FUNC_ICONV_OPEN): Use it.
31598         (gl_FUNC_ICONV_OPEN_UTF): New macro.
31599         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
31600         and REPLACE_ICONV_UTF.
31601         * modules/iconv_open (Depends-on): Add c-strcase.
31602         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
31603         ICONV_CONST.
31604         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
31605
31606 2007-10-13  Albert Chin  <china@thewrittenword.com>
31607             Bruno Haible  <bruno@clisp.org>
31608
31609         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
31610         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
31611
31612 2007-10-13  Bruno Haible  <bruno@clisp.org>
31613
31614         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
31615         defined, use the ISO C99 inline semantics.
31616         * lib/argp.h (ARGP_EI): Likewise.
31617
31618 2007-10-13  Bruno Haible  <bruno@clisp.org>
31619
31620         Handle 'inline' change in gcc 4.3.0.
31621         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
31622         argp_fmtstream_write, argp_fmtstream_set_lmargin,
31623         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
31624         argp_fmtstream_point): Disable 'extern' declaration if the function
31625         definition is going to be provided inline.
31626         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
31627         semantics, not the ISO C99 inline semantics.
31628         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
31629         'extern' declaration if the function definition is going to be provided
31630         inline.
31631         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
31632         the GNU C inline semantics, not the ISO C99 inline semantics. With
31633         GCC 4.2, avoid a warning.
31634
31635 2007-10-13  Bruno Haible  <bruno@clisp.org>
31636
31637         * lib/freading.h (freading): Enable the use of __freading for
31638         glibc >= 2.7.
31639         * lib/freading.c (freading): Likewise.
31640
31641 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
31642
31643         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
31644         "warning: C99 inline functions are not supported; using GNU89".
31645
31646 2007-10-12  Bruno Haible  <bruno@clisp.org>
31647
31648         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
31649         of 2.
31650         * tests/test-ceilf2.c: New file.
31651         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
31652
31653         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
31654         * modules/ceilf-tests: Update.
31655
31656 2007-10-12  Bruno Haible  <bruno@clisp.org>
31657
31658         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
31659         of 2.
31660         * tests/test-floorf2.c: New file.
31661         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
31662
31663         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
31664         * modules/floorf-tests: Update.
31665
31666 2007-10-12  Bruno Haible  <bruno@clisp.org>
31667
31668         * tests/test-trunc2.c: New file.
31669         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
31670
31671         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
31672         * modules/trunc-tests: Update.
31673
31674 2007-10-12  Bruno Haible  <bruno@clisp.org>
31675
31676         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
31677         of 2.
31678         * tests/test-truncf2.c: New file.
31679         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
31680
31681         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
31682         * modules/truncf-tests: Update.
31683
31684 2007-10-11  Eric Blake  <ebb9@byu.net>
31685
31686         Don't claim strerror is broken on Interix.
31687         * doc/functions/strerror.texi (strerror): Known broken systems are
31688         now Solaris 8, and not Interix.
31689         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
31690         Interix on cross-compile.
31691         Reported by Martin Koeppe in
31692         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
31693
31694 2007-10-11  Bruno Haible  <bruno@clisp.org>
31695
31696         * modules/i-ring-tests: New file.
31697         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
31698         instead of assert.
31699
31700 2007-10-11  Bruno Haible  <bruno@clisp.org>
31701
31702         * modules/filenamecat-tests: New file.
31703         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
31704         * lib/filenamecat.c: Remove test code.
31705
31706 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
31707
31708         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
31709
31710         * lib/strerror.c: Include <string.h> always, to test interface,
31711         and to remove the need for the dummy.
31712         Include intprops.h to compute width instead of doing it ourselves
31713         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
31714         (strerror): Define it to return NULL if there's no system strerror.
31715         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
31716         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
31717         ancient pre-strerror Unix systems well any more.  Saying "unknown
31718         system error" is enough.
31719         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
31720         simpler strerror.c implementation.
31721         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
31722         Simplify the tests to reflect the simpler strerror implementation.
31723         * modules/strerror (Depends-on): Add intprops.
31724
31725 2007-10-09  Eric Blake  <ebb9@byu.net>
31726
31727         Silence test-fpending.
31728         * modules/fpending-tests (Files): Add wrapper script.
31729         * tests/test-fpending.sh: New file.
31730
31731 2007-10-09  Bruno Haible  <bruno@clisp.org>
31732
31733         * MODULES.html.sh (func_module): Don't create a hyperlink for
31734         function names like 'printf_frexp'.
31735         (Misc): Add crc, memxor.
31736         (Characteristics of floating types): New section.
31737         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
31738         isnanf-nolibm, signbit, trunc, truncf, truncl.
31739         (Enhancements for ISO C 99 functions): New subsection Input/output.
31740         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
31741         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
31742         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
31743         (Compatibility checks for POSIX:2001 functions): Add clock-time.
31744         (Enhancements for POSIX:2001 functions): Add chdir-long.
31745         (File system functions): Add areadlink, chdir-safer, read-file.
31746         Remove cycle-check.
31747         (File system as inode set): New section.
31748         (Date and time): Add gethrxtime.
31749         (Multithreading): Add openmp.
31750         (Internationalization functions): Add localename.
31751         (Unicode string functions): Add unistr/u*-mbsnlen.
31752         (Support for maintaining and releasing projects): Add git-version-gen.
31753         (Lone files): Remove directories.
31754
31755 2007-10-08  Ben Pfaff  <blp@gnu.org>
31756
31757         * lib/xmalloca.h: Fix typo in comment.
31758
31759 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
31760
31761         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
31762         when avoiding problems with integer overflow.  Use a portable test
31763         instead.
31764
31765 2007-10-08  Simon Josefsson  <simon@josefsson.org>
31766
31767         * modules/dummy (License): Change to LGPLv2+.
31768         * modules/float (License): Likewise
31769         * modules/realloc (License): Likewise
31770         * modules/stdlib (License): Likewise
31771
31772 2007-10-07  Bruno Haible  <bruno@clisp.org>
31773
31774         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
31775         * floor.c (TWO_MANT_DIG): Likewise.
31776         * ceil.c (TWO_MANT_DIG): Likewise.
31777         Reported by Ben Pfaff.
31778
31779 2007-10-07  Bruno Haible  <bruno@clisp.org>
31780
31781         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
31782         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
31783         * lib/frexp.c (FUNC): Likewise.
31784         * lib/printf-frexp.h (printf_frexp): Likewise.
31785         * lib/printf-frexpl.h (printf_frexpl): Likewise.
31786         * lib/printf-frexp.c (FUNC): Likewise.
31787         Suggested by Jim Meyering.
31788
31789 2007-10-07  Jim Meyering  <meyering@redhat.com>
31790
31791         Make xnanosleep's integer overflow test more robust.
31792         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
31793         so that gcc-4.3.0 doesn't optimize away this test for overflow.
31794
31795 2007-10-07  Bruno Haible  <bruno@clisp.org>
31796
31797         * NEWS: Mention the license change.
31798
31799         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
31800         abbreviations in the modules files.
31801
31802         Change copyright notice from GPLv2+ to GPLv3+.
31803         * README: Change copyright notice.
31804         * MODULES.html.sh: Likewise.
31805         * build-aux/bootstrap.conf: Likewise.
31806         * build-aux/config.libpath: Likewise.
31807         * build-aux/csharpcomp.sh.in: Likewise.
31808         * build-aux/csharpexec.sh.in: Likewise.
31809         * build-aux/install-reloc: Likewise.
31810         * build-aux/javacomp.sh.in: Likewise.
31811         * build-aux/javaexec.sh.in: Likewise.
31812         * build-aux/ldd.sh.in: Likewise.
31813         * build-aux/reloc-ldflags: Likewise.
31814         * build-aux/relocatable.sh.in: Likewise.
31815         * build-aux/x-to-1.in: Likewise.
31816         * check-module: Likewise.
31817         * config/srclistvars.sh: Likewise.
31818         * gnulib-tool: Likewise.
31819         * lib/acl-internal.h: Likewise.
31820         * lib/acl.c: Likewise.
31821         * lib/acl.h: Likewise.
31822         * lib/acl_entries.c: Likewise.
31823         * lib/areadlink-with-size.c: Likewise.
31824         * lib/areadlink.c: Likewise.
31825         * lib/areadlink.h: Likewise.
31826         * lib/argmatch.c: Likewise.
31827         * lib/argmatch.h: Likewise.
31828         * lib/argp-ba.c: Likewise.
31829         * lib/argp-eexst.c: Likewise.
31830         * lib/argp-fmtstream.c: Likewise.
31831         * lib/argp-fmtstream.h: Likewise.
31832         * lib/argp-fs-xinl.c: Likewise.
31833         * lib/argp-help.c: Likewise.
31834         * lib/argp-namefrob.h: Likewise.
31835         * lib/argp-parse.c: Likewise.
31836         * lib/argp-pin.c: Likewise.
31837         * lib/argp-pv.c: Likewise.
31838         * lib/argp-pvh.c: Likewise.
31839         * lib/argp-xinl.c: Likewise.
31840         * lib/argp.h: Likewise.
31841         * lib/at-func.c: Likewise.
31842         * lib/atanl.c: Likewise.
31843         * lib/backupfile.c: Likewise.
31844         * lib/backupfile.h: Likewise.
31845         * lib/basename.c: Likewise.
31846         * lib/binary-io.h: Likewise.
31847         * lib/byteswap.in.h: Likewise.
31848         * lib/c-stack.c: Likewise.
31849         * lib/c-stack.h: Likewise.
31850         * lib/c-strcasestr.c: Likewise.
31851         * lib/c-strcasestr.h: Likewise.
31852         * lib/c-strstr.c: Likewise.
31853         * lib/c-strstr.h: Likewise.
31854         * lib/c-strtod.c: Likewise.
31855         * lib/calloc.c: Likewise.
31856         * lib/canon-host.c: Likewise.
31857         * lib/canon-host.h: Likewise.
31858         * lib/canonicalize-lgpl.c: Likewise.
31859         * lib/canonicalize.c: Likewise.
31860         * lib/canonicalize.h: Likewise.
31861         * lib/ceil.c: Likewise.
31862         * lib/ceilf.c: Likewise.
31863         * lib/ceill.c: Likewise.
31864         * lib/chdir-long.c: Likewise.
31865         * lib/chdir-long.h: Likewise.
31866         * lib/chdir-safer.c: Likewise.
31867         * lib/chdir-safer.h: Likewise.
31868         * lib/chown.c: Likewise.
31869         * lib/classpath.c: Likewise.
31870         * lib/classpath.h: Likewise.
31871         * lib/clean-temp.c: Likewise.
31872         * lib/clean-temp.h: Likewise.
31873         * lib/cloexec.c: Likewise.
31874         * lib/close-stream.c: Likewise.
31875         * lib/closein.c: Likewise.
31876         * lib/closein.h: Likewise.
31877         * lib/closeout.c: Likewise.
31878         * lib/closeout.h: Likewise.
31879         * lib/concat-filename.c: Likewise.
31880         * lib/copy-file.c: Likewise.
31881         * lib/copy-file.h: Likewise.
31882         * lib/count-one-bits.h: Likewise.
31883         * lib/crc.c: Likewise.
31884         * lib/crc.h: Likewise.
31885         * lib/creat-safer.c: Likewise.
31886         * lib/csharpcomp.c: Likewise.
31887         * lib/csharpcomp.h: Likewise.
31888         * lib/csharpexec.c: Likewise.
31889         * lib/csharpexec.h: Likewise.
31890         * lib/cycle-check.c: Likewise.
31891         * lib/cycle-check.h: Likewise.
31892         * lib/diacrit.c: Likewise.
31893         * lib/diacrit.h: Likewise.
31894         * lib/diffseq.h: Likewise.
31895         * lib/dirchownmod.c: Likewise.
31896         * lib/dirent.in.h: Likewise.
31897         * lib/dirfd.c: Likewise.
31898         * lib/dirfd.h: Likewise.
31899         * lib/dirname.c: Likewise.
31900         * lib/dirname.h: Likewise.
31901         * lib/dummy.c: Likewise.
31902         * lib/dup-safer.c: Likewise.
31903         * lib/dup2.c: Likewise.
31904         * lib/eealloc.h: Likewise.
31905         * lib/error.c: Likewise.
31906         * lib/error.h: Likewise.
31907         * lib/euidaccess.c: Likewise.
31908         * lib/exclude.c: Likewise.
31909         * lib/exclude.h: Likewise.
31910         * lib/execute.c: Likewise.
31911         * lib/execute.h: Likewise.
31912         * lib/exitfail.c: Likewise.
31913         * lib/exitfail.h: Likewise.
31914         * lib/expl.c: Likewise.
31915         * lib/fatal-signal.c: Likewise.
31916         * lib/fatal-signal.h: Likewise.
31917         * lib/fbufmode.c: Likewise.
31918         * lib/fbufmode.h: Likewise.
31919         * lib/fchdir.c: Likewise.
31920         * lib/fchmodat.c: Likewise.
31921         * lib/fchownat.c: Likewise.
31922         * lib/fcntl--.h: Likewise.
31923         * lib/fcntl-safer.h: Likewise.
31924         * lib/fcntl.in.h: Likewise.
31925         * lib/fd-safer.c: Likewise.
31926         * lib/fflush.c: Likewise.
31927         * lib/file-has-acl.c: Likewise.
31928         * lib/file-set.c: Likewise.
31929         * lib/file-type.c: Likewise.
31930         * lib/file-type.h: Likewise.
31931         * lib/fileblocks.c: Likewise.
31932         * lib/filemode.c: Likewise.
31933         * lib/filemode.h: Likewise.
31934         * lib/filename.h: Likewise.
31935         * lib/filenamecat.c: Likewise.
31936         * lib/filenamecat.h: Likewise.
31937         * lib/findprog.c: Likewise.
31938         * lib/findprog.h: Likewise.
31939         * lib/float.in.h: Likewise.
31940         * lib/floor.c: Likewise.
31941         * lib/floorf.c: Likewise.
31942         * lib/floorl.c: Likewise.
31943         * lib/fopen-safer.c: Likewise.
31944         * lib/fopen.c: Likewise.
31945         * lib/fpending.c: Likewise.
31946         * lib/fpending.h: Likewise.
31947         * lib/fprintf.c: Likewise.
31948         * lib/fprintftime.h: Likewise.
31949         * lib/fpucw.h: Likewise.
31950         * lib/fpurge.c: Likewise.
31951         * lib/fpurge.h: Likewise.
31952         * lib/freadable.c: Likewise.
31953         * lib/freadable.h: Likewise.
31954         * lib/freadahead.c: Likewise.
31955         * lib/freadahead.h: Likewise.
31956         * lib/freading.c: Likewise.
31957         * lib/freading.h: Likewise.
31958         * lib/free.c: Likewise.
31959         * lib/freopen.c: Likewise.
31960         * lib/frexp.c: Likewise.
31961         * lib/frexpl.c: Likewise.
31962         * lib/fseek.c: Likewise.
31963         * lib/fseterr.c: Likewise.
31964         * lib/fseterr.h: Likewise.
31965         * lib/fstatat.c: Likewise.
31966         * lib/fstrcmp.c: Likewise.
31967         * lib/fstrcmp.h: Likewise.
31968         * lib/fsusage.c: Likewise.
31969         * lib/fsusage.h: Likewise.
31970         * lib/ftell.c: Likewise.
31971         * lib/ftello.c: Likewise.
31972         * lib/fts-cycle.c: Likewise.
31973         * lib/fts.c: Likewise.
31974         * lib/fts_.h: Likewise.
31975         * lib/full-read.c: Likewise.
31976         * lib/full-read.h: Likewise.
31977         * lib/full-write.c: Likewise.
31978         * lib/full-write.h: Likewise.
31979         * lib/fwritable.c: Likewise.
31980         * lib/fwritable.h: Likewise.
31981         * lib/fwriteerror.c: Likewise.
31982         * lib/fwriteerror.h: Likewise.
31983         * lib/fwriting.c: Likewise.
31984         * lib/fwriting.h: Likewise.
31985         * lib/gcd.c: Likewise.
31986         * lib/gcd.h: Likewise.
31987         * lib/getcwd.c: Likewise.
31988         * lib/getdate.h: Likewise.
31989         * lib/getdate.y: Likewise.
31990         * lib/getdomainname.c: Likewise.
31991         * lib/getdomainname.h: Likewise.
31992         * lib/getgroups.c: Likewise.
31993         * lib/gethostname.c: Likewise.
31994         * lib/gethrxtime.c: Likewise.
31995         * lib/gethrxtime.h: Likewise.
31996         * lib/getloadavg.c: Likewise.
31997         * lib/getndelim2.c: Likewise.
31998         * lib/getndelim2.h: Likewise.
31999         * lib/getnline.c: Likewise.
32000         * lib/getnline.h: Likewise.
32001         * lib/getopt.c: Likewise.
32002         * lib/getopt.in.h: Likewise.
32003         * lib/getopt1.c: Likewise.
32004         * lib/getopt_int.h: Likewise.
32005         * lib/getpagesize.h: Likewise.
32006         * lib/getsubopt.c: Likewise.
32007         * lib/gettime.c: Likewise.
32008         * lib/getugroups.c: Likewise.
32009         * lib/getugroups.h: Likewise.
32010         * lib/getusershell.c: Likewise.
32011         * lib/gl_anyavltree_list1.h: Likewise.
32012         * lib/gl_anyavltree_list2.h: Likewise.
32013         * lib/gl_anyhash_list1.h: Likewise.
32014         * lib/gl_anyhash_list2.h: Likewise.
32015         * lib/gl_anylinked_list1.h: Likewise.
32016         * lib/gl_anylinked_list2.h: Likewise.
32017         * lib/gl_anyrbtree_list1.h: Likewise.
32018         * lib/gl_anyrbtree_list2.h: Likewise.
32019         * lib/gl_anytree_list1.h: Likewise.
32020         * lib/gl_anytree_list2.h: Likewise.
32021         * lib/gl_anytree_oset.h: Likewise.
32022         * lib/gl_anytreehash_list1.h: Likewise.
32023         * lib/gl_anytreehash_list2.h: Likewise.
32024         * lib/gl_array_list.c: Likewise.
32025         * lib/gl_array_list.h: Likewise.
32026         * lib/gl_array_oset.c: Likewise.
32027         * lib/gl_array_oset.h: Likewise.
32028         * lib/gl_avltree_list.c: Likewise.
32029         * lib/gl_avltree_list.h: Likewise.
32030         * lib/gl_avltree_oset.c: Likewise.
32031         * lib/gl_avltree_oset.h: Likewise.
32032         * lib/gl_avltreehash_list.c: Likewise.
32033         * lib/gl_avltreehash_list.h: Likewise.
32034         * lib/gl_carray_list.c: Likewise.
32035         * lib/gl_carray_list.h: Likewise.
32036         * lib/gl_linked_list.c: Likewise.
32037         * lib/gl_linked_list.h: Likewise.
32038         * lib/gl_linkedhash_list.c: Likewise.
32039         * lib/gl_linkedhash_list.h: Likewise.
32040         * lib/gl_list.c: Likewise.
32041         * lib/gl_list.h: Likewise.
32042         * lib/gl_oset.c: Likewise.
32043         * lib/gl_oset.h: Likewise.
32044         * lib/gl_rbtree_list.c: Likewise.
32045         * lib/gl_rbtree_list.h: Likewise.
32046         * lib/gl_rbtree_oset.c: Likewise.
32047         * lib/gl_rbtree_oset.h: Likewise.
32048         * lib/gl_rbtreehash_list.c: Likewise.
32049         * lib/gl_rbtreehash_list.h: Likewise.
32050         * lib/gl_sublist.c: Likewise.
32051         * lib/gl_sublist.h: Likewise.
32052         * lib/group-member.c: Likewise.
32053         * lib/group-member.h: Likewise.
32054         * lib/hard-locale.c: Likewise.
32055         * lib/hard-locale.h: Likewise.
32056         * lib/hash-pjw.c: Likewise.
32057         * lib/hash-pjw.h: Likewise.
32058         * lib/hash-triple.c: Likewise.
32059         * lib/hash.c: Likewise.
32060         * lib/hash.h: Likewise.
32061         * lib/human.c: Likewise.
32062         * lib/human.h: Likewise.
32063         * lib/i-ring.c: Likewise.
32064         * lib/i-ring.h: Likewise.
32065         * lib/idcache.c: Likewise.
32066         * lib/imaxabs.c: Likewise.
32067         * lib/imaxdiv.c: Likewise.
32068         * lib/inet_pton.c: Likewise.
32069         * lib/inet_pton.h: Likewise.
32070         * lib/intprops.h: Likewise.
32071         * lib/inttostr.c: Likewise.
32072         * lib/inttostr.h: Likewise.
32073         * lib/inttypes.in.h: Likewise.
32074         * lib/isapipe.c: Likewise.
32075         * lib/isdir.c: Likewise.
32076         * lib/isnan.c: Likewise.
32077         * lib/isnan.h: Likewise.
32078         * lib/isnanf.c: Likewise.
32079         * lib/isnanf.h: Likewise.
32080         * lib/isnanl-nolibm.h: Likewise.
32081         * lib/isnanl.c: Likewise.
32082         * lib/isnanl.h: Likewise.
32083         * lib/javacomp.c: Likewise.
32084         * lib/javacomp.h: Likewise.
32085         * lib/javaexec.c: Likewise.
32086         * lib/javaexec.h: Likewise.
32087         * lib/javaversion.c: Likewise.
32088         * lib/javaversion.h: Likewise.
32089         * lib/javaversion.java: Likewise.
32090         * lib/lbrkprop.h: Likewise.
32091         * lib/lchmod.h: Likewise.
32092         * lib/lchown.c: Likewise.
32093         * lib/ldexpl.c: Likewise.
32094         * lib/linebreak.c: Likewise.
32095         * lib/linebreak.h: Likewise.
32096         * lib/linebuffer.c: Likewise.
32097         * lib/linebuffer.h: Likewise.
32098         * lib/locale.in.h: Likewise.
32099         * lib/logl.c: Likewise.
32100         * lib/long-options.c: Likewise.
32101         * lib/long-options.h: Likewise.
32102         * lib/lstat.c: Likewise.
32103         * lib/lstat.h: Likewise.
32104         * lib/math.in.h: Likewise.
32105         * lib/mbchar.c: Likewise.
32106         * lib/mbchar.h: Likewise.
32107         * lib/mbfile.h: Likewise.
32108         * lib/mbiter.h: Likewise.
32109         * lib/mbscasecmp.c: Likewise.
32110         * lib/mbscasestr.c: Likewise.
32111         * lib/mbschr.c: Likewise.
32112         * lib/mbscspn.c: Likewise.
32113         * lib/mbslen.c: Likewise.
32114         * lib/mbsncasecmp.c: Likewise.
32115         * lib/mbsnlen.c: Likewise.
32116         * lib/mbspbrk.c: Likewise.
32117         * lib/mbspcasecmp.c: Likewise.
32118         * lib/mbsrchr.c: Likewise.
32119         * lib/mbssep.c: Likewise.
32120         * lib/mbsspn.c: Likewise.
32121         * lib/mbsstr.c: Likewise.
32122         * lib/mbstok_r.c: Likewise.
32123         * lib/mbswidth.c: Likewise.
32124         * lib/mbswidth.h: Likewise.
32125         * lib/mbuiter.h: Likewise.
32126         * lib/memcasecmp.c: Likewise.
32127         * lib/memcasecmp.h: Likewise.
32128         * lib/memchr.c: Likewise.
32129         * lib/memcmp.c: Likewise.
32130         * lib/memcoll.c: Likewise.
32131         * lib/memcoll.h: Likewise.
32132         * lib/memcpy.c: Likewise.
32133         * lib/memrchr.c: Likewise.
32134         * lib/mkancesdirs.c: Likewise.
32135         * lib/mkdir-p.c: Likewise.
32136         * lib/mkdir-p.h: Likewise.
32137         * lib/mkdir.c: Likewise.
32138         * lib/mkdirat.c: Likewise.
32139         * lib/mkdtemp.c: Likewise.
32140         * lib/mkstemp-safer.c: Likewise.
32141         * lib/mkstemp.c: Likewise.
32142         * lib/modechange.c: Likewise.
32143         * lib/modechange.h: Likewise.
32144         * lib/mountlist.c: Likewise.
32145         * lib/mountlist.h: Likewise.
32146         * lib/mpsort.c: Likewise.
32147         * lib/nanosleep.c: Likewise.
32148         * lib/obstack.c: Likewise.
32149         * lib/obstack.h: Likewise.
32150         * lib/open-safer.c: Likewise.
32151         * lib/open.c: Likewise.
32152         * lib/openat-die.c: Likewise.
32153         * lib/openat-priv.h: Likewise.
32154         * lib/openat-proc.c: Likewise.
32155         * lib/openat.c: Likewise.
32156         * lib/openat.h: Likewise.
32157         * lib/pagealign_alloc.c: Likewise.
32158         * lib/pagealign_alloc.h: Likewise.
32159         * lib/physmem.c: Likewise.
32160         * lib/physmem.h: Likewise.
32161         * lib/pipe-safer.c: Likewise.
32162         * lib/pipe.c: Likewise.
32163         * lib/pipe.h: Likewise.
32164         * lib/posixtm.c: Likewise.
32165         * lib/posixtm.h: Likewise.
32166         * lib/posixver.c: Likewise.
32167         * lib/printf-frexp.c: Likewise.
32168         * lib/printf-frexp.h: Likewise.
32169         * lib/printf-frexpl.c: Likewise.
32170         * lib/printf-frexpl.h: Likewise.
32171         * lib/printf.c: Likewise.
32172         * lib/progname.c: Likewise.
32173         * lib/progname.h: Likewise.
32174         * lib/progreloc.c: Likewise.
32175         * lib/putenv.c: Likewise.
32176         * lib/quote.c: Likewise.
32177         * lib/quote.h: Likewise.
32178         * lib/quotearg.c: Likewise.
32179         * lib/quotearg.h: Likewise.
32180         * lib/raise.c: Likewise.
32181         * lib/readline.c: Likewise.
32182         * lib/readline.h: Likewise.
32183         * lib/readlink.c: Likewise.
32184         * lib/readtokens.c: Likewise.
32185         * lib/readtokens.h: Likewise.
32186         * lib/readtokens0.c: Likewise.
32187         * lib/readtokens0.h: Likewise.
32188         * lib/readutmp.c: Likewise.
32189         * lib/readutmp.h: Likewise.
32190         * lib/realloc.c: Likewise.
32191         * lib/relocwrapper.c: Likewise.
32192         * lib/rename-dest-slash.c: Likewise.
32193         * lib/rename.c: Likewise.
32194         * lib/rmdir.c: Likewise.
32195         * lib/rpmatch.c: Likewise.
32196         * lib/safe-read.c: Likewise.
32197         * lib/safe-read.h: Likewise.
32198         * lib/safe-write.c: Likewise.
32199         * lib/safe-write.h: Likewise.
32200         * lib/same-inode.h: Likewise.
32201         * lib/same.c: Likewise.
32202         * lib/same.h: Likewise.
32203         * lib/save-cwd.c: Likewise.
32204         * lib/save-cwd.h: Likewise.
32205         * lib/savedir.c: Likewise.
32206         * lib/savedir.h: Likewise.
32207         * lib/savewd.c: Likewise.
32208         * lib/savewd.h: Likewise.
32209         * lib/search.in.h: Likewise.
32210         * lib/setenv.c: Likewise.
32211         * lib/setenv.h: Likewise.
32212         * lib/settime.c: Likewise.
32213         * lib/sh-quote.c: Likewise.
32214         * lib/sh-quote.h: Likewise.
32215         * lib/sig2str.c: Likewise.
32216         * lib/sig2str.h: Likewise.
32217         * lib/signal.in.h: Likewise.
32218         * lib/signbitd.c: Likewise.
32219         * lib/signbitf.c: Likewise.
32220         * lib/signbitl.c: Likewise.
32221         * lib/sigprocmask.c: Likewise.
32222         * lib/sincosl.c: Likewise.
32223         * lib/sleep.c: Likewise.
32224         * lib/sprintf.c: Likewise.
32225         * lib/sqrtl.c: Likewise.
32226         * lib/stat-time.h: Likewise.
32227         * lib/stdio--.h: Likewise.
32228         * lib/stdio-safer.h: Likewise.
32229         * lib/stdlib--.h: Likewise.
32230         * lib/stdlib-safer.h: Likewise.
32231         * lib/stdlib.in.h: Likewise.
32232         * lib/stpcpy.c: Likewise.
32233         * lib/stpncpy.c: Likewise.
32234         * lib/strchrnul.c: Likewise.
32235         * lib/strcspn.c: Likewise.
32236         * lib/strerror.c: Likewise.
32237         * lib/strftime.c: Likewise.
32238         * lib/strftime.h: Likewise.
32239         * lib/striconveh.c: Likewise.
32240         * lib/striconveh.h: Likewise.
32241         * lib/striconveha.c: Likewise.
32242         * lib/striconveha.h: Likewise.
32243         * lib/stripslash.c: Likewise.
32244         * lib/strnlen1.c: Likewise.
32245         * lib/strnlen1.h: Likewise.
32246         * lib/strtod.c: Likewise.
32247         * lib/strtoimax.c: Likewise.
32248         * lib/strtok_r.c: Likewise.
32249         * lib/strtol.c: Likewise.
32250         * lib/strtoll.c: Likewise.
32251         * lib/strtoul.c: Likewise.
32252         * lib/strtoull.c: Likewise.
32253         * lib/sysexits.in.h: Likewise.
32254         * lib/tempname.c: Likewise.
32255         * lib/tempname.h: Likewise.
32256         * lib/timespec.h: Likewise.
32257         * lib/tls.c: Likewise.
32258         * lib/tls.h: Likewise.
32259         * lib/tmpdir.c: Likewise.
32260         * lib/tmpdir.h: Likewise.
32261         * lib/tmpfile-safer.c: Likewise.
32262         * lib/tmpfile.c: Likewise.
32263         * lib/trigl.c: Likewise.
32264         * lib/trigl.h: Likewise.
32265         * lib/trim.c: Likewise.
32266         * lib/trim.h: Likewise.
32267         * lib/trunc.c: Likewise.
32268         * lib/truncf.c: Likewise.
32269         * lib/truncl.c: Likewise.
32270         * lib/tsearch.c: Likewise.
32271         * lib/unicodeio.c: Likewise.
32272         * lib/unicodeio.h: Likewise.
32273         * lib/unistd--.h: Likewise.
32274         * lib/unistd-safer.h: Likewise.
32275         * lib/unistdio/ulc-fprintf.c: Likewise.
32276         * lib/unistdio/ulc-vfprintf.c: Likewise.
32277         * lib/unlinkdir.c: Likewise.
32278         * lib/unlinkdir.h: Likewise.
32279         * lib/unlocked-io.h: Likewise.
32280         * lib/unsetenv.c: Likewise.
32281         * lib/userspec.c: Likewise.
32282         * lib/utime.c: Likewise.
32283         * lib/utimecmp.c: Likewise.
32284         * lib/utimecmp.h: Likewise.
32285         * lib/utimens.c: Likewise.
32286         * lib/verify.h: Likewise.
32287         * lib/verror.c: Likewise.
32288         * lib/verror.h: Likewise.
32289         * lib/version-etc-fsf.c: Likewise.
32290         * lib/version-etc.c: Likewise.
32291         * lib/version-etc.h: Likewise.
32292         * lib/vfprintf.c: Likewise.
32293         * lib/vprintf.c: Likewise.
32294         * lib/vsprintf.c: Likewise.
32295         * lib/w32spawn.h: Likewise.
32296         * lib/wait-process.c: Likewise.
32297         * lib/wait-process.h: Likewise.
32298         * lib/wcwidth.c: Likewise.
32299         * lib/write-any-file.c: Likewise.
32300         * lib/xalloc-die.c: Likewise.
32301         * lib/xalloc.h: Likewise.
32302         * lib/xasprintf.c: Likewise.
32303         * lib/xgetcwd.c: Likewise.
32304         * lib/xgetcwd.h: Likewise.
32305         * lib/xgetdomainname.c: Likewise.
32306         * lib/xgetdomainname.h: Likewise.
32307         * lib/xgethostname.c: Likewise.
32308         * lib/xmalloc.c: Likewise.
32309         * lib/xmalloca.c: Likewise.
32310         * lib/xmalloca.h: Likewise.
32311         * lib/xmemcoll.c: Likewise.
32312         * lib/xnanosleep.c: Likewise.
32313         * lib/xreadlink.c: Likewise.
32314         * lib/xreadlink.h: Likewise.
32315         * lib/xsetenv.c: Likewise.
32316         * lib/xsetenv.h: Likewise.
32317         * lib/xstriconv.c: Likewise.
32318         * lib/xstriconv.h: Likewise.
32319         * lib/xstrndup.c: Likewise.
32320         * lib/xstrndup.h: Likewise.
32321         * lib/xstrtod.c: Likewise.
32322         * lib/xstrtod.h: Likewise.
32323         * lib/xstrtol-error.c: Likewise.
32324         * lib/xstrtol.c: Likewise.
32325         * lib/xstrtol.h: Likewise.
32326         * lib/xtime.h: Likewise.
32327         * lib/xvasprintf.c: Likewise.
32328         * lib/xvasprintf.h: Likewise.
32329         * lib/yesno.c: Likewise.
32330         * lib/yesno.h: Likewise.
32331         * posix-modules: Likewise.
32332         * tests/test-alloca-opt.c: Likewise.
32333         * tests/test-arcfour.c: Likewise.
32334         * tests/test-arctwo.c: Likewise.
32335         * tests/test-argmatch.c: Likewise.
32336         * tests/test-argp-2.sh: Likewise.
32337         * tests/test-argp.c: Likewise.
32338         * tests/test-arpa_inet.c: Likewise.
32339         * tests/test-array_list.c: Likewise.
32340         * tests/test-array_oset.c: Likewise.
32341         * tests/test-atexit.c: Likewise.
32342         * tests/test-avltree_list.c: Likewise.
32343         * tests/test-avltree_oset.c: Likewise.
32344         * tests/test-avltreehash_list.c: Likewise.
32345         * tests/test-base64.c: Likewise.
32346         * tests/test-binary-io.c: Likewise.
32347         * tests/test-byteswap.c: Likewise.
32348         * tests/test-c-ctype.c: Likewise.
32349         * tests/test-c-strcasecmp.c: Likewise.
32350         * tests/test-c-strcasestr.c: Likewise.
32351         * tests/test-c-strncasecmp.c: Likewise.
32352         * tests/test-c-strstr.c: Likewise.
32353         * tests/test-canonicalize-lgpl.c: Likewise.
32354         * tests/test-canonicalize.c: Likewise.
32355         * tests/test-carray_list.c: Likewise.
32356         * tests/test-ceilf.c: Likewise.
32357         * tests/test-ceill.c: Likewise.
32358         * tests/test-count-one-bits.c: Likewise.
32359         * tests/test-crc.c: Likewise.
32360         * tests/test-dirname.c: Likewise.
32361         * tests/test-fbufmode.c: Likewise.
32362         * tests/test-fcntl.c: Likewise.
32363         * tests/test-fflush.c: Likewise.
32364         * tests/test-floorf.c: Likewise.
32365         * tests/test-floorl.c: Likewise.
32366         * tests/test-fopen.c: Likewise.
32367         * tests/test-fprintf-posix.c: Likewise.
32368         * tests/test-fprintf-posix.h: Likewise.
32369         * tests/test-fpurge.c: Likewise.
32370         * tests/test-freadable.c: Likewise.
32371         * tests/test-freadahead.c: Likewise.
32372         * tests/test-freading.c: Likewise.
32373         * tests/test-freopen.c: Likewise.
32374         * tests/test-frexp.c: Likewise.
32375         * tests/test-frexpl.c: Likewise.
32376         * tests/test-fseek.c: Likewise.
32377         * tests/test-fseeko.c: Likewise.
32378         * tests/test-fseterr.c: Likewise.
32379         * tests/test-fstrcmp.c: Likewise.
32380         * tests/test-ftell.c: Likewise.
32381         * tests/test-ftello.c: Likewise.
32382         * tests/test-fwritable.c: Likewise.
32383         * tests/test-fwriting.c: Likewise.
32384         * tests/test-getaddrinfo.c: Likewise.
32385         * tests/test-getpass.c: Likewise.
32386         * tests/test-gettimeofday.c: Likewise.
32387         * tests/test-hmac-md5.c: Likewise.
32388         * tests/test-hmac-sha1.c: Likewise.
32389         * tests/test-iconv.c: Likewise.
32390         * tests/test-iconvme.c: Likewise.
32391         * tests/test-inttypes.c: Likewise.
32392         * tests/test-isnan.c: Likewise.
32393         * tests/test-isnanf.c: Likewise.
32394         * tests/test-isnanl-nolibm.c: Likewise.
32395         * tests/test-isnanl.c: Likewise.
32396         * tests/test-isnanl.h: Likewise.
32397         * tests/test-ldexpl.c: Likewise.
32398         * tests/test-linked_list.c: Likewise.
32399         * tests/test-linkedhash_list.c: Likewise.
32400         * tests/test-locale.c: Likewise.
32401         * tests/test-localename.c: Likewise.
32402         * tests/test-lock.c: Likewise.
32403         * tests/test-lseek.c: Likewise.
32404         * tests/test-malloca.c: Likewise.
32405         * tests/test-math.c: Likewise.
32406         * tests/test-mbscasecmp.c: Likewise.
32407         * tests/test-mbscasestr1.c: Likewise.
32408         * tests/test-mbscasestr2.c: Likewise.
32409         * tests/test-mbscasestr3.c: Likewise.
32410         * tests/test-mbscasestr4.c: Likewise.
32411         * tests/test-mbschr.c: Likewise.
32412         * tests/test-mbscspn.c: Likewise.
32413         * tests/test-mbsncasecmp.c: Likewise.
32414         * tests/test-mbspbrk.c: Likewise.
32415         * tests/test-mbspcasecmp.c: Likewise.
32416         * tests/test-mbsrchr.c: Likewise.
32417         * tests/test-mbsspn.c: Likewise.
32418         * tests/test-mbsstr1.c: Likewise.
32419         * tests/test-mbsstr2.c: Likewise.
32420         * tests/test-mbsstr3.c: Likewise.
32421         * tests/test-md5.c: Likewise.
32422         * tests/test-memmem.c: Likewise.
32423         * tests/test-netinet_in.c: Likewise.
32424         * tests/test-open.c: Likewise.
32425         * tests/test-printf-frexp.c: Likewise.
32426         * tests/test-printf-frexpl.c: Likewise.
32427         * tests/test-printf-posix.c: Likewise.
32428         * tests/test-printf-posix.h: Likewise.
32429         * tests/test-rbtree_list.c: Likewise.
32430         * tests/test-rbtree_oset.c: Likewise.
32431         * tests/test-rbtreehash_list.c: Likewise.
32432         * tests/test-read-file.c: Likewise.
32433         * tests/test-rijndael.c: Likewise.
32434         * tests/test-search.c: Likewise.
32435         * tests/test-signbit.c: Likewise.
32436         * tests/test-sleep.c: Likewise.
32437         * tests/test-snprintf-posix.c: Likewise.
32438         * tests/test-snprintf-posix.h: Likewise.
32439         * tests/test-snprintf.c: Likewise.
32440         * tests/test-sprintf-posix.c: Likewise.
32441         * tests/test-sprintf-posix.h: Likewise.
32442         * tests/test-stat-time.c: Likewise.
32443         * tests/test-stdbool.c: Likewise.
32444         * tests/test-stdint.c: Likewise.
32445         * tests/test-stdio.c: Likewise.
32446         * tests/test-stdlib.c: Likewise.
32447         * tests/test-stpncpy.c: Likewise.
32448         * tests/test-strcasestr.c: Likewise.
32449         * tests/test-striconv.c: Likewise.
32450         * tests/test-striconveh.c: Likewise.
32451         * tests/test-striconveha.c: Likewise.
32452         * tests/test-string.c: Likewise.
32453         * tests/test-sys_select.c: Likewise.
32454         * tests/test-sys_socket.c: Likewise.
32455         * tests/test-sys_stat.c: Likewise.
32456         * tests/test-sys_time.c: Likewise.
32457         * tests/test-sysexits.c: Likewise.
32458         * tests/test-time.c: Likewise.
32459         * tests/test-tls.c: Likewise.
32460         * tests/test-trunc.c: Likewise.
32461         * tests/test-truncf.c: Likewise.
32462         * tests/test-truncl.c: Likewise.
32463         * tests/test-unistd.c: Likewise.
32464         * tests/test-vasnprintf-posix.c: Likewise.
32465         * tests/test-vasnprintf-posix2.c: Likewise.
32466         * tests/test-vasnprintf.c: Likewise.
32467         * tests/test-vasprintf-posix.c: Likewise.
32468         * tests/test-vasprintf.c: Likewise.
32469         * tests/test-verify.c: Likewise.
32470         * tests/test-vfprintf-posix.c: Likewise.
32471         * tests/test-vprintf-posix.c: Likewise.
32472         * tests/test-vsnprintf-posix.c: Likewise.
32473         * tests/test-vsnprintf.c: Likewise.
32474         * tests/test-vsprintf-posix.c: Likewise.
32475         * tests/test-wchar.c: Likewise.
32476         * tests/test-wctype.c: Likewise.
32477         * tests/test-wcwidth.c: Likewise.
32478         * tests/test-xstrtol.c: Likewise.
32479         * tests/test-xvasprintf.c: Likewise.
32480         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
32481         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
32482         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
32483         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
32484         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
32485         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
32486         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
32487         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
32488         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
32489         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
32490         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
32491         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
32492         * tests/uniname/test-uninames.c: Likewise.
32493         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
32494         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
32495         * tests/unistdio/test-u16-printf1.h: Likewise.
32496         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
32497         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
32498         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
32499         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
32500         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
32501         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
32502         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
32503         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
32504         * tests/unistdio/test-u32-printf1.h: Likewise.
32505         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
32506         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
32507         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
32508         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
32509         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
32510         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
32511         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
32512         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
32513         * tests/unistdio/test-u8-printf1.h: Likewise.
32514         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
32515         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
32516         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
32517         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
32518         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
32519         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
32520         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
32521         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
32522         * tests/unistdio/test-ulc-printf1.h: Likewise.
32523         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
32524         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
32525         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
32526         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
32527         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
32528         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
32529         * tests/uniwidth/test-u16-strwidth.c: Likewise.
32530         * tests/uniwidth/test-u16-width.c: Likewise.
32531         * tests/uniwidth/test-u32-strwidth.c: Likewise.
32532         * tests/uniwidth/test-u32-width.c: Likewise.
32533         * tests/uniwidth/test-u8-strwidth.c: Likewise.
32534         * tests/uniwidth/test-u8-width.c: Likewise.
32535         * tests/uniwidth/test-uc_width.c: Likewise.
32536         * config/srclist-update: Likewise.
32537         (fixlicense): Update to GPLv3+.
32538
32539         Change copyright notice from LGPLv2.1+ to LGPLv3+.
32540         * tests/test-tsearch.c: Change copyright notice.
32541
32542         Change copyright notice from LGPLv2.0+ to LGPLv3+.
32543         * lib/c-strcaseeq.h: Change copyright notice.
32544         * lib/streq.h: Likewise.
32545         * lib/uniconv.h: Likewise.
32546         * lib/uniconv/u-conv-from-enc.h: Likewise.
32547         * lib/uniconv/u-conv-to-enc.h: Likewise.
32548         * lib/uniconv/u-strconv-from-enc.h: Likewise.
32549         * lib/uniconv/u-strconv-to-enc.h: Likewise.
32550         * lib/uniconv/u16-conv-from-enc.c: Likewise.
32551         * lib/uniconv/u16-conv-to-enc.c: Likewise.
32552         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
32553         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
32554         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
32555         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
32556         * lib/uniconv/u32-conv-from-enc.c: Likewise.
32557         * lib/uniconv/u32-conv-to-enc.c: Likewise.
32558         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
32559         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
32560         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
32561         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
32562         * lib/uniconv/u8-conv-from-enc.c: Likewise.
32563         * lib/uniconv/u8-conv-to-enc.c: Likewise.
32564         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
32565         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
32566         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
32567         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
32568         * lib/uniname.h: Likewise.
32569         * lib/uniname/uniname.c: Likewise.
32570         * lib/unistdio.h: Likewise.
32571         * lib/unistdio/u-asnprintf.h: Likewise.
32572         * lib/unistdio/u-asprintf.h: Likewise.
32573         * lib/unistdio/u-printf-args.c: Likewise.
32574         * lib/unistdio/u-printf-args.h: Likewise.
32575         * lib/unistdio/u-printf-parse.h: Likewise.
32576         * lib/unistdio/u-snprintf.h: Likewise.
32577         * lib/unistdio/u-sprintf.h: Likewise.
32578         * lib/unistdio/u-vasprintf.h: Likewise.
32579         * lib/unistdio/u-vsnprintf.h: Likewise.
32580         * lib/unistdio/u-vsprintf.h: Likewise.
32581         * lib/unistdio/u16-asnprintf.c: Likewise.
32582         * lib/unistdio/u16-asprintf.c: Likewise.
32583         * lib/unistdio/u16-printf-parse.c: Likewise.
32584         * lib/unistdio/u16-snprintf.c: Likewise.
32585         * lib/unistdio/u16-sprintf.c: Likewise.
32586         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
32587         * lib/unistdio/u16-u16-asprintf.c: Likewise.
32588         * lib/unistdio/u16-u16-snprintf.c: Likewise.
32589         * lib/unistdio/u16-u16-sprintf.c: Likewise.
32590         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
32591         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
32592         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
32593         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
32594         * lib/unistdio/u16-vasnprintf.c: Likewise.
32595         * lib/unistdio/u16-vasprintf.c: Likewise.
32596         * lib/unistdio/u16-vsnprintf.c: Likewise.
32597         * lib/unistdio/u16-vsprintf.c: Likewise.
32598         * lib/unistdio/u32-asnprintf.c: Likewise.
32599         * lib/unistdio/u32-asprintf.c: Likewise.
32600         * lib/unistdio/u32-printf-parse.c: Likewise.
32601         * lib/unistdio/u32-snprintf.c: Likewise.
32602         * lib/unistdio/u32-sprintf.c: Likewise.
32603         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
32604         * lib/unistdio/u32-u32-asprintf.c: Likewise.
32605         * lib/unistdio/u32-u32-snprintf.c: Likewise.
32606         * lib/unistdio/u32-u32-sprintf.c: Likewise.
32607         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
32608         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
32609         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
32610         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
32611         * lib/unistdio/u32-vasnprintf.c: Likewise.
32612         * lib/unistdio/u32-vasprintf.c: Likewise.
32613         * lib/unistdio/u32-vsnprintf.c: Likewise.
32614         * lib/unistdio/u32-vsprintf.c: Likewise.
32615         * lib/unistdio/u8-asnprintf.c: Likewise.
32616         * lib/unistdio/u8-asprintf.c: Likewise.
32617         * lib/unistdio/u8-printf-parse.c: Likewise.
32618         * lib/unistdio/u8-snprintf.c: Likewise.
32619         * lib/unistdio/u8-sprintf.c: Likewise.
32620         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
32621         * lib/unistdio/u8-u8-asprintf.c: Likewise.
32622         * lib/unistdio/u8-u8-snprintf.c: Likewise.
32623         * lib/unistdio/u8-u8-sprintf.c: Likewise.
32624         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
32625         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
32626         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
32627         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
32628         * lib/unistdio/u8-vasnprintf.c: Likewise.
32629         * lib/unistdio/u8-vasprintf.c: Likewise.
32630         * lib/unistdio/u8-vsnprintf.c: Likewise.
32631         * lib/unistdio/u8-vsprintf.c: Likewise.
32632         * lib/unistdio/ulc-asnprintf.c: Likewise.
32633         * lib/unistdio/ulc-asprintf.c: Likewise.
32634         * lib/unistdio/ulc-printf-parse.c: Likewise.
32635         * lib/unistdio/ulc-snprintf.c: Likewise.
32636         * lib/unistdio/ulc-sprintf.c: Likewise.
32637         * lib/unistdio/ulc-vasnprintf.c: Likewise.
32638         * lib/unistdio/ulc-vasprintf.c: Likewise.
32639         * lib/unistdio/ulc-vsnprintf.c: Likewise.
32640         * lib/unistdio/ulc-vsprintf.c: Likewise.
32641         * lib/unistr.h: Likewise.
32642         * lib/unistr/u-cpy-alloc.h: Likewise.
32643         * lib/unistr/u-cpy.h: Likewise.
32644         * lib/unistr/u-endswith.h: Likewise.
32645         * lib/unistr/u-move.h: Likewise.
32646         * lib/unistr/u-set.h: Likewise.
32647         * lib/unistr/u-startswith.h: Likewise.
32648         * lib/unistr/u-stpcpy.h: Likewise.
32649         * lib/unistr/u-stpncpy.h: Likewise.
32650         * lib/unistr/u-strcat.h: Likewise.
32651         * lib/unistr/u-strcpy.h: Likewise.
32652         * lib/unistr/u-strcspn.h: Likewise.
32653         * lib/unistr/u-strdup.h: Likewise.
32654         * lib/unistr/u-strlen.h: Likewise.
32655         * lib/unistr/u-strncat.h: Likewise.
32656         * lib/unistr/u-strncpy.h: Likewise.
32657         * lib/unistr/u-strnlen.h: Likewise.
32658         * lib/unistr/u-strpbrk.h: Likewise.
32659         * lib/unistr/u-strspn.h: Likewise.
32660         * lib/unistr/u-strstr.h: Likewise.
32661         * lib/unistr/u-strtok.h: Likewise.
32662         * lib/unistr/u16-check.c: Likewise.
32663         * lib/unistr/u16-chr.c: Likewise.
32664         * lib/unistr/u16-cmp.c: Likewise.
32665         * lib/unistr/u16-cpy-alloc.c: Likewise.
32666         * lib/unistr/u16-cpy.c: Likewise.
32667         * lib/unistr/u16-endswith.c: Likewise.
32668         * lib/unistr/u16-mblen.c: Likewise.
32669         * lib/unistr/u16-mbsnlen.c: Likewise.
32670         * lib/unistr/u16-mbtouc-aux.c: Likewise.
32671         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
32672         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
32673         * lib/unistr/u16-mbtouc.c: Likewise.
32674         * lib/unistr/u16-mbtoucr.c: Likewise.
32675         * lib/unistr/u16-move.c: Likewise.
32676         * lib/unistr/u16-next.c: Likewise.
32677         * lib/unistr/u16-prev.c: Likewise.
32678         * lib/unistr/u16-set.c: Likewise.
32679         * lib/unistr/u16-startswith.c: Likewise.
32680         * lib/unistr/u16-stpcpy.c: Likewise.
32681         * lib/unistr/u16-stpncpy.c: Likewise.
32682         * lib/unistr/u16-strcat.c: Likewise.
32683         * lib/unistr/u16-strchr.c: Likewise.
32684         * lib/unistr/u16-strcmp.c: Likewise.
32685         * lib/unistr/u16-strcpy.c: Likewise.
32686         * lib/unistr/u16-strcspn.c: Likewise.
32687         * lib/unistr/u16-strdup.c: Likewise.
32688         * lib/unistr/u16-strlen.c: Likewise.
32689         * lib/unistr/u16-strmblen.c: Likewise.
32690         * lib/unistr/u16-strmbtouc.c: Likewise.
32691         * lib/unistr/u16-strncat.c: Likewise.
32692         * lib/unistr/u16-strncmp.c: Likewise.
32693         * lib/unistr/u16-strncpy.c: Likewise.
32694         * lib/unistr/u16-strnlen.c: Likewise.
32695         * lib/unistr/u16-strpbrk.c: Likewise.
32696         * lib/unistr/u16-strrchr.c: Likewise.
32697         * lib/unistr/u16-strspn.c: Likewise.
32698         * lib/unistr/u16-strstr.c: Likewise.
32699         * lib/unistr/u16-strtok.c: Likewise.
32700         * lib/unistr/u16-to-u32.c: Likewise.
32701         * lib/unistr/u16-to-u8.c: Likewise.
32702         * lib/unistr/u16-uctomb-aux.c: Likewise.
32703         * lib/unistr/u16-uctomb.c: Likewise.
32704         * lib/unistr/u32-check.c: Likewise.
32705         * lib/unistr/u32-chr.c: Likewise.
32706         * lib/unistr/u32-cmp.c: Likewise.
32707         * lib/unistr/u32-cpy-alloc.c: Likewise.
32708         * lib/unistr/u32-cpy.c: Likewise.
32709         * lib/unistr/u32-endswith.c: Likewise.
32710         * lib/unistr/u32-mblen.c: Likewise.
32711         * lib/unistr/u32-mbsnlen.c: Likewise.
32712         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
32713         * lib/unistr/u32-mbtouc.c: Likewise.
32714         * lib/unistr/u32-mbtoucr.c: Likewise.
32715         * lib/unistr/u32-move.c: Likewise.
32716         * lib/unistr/u32-next.c: Likewise.
32717         * lib/unistr/u32-prev.c: Likewise.
32718         * lib/unistr/u32-set.c: Likewise.
32719         * lib/unistr/u32-startswith.c: Likewise.
32720         * lib/unistr/u32-stpcpy.c: Likewise.
32721         * lib/unistr/u32-stpncpy.c: Likewise.
32722         * lib/unistr/u32-strcat.c: Likewise.
32723         * lib/unistr/u32-strchr.c: Likewise.
32724         * lib/unistr/u32-strcmp.c: Likewise.
32725         * lib/unistr/u32-strcpy.c: Likewise.
32726         * lib/unistr/u32-strcspn.c: Likewise.
32727         * lib/unistr/u32-strdup.c: Likewise.
32728         * lib/unistr/u32-strlen.c: Likewise.
32729         * lib/unistr/u32-strmblen.c: Likewise.
32730         * lib/unistr/u32-strmbtouc.c: Likewise.
32731         * lib/unistr/u32-strncat.c: Likewise.
32732         * lib/unistr/u32-strncmp.c: Likewise.
32733         * lib/unistr/u32-strncpy.c: Likewise.
32734         * lib/unistr/u32-strnlen.c: Likewise.
32735         * lib/unistr/u32-strpbrk.c: Likewise.
32736         * lib/unistr/u32-strrchr.c: Likewise.
32737         * lib/unistr/u32-strspn.c: Likewise.
32738         * lib/unistr/u32-strstr.c: Likewise.
32739         * lib/unistr/u32-strtok.c: Likewise.
32740         * lib/unistr/u32-to-u16.c: Likewise.
32741         * lib/unistr/u32-to-u8.c: Likewise.
32742         * lib/unistr/u32-uctomb.c: Likewise.
32743         * lib/unistr/u8-check.c: Likewise.
32744         * lib/unistr/u8-chr.c: Likewise.
32745         * lib/unistr/u8-cmp.c: Likewise.
32746         * lib/unistr/u8-cpy-alloc.c: Likewise.
32747         * lib/unistr/u8-cpy.c: Likewise.
32748         * lib/unistr/u8-endswith.c: Likewise.
32749         * lib/unistr/u8-mblen.c: Likewise.
32750         * lib/unistr/u8-mbsnlen.c: Likewise.
32751         * lib/unistr/u8-mbtouc-aux.c: Likewise.
32752         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
32753         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
32754         * lib/unistr/u8-mbtouc.c: Likewise.
32755         * lib/unistr/u8-mbtoucr.c: Likewise.
32756         * lib/unistr/u8-move.c: Likewise.
32757         * lib/unistr/u8-next.c: Likewise.
32758         * lib/unistr/u8-prev.c: Likewise.
32759         * lib/unistr/u8-set.c: Likewise.
32760         * lib/unistr/u8-startswith.c: Likewise.
32761         * lib/unistr/u8-stpcpy.c: Likewise.
32762         * lib/unistr/u8-stpncpy.c: Likewise.
32763         * lib/unistr/u8-strcat.c: Likewise.
32764         * lib/unistr/u8-strchr.c: Likewise.
32765         * lib/unistr/u8-strcmp.c: Likewise.
32766         * lib/unistr/u8-strcpy.c: Likewise.
32767         * lib/unistr/u8-strcspn.c: Likewise.
32768         * lib/unistr/u8-strdup.c: Likewise.
32769         * lib/unistr/u8-strlen.c: Likewise.
32770         * lib/unistr/u8-strmblen.c: Likewise.
32771         * lib/unistr/u8-strmbtouc.c: Likewise.
32772         * lib/unistr/u8-strncat.c: Likewise.
32773         * lib/unistr/u8-strncmp.c: Likewise.
32774         * lib/unistr/u8-strncpy.c: Likewise.
32775         * lib/unistr/u8-strnlen.c: Likewise.
32776         * lib/unistr/u8-strpbrk.c: Likewise.
32777         * lib/unistr/u8-strrchr.c: Likewise.
32778         * lib/unistr/u8-strspn.c: Likewise.
32779         * lib/unistr/u8-strstr.c: Likewise.
32780         * lib/unistr/u8-strtok.c: Likewise.
32781         * lib/unistr/u8-to-u16.c: Likewise.
32782         * lib/unistr/u8-to-u32.c: Likewise.
32783         * lib/unistr/u8-uctomb-aux.c: Likewise.
32784         * lib/unistr/u8-uctomb.c: Likewise.
32785         * lib/unitypes.h: Likewise.
32786         * lib/uniwidth.h: Likewise.
32787         * lib/uniwidth/cjk.h: Likewise.
32788         * lib/uniwidth/u16-strwidth.c: Likewise.
32789         * lib/uniwidth/u16-width.c: Likewise.
32790         * lib/uniwidth/u32-strwidth.c: Likewise.
32791         * lib/uniwidth/u32-width.c: Likewise.
32792         * lib/uniwidth/u8-strwidth.c: Likewise.
32793         * lib/uniwidth/u8-width.c: Likewise.
32794         * lib/uniwidth/width.c: Likewise.
32795
32796 2007-10-07  Bruno Haible  <bruno@clisp.org>
32797
32798         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
32799         The file is still under LGPL (see modules/inttypes).
32800
32801 2007-10-06  Bruno Haible  <bruno@clisp.org>
32802
32803         * modules/trunc (Dependencies): Add 'extensions'.
32804         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
32805         Reported by Ben Pfaff <blp@gnu.org>.
32806
32807 2007-10-06  Bruno Haible  <bruno@clisp.org>
32808
32809         * modules/freopen-tests: New file.
32810         * tests/test-freopen.c: New file.
32811
32812         * modules/fopen-tests: New file.
32813         * tests/test-fopen.c: New file.
32814
32815         * modules/fopen: New file.
32816         * lib/fopen.c: New file.
32817         * m4/fopen.m4: New file.
32818         * modules/freopen: New file.
32819         * lib/freopen.c: New file.
32820         * m4/freopen.m4: New file.
32821         * lib/stdio.in.h (fopen, freopen): New declarations.
32822         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
32823         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
32824         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
32825         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
32826         * doc/functions/fopen.texi: Mention the 'fopen' module.
32827         * doc/functions/freopen.texi: Mention the 'freopen' module.
32828
32829 2007-10-06  Bruno Haible  <bruno@clisp.org>
32830
32831         * modules/open-tests: New file.
32832         * tests/test-open.c: New file.
32833
32834         * modules/open: New file.
32835         * lib/open.c: New file.
32836         * m4/open.m4: New file.
32837         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
32838         lib/open.c does.
32839         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
32840         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
32841         macros.
32842         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
32843         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
32844         REPLACE_OPEN.
32845         * doc/functions/open.texi: Mention the 'open' module.
32846
32847 2007-10-04  Bruno Haible  <bruno@clisp.org>
32848
32849         * modules/ceill-tests: New file.
32850         * tests/test-ceill.c: New file.
32851
32852         * modules/ceill: New file.
32853         * lib/ceill.c: Replace entire file.
32854         * m4/ceill.m4: New file.
32855         * lib/math.in.h (ceill): Replace declaration.
32856         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
32857         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
32858         * doc/functions/ceill.texi: Mention the 'ceill' module.
32859         * modules/mathl (Files): Remove lib/ceill.c.
32860         (Depends-on): Add ceill.
32861
32862 2007-10-04  Bruno Haible  <bruno@clisp.org>
32863
32864         * modules/ceilf-tests: New file.
32865         * tests/test-ceilf.c: New file.
32866
32867         * modules/ceilf: New file.
32868         * lib/ceil.c: New file.
32869         * lib/ceilf.c: New file.
32870         * m4/ceilf.m4: New file.
32871         * lib/math.in.h (ceilf): New declaration.
32872         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
32873         HAVE_DECL_CEILF.
32874         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
32875         HAVE_DECL_CEILF.
32876         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
32877
32878 2007-10-04  Bruno Haible  <bruno@clisp.org>
32879
32880         * modules/floorl-tests: New file.
32881         * tests/test-floorl.c: New file.
32882
32883         * modules/floorl: New file.
32884         * lib/floorl.c: Replace entire file.
32885         * m4/floorl.m4: New file.
32886         * lib/math.in.h (floorl): Replace declaration.
32887         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
32888         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
32889         * doc/functions/floorl.texi: Mention the 'floorl' module.
32890         * modules/mathl (Files): Remove lib/floorl.c.
32891         (Depends-on): Add floorl.
32892
32893 2007-10-04  Bruno Haible  <bruno@clisp.org>
32894
32895         * modules/floorf-tests: New file.
32896         * tests/test-floorf.c: New file.
32897
32898         * modules/floorf: New file.
32899         * lib/floor.c: New file.
32900         * lib/floorf.c: New file.
32901         * m4/floorf.m4: New file.
32902         * lib/math.in.h (floorf): New declaration.
32903         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
32904         HAVE_DECL_FLOORF.
32905         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
32906         HAVE_DECL_FLOORF.
32907         * doc/functions/floorf.texi: Mention the 'floorf' module.
32908
32909 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
32910             Bruno Haible  <bruno@clisp.org>
32911
32912         Advertise for the Git server instead of the CVS server.
32913         * doc/gnulib-intro.texi (Steady Development): Mention the Git
32914         repository instead of the CVS one.
32915         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
32916         about all VCS systems generically.
32917         * doc/gnulib.texi (Introduction): Capitalize `Git'.
32918
32919 2007-10-04  Bruno Haible  <bruno@clisp.org>
32920
32921         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
32922         means.
32923         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
32924
32925 2007-10-04  Bruno Haible  <bruno@clisp.org>
32926
32927         * modules/truncl-tests: New file.
32928         * tests/test-truncl.c: New file.
32929
32930         * modules/truncl: New file.
32931         * lib/truncl.c: New file.
32932         * m4/truncl.m4: New file.
32933         * lib/math.in.h (truncl): New declaration.
32934         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
32935         HAVE_DECL_TRUNCL.
32936         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
32937         HAVE_DECL_TRUNCL.
32938         * doc/functions/truncl.texi: Mention the 'truncl' module.
32939
32940 2007-10-04  Bruno Haible  <bruno@clisp.org>
32941
32942         * modules/truncf-tests: New file.
32943         * tests/test-truncf.c: New file.
32944
32945         * modules/truncf: New file.
32946         * lib/trunc.c: Make paramerizable through USE_* macros.
32947         * lib/truncf.c: New file.
32948         * m4/truncf.m4: New file.
32949         * lib/math.in.h (truncf): New declaration.
32950         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
32951         HAVE_DECL_TRUNCF.
32952         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
32953         HAVE_DECL_TRUNCF.
32954         * doc/functions/truncf.texi: Mention the 'truncf' module.
32955
32956 2007-10-03  Bruno Haible  <bruno@clisp.org>
32957
32958         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
32959         augmentation also for tests modules.
32960         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
32961         * modules/atexit-tests (Makefile.am): Likewise.
32962         * modules/binary-io-tests (Makefile.am): Likewise.
32963         * modules/c-strcase-tests (Makefile.am): Likewise.
32964         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
32965         * modules/canonicalize-tests (Makefile.am): Likewise.
32966         * modules/closein-tests (Makefile.am): Likewise.
32967         * modules/fprintf-posix-tests (Makefile.am): Likewise.
32968         * modules/freadahead-tests (Makefile.am): Likewise.
32969         * modules/fseek-tests (Makefile.am): Likewise.
32970         * modules/fseeko-tests (Makefile.am): Likewise.
32971         * modules/ftell-tests (Makefile.am): Likewise.
32972         * modules/ftello-tests (Makefile.am): Likewise.
32973         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
32974         * modules/isnanl-tests (Makefile.am): Likewise.
32975         * modules/lseek-tests (Makefile.am): Likewise.
32976         * modules/mbscasecmp-tests (Makefile.am): Likewise.
32977         * modules/mbscasestr-tests (Makefile.am): Likewise.
32978         * modules/mbschr-tests (Makefile.am): Likewise.
32979         * modules/mbscspn-tests (Makefile.am): Likewise.
32980         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
32981         * modules/mbspbrk-tests (Makefile.am): Likewise.
32982         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
32983         * modules/mbsrchr-tests (Makefile.am): Likewise.
32984         * modules/mbsspn-tests (Makefile.am): Likewise.
32985         * modules/mbsstr-tests (Makefile.am): Likewise.
32986         * modules/printf-posix-tests (Makefile.am): Likewise.
32987         * modules/snprintf-posix-tests (Makefile.am): Likewise.
32988         * modules/sprintf-posix-tests (Makefile.am): Likewise.
32989         * modules/tsearch-tests (Makefile.am): Likewise.
32990         * modules/uniname/uniname-tests (Makefile.am): Likewise.
32991         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
32992         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
32993         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
32994         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
32995         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
32996         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
32997         * modules/vprintf-posix-tests (Makefile.am): Likewise.
32998         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
32999         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
33000         * modules/xstrtoimax-tests (Makefile.am): Likewise.
33001         * modules/xstrtol-tests (Makefile.am): Likewise.
33002         * modules/xstrtoumax-tests (Makefile.am): Likewise.
33003         * modules/yesno-tests (Makefile.am): Likewise.
33004
33005 2007-10-03  Bruno Haible  <bruno@clisp.org>
33006
33007         * modules/trunc-tests: New file.
33008         * tests/test-trunc.c: New file.
33009
33010         * modules/trunc: New file.
33011         * lib/trunc.c: New file.
33012         * m4/trunc.m4: New file.
33013         * lib/math.in.h (trunc): New declaration.
33014         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
33015         HAVE_DECL_TRUNC.
33016         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
33017         HAVE_DECL_TRUNC.
33018         * doc/functions/trunc.texi: Mention the 'trunc' module.
33019
33020 2007-10-03  Bruno Haible  <bruno@clisp.org>
33021
33022         * tests/test-fpending.c: New file, mostly copied
33023         from coreutils/lib/t-fpending.c.
33024         * modules/fpending-tests: New file.
33025
33026 2007-10-03  Bruno Haible  <bruno@clisp.org>
33027
33028         Port the stdio extensions to QNX (untested).
33029         * lib/fseterr.c (fseterr): Add support for QNX.
33030         * lib/fbufmode.c (fbufmode): Likewise.
33031         * lib/freadable.c (freadable): Likewise.
33032         * lib/fwritable.c (fwritable): Likewise.
33033         * lib/freading.c (freading): Likewise.
33034         * lib/fwriting.c (fwriting): Likewise.
33035         * lib/freadahead.c (freadahed): Likewise.
33036         * lib/fpurge.c (fpurge): Likewise.
33037         * lib/fseeko.c (rpl_fseeko): Likewise.
33038
33039 2007-10-03  Bruno Haible  <bruno@clisp.org>
33040             Jim Meyering  <jim@meyering.net>
33041             Eric Blake  <ebb9@byu.net>
33042
33043         * doc/relocatable.texi: Use @command instead of @program.
33044
33045 2007-10-02  Jim Meyering  <jim@meyering.net>
33046
33047         Perform one more "_.h" -> ".in.h" substitution.
33048         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
33049         instead of unistd_.h here, too.
33050
33051 2007-10-01  Bruno Haible  <bruno@clisp.org>
33052
33053         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
33054         Needed for the alloca-opt module.
33055
33056 2007-09-30  Bruno Haible  <bruno@clisp.org>
33057
33058         * lib/alloca.in.h: Renamed from lib/alloca_.h.
33059         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
33060         alloca_.h.
33061         * lib/argz.in.h: Renamed from lib/argz_.h.
33062         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
33063         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
33064         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
33065         byteswap_.h.
33066         * lib/dirent.in.h: Renamed from lib/dirent_.h.
33067         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
33068         dirent_.h.
33069         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
33070         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
33071         fcntl_.h.
33072         * lib/float.in.h: Renamed from lib/float_.h.
33073         * modules/float (Files, Makefile.am): Use float.in.h instead of
33074         float_.h.
33075         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
33076         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
33077         fnmatch_.h.
33078         * lib/getopt.in.h: Renamed from lib/getopt_.h.
33079         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
33080         getopt_.h.
33081         * lib/glob.in.h: Renamed from lib/glob_.h.
33082         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
33083         * lib/iconv.in.h: Renamed from lib/iconv_.h.
33084         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
33085         iconv_.h.
33086         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
33087         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
33088         inttypes_.h.
33089         * lib/locale.in.h: Renamed from lib/locale_.h.
33090         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
33091         locale_.h.
33092         * lib/math.in.h: Renamed from lib/math_.h.
33093         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
33094         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
33095         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
33096         of netinet_in_.h. Add dependency.
33097         * lib/poll.in.h: Renamed from lib/poll_.h.
33098         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
33099         * lib/search.in.h: Renamed from lib/search_.h.
33100         * modules/search (Files, Makefile.am): Use search.in.h instead of
33101         search_.h.
33102         * lib/signal.in.h: Renamed from lib/signal_.h.
33103         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
33104         _signal.h.
33105         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
33106         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
33107         stdbool_.h.
33108         * lib/stdint.in.h: Renamed from lib/stdint_.h.
33109         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
33110         stdint_.h.
33111         * lib/stdio.in.h: Renamed from lib/stdio_.h.
33112         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
33113         stdio_.h.
33114         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
33115         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
33116         stdlib_.h.
33117         * lib/string.in.h: Renamed from lib/string_.h.
33118         * modules/string (Files, Makefile.am): Use string.in.h instead of
33119         string_.h.
33120         * doc/gnulib-tool.texi (Initial import): Update.
33121         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
33122         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
33123         of sys_select_.h. Add dependency.
33124         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
33125         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
33126         of sys_socket_.h.
33127         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
33128         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
33129         sys_stat_.h.
33130         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
33131         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
33132         sys_time_.h.
33133         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
33134         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
33135         sysexits_.h.
33136         * lib/time.in.h: Renamed from lib/time_.h.
33137         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
33138         * lib/unistd.in.h: Renamed from lib/unistd_.h.
33139         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
33140         unistd_.h.
33141         * lib/wchar.in.h: Renamed from lib/wchar_.h.
33142         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
33143         wchar_.h.
33144         * lib/wctype.in.h: Renamed from lib/wctype_.h.
33145         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
33146         wctype_.h.
33147         * build-aux/bootstrap (slurp): Update.
33148         * lib/.cppi-disable: Update.
33149
33150 2007-09-30  Bruno Haible  <bruno@clisp.org>
33151
33152         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
33153         Needed on BeOS.
33154
33155 2007-09-30  Bruno Haible  <bruno@clisp.org>
33156
33157         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
33158
33159 2007-09-29  Bruno Haible  <bruno@clisp.org>
33160
33161         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
33162
33163 2007-09-29  Bruno Haible  <bruno@clisp.org>
33164
33165         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
33166         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
33167         * build-aux/install-reloc: Compile also areadlink.c.
33168         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
33169
33170 2007-09-29  Bruno Haible  <bruno@clisp.org>
33171
33172         * gnulib-tool (func_emit_initmacro_done): Indentation.
33173
33174 2007-09-29  Bruno Haible  <bruno@clisp.org>
33175
33176         * README: Add CVS checkout update instructions.
33177         Info from Bob Proulx <bob@proulx.com>.
33178
33179 2007-09-28  Eric Blake  <ebb9@byu.net>
33180
33181         Provide move-if-change.
33182         * build-aux/move-if-change: New file, based on best practice
33183         rather than any canonical upstream location.
33184
33185 2007-09-28  Jim Meyering  <jim@meyering.net>
33186
33187         Fix canonicalize loop-detection corner case.
33188         Do not attempt to stat the symlink values stored via seen_triple.
33189         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
33190         on linux-2.6.18, (but not 2.6.22).
33191         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
33192         triple_compare.  The former compares dev,ino,filename, while the latter
33193         would actually stat dirname(filename) when dev and ino were equal.
33194         * lib/hash-triple.c: Install <string.h>.
33195         (STREQ): Define.
33196         (triple_compare_ino_str): New function.
33197         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
33198
33199 2007-09-28  Eric Blake  <ebb9@byu.net>
33200
33201         Enforce that AC_REPLACE_FUNCS files exist.
33202         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
33203         override check for typos.
33204
33205         Fix test-closein on Solaris 10.
33206         * tests/test-closein.c (main): Don't assume stdin can be inherited
33207         closed on all systems.
33208         * tests/test-closein.sh: Likewise.
33209         Reported by Piotr Tarnowski.
33210
33211 2007-09-28  Jim Meyering  <jim@meyering.net>
33212
33213         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
33214
33215 2007-09-27  Jim Meyering  <jim@meyering.net>
33216
33217         canonicalize: Avoid a false-positive cycle failure.
33218         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
33219         Sort.  Remove cycle-check.
33220         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
33221         not cycle-check.h.
33222         (seen_triple): New function.
33223         (canonicalize_filename_mode): Use it instead of cycle-check.
33224         * tests/test-canonicalize.c: Add a test for this bug.
33225         * tests/test-canonicalize.sh: Set up and run the test.
33226
33227         New module, file-set, from coreutils.
33228         * modules/file-set: Define it.
33229         * lib/file-set.c, lib/file-set.h: Implement.
33230
33231         New module, hash-triple, from coreutils.
33232         * modules/hash-triple: Define it.
33233         * lib/hash-triple.c, lib/hash-triple.h: Implement.
33234
33235 2007-09-25  Eric Blake  <ebb9@byu.net>
33236
33237         Fix strerror on Interix.
33238         * lib/string_.h (strerror): Declare replacement.
33239         * doc/functions/strerror.texi (strerror): Document the Interix
33240         shortcoming.
33241         * modules/string (Makefile.am): Support new hooks.
33242         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
33243         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
33244         gl_FUNC_STRERROR_SEPARATE.
33245         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
33246         * lib/strerror.c (rpl_strerror): Provide replacement.
33247         * modules/strerror (Depends-on): Add string.
33248         (configure.ac): Detect use of module.
33249         * tests/test-strerror.c: New file.
33250         * modules/strerror-tests: New test module.
33251         * modules/argp (Depends-on): Add strerror.
33252         * modules/error (Depends-on): Likewise.
33253         Reported by Martin Koeppe.
33254
33255 2007-09-24  Bruno Haible  <bruno@clisp.org>
33256
33257         * README: Update git instructions.
33258
33259 2007-09-24  Eric Blake  <ebb9@byu.net>
33260
33261         Revert fpending breakage from 2007-09-08.
33262         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
33263         __fpending.c.
33264
33265 2007-09-24  Jim Meyering  <jim@meyering.net>
33266
33267         filenamecat.c: Add a test.
33268         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
33269         showing how the function works when DIR is the empty string.
33270
33271 2007-09-21  Simon Josefsson  <simon@josefsson.org>
33272
33273         * tests/test-canonicalize.sh: Turn on executable bit.
33274
33275 2007-09-19  Eric Blake  <ebb9@byu.net>
33276
33277         * README: Update CVS instructions.
33278
33279 2007-09-18  Bruno Haible  <bruno@clisp.org>
33280
33281         * modules/areadlink: New file.
33282         * lib/areadlink.h (areadlink): New declaration.
33283         * lib/areadlink.c: New file, based on lib/xreadlink.c.
33284
33285 2007-09-17  Jim Meyering  <jim@meyering.net>
33286
33287         * lib/savewd.c (ESTALE) [!defined]: Define.
33288         Reported to be required on Interix by Martin Koeppe.
33289
33290 2007-09-17  Bruno Haible  <bruno@clisp.org>
33291
33292         * gnulib-tool (func_version): Use $version.
33293
33294 2007-09-16  Bruno Haible  <bruno@clisp.org>
33295
33296         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
33297         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
33298         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
33299         Reported by Greg Schafer <gschafer@zip.com.au>.
33300
33301 2007-09-15  Bruno Haible  <bruno@clisp.org>
33302
33303         * gnulib-tool (sed): Try a little harder to make bash understand the
33304         alias.
33305         Reported by Bruce Korb <bruce.korb@gmail.com>.
33306
33307 2007-09-13  Eric Blake  <ebb9@byu.net>
33308
33309         * ChangeLog: Remove conflict markers.
33310
33311 2007-09-13  Simon Josefsson  <simon@josefsson.org>
33312
33313         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
33314         Reported by Bruno Haible <bruno@clisp.org>.
33315
33316 2007-09-12  Bruno Haible  <bruno@clisp.org>
33317
33318         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
33319         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
33320         is not defined.
33321
33322 2007-09-12  Eric Blake  <ebb9@byu.net>
33323
33324         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
33325         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
33326         Autoconf definition.
33327         * modules/euidaccess (Depends-on): Add extensions, for
33328         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
33329         * modules/fnmatch (Depends-on): Likewise.
33330         * modules/getaddrinfo (Depends-on): Likewise.
33331         * modules/getdelim (Depends-on): Likewise.
33332         * modules/getline (Depends-on): Likewise.
33333         * modules/getsubopt (Depends-on): Likewise.
33334         * modules/gettext (Depends-on): Likewise.
33335         * modules/group-member (Depends-on): Likewise.
33336         * modules/mbchar (Depends-on): Likewise.
33337         * modules/memmem (Depends-on): Likewise.
33338         * modules/mempcpy (Depends-on): Likewise.
33339         * modules/memrchr (Depends-on): Likewise.
33340         * modules/pagealign_alloc (Depends-on): Likewise.
33341         * modules/readutmp (Depends-on): Likewise.
33342         * modules/stpcpy (Depends-on): Likewise.
33343         * modules/stpncpy (Depends-on): Likewise.
33344         * modules/strchrnul (Depends-on): Likewise.
33345         * modules/strndup (Depends-on): Likewise.
33346         * modules/strsep (Depends-on): Likewise.
33347         * modules/strverscmp (Depends-on): Likewise.
33348         * modules/vasprintf (Depends-on): Likewise.
33349         * modules/wcwidth (Depends-on): Likewise.
33350         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
33351         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
33352         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
33353         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
33354         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
33355         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
33356         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
33357         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
33358         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
33359         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
33360         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
33361         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
33362         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
33363         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
33364         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
33365         * m4/readutmp.m4 (gl_READUTMP): Likewise.
33366         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
33367         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
33368         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
33369         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
33370         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
33371         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
33372         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
33373         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
33374         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
33375         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33376         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
33377         so that lock.m4 can be used in gettext without extensions module.
33378
33379 2007-09-11  Bruno Haible  <bruno@clisp.org>
33380
33381         * m4/isc-posix.m4: Remove file.
33382         Suggested by Eric Blake.
33383
33384 2007-09-11  Eric Blake  <ebb9@byu.net>
33385
33386         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
33387
33388 2007-09-10  Bruno Haible  <bruno@clisp.org>
33389
33390         * posix-modules: Fix typo in error message.
33391         Reported by Matt <mkraai@beckman.com>.
33392
33393 2007-09-09  Bruno Haible  <bruno@clisp.org>
33394
33395         * doc/functions/getdelim.texi: Update list of platforms lacking the
33396         function.
33397         * doc/functions/getline.texi: Likewise.
33398
33399 2007-09-09  Jim Meyering  <jim@meyering.net>
33400
33401         * lib/hash.c (hash_initialize): Detect calloc failure.
33402         Reported by Bruno Haible.
33403
33404 2007-09-09  Bruno Haible  <bruno@clisp.org>
33405
33406         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
33407         malloc or realloc fails.
33408
33409 2007-09-09  Bruno Haible  <bruno@clisp.org>
33410
33411         * modules/getcwd (Depends-on): Add malloc-posix.
33412         * modules/glob (Depends-on): Likewise.
33413         * modules/putenv (Depends-on): Likewise.
33414         * modules/strdup (Depends-on): Likewise.
33415         * modules/getdelim (Depends-on): Add realloc-posix.
33416         * modules/read-file (Depends-on): Likewise.
33417
33418 2007-09-09  Bruno Haible  <bruno@clisp.org>
33419
33420         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
33421         (gl_FUNC_MALLOC_POSIX): Require it.
33422         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
33423         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
33424         * modules/realloc (Files): Add m4/malloc.m4.
33425         * modules/calloc (Files): Likewise.
33426
33427 2007-09-09  Bruno Haible  <bruno@clisp.org>
33428
33429         * modules/malloc-posix: New file.
33430         * modules/malloc (Depends-on): Add malloc-posix.
33431         * lib/malloc.c: Include errno.h.
33432         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
33433         and a POSIX-compatible malloc into a single function. Set ENOMEM
33434         when returning NULL.
33435         * m4/malloc.m4: New file.
33436         * doc/functions/malloc.texi: Mention the malloc-posix module.
33437         * lib/stdlib_.h (malloc): New declaration.
33438         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
33439         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
33440         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
33441         and HAVE_MALLOC_POSIX.
33442
33443 2007-09-09  Bruno Haible  <bruno@clisp.org>
33444
33445         * modules/realloc-posix: New file.
33446         * modules/realloc (Depends-on): Add realloc-posix.
33447         * lib/realloc.c: Include errno.h.
33448         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
33449         and a POSIX-compatible realloc into a single function. Set ENOMEM
33450         when returning NULL.
33451         * m4/realloc.m4: New file.
33452         * doc/functions/realloc.texi: Mention the realloc-posix module.
33453         * lib/stdlib_.h (realloc): New declaration.
33454         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
33455         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
33456         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
33457         and HAVE_REALLOC_POSIX.
33458
33459 2007-09-09  Bruno Haible  <bruno@clisp.org>
33460
33461         * modules/calloc-posix: New file.
33462         * modules/calloc (Depends-on): Add calloc-posix.
33463         * lib/calloc.c: Include errno.h.
33464         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
33465         and a POSIX-compatible calloc into a single function. Set ENOMEM
33466         when returning NULL.
33467         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
33468         * doc/functions/calloc.texi: Mention the calloc-posix module.
33469         * lib/stdlib_.h (calloc): New declaration.
33470         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
33471         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
33472         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
33473         and HAVE_CALLOC_POSIX.
33474
33475 2007-09-09  Bruno Haible  <bruno@clisp.org>
33476
33477         Allow for modules to show an arbitrary notice.
33478         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
33479         * gnulib-tool: New option --extract-notice.
33480         (func_usage): Document it.
33481         (sed_extract_prog): Update.
33482         (func_get_notice): New function.
33483         (func_modules_notice): New function.
33484         (func_import, func_create_testdir): Invoke it.
33485         Suggested by Jim Meyering.
33486
33487 2007-09-09  Bruno Haible  <bruno@clisp.org>
33488
33489         * gnulib-tool: New options --verbose, --quiet.
33490         (func_usage): Document them.
33491         (verbose): New variable.
33492         (func_execute_command): New function.
33493         (func_import): Don't show the module list and the file list if
33494         $verbose < 0.
33495         (func_create_testdir): Likewise. Use func_execute_command.
33496         (func_create_megatestdir): Use func_execute_command.
33497
33498 2007-09-08  Bruno Haible  <bruno@clisp.org>
33499
33500         * gnulib-tool (func_import): Prefer rsync over wget when available,
33501         for fetching the PO files.
33502
33503 2007-09-08  Bruno Haible  <bruno@clisp.org>
33504
33505         * posix-modules: New file. Portions copied from gnulib-tool.
33506         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
33507
33508 2007-09-08  Jim Meyering  <jim@meyering.net>
33509
33510         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
33511         * lib/fpending.h: Rename from __fpending.h.
33512         * lib/fpending.c: Rename from __fpending.c.
33513         Include "fpending.h", not "__fpending.h".
33514         * lib/__fpending.h, lib/__fpending.c: Remove files.
33515         * modules/fpending (Files): Reflect new file names.
33516         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
33517
33518 2007-09-08  Bruno Haible  <bruno@clisp.org>
33519
33520         * m4/inttypes-h.m4: Remove stub file.
33521
33522 2007-09-07  Simon Josefsson  <simon@josefsson.org>
33523
33524         * doc/headers/stdint.texi: Discuss #include_next issue.
33525
33526 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
33527
33528         * build-aux/bootstrap: Remove obsolete comment about wget --help.
33529
33530 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33531
33532         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
33533         in variable name.
33534
33535 2007-09-03  Jim Meyering  <jim@meyering.net>
33536
33537         New module: git-version-gen.
33538         * modules/git-version-gen: New file.
33539
33540         Import changes from coreutils for bootstrap script.
33541
33542         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
33543
33544         bootstrap: uses rsync to download the .po files
33545         * build-aux/bootstrap (po_download_command_format): New global.
33546         (download_po_files): Use rsync.
33547         (update_po_files): Don't remove .po files after download,
33548         so future rsync runs can take advantage of the copies.
33549
33550         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
33551
33552         Solve the unnecessary-.po-file-regeneration problem once and for all.
33553         * build-aux/bootstrap (download_po_files): New function, renamed from
33554         get_translations.  Now, downloads, but doesn't update LINGUAS.
33555         (update_po_files): New function.
33556
33557         bootstrap: Ignore more.
33558         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
33559         uniwidth to e.g., lib/.gitignore.
33560         (slurp): Handle the sys_stat_.h -> sys mapping, too.
33561
33562         * build-aux/bootstrap: New setting: vc_ignore.
33563         (insert_sorted_if_absent): Create $file if absent.
33564         Adapt to new, possibly empty, list: $vc_ignore.
33565
33566         bootstrap: generate more ignorable names
33567         * build-aux/bootstrap (slurp): When generating ignorable names,
33568         also map .sin to .sed, .gperf to .c, and .y to .c.
33569
33570 2007-09-03  Jim Meyering  <jim@meyering.net>
33571
33572         * build-aux/git-version-gen: New file, from coreutils.  For details, see
33573         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
33574
33575 2007-09-02  Bruno Haible  <bruno@clisp.org>
33576
33577         Fix mis-recognition of 'mcs' on QNX 6.
33578         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
33579         output contains the string "Mono".
33580         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
33581         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
33582
33583 2007-09-01  Bruno Haible  <bruno@clisp.org>
33584
33585         Fix collision between uniwidth/* and linebreak modules.
33586         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
33587         u32_width): Remove declarations.
33588         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
33589         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
33590         streq3, streq2, streq1, streq0): Remove functions.
33591         (STREQ): Remove macro.
33592         (is_cjk_encoding): Remove function.
33593         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
33594         (uc_width, u8_width, u16_width, u32_width): Remove functions.
33595         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
33596         * NEWS: Document the change.
33597
33598 2007-09-01  Bruno Haible  <bruno@clisp.org>
33599
33600         * lib/streq.h: Add double-inclusion guard.
33601
33602 2007-09-01  Karl Berry  <karl@gnu.org>
33603
33604         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
33605
33606 2007-08-28  Jim Meyering  <jim@meyering.net>
33607
33608         Rename mreadlink_with_size to areadlink_with_size.
33609         * NEWS: Document the change.
33610         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
33611         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
33612         * lib/mreadlink.h: Rename this to...
33613         * lib/areadlink.h: ...this.
33614         * modules/mreadlink-with-size: Rename this to...
33615         * modules/areadlink-with-size: ...this.
33616         * lib/canonicalize.c: Reflect the renaming.
33617         * modules/canonicalize: Likewise.
33618
33619 2007-08-26  Bruno Haible  <bruno@clisp.org>
33620
33621         * gnulib-tool (func_import): When deciding which files to remove,
33622         consider also dangling symbolic links.
33623         Reported by Eric Blake.
33624
33625 2007-08-26  Bruno Haible  <bruno@clisp.org>
33626
33627         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
33628
33629 2007-08-23  Simon Josefsson  <simon@josefsson.org>
33630
33631         * lib/readline.c: Don't include getline.h, the prototype is now
33632         found in stdio.h.
33633
33634 2007-08-23  Jim Meyering  <jim@meyering.net>
33635
33636         Getdelim touchup.
33637         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
33638         around the funlockfile call, since funlockfile never sets errno.
33639         Don't set errno upon failed realloc.
33640
33641 2007-08-22  Eric Blake  <ebb9@byu.net>
33642
33643         Getline touchups.
33644         * lib/getdelim.c (getdelim): Revert regression that required *n to
33645         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
33646         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
33647         getdelim, rather than whether implementation is missing.
33648         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
33649         * lib/stdio_.h (getline): Also declare if replacement is
33650         required.
33651         * doc/functions/getdelim.texi: New file.
33652         * doc/functions/getline.texi: Likewise.
33653         * doc/gnulib.texi (Function Substitutes): Add new files.
33654         Reported by Bruno Haible.
33655
33656 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
33657
33658         * users.txt: Add Guile.
33659
33660 2007-08-22  Eric Blake  <ebb9@byu.net>
33661
33662         * tests/test-getdelim.c (main): Use remove, not unlink.
33663         * tests/test-getline.c (main): Likewise.
33664
33665         Move getline and getdelim into stdio.h, per POSIX 200x.
33666         * modules/getline (Files): Remove getline.h.
33667         (Depends-on): Add stdio.
33668         (configure.ac): Add module indicator.
33669         * modules/getdelim (Files): Remove getdelim.h.
33670         (Depends-on): Add stdio.
33671         (configure.ac): Add module indicator.
33672         * modules/stdio (Makefile.am): Work with new indicators.
33673         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
33674         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
33675         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
33676         * lib/getdelim.h: Delete.
33677         * lib/getline.h: Delete.
33678         * lib/stdio_.h (getdelim, getline): Declare.
33679         * modules/getdelim-tests: New module.
33680         * modules/getline-tests: Likewise.
33681         * tests/test-getdelim.c: New file.
33682         * tests/test-getline.c: Likewise.
33683         * NEWS: Document the change.
33684         * lib/getline.c: Update choice of header.
33685         * lib/csharpcomp.c: Likewise.
33686         * lib/getpass.c: Likewise.
33687         * lib/javacomp.c: Likewise.
33688         * lib/javaversion.c: Likewise.
33689         * lib/yesno.c: Likewise.
33690         * lib/getdelim.c: Likewise.
33691         (getdelim): Set errno on failure, and avoid memory leak.
33692
33693 2007-08-19  Bruno Haible  <bruno@clisp.org>
33694
33695         * modules/closein (Depends-on): Add freadahead.
33696         * lib/closein.c: Include freadahead.h.
33697         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
33698         is zero.
33699
33700 2007-08-19  Bruno Haible  <bruno@clisp.org>
33701
33702         * modules/freadahead-tests: New file.
33703         * tests/test-freadahead.sh: New file.
33704         * tests/test-freadahead.c: New file.
33705
33706         * modules/freadahead: New file.
33707         * lib/freadahead.h: New file.
33708         * lib/freadahead.c: New file.
33709         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
33710         fbufmode, fpurge, freadable, fwritable.
33711
33712 2007-08-19  Eric Blake  <ebb9@byu.net>
33713
33714         Test yesno in combination with closein.
33715         * lib/yesno.c (yesno): Document use of stdin.
33716         * modules/yesno-tests (Files): New module.
33717         * tests/test-yesno.c (main): New file.
33718         * tests/test-yesno.sh: Likewise.
33719
33720 2007-08-19  Bruno Haible  <bruno@clisp.org>
33721
33722         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
33723         * lib/fseeko.c (rpl_fseeko): Likewise.
33724         * lib/fseterr.c (fseterr): Likewise.
33725
33726 2007-08-19  Bruno Haible  <bruno@clisp.org>
33727
33728         * tests/test-lseek.c (main): Disable a test for BeOS.
33729         * doc/functions/lseek.texi: Document the BeOS bug.
33730
33731 2007-08-19  Bruno Haible  <bruno@clisp.org>
33732             Eric Blake  <ebb9@byu.net>
33733
33734         * lib/lseek.c: Include <sys/stat.h>.
33735         (rpl_lseek): Add workaround code also for Unix platforms.
33736         Needed for BeOS.
33737         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
33738         * doc/functions/lseek.texi: Document BeOS definiency.
33739
33740 2007-08-18  Bruno Haible  <bruno@clisp.org>
33741
33742         * modules/fstrcmp-tests: New file.
33743         * tests/test-fstrcmp.c: New file.
33744
33745 2007-08-18  Bruno Haible  <bruno@clisp.org>
33746
33747         * modules/fstrcmp: New file, from GNU gettext with modifications.
33748         * lib/fstrcmp.h: New file, from GNU gettext.
33749         * lib/fstrcmp.c: New file, from GNU gettext.
33750         * MODULES.html.sh (String handling): Add fstrcmp.
33751
33752 2007-08-18  Bruno Haible  <bruno@clisp.org>
33753
33754         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
33755         'bool'.
33756         (diag, compareseq): Remove const from the ctxt argument.
33757         (USE_HEURISTIC): Undefine at the end.
33758
33759 2007-08-18  Jim Meyering  <jim@meyering.net>
33760
33761         New file: lib/idcache.h
33762         * NEWS: Mention the addition.
33763         * modules/idcache (Files): Add lib/idcache.h
33764         * lib/idcache.c: Include "idcache.h".
33765         Don't include <sys/types.h>.
33766         Add a FIXME comment.
33767         Move file-scoped "static" declarations to the top.
33768         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
33769
33770 2007-08-17  Bruno Haible  <bruno@clisp.org>
33771         and Paul Eggert  <eggert@cs.ucla.edu>
33772
33773         * MODULES.html.sh: Add diffseq.
33774         * modules/diffseq: New file.
33775         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
33776         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
33777
33778 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
33779
33780         Import changes from coreutils for bootstrap script.
33781
33782         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
33783
33784         * build-aux/bootstrap (slurp): Work even in environments where
33785         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
33786         current code does not slurp files whose names start with ".", and
33787         this looks like it might be a troublesome area.
33788
33789         2007-07-11  Jim Meyering  <jim@meyering.net>
33790
33791         If there's a GPL vN copyright comment, require that N == 3.
33792
33793         2007-07-08  Jim Meyering  <jim@meyering.net>
33794
33795         Run the coreutils-specific code only if tests/Makefile.am.in exists.
33796         * build-aux/bootstrap (mam_template): Move definition out of loop.
33797
33798         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
33799
33800         * build-aux/bootstrap (symlink_to_dir): Rename function from
33801         symlink_to_gnulib.  Add a directory parameter.  Update all
33802         callers.
33803         (cp_mark_as_generated): Also check for -- and link to -- files in
33804         gl/.
33805
33806         2007-07-08  Jim Meyering  <jim@meyering.net>
33807
33808         Adapt to deeper hierarchy in gnulib.
33809         * build-aux/bootstrap (symlink_to_dir): If the destination
33810         directory doesn't exist, create it. This is required at least for
33811         "lib/uniwidth/cjk.h".
33812
33813         2007-05-15  Jim Meyering  <jim@meyering.net>
33814
33815         * build-aux/bootstrap: Now that generated Makefile.am files
33816         are no longer under version control, they must be created at
33817         bootstrap time.
33818
33819 2007-08-14  Ben Pfaff  <blp@gnu.org>
33820
33821         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
33822
33823 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
33824
33825         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
33826         given the changes below.
33827         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
33828         even on hosts that have padding bits beyond the supported 64.
33829
33830 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
33831
33832         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
33833         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
33834         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
33835         depends on it.
33836         (xstrtol_error): Remove.
33837         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
33838         but with a different signature.
33839         (ATTRIBUTE_NORETURN, __attribute__): New macros.
33840         * lib/xstrtol-error.c: Include exitfail.h.
33841         (xstrtol_fatal): New function, with a different signature from the
33842         old xstrtol_error, so that the caller need not worry about passing
33843         in an exit status, or about storage management of the option argument.
33844         (xstrtol_error): Now a static function.  Redo signature to
33845         implement xstrtol_fatal.  Output the correct number of hyphens in
33846         front of the option so that the caller need not worry about
33847         storage management.
33848         (N_): New macro.
33849         (_): Remove; not used now.
33850         * modules/xstrtol: Depend on getopt.
33851         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
33852         of old STRTOL_FATAL_ERROR macro.
33853         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
33854         of test program.
33855         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
33856         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
33857
33858 2007-08-08  Eric Blake  <ebb9@byu.net>
33859
33860         * lib/xstrtol-error.c: Add missing include.
33861
33862         Move xstrtol messages into gnulib domain, when --pobase is used.
33863         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
33864         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
33865         * modules/xstrtol (Files): Distribute new file.
33866         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
33867         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
33868         * tests/test-xstrtol.c: ...into new file.
33869         * tests/test-xstrtoul.c: Also test xstrtoul.
33870         * tests/test-xstrtoimax.c: Also test xstrtoimax.
33871         * tests/test-xstrtoumax.c: Also test xstrtoumax.
33872         * tests/test-xstrtol.sh: Drive the tests.
33873         * tests/test-xstrtoimax.sh: Likewise.
33874         * tests/test-xstrtoumax.sh: Likewise.
33875         * modules/xstrtol-tests: New module.
33876         * modules/xstrtoimax-tests: Likewise.
33877         * modules/xstrtoumax-tests: Likewise.
33878
33879 2007-08-08  Jim Meyering  <jim@meyering.net>
33880
33881         New function: mfile_name_concat.
33882         * lib/filenamecat.c (mfile_name_concat): New function, just like
33883         file_name_concat, but return NULL upon failure rather than exiting
33884         with a diagnostic.
33885         * lib/filenamecat.h: Declare it.
33886
33887 2007-08-07  Bruno Haible  <bruno@clisp.org>
33888
33889         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
33890         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
33891         warning from gcc.
33892         Reported by Eric Blake.
33893
33894 2007-08-07  Simon Josefsson  <simon@josefsson.org>
33895
33896         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
33897         * modules/crypto/arcfour (License): Likewise.
33898         * modules/crypto/des-tests (License): Likewise.
33899         * modules/crypto/gc-arctwo-tests (License): Likewise.
33900         * modules/crypto/gc-des-tests (License): Likewise.
33901         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
33902         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
33903         * modules/crypto/gc-md2-tests (License): Likewise.
33904         * modules/crypto/gc-md4-tests (License): Likewise.
33905         * modules/crypto/gc-md5-tests (License): Likewise.
33906         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
33907         * modules/crypto/gc-rijndael-tests (License): Likewise.
33908         * modules/crypto/gc-sha1-tests (License): Likewise.
33909         * modules/crypto/gc-tests (License): Likewise.
33910         * modules/crypto/hmac-md5 (License): Likewise.
33911         * modules/crypto/hmac-sha1 (License): Likewise.
33912         * modules/crypto/md2-tests (License): Likewise.
33913         * modules/crypto/md4-tests (License): Likewise.
33914         * modules/crypto/md5 (License): Likewise.
33915         * modules/crypto/rijndael (License): Likewise.
33916         * modules/crypto/sha1 (License): Likewise.
33917         * modules/memxor (License): Likewise.
33918
33919 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33920         and Bruno Haible  <bruno@clisp.org>
33921
33922         * NEWS: Describe interface changes to human, xstrtol.
33923         * lib/human.h: Include <xstrtol.h>.
33924         (human_options): Return enum strtol_error, not int.  Remove
33925         bool arg; take int * instead.
33926         * lib/human.c: Don't include "gettext.h".
33927         (_): Remove; no longer used.
33928         Don't include <xstrtol.h>, since human.h does it.
33929         (human_options): Adjust to abovementioned interface changes.
33930         Do not report error to stderr; that's now the caller's
33931         responsibility.
33932         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
33933         interface change.
33934         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
33935         Str, Argument_type_string.  All uses changed.  Put " argument"
33936         in diagnostics to make them clearer.  Change wording of suffix
33937         message for clarity.
33938         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
33939         Argument_type_string.
33940         (STRTOL_FATAL_WARN): Remove; no longer used.
33941         * modules/human (Depends-on): Remove gettext-h.
33942
33943 2007-08-06  Simon Josefsson  <simon@josefsson.org>
33944
33945         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
33946
33947 2007-07-31  Bruno Haible  <bruno@clisp.org>
33948
33949         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
33950         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
33951         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
33952
33953 2007-07-31  Bruno Haible  <bruno@clisp.org>
33954
33955         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
33956         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
33957
33958 2007-07-30  Bruno Haible  <bruno@clisp.org>
33959
33960         * modules/base64 (License): Use the synonymous term "LGPLv2+".
33961         * modules/c-ctype (License): Likewise.
33962         * modules/c-strcase (License): Likewise.
33963         * modules/check-version (License): Likewise.
33964         * modules/iconv (License): Likewise.
33965         * modules/iconv_open (License): Likewise.
33966         * modules/read-file (License): Likewise.
33967         * modules/striconv (License): Likewise.
33968         * modules/strverscmp (License): Likewise.
33969         * modules/vasprintf (License): Likewise.
33970         * modules/crypto/des (License): Likewise.
33971         * modules/crypto/gc (License): Likewise.
33972         * modules/crypto/gc-arcfour (License): Likewise.
33973         * modules/crypto/gc-arctwo (License): Likewise.
33974         * modules/crypto/gc-des (License): Likewise.
33975         * modules/crypto/gc-hmac-md5 (License): Likewise.
33976         * modules/crypto/gc-hmac-sha1 (License): Likewise.
33977         * modules/crypto/gc-md2 (License): Likewise.
33978         * modules/crypto/gc-md4 (License): Likewise.
33979         * modules/crypto/gc-md5 (License): Likewise.
33980         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
33981         * modules/crypto/gc-random (License): Likewise.
33982         * modules/crypto/gc-rijndael (License): Likewise.
33983         * modules/crypto/gc-sha1 (License): Likewise.
33984         * modules/crypto/md2 (License): Likewise.
33985         * modules/crypto/md4 (License): Likewise.
33986
33987 2007-07-30  Jim Meyering  <jim@meyering.net>
33988
33989         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
33990         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
33991         it has valid stat data.  This bug would cause du not to count the
33992         sizes of inaccessible directories.
33993         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
33994         in <http://bugzilla.redhat.com/250077>.
33995
33996 2007-07-25  Peter O'Gorman  <peter@pogma.com>
33997             Bruno Haible  <bruno@clisp.org>
33998
33999         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
34000         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
34001         #include_next, gives a diagnostic about it, but reports no error in
34002         the exit code.
34003         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
34004
34005 2007-07-24  Ben Pfaff  <blp@gnu.org>
34006
34007         Improve name: "count-one-bits" is better than "popcount".
34008         * MODULES.html.sh: Update name.
34009         * lib/popcount.h: Renamed lib/count-one-bits.h.
34010         (popcount): Renamed count_one_bits.
34011         (popcountl): Renamed count_one_bits_l.
34012         (popcountll): Renamed count_one_bits_ll.
34013         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
34014         * modules/popcount: Renamed module/count-one-bits.
34015         * modules/popcount-tests: Renamed module/count-one-bits-tests.
34016         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
34017
34018 2007-07-23  Ben Pfaff  <blp@gnu.org>
34019
34020         * lib/popcount.h (popcount32): Reduce size of constants, to allow
34021         better code generation, and add U to large constants to avoid
34022         warnings, in non-GCC case.
34023         Suggested by Bruno Haible.
34024
34025 2007-07-23  Ben Pfaff  <blp@gnu.org>
34026
34027         * lib/popcount.h: Use verify_true instead of if...abort.
34028         * modules/popcount: Depend on verify module.
34029         Suggested by Jim Meyering.
34030
34031 2007-07-23  Bruno Haible  <bruno@clisp.org>
34032
34033         * gnulib-tool (func_import): Create a .cvsignore file also when the
34034         directory is not yet in CVS but the toplevel directory is. When
34035         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
34036         Reported by Karl Berry.
34037
34038 2007-07-22  Ben Pfaff  <blp@gnu.org>
34039
34040         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
34041         case.
34042         Suggested by Eric Blake.
34043
34044 2007-07-22  Ben Pfaff  <blp@gnu.org>
34045
34046         New module: popcount.
34047         * MODULES.html.sh: Add popcount.
34048         * modules/popcount: New file.
34049         * modules/popcount-tests: New file.
34050         * tests/test-popcount.c: New file.
34051         * lib/popcount.h: New file.
34052         * m4/popcount.m4: New file.
34053
34054 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
34055
34056         * build-aux/announce-gen: Update to GPLv3.
34057
34058         * build-aux/config.guess: Update from config.
34059
34060 2007-07-21  Bruno Haible  <bruno@clisp.org>
34061
34062         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
34063         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
34064
34065 2007-07-20  Jim Meyering  <jim@meyering.net>
34066
34067         * check-module: Diagnose a self-dependency.
34068
34069 2007-07-19  Bruno Haible  <bruno@clisp.org>
34070
34071         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
34072         empty.
34073         Reported by Eric Blake.
34074
34075 2007-07-18  Bruno Haible  <bruno@clisp.org>
34076
34077         * gnulib-tool: New options --po-base, --po-domain.
34078         (func_usage): Document them.
34079         (pobase, po_domain): New variables.
34080         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
34081         DEFAULT_TEXT_DOMAIN.
34082         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
34083         (func_import): Consider pobase and po_domain. Create a po/ directory.
34084         (func_create_testdir): Set pobase and po_domain to empty.
34085         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
34086         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
34087
34088 2007-07-18  Bruno Haible  <bruno@clisp.org>
34089
34090         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34091         EXTRA_DIST augmentation for files in build-aux/.
34092
34093 2007-07-16  Bruno Haible  <bruno@clisp.org>
34094
34095         * modules/lseek (License): Use the synonymous term "LGPLv2+".
34096         * modules/getdelim (License): Likewise.
34097
34098 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34099
34100         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
34101         * modules/d-type (License): Likewise.
34102         * modules/extensions (License): Likewise.
34103         * modules/fnmatch (License): Likewise.
34104         * modules/fseeko (License): Likewise.
34105         * modules/getaddrinfo (License): Likewise.
34106         * modules/getline (License): Likewise.
34107         * modules/getlogin_r (License): Likewise.
34108         * modules/getpass (License): Likewise.
34109         * modules/gettimeofday (License): Likewise.
34110         * modules/glob (License): Likewise.
34111         * modules/inet_ntop (License): Likewise.
34112         * modules/malloc (License): Likewise.
34113         * modules/malloca (License): Likewise.
34114         * modules/memmem (License): Likewise.
34115         * modules/mempcpy (License): Likewise.
34116         * modules/memset (License): Likewise.
34117         * modules/minmax (License): Likewise.
34118         * modules/mktime (License): Likewise.
34119         * modules/netinet_in (License): Likewise.
34120         * modules/pathmax (License): Likewise.
34121         * modules/poll (License): Likewise.
34122         * modules/regex (License): Likewise.
34123         * modules/snprintf (License): Likewise.
34124         * modules/stdbool (License): Likewise.
34125         * modules/stdint (License): Likewise.
34126         * modules/stdio (License): Likewise.
34127         * modules/strcase (License): Likewise.
34128         * modules/strcasestr (License): Likewise.
34129         * modules/strdup (License): Likewise.
34130         * modules/string (License): Likewise.
34131         * modules/strndup (License): Likewise.
34132         * modules/strnlen (License): Likewise.
34133         * modules/strpbrk (License): Likewise.
34134         * modules/strptime (License): Likewise.
34135         * modules/strsep (License): Likewise.
34136         * modules/sys_select (License): Likewise.
34137         * modules/sys_socket (License): Likewise.
34138         * modules/sys_stat (License): Likewise.
34139         * modules/sys_time (License): Likewise.
34140         * modules/time (License): Likewise.
34141         * modules/time_r (License): Likewise.
34142         * modules/timegm (License): Likewise.
34143         * modules/unistd (License): Likewise.
34144         * modules/vsnprintf (License): Likewise.
34145         * modules/wctype (License): Likewise.
34146
34147 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34148
34149         * modules/argz (License): LGPLv2+.
34150
34151 2007-07-15  Karl Berry  <karl@gnu.org>
34152
34153         * doc/gnulib.texi: revise node structure per new fdl.texi.
34154
34155 2007-07-14  Bruno Haible  <bruno@clisp.org>
34156
34157         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
34158         the output file.
34159         * lib/uniname/uninames.h: Regenerated.
34160
34161 2007-07-14  Karl Berry  <karl@gnu.org>
34162
34163         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
34164         omitting sectioning and index commands.
34165
34166 2007-07-13  Bruno Haible  <bruno@clisp.org>
34167
34168         New gnulib-tool option --more-symlinks.
34169         * gnulib-tool (func_usage): Document --more-symlinks.
34170         (do_copyrights): New variable.
34171         Recognize option --more-symlinks.
34172         (func_import): Don't add a copyright notice transform to
34173         sed_transform_lib_file if do_copyrights is empty.
34174
34175 2007-07-13  Bruno Haible  <bruno@clisp.org>
34176
34177         * lib/vasnprintf.c (decimal_point_char): Define also if
34178         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
34179         && !NEED_PRINTF_DIRECTIVE_A.
34180         Reported by Clemens Koller <clemens.koller@anagramm.de> via
34181         Gary V. Vaughan <gary@gnu.org>.
34182
34183 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
34184
34185         * lib/inttypes_.h: Undo previous change, since it was fixed
34186         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
34187
34188 2007-07-13  Bruno Haible  <bruno@clisp.org>
34189
34190         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
34191         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
34192
34193 2007-07-13  Jim Meyering  <jim@meyering.net>
34194
34195         df: Don't fail for Tru64's "file-on-file mount".
34196         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
34197         so we fall through and use statfs instead.  Details here:
34198         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
34199         Reported by Albert Chin.
34200
34201 2007-07-13  Bruno Haible  <bruno@clisp.org>
34202
34203         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
34204         * modules/configmake (License): Likewise.
34205         * modules/gettext (License): Likewise.
34206         * modules/gettext-h (License): Likewise.
34207         * modules/include_next (License): Likewise.
34208         * modules/link-warning (License): Likewise.
34209         * modules/localcharset (License): Likewise.
34210         * modules/localename (License): Likewise.
34211         * modules/lock (License): Likewise.
34212         * modules/relocatable-lib-lgpl (License): Likewise.
34213         * modules/size_max (License): Likewise.
34214         * modules/vasnprintf (License): Likewise.
34215         * modules/wchar (License): Likewise.
34216         * modules/xsize (License): Likewise.
34217
34218 2007-07-13  Bruno Haible  <bruno@clisp.org>
34219
34220         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
34221         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
34222
34223 2007-07-12  Bruno Haible  <bruno@clisp.org>
34224
34225         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
34226         in the modules files.
34227
34228 2007-07-11  Karl Berry  <karl@gnu.org>
34229
34230         * MODULES.html.sh (func_module): use
34231          sed -e '\|^'"${includefile}"'$|d'
34232          instead of /.../d, to avoid errors on $includefile's containing /.
34233
34234 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
34235
34236         * gnulib-tool (func_import): Avoid duplication of --avoid
34237         statements
34238         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
34239         names to `_' in variable names.
34240
34241 2007-07-10  Eric Blake  <ebb9@byu.net>
34242
34243         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
34244         * NEWS: Document this change.
34245
34246 2007-07-08  Bruno Haible  <bruno@clisp.org>
34247
34248         Update to Unicode 5.0.
34249         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
34250         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
34251         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
34252         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
34253         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
34254         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
34255         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
34256         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
34257         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
34258         U+10A3F, U+1D242..U+1D244.
34259         (nonspacing_table_ind): Update.
34260         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
34261         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
34262
34263 2007-07-08  Bruno Haible  <bruno@clisp.org>
34264
34265         Update to Unicode 5.0.
34266         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
34267         code transform. Extend the name index field of unicode_name_to_code and
34268         unicode_code_to_name from 16 to 24 bits.
34269         * lib/uniname/uniname.c (unicode_character_name,
34270         unicode_name_character): Add the range 0x12xxx to the code transform.
34271         * lib/uniname/uninames.h: Regenerated.
34272         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
34273
34274 2007-07-07  Bruno Haible  <bruno@clisp.org>
34275
34276         * modules/wcwidth-tests: New file.
34277         * tests/test-wcwidth.c: New file.
34278
34279         Work around MacOS X wcwidth() bug.
34280         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
34281         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
34282         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
34283         original wcwidth in non-UTF-8 locales.
34284         * modules/wcwidth (Depends-on): Add localcharset, streq,
34285         uniwidth/width.
34286         * doc/functions/wcwidth.texi: Update.
34287
34288 2007-07-07  Bruno Haible  <bruno@clisp.org>
34289
34290         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
34291         (wcwidth): New declaration.
34292         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
34293         macros.
34294         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
34295         here. Prepare for creating <wchar.h> unconditionally.
34296         * modules/wchar (Depends-on): Add link-warning.
34297         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
34298         REPLACE_WCWIDTH, and GL_LINK_WARNING.
34299         * lib/wcwidth.h: Remove file.
34300         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
34301         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
34302         * modules/wcwidth (Files): Remove lib/wcwidth.h.
34303         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
34304         (Include): Replace wcwidth.h with <wchar.h>.
34305         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
34306         * lib/mbchar.h: Don't include wcwidth.h.
34307         * lib/mbswidth.c: Likewise.
34308         * NEWS: Mention the change.
34309
34310 2007-07-07  Bruno Haible  <bruno@clisp.org>
34311
34312         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
34313         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
34314         definition with an external declaration.
34315         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
34316         defined as a function. Remove AC_C_INLINE requirement.
34317         * modules/wcwidth (Files): Add lib/wcwidth.c.
34318         (Makefile.am): Remove redundant statement.
34319
34320 2007-07-07  Bruno Haible  <bruno@clisp.org>
34321
34322         * MODULES.html.sh (Unicode string functions): Add the new modules.
34323
34324         * tests/uniwidth/test-u32-strwidth.c: New file.
34325         * modules/uniwidth/u32-strwidth-tests: New file.
34326
34327         * lib/uniwidth/u32-strwidth.c: New file.
34328         * modules/uniwidth/u32-strwidth: New file.
34329
34330         * tests/uniwidth/test-u16-strwidth.c: New file.
34331         * modules/uniwidth/u16-strwidth-tests: New file.
34332
34333         * lib/uniwidth/u16-strwidth.c: New file.
34334         * modules/uniwidth/u16-strwidth: New file.
34335
34336         * tests/uniwidth/test-u8-strwidth.c: New file.
34337         * modules/uniwidth/u8-strwidth-tests: New file.
34338
34339         * lib/uniwidth/u8-strwidth.c: New file.
34340         * modules/uniwidth/u8-strwidth: New file.
34341
34342         * tests/uniwidth/test-u32-width.c: New file.
34343         * modules/uniwidth/u32-width-tests: New file.
34344
34345         * lib/uniwidth/u32-width.c: New file.
34346         * modules/uniwidth/u32-width: New file.
34347
34348         * tests/uniwidth/test-u16-width.c: New file.
34349         * modules/uniwidth/u16-width-tests: New file.
34350
34351         * lib/uniwidth/u16-width.c: New file.
34352         * modules/uniwidth/u16-width: New file.
34353
34354         * tests/uniwidth/test-u8-width.c: New file.
34355         * modules/uniwidth/u8-width-tests: New file.
34356
34357         * lib/uniwidth/u8-width.c: New file.
34358         * modules/uniwidth/u8-width: New file.
34359
34360         * tests/uniwidth/test-uc_width.c: New file.
34361         * modules/uniwidth/width-tests: New file.
34362
34363         * lib/uniwidth/width.c: New file, from GNU libiconv.
34364         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
34365         * modules/uniwidth/width: New file.
34366
34367         * lib/uniwidth.h: New file, from GNU libiconv.
34368         * modules/uniwidth/base: New file.
34369
34370 2007-07-07  Bruno Haible  <bruno@clisp.org>
34371
34372         * lib/uniname.h: New file, from GNU gettext.
34373         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
34374         * lib/uniname/uninames.h: New file, from GNU gettext.
34375         * lib/uniname/uniname.c: New file, from GNU gettext.
34376         * tests/uniname/test-uninames.sh: New file.
34377         * tests/uniname/test-uninames.c: New file, from GNU gettext.
34378         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
34379         * modules/uniname/base: New file.
34380         * modules/uniname/uniname: New file.
34381         * modules/uniname/uniname-tests: New file.
34382         * MODULES.html.sh (Unicode string functions): Add the new modules.
34383
34384 2007-07-06  Bruno Haible  <bruno@clisp.org>
34385
34386         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
34387
34388 2007-07-06  Bruno Haible  <bruno@clisp.org>
34389
34390         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
34391         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
34392         includes <cygwin/sys_time.h> which includes <sys/select.h> which
34393         include <sys/time.h>.
34394         Reported by Eric Blake.
34395
34396 2007-07-06  Eric Blake  <ebb9@byu.net>
34397
34398         Fix testing canonicalize on cygwin.
34399         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
34400         Revert patch from 2007-06-19.
34401         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
34402         canonicalize module is also in use.
34403         * tests/test-canonicalize.c: New file.
34404         * tests/test-canonicalize.sh: Likewise.
34405         * modules/canonicalize-tests: Likewise.
34406
34407 2007-07-06  Jim Meyering  <jim@meyering.net>
34408
34409         * lib/getugroups.c (getugroups): Detect getgrent failure.
34410         Adjust comment to reflect reality: this function may return -1.
34411
34412 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
34413
34414         * build-aux/bootstrap (TP_URL,get_translations): Update to use
34415         the new TP address.
34416         (usage): Fix typo
34417         (gnulib_mk): New variable.
34418
34419 2007-07-05  Jim Meyering  <jim@meyering.net>
34420
34421         Don't let endgrent clobber errno, no matter how improbable.
34422         * lib/getugroups.c (getugroups): Save and restore errno around
34423         endgrent call.
34424
34425         Close the group DB even when failing with 2^31 or more members.
34426         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
34427
34428 2007-07-04  Jim Meyering  <jim@meyering.net>
34429
34430         * lib/getugroups.h: New file.
34431         * lib/getugroups.c: Include "getugroups.h".
34432         Remove uses of "register" keyword.
34433         Move local variable, "cp", down into scope where used.
34434         Give "username" parameter the "const" attribute.
34435         * modules/getugroups (Files): Add lib/getugroups.h
34436
34437 2007-07-04  Karl Berry  <karl@gnu.org>
34438
34439         * MODULES.html.sh (func_all_modules): Complete rename of
34440         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
34441
34442 2007-07-02  Bruno Haible  <bruno@clisp.org>
34443
34444         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
34445         mode, when inttypes.h comes from gnulib.
34446         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
34447
34448 2007-07-02  Simon Josefsson  <simon@josefsson.org>
34449
34450         * NEWS: Mention lgpl module name change.
34451
34452         * modules/lgpl-2.1: Renamed from lgpl.
34453
34454         * NEWS: Mention gpl module name change.
34455
34456         * modules/gpl-3.0: New file, based on gpl-2.0.
34457
34458         * modules/gpl-2.0: Renamed from gpl.
34459
34460         * modules/gpl: Fix filename, doc/gpl.texi is now found at
34461         doc/gpl-2.0.texi.
34462
34463 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
34464
34465         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
34466         #define __STDC_LIMIT_MACROS temporarily while including
34467         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
34468         Problem reported by Joel E. Denny in
34469         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
34470
34471 2007-07-01  Bruno Haible  <bruno@clisp.org>
34472
34473         * lib/unistdio.h: New file.
34474         * lib/unistdio/u-asnprintf.h: New file.
34475         * lib/unistdio/u-asprintf.h: New file.
34476         * lib/unistdio/u-printf-args.c: New file.
34477         * lib/unistdio/u-printf-args.h: New file.
34478         * lib/unistdio/u-printf-parse.h: New file.
34479         * lib/unistdio/u-snprintf.h: New file.
34480         * lib/unistdio/u-sprintf.h: New file.
34481         * lib/unistdio/u-vasprintf.h: New file.
34482         * lib/unistdio/u-vsnprintf.h: New file.
34483         * lib/unistdio/u-vsprintf.h: New file.
34484         * lib/unistdio/ulc-asnprintf.c: New file.
34485         * lib/unistdio/ulc-asprintf.c: New file.
34486         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
34487         * lib/unistdio/ulc-printf-parse.c: New file.
34488         * lib/unistdio/ulc-snprintf.c: New file.
34489         * lib/unistdio/ulc-sprintf.c: New file.
34490         * lib/unistdio/ulc-vasnprintf.c: New file.
34491         * lib/unistdio/ulc-vasprintf.c: New file.
34492         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
34493         * lib/unistdio/ulc-vsnprintf.c: New file.
34494         * lib/unistdio/ulc-vsprintf.c: New file.
34495         * lib/unistdio/u8-asnprintf.c: New file.
34496         * lib/unistdio/u8-asprintf.c: New file.
34497         * lib/unistdio/u8-printf-parse.c: New file.
34498         * lib/unistdio/u8-snprintf.c: New file.
34499         * lib/unistdio/u8-sprintf.c: New file.
34500         * lib/unistdio/u8-vasnprintf.c: New file.
34501         * lib/unistdio/u8-vasprintf.c: New file.
34502         * lib/unistdio/u8-vsnprintf.c: New file.
34503         * lib/unistdio/u8-vsprintf.c: New file.
34504         * lib/unistdio/u8-u8-asnprintf.c: New file.
34505         * lib/unistdio/u8-u8-asprintf.c: New file.
34506         * lib/unistdio/u8-u8-snprintf.c: New file.
34507         * lib/unistdio/u8-u8-sprintf.c: New file.
34508         * lib/unistdio/u8-u8-vasnprintf.c: New file.
34509         * lib/unistdio/u8-u8-vasprintf.c: New file.
34510         * lib/unistdio/u8-u8-vsnprintf.c: New file.
34511         * lib/unistdio/u8-u8-vsprintf.c: New file.
34512         * lib/unistdio/u16-asnprintf.c: New file.
34513         * lib/unistdio/u16-asprintf.c: New file.
34514         * lib/unistdio/u16-printf-parse.c: New file.
34515         * lib/unistdio/u16-snprintf.c: New file.
34516         * lib/unistdio/u16-sprintf.c: New file.
34517         * lib/unistdio/u16-vasnprintf.c: New file.
34518         * lib/unistdio/u16-vasprintf.c: New file.
34519         * lib/unistdio/u16-vsnprintf.c: New file.
34520         * lib/unistdio/u16-vsprintf.c: New file.
34521         * lib/unistdio/u16-u16-asnprintf.c: New file.
34522         * lib/unistdio/u16-u16-asprintf.c: New file.
34523         * lib/unistdio/u16-u16-snprintf.c: New file.
34524         * lib/unistdio/u16-u16-sprintf.c: New file.
34525         * lib/unistdio/u16-u16-vasnprintf.c: New file.
34526         * lib/unistdio/u16-u16-vasprintf.c: New file.
34527         * lib/unistdio/u16-u16-vsnprintf.c: New file.
34528         * lib/unistdio/u16-u16-vsprintf.c: New file.
34529         * lib/unistdio/u32-asnprintf.c: New file.
34530         * lib/unistdio/u32-asprintf.c: New file.
34531         * lib/unistdio/u32-printf-parse.c: New file.
34532         * lib/unistdio/u32-snprintf.c: New file.
34533         * lib/unistdio/u32-sprintf.c: New file.
34534         * lib/unistdio/u32-vasnprintf.c: New file.
34535         * lib/unistdio/u32-vasprintf.c: New file.
34536         * lib/unistdio/u32-vsnprintf.c: New file.
34537         * lib/unistdio/u32-vsprintf.c: New file.
34538         * lib/unistdio/u32-u32-asnprintf.c: New file.
34539         * lib/unistdio/u32-u32-asprintf.c: New file.
34540         * lib/unistdio/u32-u32-snprintf.c: New file.
34541         * lib/unistdio/u32-u32-sprintf.c: New file.
34542         * lib/unistdio/u32-u32-vasnprintf.c: New file.
34543         * lib/unistdio/u32-u32-vasprintf.c: New file.
34544         * lib/unistdio/u32-u32-vsnprintf.c: New file.
34545         * lib/unistdio/u32-u32-vsprintf.c: New file.
34546         * tests/unistdio/test-ulc-asnprintf1.c: New file.
34547         * tests/unistdio/test-ulc-asnprintf1.h: New file.
34548         * tests/unistdio/test-ulc-printf1.h: New file.
34549         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
34550         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
34551         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
34552         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
34553         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
34554         * tests/unistdio/test-ulc-vasprintf1.c: New file.
34555         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
34556         * tests/unistdio/test-ulc-vsprintf1.c: New file.
34557         * tests/unistdio/test-u8-asnprintf1.c: New file.
34558         * tests/unistdio/test-u8-asnprintf1.h: New file.
34559         * tests/unistdio/test-u8-printf1.h: New file.
34560         * tests/unistdio/test-u8-vasnprintf1.c: New file.
34561         * tests/unistdio/test-u8-vasnprintf2.c: New file.
34562         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
34563         * tests/unistdio/test-u8-vasnprintf3.c: New file.
34564         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
34565         * tests/unistdio/test-u8-vasprintf1.c: New file.
34566         * tests/unistdio/test-u8-vsnprintf1.c: New file.
34567         * tests/unistdio/test-u8-vsprintf1.c: New file.
34568         * tests/unistdio/test-u16-asnprintf1.c: New file.
34569         * tests/unistdio/test-u16-asnprintf1.h: New file.
34570         * tests/unistdio/test-u16-printf1.h: New file.
34571         * tests/unistdio/test-u16-vasnprintf1.c: New file.
34572         * tests/unistdio/test-u16-vasnprintf2.c: New file.
34573         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
34574         * tests/unistdio/test-u16-vasnprintf3.c: New file.
34575         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
34576         * tests/unistdio/test-u16-vasprintf1.c: New file.
34577         * tests/unistdio/test-u16-vsnprintf1.c: New file.
34578         * tests/unistdio/test-u16-vsprintf1.c: New file.
34579         * tests/unistdio/test-u32-asnprintf1.c: New file.
34580         * tests/unistdio/test-u32-asnprintf1.h: New file.
34581         * tests/unistdio/test-u32-printf1.h: New file.
34582         * tests/unistdio/test-u32-vasnprintf1.c: New file.
34583         * tests/unistdio/test-u32-vasnprintf2.c: New file.
34584         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
34585         * tests/unistdio/test-u32-vasnprintf3.c: New file.
34586         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
34587         * tests/unistdio/test-u32-vasprintf1.c: New file.
34588         * tests/unistdio/test-u32-vsnprintf1.c: New file.
34589         * tests/unistdio/test-u32-vsprintf1.c: New file.
34590         * modules/unistdio/base: New file.
34591         * modules/unistdio/u-printf-args: New file.
34592         * modules/unistdio/ulc-asnprintf: New file.
34593         * modules/unistdio/ulc-asprintf: New file.
34594         * modules/unistdio/ulc-fprintf: New file.
34595         * modules/unistdio/ulc-printf-parse: New file.
34596         * modules/unistdio/ulc-snprintf: New file.
34597         * modules/unistdio/ulc-sprintf: New file.
34598         * modules/unistdio/ulc-vasnprintf: New file.
34599         * modules/unistdio/ulc-vasprintf: New file.
34600         * modules/unistdio/ulc-vfprintf: New file.
34601         * modules/unistdio/ulc-vsnprintf: New file.
34602         * modules/unistdio/ulc-vsprintf: New file.
34603         * modules/unistdio/u8-asnprintf: New file.
34604         * modules/unistdio/u8-asprintf: New file.
34605         * modules/unistdio/u8-printf-parse: New file.
34606         * modules/unistdio/u8-snprintf: New file.
34607         * modules/unistdio/u8-sprintf: New file.
34608         * modules/unistdio/u8-vasnprintf: New file.
34609         * modules/unistdio/u8-vasprintf: New file.
34610         * modules/unistdio/u8-vsnprintf: New file.
34611         * modules/unistdio/u8-vsprintf: New file.
34612         * modules/unistdio/u8-u8-asnprintf: New file.
34613         * modules/unistdio/u8-u8-asprintf: New file.
34614         * modules/unistdio/u8-u8-snprintf: New file.
34615         * modules/unistdio/u8-u8-sprintf: New file.
34616         * modules/unistdio/u8-u8-vasnprintf: New file.
34617         * modules/unistdio/u8-u8-vasprintf: New file.
34618         * modules/unistdio/u8-u8-vsnprintf: New file.
34619         * modules/unistdio/u8-u8-vsprintf: New file.
34620         * modules/unistdio/u16-asnprintf: New file.
34621         * modules/unistdio/u16-asprintf: New file.
34622         * modules/unistdio/u16-printf-parse: New file.
34623         * modules/unistdio/u16-snprintf: New file.
34624         * modules/unistdio/u16-sprintf: New file.
34625         * modules/unistdio/u16-vasnprintf: New file.
34626         * modules/unistdio/u16-vasprintf: New file.
34627         * modules/unistdio/u16-vsnprintf: New file.
34628         * modules/unistdio/u16-vsprintf: New file.
34629         * modules/unistdio/u16-u16-asnprintf: New file.
34630         * modules/unistdio/u16-u16-asprintf: New file.
34631         * modules/unistdio/u16-u16-snprintf: New file.
34632         * modules/unistdio/u16-u16-sprintf: New file.
34633         * modules/unistdio/u16-u16-vasnprintf: New file.
34634         * modules/unistdio/u16-u16-vasprintf: New file.
34635         * modules/unistdio/u16-u16-vsnprintf: New file.
34636         * modules/unistdio/u16-u16-vsprintf: New file.
34637         * modules/unistdio/u32-asnprintf: New file.
34638         * modules/unistdio/u32-asprintf: New file.
34639         * modules/unistdio/u32-printf-parse: New file.
34640         * modules/unistdio/u32-snprintf: New file.
34641         * modules/unistdio/u32-sprintf: New file.
34642         * modules/unistdio/u32-vasnprintf: New file.
34643         * modules/unistdio/u32-vasprintf: New file.
34644         * modules/unistdio/u32-vsnprintf: New file.
34645         * modules/unistdio/u32-vsprintf: New file.
34646         * modules/unistdio/u32-u32-asnprintf: New file.
34647         * modules/unistdio/u32-u32-asprintf: New file.
34648         * modules/unistdio/u32-u32-snprintf: New file.
34649         * modules/unistdio/u32-u32-sprintf: New file.
34650         * modules/unistdio/u32-u32-vasnprintf: New file.
34651         * modules/unistdio/u32-u32-vasprintf: New file.
34652         * modules/unistdio/u32-u32-vsnprintf: New file.
34653         * modules/unistdio/u32-u32-vsprintf: New file.
34654         * modules/unistdio/ulc-asnprintf-tests: New file.
34655         * modules/unistdio/ulc-vasnprintf-tests: New file.
34656         * modules/unistdio/ulc-vasprintf-tests: New file.
34657         * modules/unistdio/ulc-vsnprintf-tests: New file.
34658         * modules/unistdio/ulc-vsprintf-tests: New file.
34659         * modules/unistdio/u8-asnprintf-tests: New file.
34660         * modules/unistdio/u8-vasnprintf-tests: New file.
34661         * modules/unistdio/u8-vasprintf-tests: New file.
34662         * modules/unistdio/u8-vsnprintf-tests: New file.
34663         * modules/unistdio/u8-vsprintf-tests: New file.
34664         * modules/unistdio/u16-asnprintf-tests: New file.
34665         * modules/unistdio/u16-vasnprintf-tests: New file.
34666         * modules/unistdio/u16-vasprintf-tests: New file.
34667         * modules/unistdio/u16-vsnprintf-tests: New file.
34668         * modules/unistdio/u16-vsprintf-tests: New file.
34669         * modules/unistdio/u32-asnprintf-tests: New file.
34670         * modules/unistdio/u32-vasnprintf-tests: New file.
34671         * modules/unistdio/u32-vasprintf-tests: New file.
34672         * modules/unistdio/u32-vsnprintf-tests: New file.
34673         * modules/unistdio/u32-vsprintf-tests: New file.
34674         * MODULES.html.sh (Unicode string functions): Add the new modules.
34675
34676 2007-07-01  Bruno Haible  <bruno@clisp.org>
34677
34678         * lib/sprintf.c (sprintf): Limit the available length estimation,
34679         to avoid address wraparound.
34680         * lib/vsprintf.c (vsprintf): Likewise.
34681         * modules/sprintf-posix (Dependencies): Add stdint.
34682         * modules/vsprintf-posix (Dependencies): Likewise.
34683
34684 2007-07-01  Bruno Haible  <bruno@clisp.org>
34685
34686         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
34687         Windows PATH as well. Conservative double-quoting. Comments.
34688
34689 2007-07-01  Bruno Haible  <bruno@clisp.org>
34690             Eric Blake  <ebb9@byu.net>
34691             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34692
34693         * gnulib-tool (self_abspathname): Fix algorithm to cope with
34694         empty components in $PATH, denoting '.'.
34695
34696 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34697
34698         * gnulib-tool: Fix indentation.
34699         (func_create_megatestdir): Likewise.
34700         Report by Bruno Haible.
34701
34702 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34703
34704         Sync from Automake.
34705         * build-aux/gnupload: Fix shell portability issues with for loops.
34706         Report by Karl Berry.
34707
34708 2007-06-29  Simon Josefsson  <simon@josefsson.org>
34709
34710         * build-aux/maint.mk (POURL): Use translationproject.org.
34711
34712 2007-06-27  Simon Josefsson  <simon@josefsson.org>
34713             Bruno Haible  <bruno@clisp.org>
34714
34715         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
34716         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
34717         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
34718         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
34719         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
34720
34721 2007-06-27  Bruno Haible  <bruno@clisp.org>
34722
34723         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
34724         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
34725
34726 2007-06-26  Karl Berry  <karl@gnu.org>
34727
34728         * MODULES.html.sh: remove xreadlink-with-size.
34729
34730 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
34731
34732         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
34733         method that I hope also handles the double-include problem noted
34734         by Bruno Haible in
34735         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
34736
34737 2007-06-23  Bruno Haible  <bruno@clisp.org>
34738
34739         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34740         Don't let the 'mostlyclean' target fail if the last subdirectory could
34741         not be removed.
34742         Reported by Karl Berry.
34743
34744 2007-06-23  Bruno Haible  <bruno@clisp.org>
34745
34746         * gnulib-tool (echo): Add a speedier workaround for ksh.
34747         * tests/test-echo.sh: Likewise.
34748
34749 2007-06-23  Bruno Haible  <bruno@clisp.org>
34750
34751         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
34752         * tests/test-echo.sh: Likewise.
34753
34754 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34755
34756         * gnulib-tool (IFS): Initialize early, so we don't set it to
34757         empty later.
34758         (self_abspathname): Rewrite algorithm to set it, reindent.
34759         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
34760         (func_create_megatestdir): Merge some sed scripts.
34761
34762 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
34763
34764         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
34765         exposed by Sun Studio 11 cc on Solaris 8.
34766
34767 2007-06-22  Bruno Haible  <bruno@clisp.org>
34768
34769         * gnulib-tool (echo): Ensure the echo primitive does not interpret
34770         backslashes.
34771         * tests/test-echo.sh: New file.
34772
34773 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34774
34775         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
34776         simplify `sed_replace_build_aux' scripts, they are portable but
34777         echoing them with `echo' is not.
34778         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
34779
34780 2007-06-21  Karl Berry  <karl@gnu.org>
34781
34782         * config/srclist.txt: guess we can't handle the licenses via
34783         srclist at the moment.
34784
34785 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
34786
34787         * MODULES.html.sh: Add include_next.
34788         * modules/include_next: New file.
34789
34790 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
34791
34792         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
34793         INCLUDE_NEXT.
34794         (gl_CHECK_NEXT_HEADERS): New macro.
34795         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
34796         the obsolescent gl_ABSOLUTE_HEADER.
34797         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
34798         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
34799         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
34800         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
34801         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
34802         * m4/math_h.m4 (gl_MATH_H): Likewise.
34803         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
34804         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
34805         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
34806         * m4/stdint.m4 (gl_STDINT_H): Likewise.
34807         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
34808         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
34809         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
34810         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
34811         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
34812         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
34813         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
34814         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
34815         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
34816         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
34817         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
34818         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
34819         * m4/inttypes.m4 (gl_INTTYPES_H): Define
34820         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
34821         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
34822         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
34823         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
34824         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
34825         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
34826         * lib/float_.h: Likewise.
34827         * lib/inttypes_.h: Likewise.
34828         * lib/math_.h: Likewise.
34829         * lib/search_.h: Likewise.
34830         * lib/signal_.h: Likewise.
34831         * lib/stdint_.h: Likewise.
34832         * lib/stdio_.h: Likewise.
34833         * lib/stdlib_.h: Likewise.
34834         * lib/string_.h: Likewise.
34835         * lib/sys_stat_.h: Likewise.
34836         * lib/sys_time_.h: Likewise.
34837         * lib/time_.h: Likewise.
34838         * lib/unistd_.h: Likewise.
34839         * lib/wchar_.h: Likewise.
34840         * lib/wctype_.h: Likewise.
34841         * lib/dirent_.h: Likewise.
34842         * lib/iconv_.h: Likewise.
34843         * lib/locale_.h: Likewise.
34844         * lib/netinet_in_.h: Likewise.
34845         * lib/sys_select_.h: Likewise.
34846         * lib/sys_socket_.h: Likewise.
34847         * lib/sysexits_.h: Likewise.
34848         * modules/fcntl (Depends-on): Depend on include_next, not
34849         absolute_header.
34850         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
34851         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
34852         * modules/fchdir: Likewise.
34853         * modules/float: Likewise.
34854         * modules/iconv_open: Likewise.
34855         * modules/inttypes: Likewise.
34856         * modules/locale: Likewise.
34857         * modules/math: Likewise.
34858         * modules/netinet_in: Likewise.
34859         * modules/search: Likewise.
34860         * modules/signal: Likewise.
34861         * modules/stdint: Likewise.
34862         * modules/stdio: Likewise.
34863         * modules/stdlib: Likewise.
34864         * modules/string: Likewise.
34865         * modules/sys_select: Likewise.
34866         * modules/sys_socket: Likewise.
34867         * modules/sys_stat: Likewise.
34868         * modules/sys_time: Likewise.
34869         * modules/sysexits: Likewise.
34870         * modules/time: Likewise.
34871         * modules/unistd: Likewise.
34872         * modules/wchar: Likewise.
34873         * modules/wctype: Likewise.
34874         * modules/sys_stat: Change maintainer to "all".
34875         * modules/unistd: Likewise.
34876
34877 2007-06-20  Karl Berry  <karl@gnu.org>
34878
34879         * config/srclist.txt: track www changes in license files.
34880
34881 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
34882
34883         * build-aux/bootstrap: Remove stray dot.
34884         Make sure build_aux settings are honored when linking
34885         gnulib_extra_files.
34886
34887 2007-06-19  Eric Blake  <ebb9@byu.net>
34888
34889         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
34890         Allow compilation on cygwin.
34891
34892 2007-06-19  Jim Meyering  <jim@meyering.net>
34893
34894         xreadlink-with-size: Remove module.  No longer used.
34895         Ex-callers now use xreadlink or mreadlink-with-size.
34896         * modules/xreadlink-with-size: Remove module.
34897         * lib/xreadlink-with-size.c: Remove file.
34898         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
34899         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
34900         just before the function definition *is* accurate.
34901
34902         Eliminate one way canonicalize_filename_mode could exit.
34903         * lib/canonicalize.c (canonicalize_filename_mode):
34904         Use mreadlink_with_size, not xreadlink_with_size.
34905
34906 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
34907
34908         Detect porting problems to FreeBSD/arm, which has time_t wider than
34909         long int.  Original problem reported for GNU diff by Xin Li in
34910         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
34911         * modules/getdate (Depends-on): Add intprops, verify.
34912         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
34913         is an integer type no wider than long int.
34914
34915 2007-06-18  Jim Meyering  <jim@meyering.net>
34916
34917         New module: mreadlink-with-size.
34918         * MODULES.html.sh: Add mreadlink-with-size.
34919         * modules/mreadlink-with-size: New module
34920         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
34921         not xreadlink-with-size.
34922         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
34923
34924 2007-06-16  Bruno Haible  <bruno@clisp.org>
34925
34926         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
34927         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
34928         Reported by Gary V. Vaughan <gary@gnu.org>.
34929
34930 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
34931
34932         Revamp lchown so that it lives in unistd.h where it belongs.
34933         * lib/lchown.h: Remove.
34934         * lib/dirchownmod.c: Don't include lib/lchown.h.
34935         * lib/fchownat.c: Likewise.
34936         * lib/openat.c: Likewise.
34937         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
34938         does not follow symlinks.
34939         (EOPNOTSUPP): Define if not defined.
34940         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
34941         is defined to 0.
34942         (lchown): New decl.
34943         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
34944         Do not check for lchown decl.
34945         Set REPLACE_LCHOWN.
34946         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
34947         REPLACE_LCHOWN.
34948         * modules/chown: Make it clear it follows symlinks.
34949         * modules/lchown: Make it clear it doesn't follow symlinks.
34950         (Files): Remove lib/lchown.h
34951         (Depends-on): Add unistd.
34952         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
34953         (Include): Include <unistd.h>, not "lchown.h".
34954         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
34955         REPLACE_LCHOWN.
34956
34957 2007-06-15  Jim Meyering  <jim@meyering.net>
34958
34959         Change license (GPL to LGPL) of fsusage and dependents.
34960         * modules/fsusage (License): Change to LGPL.
34961         * modules/full-read (License): Likewise.
34962         * modules/full-write (License): Likewise.
34963         * modules/safe-read (License): Likewise.
34964         * modules/safe-write (License): Likewise.
34965
34966 2007-06-14  Ben Pfaff  <blp@gnu.org>
34967
34968         Missing part of allocsa -> malloca transition.
34969         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
34970         gl_MALLOCA.
34971
34972 2007-06-12  Bruno Haible  <bruno@clisp.org>
34973
34974         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
34975         to ia64, x86_64, i386.
34976         Reported by Eric Blake.
34977
34978 2007-06-12  Bruno Haible  <bruno@clisp.org>
34979
34980         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
34981         cross-compiling to x86_64.
34982
34983 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
34984
34985         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
34986         glitch reported by Ralf Wildenhues in
34987         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
34988
34989         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
34990         Vin Shelton.
34991
34992 2007-06-11  Bruno Haible  <bruno@clisp.org>
34993
34994         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
34995         replacement string.
34996         Reported by Eric Blake.
34997
34998 2007-06-10  Bruno Haible  <bruno@clisp.org>
34999
35000         Prepare vasnprintf code for use with Unicode strings.
35001         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
35002         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
35003         TYPE_U32_STRING.
35004         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
35005         a_u32_string variants.
35006         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
35007         * lib/printf-args.c: Don't include config.h and the specification
35008         header if PRINTF_FETCHARGS is already defined.
35009         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
35010         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
35011         TYPE_U16_STRING, TYPE_U32_STRING.
35012         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
35013         u16_directive, u16_directives, u32_directive, u32_directives): New
35014         types.
35015         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
35016         New declarations.
35017         * lib/printf-parse.c: Don't include config.h and the specification
35018         header if PRINTF_PARSE is already defined. Eliminate the set of
35019         parameters for WIDE_CHAR_VERSION; the user of this file must provide
35020         them now. Include c-ctype.h.
35021         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
35022         directive and CHAR_T_ONLY_ASCII.
35023         * lib/vasnprintf.c: Don't include config.h and the specification header
35024         if VASNPRINTF is already defined.
35025         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
35026         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
35027         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
35028         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
35029         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
35030         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
35031         code accordingly.
35032         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
35033         pad_ourselves also in this case, with the 'c' and 's' directives, and
35034         with a different notion of "width".
35035         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
35036
35037 2007-06-10  Bruno Haible  <bruno@clisp.org>
35038
35039         * modules/unistr/u32-mbsnlen: New file.
35040         * lib/unistr/u32-mbsnlen.c: New file.
35041
35042         * modules/unistr/u16-mbsnlen: New file.
35043         * lib/unistr/u16-mbsnlen.c: New file.
35044
35045         * modules/unistr/u8-mbsnlen: New file.
35046         * lib/unistr/u8-mbsnlen.c: New file.
35047
35048         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
35049         declarations.
35050
35051 2007-06-10  Bruno Haible  <bruno@clisp.org>
35052
35053         * lib/string_.h (mbsnlen): New declaration.
35054         * lib/mbsnlen.c: New file.
35055         * m4/mbsnlen.m4: New file.
35056         * modules/mbsnlen: New file.
35057         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
35058         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
35059         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
35060
35061 2007-06-10  Bruno Haible  <bruno@clisp.org>
35062
35063         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
35064
35065 2007-06-10  Bruno Haible  <bruno@clisp.org>
35066
35067         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
35068         * lib/mbuiter.h: Likewise.
35069
35070 2007-06-10  Bruno Haible  <bruno@clisp.org>
35071
35072         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
35073         declaration.
35074
35075 2007-06-10  Karl Berry  <karl@gnu.org>
35076
35077         * config/srclist.txt: remove gettext entries, Bruno prefers
35078         to update individually.
35079
35080 2007-06-10  Bruno Haible  <bruno@clisp.org>
35081
35082         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
35083         'maxlen'. Ensure only length + width bytes are allocated, not
35084         length + 1 + width.
35085
35086 2007-06-09  Bruno Haible  <bruno@clisp.org>
35087
35088         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
35089         (CHAR_T): Remove macro.
35090         (VASNPRINTF): Update.
35091
35092 2007-06-09  Bruno Haible  <bruno@clisp.org>
35093
35094         * MODULES.html.sh (Unicode string functions): Add the new modules.
35095
35096         * modules/uniconv/u32-conv-to-enc: New file.
35097         * lib/uniconv/u32-conv-to-enc.c: New file.
35098         * modules/uniconv/u32-conv-to-enc-tests: New file.
35099         * tests/uniconv/test-u32-conv-to-enc.c: New file.
35100
35101         * modules/uniconv/u16-conv-to-enc: New file.
35102         * lib/uniconv/u16-conv-to-enc.c: New file.
35103         * lib/uniconv/u-conv-to-enc.h: New file.
35104         * modules/uniconv/u16-conv-to-enc-tests: New file.
35105         * tests/uniconv/test-u16-conv-to-enc.c: New file.
35106
35107         * modules/uniconv/u8-conv-to-enc: New file.
35108         * lib/uniconv/u8-conv-to-enc.c: New file.
35109         * modules/uniconv/u8-conv-to-enc-tests: New file.
35110         * tests/uniconv/test-u8-conv-to-enc.c: New file.
35111
35112         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
35113         u32_conv_to_encoding): New declarations.
35114
35115 2007-06-09  Bruno Haible  <bruno@clisp.org>
35116
35117         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
35118
35119 2007-06-09  Bruno Haible  <bruno@clisp.org>
35120
35121         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
35122         * modules/malloca: Renamed from modules/allocsa, updated.
35123         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
35124         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
35125         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
35126         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
35127         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
35128         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
35129         * modules/xmalloca: Renamed from modules/xallocsa, updated.
35130         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
35131         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
35132         * modules/c-strcasestr (Depends-on): Update.
35133         * lib/c-strcasestr.c: Update.
35134         * modules/c-strstr (Depends-on): Update.
35135         * lib/c-strstr.c: Update.
35136         * modules/canonicalize-lgpl (Depends-on): Update.
35137         * lib/canonicalize-lgpl.c: Update.
35138         * modules/clean-temp (Depends-on): Update.
35139         * lib/clean-temp.c: Update.
35140         * modules/csharpcomp (Depends-on): Update.
35141         * lib/csharpcomp.c: Update.
35142         * modules/csharpexec (Depends-on): Update.
35143         * lib/csharpexec.c: Update.
35144         * modules/javacomp (Depends-on): Update.
35145         * lib/javacomp.c: Update.
35146         * modules/javaexec (Depends-on): Update.
35147         * lib/javaexec.c: Update.
35148         * modules/mbscasestr (Depends-on): Update.
35149         * lib/mbscasestr.c: Update.
35150         * modules/mbsstr (Depends-on): Update.
35151         * lib/mbsstr.c: Update.
35152         * modules/setenv (Depends-on): Update.
35153         * lib/setenv.c: Update.
35154         * modules/strcasestr (Depends-on): Update.
35155         * lib/strcasestr.c: Update.
35156         * modules/striconveha (Depends-on): Update.
35157         * lib/striconveha.c: Update.
35158         * modules/relocatable-prog-wrapper (Files): Update.
35159         * lib/relocwrapper.c: Update.
35160         * build-aux/install-reloc: Update.
35161         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
35162
35163 2007-06-08  Bruno Haible  <bruno@clisp.org>
35164
35165         Port to uClibc.
35166         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
35167         * lib/fpurge.c (fpurge): Likewise.
35168         * lib/freading.c (freading): Likewise.
35169         * lib/fseeko.c (rpl_fseeko): Likewise.
35170         * lib/fseterr.c (fseterr): Likewise.
35171         * lib/fwriting.c (fwriting): Likewise.
35172         * tests/test-fflush.c (main): Avoid a failure on uClibc.
35173
35174 2007-06-08  Bruno Haible  <bruno@clisp.org>
35175
35176         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
35177         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
35178         * modules/gettext (Files): Add m4/intlmacosx.m4.
35179
35180 2007-06-07  Bruno Haible  <bruno@clisp.org>
35181
35182         * modules/localename-tests: New file.
35183         * tests/test-localename.c: New file.
35184
35185         New module 'localename'.
35186         * lib/localename.h: New file.
35187         * lib/localename.c: New file, from GNU gettext.
35188         * m4/localename.m4: New file.
35189         * modules/localename: New file.
35190
35191 2007-06-07  Bruno Haible  <bruno@clisp.org>
35192
35193         Work around the lack of <wchar.h> on some builds of uClibc.
35194         * doc/headers/wchar.texi: Update.
35195         * lib/wchar_.h: Include <wchar.h> only if it exists.
35196         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
35197         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
35198         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
35199         doesn't exist.
35200         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
35201         * modules/mbfile (Depends-on): Add wchar.
35202         * modules/mbiter (Depends-on): Likewise.
35203         * modules/mbuiter (Depends-on): Likewise.
35204         Reported by Simon Josefsson.
35205
35206 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
35207
35208         Work around problem reported by Steven M. Schweda in
35209         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
35210         Tru64 5.1B with the Compaq compiler environment installed declares
35211         an 'isblank' function but does not define it in the C library.
35212         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
35213         * lib/regex_internal.h (isblank): Likewise.
35214         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
35215         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
35216
35217 2007-06-05  Bruno Haible  <bruno@clisp.org>
35218
35219         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
35220         ia64.
35221         * modules/printf-safe: New file.
35222         * modules/fprintf-posix (Depends-on): Add printf-safe.
35223         * modules/printf-posix (Depends-on): Likewise.
35224         * modules/snprintf-posix (Depends-on): Likewise.
35225         * modules/sprintf-posix (Depends-on): Likewise.
35226         * modules/vasnprintf-posix (Depends-on): Likewise.
35227         * modules/vasprintf-posix (Depends-on): Likewise.
35228         * modules/vfprintf-posix (Depends-on): Likewise.
35229         * modules/vprintf-posix (Depends-on): Likewise.
35230         * modules/vsnprintf-posix (Depends-on): Likewise.
35231         * modules/vsprintf-posix (Depends-on): Likewise.
35232         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
35233         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
35234         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
35235         "no" on i386, x86_64, ia64.
35236         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
35237         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35238         on i386, x86_64, ia64.
35239         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
35240         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35241         on i386, x86_64, ia64.
35242         * tests/test-vasnprintf-posix.c: Include float.h.
35243         (LDBL80_WORDS): New macro.
35244         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35245         on i386, x86_64, ia64.
35246         * tests/test-vasprintf-posix.c: Include float.h.
35247         (LDBL80_WORDS): New macro.
35248         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35249         on i386, x86_64, ia64.
35250         * tests/test-snprintf-posix.c: Include float.h.
35251         * tests/test-sprintf-posix.c: Likewise.
35252         * tests/test-vsnprintf-posix.c: Likewise.
35253         * tests/test-vsprintf-posix.c: Likewise.
35254
35255 2007-06-05  Bruno Haible  <bruno@clisp.org>
35256
35257         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
35258         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
35259         non-IEEE numbers on i386, x86_64, ia64.
35260         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
35261         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
35262         * tests/test-isnanl.h: Include float.h.
35263         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
35264
35265 2007-06-05  Bruno Haible  <bruno@clisp.org>
35266
35267         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
35268         also the %a / %A. Handle the %a / %A code before this extra handling.
35269
35270 2007-06-05  Bruno Haible  <bruno@clisp.org>
35271
35272         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
35273         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
35274
35275 2007-06-05  Bruno Haible  <bruno@clisp.org>
35276
35277         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
35278         typo in variable name.
35279
35280 2007-06-05  Eric Blake  <ebb9@byu.net>
35281
35282         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
35283         Reported by Simon Josefsson.
35284
35285 2007-06-04  Bruno Haible  <bruno@clisp.org>
35286
35287         Avoid test failures on some PowerPC platforms.
35288         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
35289         Define differently for PowerPC.
35290         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
35291         Reported by Gary V. Vaughan <gary@gnu.org>.
35292
35293 2007-06-02  Bruno Haible  <bruno@clisp.org>
35294
35295         Fix test-stdint failure on FreeBSD/ia64.
35296         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
35297         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
35298         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
35299         * doc/headers/stdint.texi: Update.
35300
35301 2007-06-01  Bruno Haible  <bruno@clisp.org>
35302
35303         * tests/test-binary-io.c (main): Pass a third argument to open().
35304         Reported by Gary V. Vaughan <gary@gnu.org>.
35305
35306 2007-06-01  Bruno Haible  <bruno@clisp.org>
35307
35308         * doc/functions/frexpl.texi: Update for mingw.
35309
35310 2007-06-01  Bruno Haible  <bruno@clisp.org>
35311
35312         * tests/test-lseek.c (main): Disable test of errno for invalid third
35313         argument.
35314         * doc/functions/lseek.texi: Update.
35315         Reported by Gary V. Vaughan <gary@gnu.org>.
35316
35317 2007-05-28  Bruno Haible  <bruno@clisp.org>
35318
35319         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
35320
35321 2007-05-31  Eric Blake  <ebb9@byu.net>
35322
35323         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
35324         cross compiling.
35325
35326 2007-05-30  Eric Blake  <ebb9@byu.net>
35327         and Bruno Haible  <bruno@clisp.org>
35328
35329         Work around mingw test failures exposed by m4-1.4.9b.
35330         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
35331         * tests/test-unistd.c: Disable uid_t and git_t tests for the
35332         moment.
35333
35334 2007-05-30  Bruno Haible  <bruno@clisp.org>
35335
35336         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
35337         assuming that they are closed. Needed on HP-UX 11.
35338
35339 2007-05-29  Bruno Haible  <bruno@clisp.org>
35340
35341         Fix a problem with #include_next.
35342         * lib/dirent_.h: Split the double-inclusion guard.
35343         * lib/fcntl_.h: Likewise.
35344         * lib/float_.h: Likewise.
35345         * lib/iconv_.h: Likewise.
35346         * lib/inttypes_.h: Likewise.
35347         * lib/locale_.h: Likewise.
35348         * lib/math_.h: Likewise.
35349         * lib/netinet_in_.h: Likewise.
35350         * lib/search_.h: Likewise.
35351         * lib/signal_.h: Likewise.
35352         * lib/stdint_.h: Likewise.
35353         * lib/stdio_.h: Likewise.
35354         * lib/stdlib_.h: Likewise.
35355         * lib/string_.h: Likewise.
35356         * lib/sys_select_.h: Likewise.
35357         * lib/sys_socket_.h: Likewise.
35358         * lib/sys_stat_.h: Likewise.
35359         * lib/sys_time_.h: Likewise.
35360         * lib/sysexits_.h: Likewise.
35361         * lib/time_.h: Likewise.
35362         * lib/unistd_.h: Likewise.
35363         * lib/wchar_.h: Likewise.
35364         * lib/wctype_.h: Likewise.
35365
35366 2007-05-29  Bruno Haible  <bruno@clisp.org>
35367
35368         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
35369         for the moment.
35370
35371 2007-05-29  Bruno Haible  <bruno@clisp.org>
35372
35373         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
35374         invocation.
35375         Reported by Eric Blake.
35376
35377 2007-05-29  Bruno Haible  <bruno@clisp.org>
35378
35379         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
35380         compiling case.
35381
35382 2007-05-29  Eric Blake  <ebb9@byu.net>
35383             Bruno Haible  <bruno@clisp.org>
35384
35385         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
35386         cross compiles.
35387
35388 2007-05-28  Eric Blake  <ebb9@byu.net>
35389
35390         * modules/closein-tests (test_closein_LDADD): Support test on
35391         cygwin with libtool.
35392
35393 2007-05-28  Bruno Haible  <bruno@clisp.org>
35394
35395         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
35396         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
35397         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
35398         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
35399         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
35400         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
35401         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
35402         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
35403         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
35404
35405 2007-05-28  Eric Blake  <ebb9@byu.net>
35406
35407         Unconditionally include <config.h> in unit tests.
35408         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
35409         * tests/test-allocsa.c, tests/test-arcfour.c,
35410         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
35411         tests/test-array_list.c, tests/test-array_oset.c,
35412         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
35413         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
35414         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
35415         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
35416         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
35417         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
35418         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
35419         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
35420         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
35421         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
35422         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
35423         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
35424         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
35425         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
35426         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
35427         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
35428         test-md5.c, test-memmem.c, test-printf-posix.c,
35429         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
35430         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
35431         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
35432         test-strcasestr.c, test-striconv.c, test-striconveh.c,
35433         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
35434         test-vasnprintf-posix2.c, test-vasnprintf.c,
35435         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
35436         test-vfprintf-posix.c, test-vprintf-posix.c,
35437         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
35438         test-xvasprintf.c: Likewise.
35439
35440 2007-05-28  Bruno Haible  <bruno@clisp.org>
35441
35442         * gnulib-tool (func_import): Remember the --with-tests command-line
35443         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
35444         Reported by Eric Blake.
35445
35446 2007-05-28  Bruno Haible  <bruno@clisp.org>
35447
35448         * modules/ftell-tests: New file.
35449         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
35450         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
35451
35452         * lib/ftell.c: New file.
35453         * modules/ftell: New file.
35454         * m4/ftell.m4: New file.
35455         * doc/functions/ftell.texi: Update.
35456         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
35457         REPLACE_FTELL.
35458         * lib/stdio_.h (rpl_ftell): New declaration.
35459         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
35460         REPLACE_FTELL.
35461
35462 2007-05-28  Eric Blake  <ebb9@byu.net>
35463
35464         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
35465
35466 2007-05-28  Bruno Haible  <bruno@clisp.org>
35467
35468         * modules/fseek-tests: New file.
35469         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
35470         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
35471
35472         * lib/fseek.c: New file.
35473         * modules/fseek: New file.
35474         * m4/fseek.m4: New file.
35475         * doc/functions/fseek.texi: Update.
35476         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
35477         REPLACE_FSEEK.
35478         * lib/stdio_.h (rpl_fseek): New declaration.
35479         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
35480         REPLACE_FSEEK.
35481
35482 2007-05-28  Bruno Haible  <bruno@clisp.org>
35483
35484         * lib/stdio_.h (fflush): More comments.
35485
35486 2007-05-28  Bruno Haible  <bruno@clisp.org>
35487
35488         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
35489         runtime test.
35490
35491 2007-05-28  Eric Blake  <ebb9@byu.net>
35492
35493         Improve lseek module.
35494         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
35495         * lib/unistd_.h (lseek): Scale back link warning message.
35496         * tests/test-lseek.c: Beef up test.
35497         * tests/test-lseek.sh: Exercise more facets of lseek.
35498         Reported by Bruno Haible.
35499
35500 2007-05-28  Bruno Haible  <bruno@clisp.org>
35501
35502         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
35503         to define.
35504
35505 2007-05-27  Bruno Haible  <bruno@clisp.org>
35506
35507         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
35508
35509 2007-05-27  Bruno Haible  <bruno@clisp.org>
35510
35511         * modules/openmp: New file.
35512         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
35513         Noah Misch.
35514
35515 2007-05-26  Bruno Haible  <bruno@clisp.org>
35516
35517         * modules/chdir-long (Depends-on): Add fchdir.
35518         * modules/chdir-safer (Depends-on): Likewise.
35519         * modules/fts (Depends-on): Likewise.
35520         * modules/fts-lgpl (Depends-on): Likewise.
35521         * modules/openat (Depends-on): Likewise.
35522         * modules/savewd (Depends-on): Likewise.
35523
35524 2007-05-24  Eric Blake  <ebb9@byu.net>
35525
35526         Fix lseek on mingw.
35527         * modules/lseek: New module.
35528         * m4/lseek.m4: New file.
35529         * lib/lseek.c: New file.
35530         * modules/lseek-tests: New file.
35531         * tests/test-lseek.c: New file.
35532         * tests/test-lseek.sh: New file.
35533         * MODULES.html.sh: Document lseek module.
35534         * modules/fflush (Depends-on): Add lseek, fseeko.
35535         * modules/fseeko (Depends-on): Likewise.
35536         * modules/ftello (Depends-on): Likewise.
35537         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
35538         broken.
35539         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
35540         broken.
35541         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
35542         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
35543         * lib/ftello.c (rpl_ftello): Likewise.
35544         * tests/test-fseeko.c (main): Test this.
35545         * tests/test-fseeko.sh: Likewise.
35546         * tests/test-ftello.c (main): Likewise.
35547         * tests/test-ftello.sh: Likewise.
35548         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
35549         implies replacing fseek.
35550         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
35551         HAVE_FTELLO.
35552         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
35553         * modules/unistd (Makefile.am): Likewise.
35554         * lib/unistd_.h (lseek): Declare a replacement.
35555         * doc/functions/lseek.texi (lseek): Document this fix.
35556         * doc/functions/fseek.texi (fseek): Likewise.
35557         * doc/functions/ftell.texi (ftell): Likewise.
35558
35559 2007-05-24  Bruno Haible  <bruno@clisp.org>
35560
35561         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
35562         in the printed representation of a NaN.
35563         * tests/test-vasprintf-posix.c (test_function): Likewise.
35564         * tests/test-snprintf-posix.h (test_function): Likewise.
35565         * tests/test-sprintf-posix.h (test_function): Likewise.
35566         Reported by Eric Blake.
35567
35568 2007-05-23  Eric Blake  <ebb9@byu.net>
35569
35570         Fix fseeko/ftello on cygwin 1.5.24.
35571         * doc/functions/fseeko.texi (fseeko): Document the fix.
35572         * doc/functions/ftello.texi (ftello): Document the fix.
35573         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
35574         * doc/functions/stdout.text (stdout): New file.
35575         * doc/functions/stderr.text (stderr): New file.
35576         * doc/gnulib.texi (Function Substitutes): Use new files.
35577         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
35578         prior to 1.7.0.
35579         * tests/test-ftello.c (main): Likewise for ftello.
35580         * tests/test-fseeko.sh: New file.
35581         * tests/test-ftello.sh: New file.
35582         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
35583         with seekable stdin.
35584         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
35585         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
35586         (gl_REPLACE_FSEEKO): New macro.
35587         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
35588         * modules/fseeko (Files): Distribute fseeko.c.
35589         * modules/ftello (Files): Distribute ftello.c.
35590         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
35591         mode.
35592         * lib/ftello.c (rpl_ftello): New file.
35593         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
35594         fseeko, ftello.
35595         (gl_STDIN_LARGE_OFFSET): New macro.
35596         * modules/stdio (Makefile.am): Perform the replacement.
35597         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
35598
35599 2007-05-23  Bruno Haible  <bruno@clisp.org>
35600
35601         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
35602         GNULIB_POSIXCHECK is defined.
35603
35604 2007-05-21  Bruno Haible  <bruno@clisp.org>
35605
35606         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
35607         Check also the output for NaN arguments. When cross-compiling, guess
35608         no on IRIX.
35609         * lib/vasnprintf.c: Update comments.
35610         * tests/test-vasnprintf-posix.c (strisnan): New function.
35611         (test_function): Use it.
35612         * tests/test-vasprintf-posix.c (strisnan): New function.
35613         (test_function): Use it.
35614         * tests/test-snprintf-posix.h (strisnan): New function.
35615         (test_function): Use it.
35616         * tests/test-sprintf-posix.h (strisnan): New function.
35617         (test_function): Use it.
35618         Reported by Eric Blake.
35619
35620 2007-05-20  Bruno Haible  <bruno@clisp.org>
35621
35622         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
35623         numbers that fails on BeOS.
35624         * doc/functions/frexpl.texi: Update.
35625
35626 2007-05-20  Jim Meyering  <jim@meyering.net>
35627
35628         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
35629         forced upon us by glibc-2.6.
35630
35631 2007-05-20  Bruno Haible  <bruno@clisp.org>
35632
35633         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
35634         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
35635         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
35636         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
35637         NEED_PRINTF_INFINITE.
35638         (is_infinitel): New function.
35639         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
35640         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
35641         gl_PREREQ_VASNPRINTF_INFINITE.
35642         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
35643         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35644         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
35645         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
35646         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
35647         gl_PREREQ_VASNPRINTF_INFINITE.
35648         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35649         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35650         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35651         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35652         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35653         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35654         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35655         * doc/functions/fprintf.texi: Update.
35656         * doc/functions/printf.texi: Update.
35657         * doc/functions/snprintf.texi: Update.
35658         * doc/functions/sprintf.texi: Update.
35659         * doc/functions/vfprintf.texi: Update.
35660         * doc/functions/vprintf.texi: Update.
35661         * doc/functions/vsnprintf.texi: Update.
35662         * doc/functions/vsprintf.texi: Update.
35663
35664 2007-05-20  Bruno Haible  <bruno@clisp.org>
35665
35666         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
35667         was not found in libc.
35668         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
35669
35670 2007-05-20  Bruno Haible  <bruno@clisp.org>
35671
35672         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
35673         printed as "-nan" instead of "nan".
35674         * tests/test-vasprintf-posix.c (test_function): Likewise.
35675         * tests/test-snprintf-posix.h (test_function): Likewise.
35676         * tests/test-sprintf-posix.h (test_function): Likewise.
35677         Needed for HP-UX 11.
35678
35679 2007-05-20  Jim Meyering  <jim@meyering.net>
35680
35681         Fix buggy test for the fchownat-deref bug.
35682         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
35683         symlink required for the run-test.  Without it, this test would
35684         always declare that fchownat doesn't work, and client code would
35685         unnecessarily use the replacement function with fixed libc.
35686         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
35687         Reported by Greg Schafer.
35688
35689 2007-05-19  Bruno Haible  <bruno@clisp.org>
35690
35691         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
35692         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
35693         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
35694         Needed for IRIX 6.5 and Solaris 2.5.1.
35695
35696 2007-05-19  Bruno Haible  <bruno@clisp.org>
35697
35698         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
35699         (test_function): Skip tests involving -0.0 on platforms where
35700         -0.0 = 0.0.
35701         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
35702         (test_function): Skip tests involving -0.0 on platforms where
35703         -0.0 = 0.0.
35704         * tests/test-snprintf-posix.h (have_minus_zero): New function.
35705         (test_function): Skip tests involving -0.0 on platforms where
35706         -0.0 = 0.0.
35707         * tests/test-sprintf-posix.h (have_minus_zero): New function.
35708         (test_function): Skip tests involving -0.0 on platforms where
35709         -0.0 = 0.0.
35710         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
35711         tests.
35712         * tests/test-printf-posix.h (test_function): Likewise.
35713         * tests/test-printf-posix.output: Remove all -0.0 related results.
35714         Needed for IRIX 6.5.
35715
35716 2007-05-19  Bruno Haible  <bruno@clisp.org>
35717
35718         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
35719         printed as "nan0x7fffffff" instead of "nan".
35720         * tests/test-vasprintf-posix.c (test_function): Likewise.
35721         * tests/test-snprintf-posix.h (test_function): Likewise.
35722         * tests/test-sprintf-posix.h (test_function): Likewise.
35723         * tests/test-fprintf-posix.h (NaN): Remove macro.
35724         (test_function): Remove all NaN related tests.
35725         * tests/test-printf-posix.h (NaN): Remove macro.
35726         (test_function): Remove all NaN related tests.
35727         * tests/test-printf-posix.output: Remove all NaN related results.
35728         Needed for IRIX 6.5.
35729
35730 2007-05-19  Bruno Haible  <bruno@clisp.org>
35731
35732         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
35733         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
35734
35735 2007-05-19  Bruno Haible  <bruno@clisp.org>
35736
35737         * lib/float_.h: New file.
35738         * m4/float_h.m4: New file.
35739         * modules/float: New file.
35740         * modules/isnanl (Dependencies): Add float.
35741         * modules/isnanl-nolibm (Dependencies): Likewise.
35742         * modules/mathl (Dependencies): Likewise.
35743         * modules/printf-frexpl (Dependencies): Likewise.
35744         * modules/signbit (Dependencies): Likewise.
35745         * modules/vasnprintf (Dependencies): Likewise.
35746         * doc/headers/float.texi: Update.
35747
35748 2007-05-19  Jim Meyering  <jim@meyering.net>
35749
35750         * lib/utimens.c (gl_futimens): Rename from futimens,
35751         now that glibc-2.6 declares futimens.
35752         * lib/utimens.h: Likewise.
35753
35754 2007-05-19  Bruno Haible  <bruno@clisp.org>
35755
35756         Avoid test failures on mingw.
35757         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
35758         * tests/test-printf-posix.sh: Likewise.
35759         * tests/test-vfprintf-posix.sh: Likewise.
35760         * tests/test-vprintf-posix.sh: Likewise.
35761
35762 2007-05-19  Bruno Haible  <bruno@clisp.org>
35763
35764         Fix *printf result for NaN, Inf, -0.0 on mingw.
35765         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
35766         * lib/vasnprintf.c: Include math.h and isnan.h.
35767         (is_infinite_or_zero): New function.
35768         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
35769         values in the %f, %F, %e, %E, %g, %G directives.
35770         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
35771         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35772         gl_PRINTF_INFINITE and test its result. Invoke
35773         gl_PREREQ_VASNPRINTF_INFINITE.
35774         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35775         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35776         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35777         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35778         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35779         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35780         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35781         * doc/functions/fprintf.texi: Update.
35782         * doc/functions/printf.texi: Update.
35783         * doc/functions/snprintf.texi: Update.
35784         * doc/functions/sprintf.texi: Update.
35785         * doc/functions/vfprintf.texi: Update.
35786         * doc/functions/vprintf.texi: Update.
35787         * doc/functions/vsnprintf.texi: Update.
35788         * doc/functions/vsprintf.texi: Update.
35789
35790 2007-05-19  Bruno Haible  <bruno@clisp.org>
35791
35792         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
35793         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
35794         Instead of multiplying with 10^k, set extra_zeroes to k.
35795         (scale10_round_long_double): Remove function.
35796
35797 2007-05-18  Bruno Haible  <bruno@clisp.org>
35798
35799         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
35800         introduced on 2007-05-06.
35801
35802 2007-05-18  Bruno Haible  <bruno@clisp.org>
35803
35804         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
35805         %g directives.
35806         * tests/test-vasprintf-posix.c (test_function): Likewise.
35807         * tests/test-snprintf-posix.h (test_function): Likewise.
35808         * tests/test-sprintf-posix.h (test_function): Likewise.
35809
35810 2007-05-18  Bruno Haible  <bruno@clisp.org>
35811
35812         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
35813         (strmatch): New function.
35814         (test_function): Test the %f directive on numbers of various exponents.
35815         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
35816         (strmatch): New function.
35817         (test_function): Test the %f directive on numbers of various exponents.
35818         * tests/test-snprintf-posix.h (strmatch): New function.
35819         (test_function): Test the %f directive on numbers of various exponents.
35820         * tests/test-sprintf-posix.h (strmatch): New function.
35821         (test_function): Test the %f directive on numbers of various exponents.
35822         * tests/test-snprintf-posix.c (SIZEOF): New macro.
35823         * tests/test-sprintf-posix.c (SIZEOF): New macro.
35824         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
35825         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
35826
35827 2007-05-18  Bruno Haible  <bruno@clisp.org>
35828
35829         Add support for 'long double' number output.
35830         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
35831         * lib/vasnprintf.c: Include math.h and float+.h.
35832         (mp_limb_t): New type.
35833         (GMP_LIMB_BITS): New macro.
35834         (mp_twolimb_t): New type.
35835         (GMP_TWOLIMB_BITS): New macro.
35836         (mpn_t): New type.
35837         (multiply, divide, convert_to_decimal, decode_long_double,
35838         scale10_round_long_double, scale10_round_decimal_long_double,
35839         floorlog10l): New functions.
35840         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
35841         for the %f, %F, %e, %E, %g, %G directives.
35842         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
35843         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35844         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
35845         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
35846         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35847         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35848         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35849         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35850         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35851         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35852         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35853         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
35854         * modules/snprintf-posix (Depends-on): Likewise.
35855         * modules/sprintf-posix (Depends-on): Likewise.
35856         * modules/vasnprintf-posix (Depends-on): Likewise.
35857         * modules/vasprintf-posix (Depends-on): Likewise.
35858         * modules/vfprintf-posix (Depends-on): Likewise.
35859         * modules/vsnprintf-posix (Depends-on): Likewise.
35860         * modules/vsprintf-posix (Depends-on): Likewise.
35861         * modules/vasnprintf (Files): Add lib/float+.h.
35862         * doc/functions/fprintf.texi: Update.
35863         * doc/functions/printf.texi: Update.
35864         * doc/functions/snprintf.texi: Update.
35865         * doc/functions/sprintf.texi: Update.
35866         * doc/functions/vfprintf.texi: Update.
35867         * doc/functions/vprintf.texi: Update.
35868         * doc/functions/vsnprintf.texi: Update.
35869         * doc/functions/vsprintf.texi: Update.
35870
35871 2007-05-18  Bruno Haible  <bruno@clisp.org>
35872
35873         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
35874
35875 2007-05-18  Bruno Haible  <bruno@clisp.org>
35876
35877         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
35878         for printing 64-bit integers. Needed for mingw.
35879
35880 2007-05-18  Bruno Haible  <bruno@clisp.org>
35881
35882         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
35883         gl_FUNC_FREXPL_WORKS.
35884         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
35885
35886 2007-05-18  Bruno Haible  <bruno@clisp.org>
35887
35888         * modules/frexpl-nolibm-tests: New file.
35889
35890         * modules/frexpl-nolibm: New file.
35891         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
35892
35893 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
35894
35895         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
35896         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
35897         GCC 4.2, which otherwise issues a lot of warnings.
35898         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
35899         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
35900         Likewise.
35901         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
35902         * modules/iconv_open (iconv.h): Likewise.
35903         * modules/locale (locale.h): Likewise.
35904         * modules/netinet_in (netinet/in.h): Likewise.
35905         * modules/sys_select (sys_select.h): Likewise.
35906         * modules/sys_socket (sys/socket.h): Likewise.
35907         * modules/sys_stat (sys/stat.h): Likewise.
35908         * modules/sysexits (sysexits.h): Likewise.
35909         * modules/unistd (unistd.h): Likewise.
35910
35911 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35912
35913         * modules/closein-tests (Makefile.am): Distribute
35914         `test-closein.sh'.
35915
35916 2007-05-17  Bruno Haible  <bruno@clisp.org>
35917
35918         * tests/test-printf-posix.output: Renamed from
35919         tests/test-fprintf-posix.out.
35920         * modules/fprintf-posix-tests: Update.
35921         * modules/printf-posix-tests: Update.
35922         * modules/vfprintf-posix-tests: Update.
35923         * modules/vprintf-posix-tests: Update.
35924         * tests/test-fprintf-posix.sh: Update.
35925         * tests/test-printf-posix.sh: Update.
35926         * tests/test-vfprintf-posix.sh: Update.
35927         * tests/test-vprintf-posix.sh: Update.
35928         Reported by Ralf Wildenhues.
35929
35930 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
35931
35932         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
35933         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
35934         GCC 4.2, which otherwise issues a lot of warnings.
35935         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
35936         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
35937         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
35938         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
35939         it should no longer be needed.
35940         * lib/string_.h: Likewise.
35941         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
35942         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
35943         * modules/inttypes (inttypes.h): Likewise.
35944         * modules/math (math.h): Likewise.
35945         * modules/search (search.h): Likewise.
35946         * modules/signal (signal.h): Likewise.
35947         * modules/stdint (stdint.h): Likewise.
35948         * modules/stdio (stdio.h): Likewise.
35949         * modules/stdlib (stdlib.h): Likewise.
35950         * modules/string (string.h): Likewise.
35951         * modules/sys_time (sys/time.h): Likewise.
35952         * modules/time (time.h): Likewise.
35953         * modules/wchar (wchar.h): Likewise.
35954         * modules/wctype (wtype.h): Likewise.
35955
35956 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
35957
35958         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
35959
35960 2007-05-13  Bruno Haible  <bruno@clisp.org>
35961
35962         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
35963         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
35964         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
35965         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
35966         (gl_PREREQ_STRTOK_R): Don't require it here.
35967
35968 2007-05-13  Bruno Haible  <bruno@clisp.org>
35969
35970         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
35971         when used in C++ mode.
35972
35973 2007-05-12  Bruno Haible  <bruno@clisp.org>
35974
35975         * lib/linebuffer.h: Tweak doc.
35976         * lib/linebuffer.c: Likewise.
35977
35978 2007-05-12  James Youngman  <jay@gnu.org>
35979
35980         * lib/linebuffer.c (readlinebuffer_delim): New function,
35981         like readlinebuffer, but use a caller-specified delimiter.
35982         (readlinebuffer): Just call readlinebuffer_delim with '\n'
35983         as the delimiter.
35984         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
35985
35986 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
35987
35988         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
35989         * modules/openat (Files): Remove openat-die.c.
35990         (Depends-on): Add openat-die.
35991         * modules/openat-die: New module.
35992
35993 2007-05-06  Bruno Haible  <bruno@clisp.org>
35994
35995         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
35996         Update with info about Cygwin.
35997         * doc/functions/fprintf.texi: Update.
35998         * doc/functions/printf.texi: Update.
35999         * doc/functions/snprintf.texi: Update.
36000         * doc/functions/sprintf.texi: Update.
36001         * doc/functions/vfprintf.texi: Update.
36002         * doc/functions/vprintf.texi: Update.
36003         * doc/functions/vsnprintf.texi: Update.
36004         * doc/functions/vsprintf.texi: Update.
36005         Reported by Eric Blake.
36006
36007 2007-05-06  Bruno Haible  <bruno@clisp.org>
36008
36009         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
36010         padding ourselves for the floating-point directives.
36011         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
36012         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
36013         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
36014         gl_PRINTF_FLAG_ZERO and test its result. Invoke
36015         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
36016         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36017         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
36018         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36019         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36020         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
36021         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36022         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36023         * tests/test-snprintf-posix.h (test_function): Also check the width
36024         and some flags in the %f directive.
36025         * tests/test-sprintf-posix.h (test_function): Likewise.
36026         * tests/test-vasnprintf-posix.c (test_function): Likewise.
36027         * tests/test-vasprintf-posix.c (test_function): Likewise.
36028         * doc/functions/fprintf.texi: Update.
36029         * doc/functions/printf.texi: Update.
36030         * doc/functions/snprintf.texi: Update.
36031         * doc/functions/sprintf.texi: Update.
36032         * doc/functions/vfprintf.texi: Update.
36033         * doc/functions/vprintf.texi: Update.
36034         * doc/functions/vsnprintf.texi: Update.
36035         * doc/functions/vsprintf.texi: Update.
36036
36037 2007-05-06  Bruno Haible  <bruno@clisp.org>
36038
36039         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
36040         pass the ' flag character to sprintf or snprintf.
36041         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
36042         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
36043         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
36044         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
36045         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
36046         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36047         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
36048         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36049         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36050         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
36051         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36052         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36053         * tests/test-snprintf-posix.h (test_function): Also check the grouping
36054         flag.
36055         * tests/test-sprintf-posix.h (test_function): Likewise.
36056         * tests/test-vasnprintf-posix.c (test_function): Likewise.
36057         * tests/test-vasprintf-posix.c (test_function): Likewise.
36058         * doc/functions/fprintf.texi: Update.
36059         * doc/functions/printf.texi: Update.
36060         * doc/functions/snprintf.texi: Update.
36061         * doc/functions/sprintf.texi: Update.
36062         * doc/functions/vfprintf.texi: Update.
36063         * doc/functions/vprintf.texi: Update.
36064         * doc/functions/vsnprintf.texi: Update.
36065         * doc/functions/vsprintf.texi: Update.
36066
36067 2007-05-01  Bruno Haible  <bruno@clisp.org>
36068
36069         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
36070
36071 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
36072
36073         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
36074         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
36075
36076 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
36077
36078         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
36079         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
36080         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
36081
36082 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
36083
36084         * lib/argp-help.c (struct hol_entry): New member `ord'.
36085         (HOL_ENTRY_PTRCMP): Use ord for comparison
36086         (hol_sort): Initialize ord.
36087
36088 2007-05-01  Bruno Haible  <bruno@clisp.org>
36089
36090         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
36091         Reported by Eric Blake.
36092         * doc/gnulib.texi (Function Substitutes): Update.
36093
36094 2007-05-01  Bruno Haible  <bruno@clisp.org>
36095
36096         * doc/functions.texi: Remove file, now redundant through
36097         doc/functions/*.texi.
36098
36099 2007-05-01  Bruno Haible  <bruno@clisp.org>
36100
36101         * modules/argp (Depends-on): Add sleep.
36102
36103 2007-05-01  Bruno Haible  <bruno@clisp.org>
36104
36105         * modules/sleep-tests: New file.
36106         * tests/test-sleep.c: New file.
36107
36108         * modules/sleep: New file.
36109         * lib/sleep.c: New file.
36110         * m4/sleep.m4: New file.
36111         * lib/unistd_.h (sleep): New declaration.
36112         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
36113         HAVE_SLEEP.
36114         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
36115         * doc/functions/sleep.texi: Document the sleep module.
36116
36117 2007-05-01  Bruno Haible  <bruno@clisp.org>
36118
36119         * lib/sigprocmask.h: Remove file.
36120         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
36121         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
36122         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
36123         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
36124         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
36125         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
36126         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
36127         HAVE_SIGSET_T as a shell variable.
36128         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
36129         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
36130         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
36131         (Depends-on): Add signal. Remove verify.
36132         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
36133         (Include): Mention <signal.h> instead of sigprocmask.h.
36134         * NEWS: Mention the change.
36135         * lib/fatal-signal.c: Don't include sigprocmask.h.
36136
36137 2007-05-01  Bruno Haible  <bruno@clisp.org>
36138
36139         * modules/signal: New file.
36140         * lib/signal_.h: New file.
36141         * m4/signal_h.m4: New file.
36142
36143 2007-05-01  Bruno Haible  <bruno@clisp.org>
36144
36145         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
36146         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
36147         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
36148         HAVE_WCTYPE_CTMP_BUG into wctype.h.
36149
36150 2007-05-01  Bruno Haible  <bruno@clisp.org>
36151
36152         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
36153         configure time.
36154         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
36155         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
36156         * modules/sys_stat (Makefile.am): Substitute their values into
36157         sys/stat.h.
36158
36159 2007-05-01  Bruno Haible  <bruno@clisp.org>
36160
36161         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
36162         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
36163         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
36164
36165 2007-05-01  Bruno Haible  <bruno@clisp.org>
36166
36167         * doc/header/assert.texi: Undo last change: don't mention the gnulib
36168         'assert' module here.
36169
36170 2007-05-01  Bruno Haible  <bruno@clisp.org>
36171
36172         * doc/functions/*.texi: New files.
36173         * doc/functions/google-ranking.txt: New file.
36174         * doc/gnulib.texi (Function Substitutes): New chapter.
36175         (ctime, inet_ntoa): Remove sections.
36176         * doc/ctime.texi: Remove file.
36177         * doc/inet_ntoa.texi: Remove file.
36178         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
36179         dependencies.
36180         (%.info): New rule, specifying a --reference-limit.
36181
36182 2007-05-01  Bruno Haible  <bruno@clisp.org>
36183
36184         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
36185
36186 2007-05-01  Bruno Haible  <bruno@clisp.org>
36187
36188         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
36189         the portability of 'mkdir' to mingw systems.
36190
36191 2007-05-01  Bruno Haible  <bruno@clisp.org>
36192
36193         * doc/headers/google-ranking.txt: New file.
36194
36195 2007-04-30  Eric Blake  <ebb9@byu.net>
36196
36197         Prefer fseeko to fseek.
36198         * modules/getpass (Depends-on): Add fseeko.
36199         * lib/getpass.c (getpass): Use fseeko, not fseek.
36200
36201 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
36202
36203         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
36204         assumes the sorting is stable, while most qsort implementations
36205         are not.  Use argument addresses to ensure they never compare as
36206         equal.
36207
36208         * tests/test-argp-2.sh (usage-indent test): Fix output
36209         (func_compare): Restore diff options
36210         * tests/test-argp.c: Restore #include "progname.h"
36211
36212 2007-04-29  Bruno Haible  <bruno@clisp.org>
36213
36214         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
36215         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
36216         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
36217         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36218         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
36219         (configure.ac): Define CHECK_SNPRINTF_POSIX.
36220         (TESTS, check_PROGRAMS): Add test-snprintf.
36221         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
36222         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
36223         (TESTS, check_PROGRAMS): Add test-vsnprintf.
36224         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
36225         assertions that fail on HP-UX, OSF/1, or IRIX.
36226         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
36227
36228 2007-04-29  Bruno Haible  <bruno@clisp.org>
36229
36230         * MODULES.html.sh (posix_functions): Remove 'contents'.
36231
36232 2007-04-29  Karl Berry  <karl@gnu.org>
36233
36234         * config/srclist.txt (gendocs_template_min): new entry.
36235
36236 2007-04-29  Bruno Haible  <bruno@clisp.org>
36237
36238         Work around fpurge bug on BSD systems.
36239         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
36240         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
36241         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
36242         fpurge to rpl_fpurge if the system already has this function.
36243         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
36244         the case where the system already has this function. Correct invariants
36245         on BSD systems.
36246         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
36247         BSD systems.
36248
36249 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
36250
36251         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
36252         proposed by Sven Verdoolaege.
36253
36254         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
36255         options.
36256         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
36257         (usage and help tests): Update
36258
36259 2007-04-29  Bruno Haible  <bruno@clisp.org>
36260
36261         * tests/test-fflush.c (main): Use a file of size 17, not 10.
36262         Print more information in case of failure. Disable a test on BeOS.
36263
36264 2007-04-29  Bruno Haible  <bruno@clisp.org>
36265
36266         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
36267         This helps debugging on systems on which no gdb is available.
36268
36269 2007-04-29  Bruno Haible  <bruno@clisp.org>
36270
36271         * lib/freading.h: Improve comments.
36272         * lib/fwriting.h: Likewise.
36273         * tests/test-freading.c (main): Don't check freading immediately after
36274         repositioning. Needed for glibc.
36275
36276 2007-04-29  Bruno Haible  <bruno@clisp.org>
36277
36278         * lib/freading.c (freading): Trivial simplification.
36279
36280 2007-04-28  Bruno Haible  <bruno@clisp.org>
36281
36282         * tests/test-fwriting.c (main): Also test the interaction between
36283         fflush and fwriting.
36284         * modules/fwriting-tests (Depends-on): Add fflush.
36285
36286         * tests/test-freading.c (main): Also test the interaction between
36287         fflush and freading.
36288         * modules/freading-tests (Depends-on): Add fflush.
36289
36290 2007-04-28  Bruno Haible  <bruno@clisp.org>
36291
36292         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
36293         fseeko and ftello.
36294         Suggested by Eric Blake.
36295
36296 2007-04-28  Jim Meyering  <jim@meyering.net>
36297
36298         Avoid false-negative in gl_STDINT_H's C99 conformance test.
36299         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
36300         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
36301
36302 2007-04-27  Eric Blake  <ebb9@byu.net>
36303
36304         * doc/headers/assert.texi (assert.h): Document assert module use.
36305
36306 2007-04-27  Bruno Haible  <bruno@clisp.org>
36307
36308         * doc/headers/*.texi: New files.
36309         * doc/gnulib.texi (Header File Substitutes): New chapter.
36310         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
36311         dependencies.
36312         (standards.info ,standards.html, standards.dvi): Update dependencies.
36313         (mostlyclean, clean): New targets.
36314
36315 2007-04-27  Bruno Haible  <bruno@clisp.org>
36316
36317         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
36318         * modules/sysexits (Files, Makefile.am): Update.
36319
36320         * lib/sys_socket_.h: Renamed from lib/socket_.h.
36321         * modules/sys_socket (Files, Makefile.am): Update.
36322
36323         * lib/sys_stat_.h: Renamed from lib/stat_.h.
36324         * modules/sys_stat (Files, Makefile.am): Update.
36325
36326 2007-04-27  Eric Blake  <ebb9@byu.net>
36327
36328         * lib/freading.h: Improve comments.
36329         * lib/fwriting.h: Likewise.
36330         * lib/fflush.c: Likewise.
36331
36332         Fix closein for mingw.
36333         * modules/closein-tests: Add tests for closein.
36334         * tests/test-closein.c: New file.
36335         * tests/test-closein.sh: Likewise.
36336         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
36337         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
36338
36339 2007-04-27  Bruno Haible  <bruno@clisp.org>
36340
36341         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
36342         version is < 6.
36343         * lib/math_.h [__DECC]: Likewise.
36344         * lib/stdio_.h [__DECC]: Likewise.
36345         * lib/stdlib_.h [__DECC]: Likewise.
36346         * lib/string_.h [__DECC]: Likewise.
36347         * lib/time_.h [__DECC]: Likewise.
36348         * lib/wchar_.h [__DECC]: Likewise.
36349         * lib/wctype_.h [__DECC]: Likewise.
36350
36351 2007-04-27  Bruno Haible  <bruno@clisp.org>
36352
36353         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
36354
36355 2007-04-27  Bruno Haible  <bruno@clisp.org>
36356
36357         * lib/fflush.c: Add comments.
36358         * modules/fpurge-tests (Depends-on): Add fflush.
36359         * modules/freadable-tests (Depends-on): Likewise.
36360         * modules/fwritable-tests (Depends-on): Likewise.
36361
36362 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
36363
36364         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
36365         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
36366         Report by Bruno Haible <bruno@clisp.org>.
36367
36368 2007-04-26  Eric Blake  <ebb9@byu.net>
36369
36370         Fix fflush on mingw.
36371         * modules/fflush (Depends-on): Add freading.
36372         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
36373         but unread data.
36374
36375 2007-04-26  Eric Blake  <ebb9@byu.net>
36376         and Bruno Haible  <bruno@clisp.org>
36377
36378         Implement freading and fwriting.
36379         * lib/freading.c: New file.
36380         * lib/freading.h: Likewise.
36381         * m4/freading.m4: Likewise.
36382         * modules/freading: Likewise.
36383         * modules/freading-tests: Likewise.
36384         * tests/test-freading.c: Likewise.
36385         * lib/fwriting.c: New file.
36386         * lib/fwriting.h: Likewise.
36387         * m4/fwriting.m4: Likewise.
36388         * modules/fwriting: Likewise.
36389         * modules/fwriting-tests: Likewise.
36390         * tests/test-fwriting.c: Likewise.
36391         * MODULES.html.sh (File stream based Input/Output): Mention them.
36392
36393 2007-04-26  Bruno Haible  <bruno@clisp.org>
36394
36395         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
36396         'long' when we assume it.
36397         Suggested by Eric Blake.
36398
36399 2007-04-26  Bruno Haible  <bruno@clisp.org>
36400
36401         Ensure fseeko, ftello are declared on glibc systems.
36402         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
36403         * modules/fseeko (configure.ac-early): Likewise.
36404         * modules/ftello (configure.ac-early): Likewise.
36405         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
36406         AC_FUNC_FSEEKO for this.
36407         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
36408         (gl_CHECK_FSEEKO): Remove macro.
36409
36410 2007-04-26  Bruno Haible  <bruno@clisp.org>
36411
36412         * tests/test-fflush.c (main): Also check the ftell result after
36413         fflush and fseek/fseeko.
36414         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
36415         file descriptor position cache in the stream.
36416         * lib/fseeko.c (rpl_fseeko): Likewise.
36417
36418 2007-04-26  Bruno Haible  <bruno@clisp.org>
36419
36420         * modules/fflush-tests (Depends-on): Add fseeko.
36421
36422 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
36423             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36424
36425         * lib/argz_.h: ensure error_t definition is obtained in same
36426         mechanism system argz.h would have.
36427         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
36428         argz facilities are known bad.  Err on the side of caution if
36429         cross-compiling.
36430
36431 2007-04-25  Eric Blake  <ebb9@byu.net>
36432
36433         * lib/fpurge.c (includes): Use stdlib.h for free.
36434         * tests/test-fflush.c (main): Also test fflush-fseeko.
36435
36436 2007-04-25  Bruno Haible  <bruno@clisp.org>
36437
36438         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
36439         * lib/fseeko.c: New file.
36440         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
36441         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
36442         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
36443         gl_FUNC_FSEEKO.
36444         (gl_FUNC_FSEEKO): Invoke it.
36445         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
36446         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
36447         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
36448
36449 2007-04-25  Bruno Haible  <bruno@clisp.org>
36450
36451         * modules/fflush (Depends-on): Add ftello.
36452
36453 2007-04-25  Bruno Haible  <bruno@clisp.org>
36454
36455         * modules/ftello-tests: New file.
36456         * tests/test-ftello.c: New file.
36457
36458         * modules/ftello: New file.
36459         * m4/ftello.m4: New file.
36460         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
36461         HAVE_FTELLO.
36462         * lib/stdio_.h (ftello): New declaration.
36463         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
36464         HAVE_FTELLO.
36465
36466 2007-04-25  Bruno Haible  <bruno@clisp.org>
36467
36468         * modules/fseeko-tests: New file.
36469         * tests/test-fseeko.c: New file.
36470
36471         * modules/fseeko: New file.
36472         * m4/fseeko.m4: New file.
36473         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
36474         HAVE_FSEEKO.
36475         * lib/stdio_.h (fseeko): New declaration.
36476         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
36477         HAVE_FSEEKO.
36478
36479 2007-04-25  Bruno Haible  <bruno@clisp.org>
36480
36481         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
36482
36483 2007-04-25  Bruno Haible  <bruno@clisp.org>
36484
36485         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
36486         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
36487         * tests/test-unistd.c: Likewise.
36488         * tests/test-fcntl.c: Likewise.
36489
36490 2007-04-23  Eric Blake  <ebb9@byu.net>
36491
36492         * lib/fflush.c: Fix missing include.
36493         Reported by Bruno Haible.
36494
36495 2007-04-23  Bruno Haible  <bruno@clisp.org>
36496
36497         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
36498         Reported by Eric Blake.
36499
36500 2007-04-23  Bruno Haible  <bruno@clisp.org>
36501
36502         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
36503
36504 2007-04-23  Bruno Haible  <bruno@clisp.org>
36505
36506         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
36507
36508 2007-04-23  Bruno Haible  <bruno@clisp.org>
36509
36510         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
36511         Needed on HP-UX 11.
36512
36513 2007-04-16  Eric Blake  <ebb9@byu.net>
36514
36515         Make fflush rely on fpurge.
36516         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
36517         open coding all variants.
36518         * modules/fflush (Depends-on): Add fpurge and unistd.
36519         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
36520         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
36521
36522         Fix --with-tests compilation on cygwin.
36523         * modules/argmatch-tests (Makefile.am): List gnulib library first
36524         in LDADD.
36525         * modules/argp-tests (Makefile.am): Likewise.
36526         * modules/array-list-tests (Makefile.am): Likewise.
36527         * modules/array-oset-tests (Makefile.am): Likewise.
36528         * modules/avltree-list-tests (Makefile.am): Likewise.
36529         * modules/avltree-oset-tests (Makefile.am): Likewise.
36530         * modules/avltreehash-list-tests (Makefile.am): Likewise.
36531         * modules/carray-list-tests (Makefile.am): Likewise.
36532         * modules/dirname-tests (Makefile.am): Likewise.
36533         * modules/frexp-tests (Makefile.am): Likewise.
36534         * modules/isnanl-tests (Makefile.am): Likewise.
36535         * modules/linked-list-tests (Makefile.am): Likewise.
36536         * modules/linkedhash-list-tests (Makefile.am): Likewise.
36537         * modules/lock-tests (Makefile.am): Likewise.
36538         * modules/rbtree-list-tests (Makefile.am): Likewise.
36539         * modules/rbtree-oset-tests (Makefile.am): Likewise.
36540         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
36541         * modules/tls-tests (Makefile.am): Likewise.
36542         * modules/tsearch-tests (Makefile.am): Likewise.
36543         * modules/xvasprintf-tests (Makefile.am): Likewise.
36544
36545         Fix fpurge for cygwin.
36546         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
36547         value.
36548         * modules/fpurge-tests (Depends-on): Clean up trash.
36549
36550 2007-04-16  Simon Josefsson  <simon@josefsson.org>
36551
36552         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
36553
36554         * m4/autobuild.m4: Re-indent.
36555
36556 2007-04-13  Bruno Haible  <bruno@clisp.org>
36557
36558         * modules/fpurge-tests: New file.
36559         * tests/test-fpurge.c: New file.
36560
36561         * modules/fpurge: New file.
36562         * lib/fpurge.h: New file.
36563         * lib/fpurge.c: New file.
36564         * m4/fpurge.m4: New file.
36565
36566 2007-04-13  Bruno Haible  <bruno@clisp.org>
36567
36568         * modules/fbufmode-tests: New file.
36569         * tests/test-fbufmode.c: New file.
36570
36571         * modules/fbufmode: New file.
36572         * lib/fbufmode.h: New file.
36573         * lib/fbufmode.c: New file.
36574         * m4/fbufmode.m4: New file.
36575
36576 2007-04-13  Bruno Haible  <bruno@clisp.org>
36577
36578         * modules/fwritable-tests: New file.
36579         * tests/test-fwritable.c: New file.
36580
36581         * modules/fwritable: New file.
36582         * lib/fwritable.h: New file.
36583         * lib/fwritable.c: New file.
36584         * m4/fwritable.m4: New file.
36585
36586 2007-04-13  Bruno Haible  <bruno@clisp.org>
36587
36588         * modules/freadable-tests: New file.
36589         * tests/test-freadable.c: New file.
36590
36591         * modules/freadable: New file.
36592         * lib/freadable.h: New file.
36593         * lib/freadable.c: New file.
36594         * m4/freadable.m4: New file.
36595
36596 2007-04-13  Bruno Haible  <bruno@clisp.org>
36597
36598         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
36599         MOSTLYCLEANFILES.
36600
36601 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
36602
36603         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
36604         gzip bootstrap.conf to avoid dragging in i18n machinery.
36605         (gnulib_tool_option): Use it.
36606
36607 2007-04-13  Bruno Haible  <bruno@clisp.org>
36608
36609         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
36610         %F directives.
36611         * tests/test-vasprintf-posix.c (test_function): Likewise.
36612         * tests/test-snprintf-posix.h (test_function): Likewise.
36613         * tests/test-sprintf-posix.h (test_function): Likewise.
36614         * tests/test-fprintf-posix.h (test_function): Likewise.
36615         * tests/test-printf-posix.h (test_function): Likewise.
36616         * tests/test-fprintf-posix.out: Likewise.
36617
36618 2007-04-13  Bruno Haible  <bruno@clisp.org>
36619
36620         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
36621         * modules/tls-tests (configure.ac): Likewise.
36622         Reported by Arto C. Nirkko <anirkko@insel.ch>.
36623
36624 2007-04-13  Bruno Haible  <bruno@clisp.org>
36625
36626         * lib/tls.c (glthread_tls_get): Fix return type.
36627         Patch by Arto C. Nirkko <anirkko@insel.ch>.
36628
36629 2007-04-12  Eric Blake  <ebb9@byu.net>
36630
36631         * modules/gettime (Depends-on): Remove gettime.
36632         Reported by Dmitry V. Levin.
36633
36634 2007-04-12  Bruno Haible  <bruno@clisp.org>
36635
36636         * modules/fflush (Include): Mention <stdio.h>.
36637         * modules/strtoimax (Include): Mention <inttypes.h>.
36638         * modules/strtoumax (Include): Likewise.
36639
36640 2007-04-12  Eric Blake  <ebb9@byu.net>
36641
36642         * .cvsignore: New file.
36643         * .gitignore: Likewise.
36644
36645 2007-04-12  Bruno Haible  <bruno@clisp.org>
36646
36647         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
36648         not before, since $(LDADD) often contains libgnu.a.
36649         * modules/striconv-tests (test_striconv_LDADD): Likewise.
36650         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
36651         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
36652         Needed on Cygwin.
36653
36654 2007-04-12  Eric Blake  <ebb9@byu.net>
36655
36656         Work around glibc's failure to flush stdin on fclose.
36657         * lib/closein.c (close_stdin): Flush stdin before closing.
36658
36659         Work around glibc's failure to reset seekable stdin on exit.
36660         * modules/closein: New module.
36661         * lib/closein.c: New file.
36662         * lib/closein.h: Likewise.
36663         * m4/closein.m4: Likewise.
36664         * MODULES.html.sh (File stream based Input/Output): Document it.
36665
36666 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36667
36668         * gnulib-tool: Rename generated 'autobuild' script to
36669         'do-autobuild' in --create-megatestdir output.
36670
36671         * doc/gnulib.texi (Build robot for gnulib): Fix.
36672
36673 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36674
36675         * modules/sysexits (Depends-on): Add absolute-header.
36676
36677 2007-04-12  Eric Blake  <ebb9@byu.net>
36678
36679         No need to preserve errno on success.
36680         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
36681         Reported by Bruno Haible.
36682
36683 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36684
36685         * MODULES.html.sh (Support for maintaining and releasing
36686         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
36687
36688 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36689
36690         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
36691
36692 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36693
36694         * modules/autobuild: New module.
36695
36696         * m4/autobuild.m4: New file.
36697
36698 2007-04-11  Bruno Haible  <bruno@clisp.org>
36699
36700         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
36701         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
36702         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
36703         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
36704         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
36705         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36706         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36707         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
36708         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36709         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36710         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
36711         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36712         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36713         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
36714         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36715         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36716         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
36717         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36718         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36719         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
36720         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36721         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36722         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
36723         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36724         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36725         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
36726         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36727         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36728         Reported by Eric Blake.
36729
36730 2007-04-11  Bruno Haible  <bruno@clisp.org>
36731
36732         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
36733
36734 2007-04-10  Bruno Haible  <bruno@clisp.org>
36735
36736         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
36737         for NaN and Infinity. Needed on FreeBSD 6.1.
36738         * tests/test-vasnprintf-posix.c (test_function): Undo last change
36739         regarding results for "%010a" of Infinity and NaN.
36740         * tests/test-vasprintf-posix.c (test_function): Likewise.
36741         * tests/test-snprintf-posix.h (test_function): Likewise.
36742         * tests/test-sprintf-posix.h (test_function): Likewise.
36743         * tests/test-fprintf-posix.h (test_function): Likewise.
36744         * tests/test-printf-posix.h (test_function): Likewise.
36745         * tests/test-fprintf-posix.out: Likewise.
36746
36747 2007-04-10  Bruno Haible  <bruno@clisp.org>
36748
36749         * modules/locale-tests: New file.
36750         * tests/test-locale.c: New file.
36751
36752         * modules/locale: New file.
36753         * lib/locale_.h: New file.
36754         * m4/locale_h.m4: New file.
36755
36756 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
36757             Bruno Haible  <bruno@clisp.org>
36758
36759         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
36760         be determined, test for availability of the copysignf, copysign,
36761         copysignl functions.
36762         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
36763         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
36764         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
36765
36766 2007-04-09  Eric Blake  <ebb9@byu.net>
36767
36768         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
36769         * modules/stdio (Makefile.am): Support fflush.
36770         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
36771         * modules/fflush: New file.
36772         * lib/fflush.c: Likewise.
36773         * m4/fflush.m4: Likewise.
36774         * modules/fflush-tests: New test.
36775         * tests/test-fflush.c: Likewise.
36776         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
36777
36778 2007-04-06  Bruno Haible  <bruno@clisp.org>
36779
36780         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
36781         (VASNPRINTF): Use signbit for faster determination whether to print a
36782         minus sign.
36783         * modules/vasnprintf (Files): Remove lib/float+.h.
36784         * modules/fprintf-posix (Depends-on): Add signbit.
36785         * modules/snprintf-posix (Depends-on): Likewise.
36786         * modules/sprintf-posix (Depends-on): Likewise.
36787         * modules/vasnprintf-posix (Depends-on): Likewise.
36788         * modules/vasprintf-posix (Depends-on): Likewise.
36789         * modules/vfprintf-posix (Depends-on): Likewise.
36790         * modules/vsnprintf-posix (Depends-on): Likewise.
36791         * modules/vsprintf-posix (Depends-on): Likewise.
36792
36793 2007-04-06  Bruno Haible  <bruno@clisp.org>
36794
36795         * tests/test-frexp.c (main): Test also the sign bit of zero results.
36796         * tests/test-frexpl.c (main): Likewise.
36797         * tests/test-ldexpl.c (main): Likewise.
36798         * modules/frexp-tests (Depends-on): Add signbit.
36799         * modules/frexpl-tests (Depdends-on): Likewise.
36800         * modules/ldexpl-tests (Depdends-on): Likewise.
36801
36802 2007-04-06  Bruno Haible  <bruno@clisp.org>
36803
36804         * modules/signbit-tests: New file.
36805         * tests/test-signbit.c: New file.
36806
36807         * modules/signbit: New file.
36808         * lib/signbitf.c: New file.
36809         * lib/signbitd.c: New file.
36810         * lib/signbitl.c: New file.
36811         * m4/signbit.m4: New file.
36812         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
36813         (signbit): New macro.
36814         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
36815         REPLACE_SIGNBIT.
36816         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
36817         REPLACE_FREXPL into math.h.
36818
36819 2007-04-06  Bruno Haible  <bruno@clisp.org>
36820
36821         * modules/isnanf-nolibm-tests: New file.
36822         * tests/test-isnanf.c: New file.
36823
36824         * modules/isnanf-nolibm: New file.
36825         * lib/isnanf.h: New file.
36826         * lib/isnanf.c: New file.
36827         * lib/isnan.c: Consider the USE_FLOAT macro.
36828         * m4/isnanf.m4: New file.
36829
36830 2007-04-06  Bruno Haible  <bruno@clisp.org>
36831
36832         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
36833         (Link): New section.
36834
36835         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
36836
36837 2007-04-06  Bruno Haible  <bruno@clisp.org>
36838
36839         Assume the 'long double' type.
36840         * m4/longdouble.m4: Remove file.
36841         * config/srclist.txt: Don't mention longdouble.m4.
36842         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
36843         * lib/float+.h: Likewise.
36844         * lib/frexp.c: Likewise.
36845         * lib/printf-args.h: Likewise.
36846         * lib/printf-args.c: Likewise.
36847         * lib/printf-frexp.c: Likewise.
36848         * lib/printf-parse.c: Likewise.
36849         * lib/vasnprintf.c: Likewise.
36850         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
36851         * m4/intl.m4: Likewise.
36852         * m4/isnanl.m4: Likewise.
36853         * m4/printf.m4: Likewise.
36854         * m4/printf-frexpl.m4: Likewise.
36855         * m4/vasnprintf.m4: Likewise.
36856         * modules/allocsa (Files): Remove m4/longdouble.m4.
36857         * modules/gettext (Files): Likewise.
36858         * modules/relocatable-prog-wrapper (Files): Likewise.
36859         * modules/vasnprintf (Files): Likewise.
36860         * modules/isnanl (Files): Likewise.
36861         (Include): Simplify.
36862         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
36863         (Include): Simplify.
36864         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
36865         (Include): Simplify.
36866         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
36867         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36868         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
36869         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36870         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
36871         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36872         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
36873         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36874         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
36875         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36876         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
36877         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36878         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
36879         * tests/test-isnanl.c: Likewise.
36880         * tests/test-snprintf-posix.h: Likewise.
36881         * tests/test-sprintf-posix.h: Likewise.
36882         * tests/test-vasnprintf-posix.c: Likewise.
36883         * tests/test-vasnprintf-posix2.c: Likewise.
36884         * tests/test-vasprintf-posix.c: Likewise.
36885
36886 2007-04-06  Bruno Haible  <bruno@clisp.org>
36887
36888         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
36889         * lib/math_.h [__DECC]: Include the overridden include file through
36890         #include_next, outside the double-inclusion guard.
36891         * lib/stdio_.h [__DECC]: Likewise.
36892         * lib/stdlib_.h [__DECC]: Likewise.
36893         * lib/string_.h [__DECC]: Likewise.
36894         * lib/time_.h [__DECC]: Likewise.
36895         * lib/wchar_.h [__DECC]: Likewise.
36896         * lib/wctype_.h [__DECC]: Likewise.
36897         * lib/inttypes_.h [__DECC]: Likewise.
36898         Reported by Albert Chin <china@thewrittenword.com> in
36899         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
36900
36901 2007-04-04  Eric Blake  <ebb9@byu.net>
36902
36903         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
36904         1.5.x.
36905
36906 2007-04-04  Bruno Haible  <bruno@clisp.org>
36907
36908         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
36909         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
36910
36911 2007-04-04  Bruno Haible  <bruno@clisp.org>
36912
36913         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
36914         results for "%010a" of Infinity and NaN.
36915         * tests/test-vasprintf-posix.c (test_function): Likewise.
36916         * tests/test-snprintf-posix.h (test_function): Likewise.
36917         * tests/test-sprintf-posix.h (test_function): Likewise.
36918         * tests/test-fprintf-posix.h (test_function): Remove these tests.
36919         * tests/test-printf-posix.h (test_function): Likewise.
36920         * tests/test-fprintf-posix.out: Update.
36921         Needed for FreeBSD 6.1.
36922
36923 2007-04-04  Bruno Haible  <bruno@clisp.org>
36924
36925         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
36926         directly used by the gnulib modules nor by gnulib-tool.
36927
36928 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
36929
36930         * DEPENDENCIES: Give overall description of version dependency
36931         desirability.  Use more-typical names for apps.
36932         Add shell, coreutils, diffutils, grep, tar, gzip.
36933
36934 2007-04-04  Simon Josefsson  <simon@josefsson.org>
36935
36936         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
36937
36938 2007-04-04  Karl Berry  <karl@gnu.org>
36939
36940         * MODULES.html.sh (func_module): missing '.
36941
36942 2007-04-03  Bruno Haible  <bruno@clisp.org>
36943
36944         * modules/argmatch-tests (Makefile.am): New variable
36945         test_argmatch_LDADD.
36946         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
36947         * modules/array-list-tests (Makefile.am): New variable
36948         test_array_list_LDADD.
36949         * modules/array-oset-tests (Makefile.am): New variable
36950         test_array_oset_LDADD.
36951         * modules/avltree-list-tests (Makefile.am): New variable
36952         test_avltree_list_LDADD.
36953         * modules/avltree-oset-tests (Makefile.am): New variable
36954         test_avltree_oset_LDADD.
36955         * modules/avltreehash-list-tests (Makefile.am): New variable
36956         test_avltreehash_list_LDADD.
36957         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
36958         test_canonicalize_lgpl_LDADD.
36959         * modules/carray-list-tests (Makefile.am): New variable
36960         test_carray_list_LDADD.
36961         * modules/dirname-tests (Makefile.am): New variable
36962         test_dirname_LDADD.
36963         * modules/linked-list-tests (Makefile.am): New variable
36964         test_linked_list_LDADD.
36965         * modules/linkedhash-list-tests (Makefile.am): New variable
36966         test_linkedhash_list_LDADD.
36967         * modules/rbtree-list-tests (Makefile.am): New variable
36968         test_rbtree_list_LDADD.
36969         * modules/rbtree-oset-tests (Makefile.am): New variable
36970         test_rbtree_oset_LDADD.
36971         * modules/rbtreehash-list-tests (Makefile.am): New variable
36972         test_rbtreehash_list_LDADD.
36973         * modules/xvasprintf-tests (Makefile.am): New variable
36974         test_xvasprintf_LDADD.
36975         Reported by Eric Blake.
36976
36977 2007-04-03  Eric Blake  <ebb9@byu.net>
36978
36979         * DEPENDENCIES: Weaken m4 requirements.
36980
36981 2007-04-03  Bruno Haible  <bruno@clisp.org>
36982
36983         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
36984         * modules/isnanl-tests (configure.ac): Likewise.
36985
36986 2007-04-03  Ben Pfaff  <blp@gnu.org>
36987
36988         * modules/iconv_open: Add $(srcdir)/ to source directory
36989         references in Makefile fragments that call gperf, to fix VPATH
36990         builds.
36991
36992 2007-04-03  Bruno Haible  <bruno@clisp.org>
36993
36994         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
36995         * lib/ldexpl.c: Undo last change.
36996
36997 2007-04-03  Bruno Haible  <bruno@clisp.org>
36998
36999         * modules/printf-frexpl (Depends-on): Undo last change.
37000         (Files): Add m4/ldexpl.m4.
37001
37002 2007-04-03  Bruno Haible  <bruno@clisp.org>
37003
37004         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
37005         * modules/isnanl (Link): New section.
37006
37007         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
37008         * modules/frexp (Link): New section.
37009
37010         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
37011         * modules/frexpl (Link): New section.
37012
37013         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
37014         * modules/ldexpl (Link): New section.
37015
37016 2007-04-03  Bruno Haible  <bruno@clisp.org>
37017
37018         * modules/TEMPLATE-EXTENDED: New file.
37019         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
37020
37021 2007-04-03  Bruno Haible  <bruno@clisp.org>
37022
37023         * DEPENDENCIES: New file.
37024         Suggested by Simon Josefsson.
37025
37026 2007-04-03  Bruno Haible  <bruno@clisp.org>
37027
37028         * doc/gnulib.texi: Escape @.
37029
37030 2007-04-03  James Youngman  <jay@gnu.org>
37031         and Paul Eggert  <eggert@cs.ucla.edu>
37032
37033         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
37034         birthtime on all systems that have birthtime, not just those which
37035         use st_birthtimensec rather than st_birthtim.  Putting zero in
37036         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
37037         that the birth time is not available for files on an NFS mount.
37038
37039 2007-04-03  Simon Josefsson  <simon@josefsson.org>
37040
37041         * modules/memxor: Move back from crypto/, suggested by Bruno.
37042         * modules/crypto/hmac-sha1: Fix memxor dependency.
37043
37044         * modules/crypto/gc: Moved from ../.
37045
37046 2007-04-02  Eric Blake  <ebb9@byu.net>
37047
37048         * lib/ldexpl.c (includes): Avoid libm.
37049
37050         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
37051
37052 2007-04-02  Bruno Haible  <bruno@clisp.org>
37053
37054         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
37055         on IRIX.
37056
37057 2007-04-02  Bruno Haible  <bruno@clisp.org>
37058
37059         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
37060         x86 or x86_64 platforms running MacOS X.
37061         Reported by Ryan Schmidt <@ryandesign.com>.
37062
37063 2007-04-02  Bruno Haible  <bruno@clisp.org>
37064
37065         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
37066         i386.
37067
37068 2007-04-01  Simon Josefsson  <simon@josefsson.org>
37069
37070         * modules/crypto/arcfour: Moved from ../.
37071         * modules/crypto/arcfour-tests: Moved from ../.
37072         * modules/crypto/arctwo: Moved from ../.
37073         * modules/crypto/arctwo-tests: Moved from ../.
37074         * modules/crypto/des: Moved from ../.
37075         * modules/crypto/des-tests: Moved from ../.
37076         * modules/crypto/gc-arcfour: Moved from ../.
37077         * modules/crypto/gc-arcfour-tests: Moved from ../.
37078         * modules/crypto/gc-arctwo: Moved from ../.
37079         * modules/crypto/gc-arctwo-tests: Moved from ../.
37080         * modules/crypto/gc-des: Moved from ../.
37081         * modules/crypto/gc-des-tests: Moved from ../.
37082         * modules/crypto/gc-hmac-md5: Moved from ../.
37083         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
37084         * modules/crypto/gc-hmac-sha1: Moved from ../.
37085         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
37086         * modules/crypto/gc-md2: Moved from ../.
37087         * modules/crypto/gc-md2-tests: Moved from ../.
37088         * modules/crypto/gc-md4: Moved from ../.
37089         * modules/crypto/gc-md4-tests: Moved from ../.
37090         * modules/crypto/gc-md5: Moved from ../.
37091         * modules/crypto/gc-md5-tests: Moved from ../.
37092         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
37093         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
37094         * modules/crypto/gc-random: Moved from ../.
37095         * modules/crypto/gc-rijndael: Moved from ../.
37096         * modules/crypto/gc-rijndael-tests: Moved from ../.
37097         * modules/crypto/gc-sha1: Moved from ../.
37098         * modules/crypto/gc-sha1-tests: Moved from ../.
37099         * modules/crypto/gc-tests: Moved from ../.
37100         * modules/crypto/hmac-md5: Moved from ../.
37101         * modules/crypto/hmac-md5-tests: Moved from ../.
37102         * modules/crypto/hmac-sha1: Moved from ../.
37103         * modules/crypto/hmac-sha1-tests: Moved from ../.
37104         * modules/crypto/md2: Moved from ../.
37105         * modules/crypto/md2-tests: Moved from ../.
37106         * modules/crypto/md4: Moved from ../.
37107         * modules/crypto/md4-tests: Moved from ../.
37108         * modules/crypto/md5: Moved from ../.
37109         * modules/crypto/md5-tests: Moved from ../.
37110         * modules/crypto/memxor: Moved from ../.
37111         * modules/crypto/rijndael: Moved from ../.
37112         * modules/crypto/rijndael-tests: Moved from ../.
37113         * modules/crypto/sha1: Moved from ../.
37114
37115 2007-03-30  James Youngman  <jay@gnu.org>
37116
37117         * tests/test-stat-time.c (prepare_test): use chmod() rather than
37118         rename() to change the ctime of a file (because ctime is unaffected
37119         by rename on jfs2 on AIX 5.1).
37120         (main): Start by doing cleanup, in case a previous run failed leaving
37121         test files behind.
37122
37123 2007-03-31  Bruno Haible  <bruno@clisp.org>
37124
37125         Support old proprietary implementations of iconv.
37126         * modules/iconv_open: New file.
37127         * lib/iconv_.h: New file.
37128         * m4/iconv_h.m4: New file.
37129         * lib/iconv_open.c: New file.
37130         * lib/iconv_open-aix.gperf: New file.
37131         * lib/iconv_open-hpux.gperf: New file.
37132         * lib/iconv_open-irix.gperf: New file.
37133         * lib/iconv_open-osf.gperf: New file.
37134         * m4/iconv_open.m4: New file.
37135         * modules/linebreak (Depends-on): Add iconv_open.
37136         * modules/striconv (Depends-on): Likewise.
37137         * modules/striconveh (Depends-on): Likewise.
37138         * modules/unicodeio (Depends-on): Likewise.
37139         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
37140         (iconv_t)(-1).
37141         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
37142         conversion if cd is (iconv_t)(-1).
37143         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
37144         is not possible.
37145
37146 2007-03-31  Bruno Haible  <bruno@clisp.org>
37147
37148         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
37149         work on Solaris either. Protect also second use of "autodetect_jp".
37150
37151 2007-03-31  Bruno Haible  <bruno@clisp.org>
37152
37153         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
37154         the function is not present.
37155
37156 2007-03-31  Bruno Haible  <bruno@clisp.org>
37157
37158         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
37159         the function is not present.
37160
37161 2007-03-31  Bruno Haible  <bruno@clisp.org>
37162
37163         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
37164         a bug in HP-UX iconv_open().
37165
37166 2007-03-31  Bruno Haible  <bruno@clisp.org>
37167
37168         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
37169         (Mathematics <math.h>): New section, add fpieee.
37170         (Input/output <stdio.h>): Add fseterr.
37171         (Mathematics <math.h>): New section, add printf-frexp.
37172         (Container data structures): Add sublist.
37173         (Core language properties): Add fpucw, inline.
37174         (Functions for greatest-width integer types <inttypes.h>): Add
37175         imaxabs, imaxdiv, inttypes.
37176         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
37177         isnanl-nolibm, ldexp.
37178         (Mathematics <math.h>): New section, add printf-frexpl.
37179         (Support for systems lacking POSIX:2001): Add fprintf-posix,
37180         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
37181         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
37182         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
37183         (Unicode string functions): Add unistr/u*-mbtoucr.
37184         (Java): Add javacomp-script, javaexec-script.
37185         (C#): Add csharpcomp-script, csharpexec-script.
37186         (Support for building libraries and executables): Add havelib,
37187         relocatable-*.
37188         (Support for maintaining and releasing projects): Renamed from
37189         'Support for maintaining and release projects'. Add announce-gen.
37190
37191 2007-03-31  Bruno Haible  <bruno@clisp.org>
37192
37193         * README: Talk primarily about git.
37194         (git and CVS): Renamed from CVS.
37195         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
37196         gnulib is available through git.
37197         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
37198
37199 2007-03-30  Bruno Haible  <bruno@clisp.org>
37200
37201         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
37202         * lib/poll_.h: Likewise.
37203         * lib/stat_.h: Likewise.
37204         * lib/sys_time_.h: Likewise.
37205         * lib/sysexit_.h: Likewise.
37206         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
37207         * lib/stdbool_.h: Likewise.
37208         * lib/byteswap_.h: Add double-inclusion guard.
37209
37210 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
37211
37212         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
37213
37214 2007-03-30  Karl Berry  <karl@gnu.org>
37215
37216         * config/srclist-update: double space after USA in the license
37217         substitution, since that's how it's usually (?) written.
37218
37219 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
37220
37221         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
37222         reported by Bruno Haible.
37223
37224 2007-03-29  Bruno Haible  <bruno@clisp.org>
37225
37226         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
37227         a bug in AIX iconv().
37228
37229 2007-03-29  Bruno Haible  <bruno@clisp.org>
37230
37231         * modules/ldexpl-tests: New file.
37232         * tests/test-ldexpl.c: New file.
37233
37234 2007-03-29  Bruno Haible  <bruno@clisp.org>
37235
37236         * lib/ldexpl.c: Include fpucw.h.
37237         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
37238         multiplication.
37239         * modules/ldexpl (Depends-on): Add fpucw.
37240
37241 2007-03-29  Bruno Haible  <bruno@clisp.org>
37242
37243         * modules/ldexpl: New file.
37244         * m4/ldexpl.m4: New file.
37245         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
37246         set.
37247         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
37248         REPLACE_LDEXPL.
37249         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
37250         REPLACE_LDEXPL.
37251         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
37252         gl_FUNC_LDEXPL_WORKS.
37253         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
37254         * modules/mathl (Files): Remove lib/ldexpl.c.
37255         (Depends-on): Add ldexpl.
37256
37257 2007-03-29  Bruno Haible  <bruno@clisp.org>
37258
37259         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
37260
37261 2007-03-29  Bruno Haible  <bruno@clisp.org>
37262
37263         * tests/test-striconveh.c (main): Don't assume that a direct conversion
37264         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
37265         and possibly also HP-UX.
37266         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
37267         work on AIX, IRIX, HP-UX, OSF/1.
37268         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
37269         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
37270         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
37271         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
37272         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
37273         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
37274
37275 2007-03-29  Bruno Haible  <bruno@clisp.org>
37276
37277         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
37278
37279 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
37280
37281         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
37282         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
37283
37284 2007-03-29  Eric Blake  <ebb9@byu.net>
37285
37286         * lib/acl-internal.h: Remove redundant include.
37287         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
37288         Cygwin when a file is locked.
37289
37290 2007-03-29  Bruno Haible  <bruno@clisp.org>
37291
37292         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
37293         file.
37294         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
37295
37296 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
37297
37298         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
37299         try to remove a parent directory if the child couldn't be removed
37300         (except for the first rmdir, which could fail because the child
37301         doesn't exist).  Problem reported by Jeff Blaine in
37302         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
37303
37304 2007-03-28  Bruno Haible  <bruno@clisp.org>
37305
37306         * lib/striconveh.c (utf8conv_carefully): New function.
37307         (mem_cd_iconveh_internal): Invoke it.
37308
37309 2007-03-28  Bruno Haible  <bruno@clisp.org>
37310
37311         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
37312         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
37313         input.
37314         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
37315         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
37316         unistr/u8-uctomb.
37317
37318 2007-03-28  Bruno Haible  <bruno@clisp.org>
37319
37320         * modules/unistr/u8-mbtoucr: New file.
37321         * lib/unistr/u8-mbtoucr.c: New file.
37322         * modules/unistr/u16-mbtoucr: New file.
37323         * lib/unistr/u16-mbtoucr.c: New file.
37324         * modules/unistr/u16-mbtoucr: New file.
37325         * lib/unistr/u16-mbtoucr.c: New file.
37326         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
37327
37328 2007-03-27  Simon Josefsson  <simon@josefsson.org>
37329             Bruno Haible  <bruno@clisp.org>
37330
37331         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
37332         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
37333         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
37334
37335         * m4/stdio_h.m4: Add stubs for vasprintf too.
37336
37337         * modules/stdio: Support vasprintf in sed command.
37338
37339         * modules/vasprintf: Depend on stdio for prototypes.  Remove
37340         vasprintf.h.  Add stdio module indicator.
37341
37342         * lib/stdio_.h: Declare asprintf and vasprintf, based on
37343         vasprintf.h.
37344
37345         * lib/vasprintf.h: File removed.
37346
37347         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
37348         * lib/vasprintf.c: Ditto.
37349         * lib/xvasprintf.c: Ditto.
37350         * tests/test-vasprintf-posix.c: Ditto.
37351         * tests/test-vasprintf.c: Ditto.
37352
37353 2007-03-27  Bruno Haible  <bruno@clisp.org>
37354
37355         Make vasnprintf multithread-safe.
37356         * lib/vasnprintf.c (decimal_point_char): New function.
37357         (VASNPRINTF): Use it.
37358         Suggested by Simon Josefsson.
37359
37360 2007-03-27  Eric Blake  <ebb9@byu.net>
37361
37362         Support sub-second birthtime on cygwin.
37363         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
37364         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
37365         (get_stat_birthtime): Also work with st_birthtim.
37366
37367 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
37368
37369         * lib/stat-time.h (USE_BIRTHTIME): Remove.
37370         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
37371         (get_stat_birthtime_ns): Do not try to use "spare" fields.
37372         (get_stat_birthtime_ns): Simplify compile-time tests.
37373         (get_stat_birthtime): Change the API to look like
37374         get_stat_mtime etc., except return a negative tv_nsec on error.
37375         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
37376         Don't check for "spare" fields.
37377         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
37378         or for struct stat.st_birthtime, as these tests aren't used.
37379         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
37380
37381 2007-03-27  Bruno Haible  <bruno@clisp.org>
37382
37383         * lib/stat-time.h: Include <sys/stat.h>.
37384
37385 2007-03-27  James Youngman  <jay@gnu.org>
37386
37387         * lib/stat-time.h (get_stat_birthtime): New function for
37388           retrieving st_birthtime as provided by UFS2 (hence *BSD).
37389         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
37390           and its variants.
37391         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
37392         * modules/stat-time-test: New file.
37393         * tests/test-stat-time.c: New test, devised by Bruno Haible.
37394
37395 2007-03-26  Bruno Haible  <bruno@clisp.org>
37396
37397         Better support of signalling NaNs.
37398         * lib/atanl.c: Include isnanl.h.
37399         (atanl): Perform test for NaN at the beginning of the function and
37400         through a call to isnanl.
37401         * lib/cosl.c: Include isnanl.h.
37402         (cosl): Perform test for NaN at the beginning of the function and
37403         through a call to isnanl.
37404         * lib/ldexpl.c: Include isnanl.h.
37405         (ldexpl): Perform test for NaN through a call to isnanl.
37406         * lib/logl.c: Include isnanl.h.
37407         (logl): Perform test for NaN at the beginning of the function and
37408         through a call to isnanl.
37409         * lib/sinl.c: Include isnanl.h.
37410         (sinl): Perform test for NaN at the beginning of the function and
37411         through a call to isnanl.
37412         * lib/sqrtl.c: Include isnanl.h.
37413         (sqrtl): Perform test for NaN at the beginning of the function and
37414         through a call to isnanl.
37415         * lib/tanl.c: Include isnanl.h.
37416         (tanl): Perform test for NaN at the beginning of the function and
37417         through a call to isnanl.
37418         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
37419         * modules/mathl (Depends-on): Add isnanl.
37420
37421 2007-03-26  Eric Blake  <ebb9@byu.net>
37422
37423         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
37424         regression in logic sense of previous patch.
37425
37426 2007-03-26  Bruno Haible  <bruno@clisp.org>
37427
37428         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
37429         unportable shell command "if ! ...".
37430         Reported by Ralf Wildenhues.
37431
37432 2007-03-25  Bruno Haible  <bruno@clisp.org>
37433
37434         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
37435         <sysexits.h> file, and only add EX_CONFIG.
37436         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
37437         absolute file name and whether it is sufficient. Substitute also
37438         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
37439         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
37440         ABSOLUTE_SYSEXITS_H into sysexits.h.
37441
37442 2007-03-25  Bruno Haible  <bruno@clisp.org>
37443
37444         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
37445         hints is NULL.
37446
37447 2007-03-25  Bruno Haible  <bruno@clisp.org>
37448
37449         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
37450         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
37451
37452 2007-03-25  Bruno Haible  <bruno@clisp.org>
37453
37454         * lib/vasnprintf.c: Include langinfo.h.
37455         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
37456         multithread-safe.
37457         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
37458         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
37459         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
37460         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
37461         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
37462         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
37463         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
37464         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
37465         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
37466         Reported by Simon Josefsson.
37467
37468 2007-03-25  Bruno Haible  <bruno@clisp.org>
37469
37470         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
37471         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
37472         * modules/vasnprintf (Depends-on): Add stdint.
37473
37474 2007-03-25  Bruno Haible  <bruno@clisp.org>
37475
37476         * modules/fpieee: New file.
37477         * m4/fpieee.m4: New file.
37478         * modules/isnan-nolibm (Depends-on): Add fpieee.
37479         * modules/isnanl-nolibm (Depends-on): Add fpieee.
37480         * modules/isnanl (Depends-on): Add fpieee.
37481
37482 2007-03-25  Bruno Haible  <bruno@clisp.org>
37483
37484         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
37485
37486 2007-03-25  Bruno Haible  <bruno@clisp.org>
37487
37488         Avoid test failures on IRIX 6.5.
37489         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
37490         (main): Use it.
37491         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
37492         macros.
37493         (main): Use them.
37494
37495 2007-03-25  Bruno Haible  <bruno@clisp.org>
37496
37497         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
37498         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
37499         exists but doesn't work.
37500         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
37501         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
37502         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
37503         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
37504
37505 2007-03-25  Bruno Haible  <bruno@clisp.org>
37506
37507         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
37508         returns inf. Needed on IRIX 6.5.
37509
37510 2007-03-25  Bruno Haible  <bruno@clisp.org>
37511
37512         * tests/test-frexpl.c: Include isnanl-nolibm.h.
37513         (main): Use isnanl instead of x != x idiom.
37514         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
37515
37516         * tests/test-frexp.c: Include isnan.h.
37517         (main): Use isnan instead of x != x idiom.
37518         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
37519
37520 2007-03-25  Bruno Haible  <bruno@clisp.org>
37521
37522         * tests/test-frexp.c (NaN): New function/macro.
37523         (main): Use it instead of 0.0 / 0.0.
37524         * tests/test-isnan.c (NaN): New function/macro.
37525         (main): Use it instead of 0.0 / 0.0.
37526         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
37527         (test_function): Use it instead of 0.0 / 0.0.
37528         * tests/test-vasprintf-posix.c (NaN): New function/macro.
37529         (test_function): Use it instead of 0.0 / 0.0.
37530         * tests/test-snprintf-posix.h (NaN): New function/macro.
37531         (test_function): Use it instead of 0.0 / 0.0.
37532         * tests/test-sprintf-posix.h (NaN): New function/macro.
37533         (test_function): Use it instead of 0.0 / 0.0.
37534         * tests/test-fprintf-posix.h (NaN): New function/macro.
37535         (test_function): Use it instead of 0.0 / 0.0.
37536         * tests/test-printf-posix.h (NaN): New function/macro.
37537         (test_function): Use it instead of 0.0 / 0.0.
37538
37539         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
37540
37541 2007-03-25  Bruno Haible  <bruno@clisp.org>
37542
37543         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
37544
37545 2007-03-25  Bruno Haible  <bruno@clisp.org>
37546
37547         * lib/regexec.c (merge_state_with_log): Make static.
37548
37549 2007-03-25  Bruno Haible  <bruno@clisp.org>
37550
37551         * lib/trigl.c (kernel_rem_pio2): Make static.
37552
37553 2007-03-25  Bruno Haible  <bruno@clisp.org>
37554
37555         * lib/sincosl.c (sincosl_table): Make static.
37556
37557 2007-03-25  Bruno Haible  <bruno@clisp.org>
37558
37559         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
37560         if the compiler does not support C99.
37561
37562 2007-03-25  Bruno Haible  <bruno@clisp.org>
37563
37564         * modules/time (Makefile.am): Ensure all rule action lines start with a
37565         tab.
37566
37567 2007-03-24  Bruno Haible  <bruno@clisp.org>
37568
37569         * modules/tsearch-tests: New file.
37570         * tests/test-tsearch.sh: New file.
37571         * tests/test-tsearch.c: New file, mostly copied from glibc.
37572
37573         * modules/search-tests: New file.
37574         * tests/test-search.c: New file.
37575
37576         * modules/search: New file.
37577         * lib/search_.h: New file, incorporating lib/tsearch.h.
37578         * m4/search_h.m4: New file.
37579         * lib/tsearch.h: Remove file.
37580         * lib/tsearch.c: Include search.h instead of tsearch.h.
37581         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
37582         HAVE_TSEARCH.
37583         * modules/tsearch (Files): Remove lib/tsearch.h.
37584         (Depends-on): Add search.
37585         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
37586         (Include): Change tsearch.h into search.h.
37587
37588 2007-03-24  Bruno Haible  <bruno@clisp.org>
37589
37590         * modules/fpucw: New file.
37591         * lib/fpucw.h: New file.
37592         * lib/frexp.c: Include fpucw.h.
37593         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
37594         (FUNC): Use them.
37595         * lib/printf-frexp.c: Include fpucw.h.
37596         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
37597         (FUNC): Use them.
37598         * lib/vasnprintf.c: Include fpucw.h.
37599         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
37600         'long double' calculations.
37601         * tests/test-frexpl.c: Include fpucw.h.
37602         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
37603         * tests/test-printf-frexpl.c: Include fpucw.h.
37604         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
37605         * modules/frexpl (Depends-on): Add fpucw.
37606         * modules/printf-frexpl (Depends-on): Likewise.
37607         * modules/fprintf-posix (Depends-on): Likewise.
37608         * modules/snprintf-posix (Depends-on): Likewise.
37609         * modules/sprintf-posix (Depends-on): Likewise.
37610         * modules/vasnprintf-posix (Depends-on): Likewise.
37611         * modules/vasprintf-posix (Depends-on): Likewise.
37612         * modules/vfprintf-posix (Depends-on): Likewise.
37613         * modules/vsnprintf-posix (Depends-on): Likewise.
37614         * modules/vsprintf-posix (Depends-on): Likewise.
37615         * modules/frexpl-tests (Depends-on): Likewise.
37616         * modules/printf-frexpl-tests (Depends-on): Likewise.
37617
37618 2007-03-24  Bruno Haible  <bruno@clisp.org>
37619
37620         * lib/float+.h: New file.
37621         * lib/isnan.c: Include float+.h.
37622         (SIZE): New macro.
37623         (FUNC): Compare only SIZE bytes of the value.
37624         * lib/vasnprintf.c: Include float+.h.
37625         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
37626         SIZEOF_LDBL or SIZEOF_DBL bytes.
37627         * modules/isnan-nolibm (Files): Add lib/float+.h.
37628         * modules/isnanl-nolibm (Files): Add lib/float+.h.
37629         * modules/isnanl (Files): Add lib/float+.h.
37630         * modules/vasnprintf (Files): Add lib/float+.h.
37631
37632 2007-03-24  Bruno Haible  <bruno@clisp.org>
37633
37634         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
37635         include isnanl-nolibm.h.
37636
37637 2007-03-24  Bruno Haible  <bruno@clisp.org>
37638
37639         * tests/test-read-file.c (main): Don't produce spurious output for
37640         expected situations. Make the test fail if it encountered unexpected
37641         results.
37642
37643 2007-03-24  Bruno Haible  <bruno@clisp.org>
37644
37645         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
37646         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
37647
37648 2007-03-24  Bruno Haible  <bruno@clisp.org>
37649
37650         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
37651
37652 2007-03-24  Bruno Haible  <bruno@clisp.org>
37653
37654         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
37655         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
37656
37657         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
37658         * modules/utf8-ucs4: Turn into a symbolic link to module
37659         unistr/u8-mbtouc.
37660
37661         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
37662         utf8-ucs4-unsafe.
37663         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
37664         unistr/u8-mbtouc-unsafe.
37665
37666         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
37667         * modules/utf16-ucs4: Turn into a symbolic link to module
37668         unistr/u16-mbtouc.
37669
37670         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
37671         utf16-ucs4-unsafe.
37672         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
37673         unistr/u16-mbtouc-unsafe.
37674
37675         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
37676         * modules/ucs4-utf8: Turn into a symbolic link to module
37677         unistr/u8-ubtomb.
37678
37679         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
37680         * modules/ucs4-utf16: Turn into a symbolic link to module
37681         unistr/u16-ubtomb.
37682
37683 2007-03-24  Bruno Haible  <bruno@clisp.org>
37684
37685         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
37686         Enable the function only if HAVE_INLINE.
37687         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
37688         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
37689         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
37690         Enable the function only if HAVE_INLINE.
37691         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
37692         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
37693         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
37694         Enable the function only if HAVE_INLINE.
37695         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
37696         Enable the function only if HAVE_INLINE.
37697         * modules/utf8-ucs4: Update.
37698         * modules/utf8-ucs4-unsafe: Update.
37699         * modules/utf16-ucs4: Update.
37700         * modules/utf16-ucs4-unsafe: Update.
37701         * modules/ucs4-utf8: Update.
37702         * modules/ucs4-utf16: Update.
37703
37704 2007-03-24  Bruno Haible  <bruno@clisp.org>
37705
37706         * lib/utf8-ucs4.h: Remove file.
37707         * lib/utf8-ucs4-unsafe.h: Remove file.
37708         * lib/utf16-ucs4.h: Remove file.
37709         * lib/utf16-ucs4-unsafe.h: Remove file.
37710         * lib/ucs4-utf8.h: Remove file.
37711         * lib/ucs4-utf16.h: Remove file.
37712         * lib/unistr.h: Include their previous contents.
37713         * m4/utf-ucs4.m4: Remove file.
37714         * m4/ucs4-utf.m4: Remove file.
37715         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
37716         (Depends-on): Add unistr/base.
37717         (configure.ac): Remove gl_UTF_UCS4.
37718         (Makefile.am): Update.
37719         (Include): Change to unistr.h.
37720         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
37721         (Depends-on): Add unistr/base.
37722         (configure.ac): Remove gl_UTF_UCS4.
37723         (Makefile.am): Update.
37724         (Include): Change to unistr.h.
37725         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
37726         (Depends-on): Add unistr/base.
37727         (configure.ac): Remove gl_UTF_UCS4.
37728         (Makefile.am): Update.
37729         (Include): Change to unistr.h.
37730         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
37731         (Depends-on): Add unistr/base.
37732         (configure.ac): Remove gl_UTF_UCS4.
37733         (Makefile.am): Update.
37734         (Include): Change to unistr.h.
37735         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
37736         (Depends-on): Add unistr/base.
37737         (configure.ac): Remove gl_UCS4_UTF.
37738         (Makefile.am): Update.
37739         (Include): Change to unistr.h.
37740         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
37741         (Depends-on): Add unistr/base.
37742         (configure.ac): Remove gl_UCS4_UTF.
37743         (Makefile.am): Update.
37744         (Include): Change to unistr.h.
37745         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
37746         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
37747         utf8-ucs4-unsafe.h.
37748         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
37749         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
37750         utf16-ucs4-unsafe.h.
37751         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
37752         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
37753         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
37754         * lib/unistr/u8-strchr.c: Likewise.
37755         * lib/unistr/u8-strrchr.c: Likewise.
37756         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
37757         * lib/unistr/u16-strchr.c: Likewise.
37758         * lib/unistr/u16-strrchr.c: Likewise.
37759         * lib/striconveh.c: Update.
37760         * lib/linebreak.c: Update.
37761
37762 2007-03-24  Bruno Haible  <bruno@clisp.org>
37763
37764         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
37765         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
37766
37767 2007-03-22  Bruno Haible  <bruno@clisp.org>
37768
37769         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
37770
37771 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
37772
37773         * MODULES.html.sh (File system functions): New module write-any-file.
37774         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
37775         * m4/write-any-file.m4: New files.
37776
37777 2007-03-23  Eric Blake  <ebb9@byu.net>
37778
37779         * gnulib-tool: Rearrange space-tab sequences, since some editors
37780         like to eat them.
37781
37782 2007-03-23  Eric Blake  <ebb9@byu.net>
37783
37784         * lib/version-etc.c (version_etc_va): Update license wording to
37785         be more concise.  Recommended by Richard Stallman.
37786
37787 2007-03-22  Bruno Haible  <bruno@clisp.org>
37788
37789         * lib/poll.c (MSG_PEEK): New fallback definition.
37790
37791 2007-03-22  Bruno Haible  <bruno@clisp.org>
37792
37793         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
37794         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
37795         (main): Update.
37796         Fixes a compilation error on BeOS.
37797
37798 2007-03-22  Bruno Haible  <bruno@clisp.org>
37799
37800         * modules/frexpl-tests: New file.
37801         * tests/test-frexpl.c: New file.
37802
37803         * modules/frexpl: New file.
37804         * m4/frexpl.m4: New file.
37805         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
37806         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
37807         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
37808         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
37809         (Depends-on): Add frexpl. Remove isnanl-nolibm.
37810         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
37811
37812 2007-03-22  Bruno Haible  <bruno@clisp.org>
37813
37814         * lib/frexpl.c: Share code with lib/frexp.c.
37815         * modules/mathl (Files): Add lib/frexp.c.
37816         (Depends-on): Add isnanl-nolibm.
37817
37818 2007-03-22  Bruno Haible  <bruno@clisp.org>
37819
37820         * modules/printf-frexp (Files): Add m4/frexp.m4.
37821         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
37822         only if the found frexp function actually works.
37823
37824 2007-03-22  Bruno Haible  <bruno@clisp.org>
37825
37826         * lib/frexp.c: Remove older implementation that uses divisions.
37827
37828 2007-03-21  Bruno Haible  <bruno@clisp.org>
37829
37830         * modules/frexp-tests: New file.
37831         * tests/test-frexp.c: New file.
37832
37833         * modules/frexp: New file.
37834         * lib/frexp.c: New file.
37835         * m4/frexp.m4: New file.
37836         * lib/math_.h (frexp): New declaration.
37837         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
37838         REPLACE_FREXP.
37839         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
37840
37841 2007-03-21  Bruno Haible  <bruno@clisp.org>
37842
37843         * modules/isnanl-tests: New file.
37844         * tests/test-isnanl.c: New file.
37845
37846         * modules/isnanl: New file.
37847         * lib/isnanl.h: New file.
37848         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
37849         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
37850         gl_FUNC_ISNANL_WORKS.
37851         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
37852         New macros.
37853
37854 2007-03-21  Bruno Haible  <bruno@clisp.org>
37855
37856         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
37857         lib/isnanl.h.
37858         (Include): Update.
37859         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
37860         * lib/vasnprintf.c: Update.
37861         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
37862         tests/test-isnanl.h, remove tests/test-isnanl.c.
37863         (Makefile.am): Update.
37864         * tests/test-isnanl-nolibm.c: New file.
37865         * tests/test-isnanl.h: New file.
37866         * tests/test-isnanl.c: Remove file.
37867
37868 2007-03-21  Jim Meyering  <jim@meyering.net>
37869
37870         When trying to open ".", treat ESTALE like EACCES.
37871         * lib/savewd.c (savewd_save): Resort to forking not just upon
37872         failure with EACCES, but also when errno is ESTALE.
37873
37874 2007-03-20  Bruno Haible  <bruno@clisp.org>
37875
37876         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
37877         Needed on AIX 5.1. Reported by Matthew Woehlke.
37878
37879 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37880
37881         Suggestions by Bruno Haible:
37882         * lib/acl-internal.h: Include "gettext.h" rather than rolling
37883         our own.
37884         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
37885         * modules/acl (Depends-on): Add gettext.
37886
37887 2007-03-19  Bruno Haible  <bruno@clisp.org>
37888
37889         * modules/iconvme: Remove file.
37890         * lib/iconvme.h: Remove file.
37891         * lib/iconvme.c: Remove file.
37892         * m4/iconvme.m4: Remove file.
37893
37894 2007-03-19  Bruno Haible  <bruno@clisp.org>
37895
37896         * doc/relocatable-maint.texi: Break long shell script line.
37897         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
37898
37899 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37900
37901         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
37902         handle file_has_acl.
37903         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
37904         * lib/acl.c: Move header inclusions and related macro defns into
37905         lib/acl-internal.h.
37906         (S_ISLNK): Remove defn, since that's now done for us.
37907         (file_has_acl): Move to lib/file-has-acl.c.
37908         Call acl_trivial if available.  This is the crucial part of the fix.
37909         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
37910         shared within the library.  Rewrite a bit, partly to make it compatible
37911         with the GNU coding style.
37912         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
37913         Remove unnecessary double-quotes.
37914         Don't test for acl_to_text; the build will catch that.
37915         Replace acl_entries if it doesn't exist and it is needed.
37916         Check for -lsec and acl_trivial (as used on Solaris 10).
37917         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
37918         lib/file-has-acl.c.
37919         (Depends-on): Add sys_stat, for S_ISLNK.
37920
37921 2007-03-19  Ben Pfaff  <blp@gnu.org>
37922
37923         * doc/gnulib.texi: Fix typos.
37924         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
37925
37926 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37927
37928         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
37929         If size is zero here, buf must be zero.
37930
37931 2007-03-19  Simon Josefsson  <simon@josefsson.org>
37932
37933         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
37934         <bruno@clisp.org>.
37935
37936 2007-03-18  Bruno Haible  <bruno@clisp.org>
37937
37938         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
37939         Suggested by Eric Blake.
37940
37941 2007-03-18  Ben Pfaff  <blp@gnu.org>
37942
37943         * doc/relocatable.texi: Recommend using as prefix a directory
37944         that does not exist and will never be created.  Based on
37945         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
37946         and others.
37947
37948 2007-03-17  Bruno Haible  <bruno@clisp.org>
37949
37950         * lib/fchownat.c: Include lchown.h.
37951
37952 2007-03-17  Bruno Haible  <bruno@clisp.org>
37953
37954         Fix endless loop when the given allocated size was > INT_MAX.
37955         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
37956         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
37957         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
37958         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
37959         * lib/sprintf.c (sprintf): Likewise.
37960
37961 2007-03-17  Bruno Haible  <bruno@clisp.org>
37962
37963         * tests/test-argp-2.sh (func_compare): Output a context diff.
37964
37965 2007-03-17  Bruno Haible  <bruno@clisp.org>
37966
37967         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
37968         locale's decimal-point character.
37969
37970 2007-03-17  Bruno Haible  <bruno@clisp.org>
37971
37972         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
37973         before comparing it. Needed because on some platforms (e.g. x86) a
37974         'long double' occupies less bytes than sizeof (long double).
37975
37976 2007-03-17  Bruno Haible  <bruno@clisp.org>
37977
37978         * tests/test-crc.c (main): Make printf statements 64-bit clean.
37979         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
37980         * tests/test-getaddrinfo.c (simple): Likewise.
37981         * tests/test-read-file.c (main): Likewise.
37982
37983 2007-03-17  Bruno Haible  <bruno@clisp.org>
37984
37985         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
37986
37987 2007-03-17  Bruno Haible  <bruno@clisp.org>
37988
37989         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
37990         unused variable.
37991
37992 2007-03-17  Bruno Haible  <bruno@clisp.org>
37993
37994         * tests/test-c-strcasecmp.c: Include c-strcase.h.
37995         * tests/test-c-strncasecmp.c: Likewise.
37996
37997 2007-03-17  Bruno Haible  <bruno@clisp.org>
37998
37999         * modules/stdlib (Depends-on): Add unistd.
38000         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
38001         Needed for MacOS X 10.3.
38002
38003 2007-03-17  Bruno Haible  <bruno@clisp.org>
38004
38005         * lib/unistr/u-strdup.h: Include <stdlib.h>.
38006
38007 2007-03-17  Bruno Haible  <bruno@clisp.org>
38008
38009         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
38010
38011 2007-03-17  Bruno Haible  <bruno@clisp.org>
38012
38013         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
38014         to reflect files copied from gnulib (with or without modifications).
38015         Suggested by Jim Meyering.
38016
38017 2007-03-17  Eric Blake  <ebb9@byu.net>
38018
38019         * NEWS: Document stdlib change from 2007-02-18.
38020
38021 2007-03-17  Jim Meyering  <jim@meyering.net>
38022
38023         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
38024         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
38025         someone uses a name containing shell meta-characters.
38026         Reported by Alfred M. Szmidt.
38027
38028         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
38029
38030 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
38031
38032         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
38033         and copy gettext configuration files only if configure.ac contains
38034         a use of AM_GNU_GETTEXT_VERSION.
38035
38036 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
38037
38038         * build-aux/bootstrap (gnulib_name): New variable.
38039         (gnulib_tool_options): Use it.
38040
38041 2007-03-13  Simon Josefsson  <simon@josefsson.org>
38042
38043         * tests/test-des.c: Use new namespace.
38044
38045 2007-03-15  Bruno Haible  <bruno@clisp.org>
38046
38047         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
38048         Reported by James Youngman <jay@gnu.org>.
38049
38050 2007-03-15  Bruno Haible  <bruno@clisp.org>
38051
38052         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
38053         declared prototype. Needed with cc on OSF/1 5.1.
38054
38055 2007-03-15  Bruno Haible  <bruno@clisp.org>
38056
38057         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
38058         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
38059         (struct gl_list_implementation): Add dispose_fn argument to the
38060         'create_empty', 'create' methods.
38061         (struct gl_list_impl_base): Add field 'dispose_fn'.
38062         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
38063         argument.
38064         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
38065         dispose_fn argument.
38066         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
38067         dispose_fn on the dropped values.
38068         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
38069         dispose_fn argument.
38070         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
38071         dropped values.
38072         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
38073         (gl_tree_remove_node): Call dispose_fn on the dropped value.
38074         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
38075         (gl_tree_remove_node): Call dispose_fn on the dropped value.
38076         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
38077         argument.
38078         (gl_tree_list_free): Call dispose_fn on the dropped values.
38079         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
38080         the dropped values.
38081         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
38082         Add dispose_fn argument.
38083         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
38084         Call dispose_fn on the dropped values.
38085         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
38086         Add dispose_fn argument.
38087         (gl_sublist_create): Initialize the 'dispose_fn' field.
38088         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
38089         * tests/test-array_list.c (main): Update.
38090         * tests/test-carray_list.c (main): Update.
38091         * tests/test-avltree_list.c (main): Update.
38092         * tests/test-rbtree_list.c (main): Update.
38093         * tests/test-avltreehash_list.c (main): Update.
38094         * tests/test-rbtreehash_list.c (main): Update.
38095         * tests/test-linked_list.c (main): Update.
38096         * tests/test-linkedhash_list.c (main): Update.
38097         * tests/test-array_oset.c (main): Update.
38098
38099 2007-03-15  Bruno Haible  <bruno@clisp.org>
38100
38101         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
38102         (gl_oset_create_empty): Add dispose_fn argument.
38103         (struct gl_oset_implementation): Add dispose_fn argument to
38104         'create_empty' method.
38105         (struct gl_oset_impl_base): Add dispose_fn field.
38106         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
38107         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
38108         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
38109         values.
38110         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
38111         (gl_tree_oset_free): Call dispose_fn on the dropped values.
38112         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
38113         dropped value.
38114         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
38115         dropped value.
38116         * tests/test-array_oset.c (main): Update.
38117         * tests/test-avltree_oset.c (main): Update.
38118         * tests/test-rbtree_oset.c (main): Update.
38119         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
38120
38121 2007-03-13  Bruno Haible  <bruno@clisp.org>
38122
38123         * tests/test-stdbool.c (i): Update after last patch.
38124
38125 2007-03-12  Bruno Haible  <bruno@clisp.org>
38126
38127         * lib/quotearg.c: Include <wctype.h> early, before the definition of
38128         the iswprint macro. Needed on Solaris 2.5.1.
38129
38130 2007-03-12  Bruno Haible  <bruno@clisp.org>
38131
38132         * tests/test-printf-frexp.c (main): Declare x as volatile.
38133
38134 2007-03-12  Simon Josefsson  <simon@josefsson.org>
38135
38136         * doc/gnulib.texi (Build robot for gnulib): New section.
38137
38138 2007-03-12  Jim Meyering  <jim@meyering.net>
38139
38140         * build-aux/bootstrap: New file.
38141         * build-aux/bootstrap.conf: New file, from coreutils.
38142
38143 2007-03-11  Bruno Haible  <bruno@clisp.org>
38144
38145         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
38146
38147 2007-03-12  Simon Josefsson  <simon@josefsson.org>
38148
38149         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
38150         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
38151         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
38152
38153 2007-03-11  Bruno Haible  <bruno@clisp.org>
38154
38155         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
38156         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
38157
38158 2007-03-11  Bruno Haible  <bruno@clisp.org>
38159
38160         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
38161         formula. Needed for SunPRO C 5.0.
38162
38163 2007-03-11  Bruno Haible  <bruno@clisp.org>
38164
38165         * modules/long-options (Depends-on): Add getopt.
38166
38167 2007-03-11  Bruno Haible  <bruno@clisp.org>
38168
38169         * modules/modechange (Depends-on): Add stdbool.
38170
38171 2007-03-11  Bruno Haible  <bruno@clisp.org>
38172
38173         * modules/i-ring (Depends-on): Add stdbool.
38174
38175 2007-03-11  Bruno Haible  <bruno@clisp.org>
38176
38177         * modules/gc-des (Depends-on): Add stdbool.
38178
38179 2007-03-11  Bruno Haible  <bruno@clisp.org>
38180
38181         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
38182
38183 2007-03-11  Bruno Haible  <bruno@clisp.org>
38184
38185         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
38186
38187 2007-03-11  Bruno Haible  <bruno@clisp.org>
38188
38189         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
38190
38191 2007-03-11  Bruno Haible  <bruno@clisp.org>
38192
38193         * lib/vasnprintf.c (sprintf): Undefine.
38194
38195 2007-03-11  Bruno Haible  <bruno@clisp.org>
38196
38197         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
38198         initializers in SunPRO C and Compaq C compilers.
38199
38200 2007-03-11  Bruno Haible  <bruno@clisp.org>
38201
38202         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
38203         decrementing code ANSI C compliant.
38204
38205 2007-03-11  Bruno Haible  <bruno@clisp.org>
38206
38207         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
38208         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
38209
38210 2007-03-11  Bruno Haible  <bruno@clisp.org>
38211
38212         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
38213         <stdbool.h> substitute doesn't pass.
38214
38215 2007-03-11  Bruno Haible  <bruno@clisp.org>
38216
38217         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
38218
38219 2007-03-11  Bruno Haible  <bruno@clisp.org>
38220
38221         * gnulib-tool (func_create_megatestdir): Create also an autobuild
38222         script, for submission to autobuild.josefsson.org.
38223
38224 2007-03-10  Bruno Haible  <bruno@clisp.org>
38225
38226         * modules/canonicalize-lgpl-tests: New file.
38227         * tests/test-canonicalize-lgpl.sh: New file.
38228         * tests/test-canonicalize-lgpl.c: New file.
38229
38230         * modules/c-strcase-tests: New file.
38231         * tests/test-c-strcase.sh: New file.
38232         * tests/test-c-strcasecmp.c: New file.
38233         * tests/test-c-strncasecmp.c: New file.
38234
38235         * modules/atexit-tests: New file.
38236         * tests/test-atexit.sh: New file.
38237         * tests/test-atexit.c: New file.
38238
38239 2007-03-10  Bruno Haible  <bruno@clisp.org>
38240
38241         * tests/test-binary-io.sh: Use temporary filenames that are not so
38242         likely to clash with those of other tests (in a parallel make).
38243         * tests/test-binary-io.c: Likewise.
38244
38245 2007-03-10  Bruno Haible  <bruno@clisp.org>
38246
38247         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
38248         fallback; use #error instead.
38249         Suggested by Simon Josefsson.
38250
38251 2007-03-10  Bruno Haible  <bruno@clisp.org>
38252
38253         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
38254         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
38255         first and the last.
38256
38257 2007-03-10  Bruno Haible  <bruno@clisp.org>
38258
38259         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
38260
38261 2007-03-10  Bruno Haible  <bruno@clisp.org>
38262
38263         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
38264         "make distcheck".
38265         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
38266         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
38267         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
38268
38269 2007-03-10  Bruno Haible  <bruno@clisp.org>
38270
38271         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
38272         variable.
38273         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
38274         variable.
38275
38276 2007-03-09  Eric Blake  <ebb9@byu.net>
38277         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
38278
38279         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
38280         types are not being provided by gnulib.
38281         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
38282         types are supported.
38283
38284 2007-03-10  Bruno Haible  <bruno@clisp.org>
38285
38286         * lib/stdio_.h (__attribute__): New macro.
38287         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
38288         vsprintf): Specify __attribute__ __format__ for GCC.
38289         Suggested by Eric Blake.
38290
38291 2007-03-09  Bruno Haible  <bruno@clisp.org>
38292
38293         * modules/printf-posix-tests: New file.
38294         * tests/test-printf-posix.sh: New file.
38295         * tests/test-printf-posix.c: New file.
38296
38297         * modules/printf-posix: New file.
38298         * lib/printf.c: New file.
38299         * m4/printf-posix-rpl.m4: New file.
38300         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
38301         REPLACE_PRINTF.
38302         * lib/stdio_.h (printf): New declaration.
38303         (format, __format__, ____printf____, ____scanf____, ____strftime____,
38304         ____strfmon____): New macros.
38305         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
38306         REPLACE_PRINTF.
38307
38308 2007-03-09  Bruno Haible  <bruno@clisp.org>
38309
38310         * tests/test-vasnprintf-posix2.sh: New file.
38311         * tests/test-vasnprintf-posix2.c: New file.
38312         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
38313         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
38314         (Makefile.am): Activate test-vasnprintf-posix2.sh.
38315
38316         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
38317         a locale dependent decimal point, rather than always '.'.
38318
38319 2007-03-09  Eric Blake  <ebb9@byu.net>
38320
38321         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
38322         spite of platforms like Tandem/NSK that define it to -1.
38323
38324 2007-03-08  Bruno Haible  <bruno@clisp.org>
38325
38326         * modules/vprintf-posix-tests: New file.
38327         * tests/test-vprintf-posix.sh: New file.
38328         * tests/test-vprintf-posix.c: New file.
38329         * tests/test-printf-posix.h: New file.
38330
38331         * modules/vprintf-posix: New file.
38332         * lib/vprintf.c: New file.
38333         * m4/vprintf-posix.m4: New file.
38334         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
38335         REPLACE_VPRINTF.
38336         * lib/stdio_.h (vprintf): New declaration.
38337         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
38338         REPLACE_VPRINTF.
38339
38340 2007-03-08  Bruno Haible  <bruno@clisp.org>
38341
38342         * modules/fprintf-posix-tests: New file.
38343         * tests/test-fprintf-posix.sh: New file.
38344         * tests/test-fprintf-posix.c: New file.
38345
38346         * modules/fprintf-posix: New file.
38347         * lib/fprintf.c: New file.
38348         * m4/fprintf-posix.m4: New file.
38349         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
38350         REPLACE_FPRINTF.
38351         * lib/stdio_.h (fprintf): New declaration.
38352         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
38353         REPLACE_FPRINTF.
38354
38355 2007-03-08  Bruno Haible  <bruno@clisp.org>
38356
38357         * modules/vfprintf-posix-tests: New file.
38358         * tests/test-vfprintf-posix.sh: New file.
38359         * tests/test-vfprintf-posix.c: New file.
38360         * tests/test-fprintf-posix.h: New file.
38361         * tests/test-fprintf-posix.out: New file.
38362
38363         * modules/vfprintf-posix: New file.
38364         * lib/vfprintf.c: New file.
38365         * m4/vfprintf-posix.m4: New file.
38366         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
38367         REPLACE_VFPRINTF.
38368         * lib/stdio_.h (vfprintf): New declaration.
38369         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
38370         REPLACE_VFPRINTF.
38371
38372 2007-03-08  Bruno Haible  <bruno@clisp.org>
38373
38374         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
38375
38376 2007-03-08  Bruno Haible  <bruno@clisp.org>
38377
38378         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
38379         instead of 'expr' invocations.
38380         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
38381         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
38382         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
38383         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
38384         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
38385         Suggested by Paul Eggert.
38386
38387 2007-03-08  Bruno Haible  <bruno@clisp.org>
38388
38389         * modules/fseterr-tests: New file.
38390         * tests/test-fseterr.c: New file.
38391
38392         * modules/fseterr: New file.
38393         * lib/fseterr.h: New file.
38394         * lib/fseterr.c: New file.
38395
38396 2007-03-08  Bruno Haible  <bruno@clisp.org>
38397
38398         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
38399         * lib/getopt_.h: Likewise.
38400         * lib/mbswidth.h: Likewise.
38401         * lib/setenv.h: Likewise.
38402         * lib/vasnprintf.h: Likewise.
38403         * lib/vasprintf.h: Likewise.
38404         * lib/verror.h: Likewise.
38405         * lib/xsetenv.h: Likewise.
38406         * lib/xvasprintf.h: Likewise.
38407
38408 2007-03-08  Jim Meyering  <jim@meyering.net>
38409
38410         * users.txt: Add parted.
38411
38412         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
38413
38414 2007-03-07  Bruno Haible  <bruno@clisp.org>
38415
38416         * m4/printf.m4: Make the shell script snippets copy&pastable.
38417
38418 2007-03-02  Bruno Haible  <bruno@clisp.org>
38419
38420         * lib/netinet_in_.h: New file.
38421         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
38422         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
38423         * modules/netinet_in (Files): Add lib/netinet_in_.h.
38424         (Depends-on): Add absolute-header.
38425         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
38426         into netinet/in.h.
38427
38428 2007-03-03  Bruno Haible  <bruno@clisp.org>
38429
38430         * lib/sys_select_.h: New file.
38431         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
38432         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
38433         * modules/sys_select (Files): Add lib/sys_select_.h.
38434         (Depends-on): Add absolute-header.
38435         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
38436         into sys/select.h.
38437
38438 2007-03-02  Bruno Haible  <bruno@clisp.org>
38439
38440         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
38441         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
38442         values.
38443         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
38444         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
38445         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
38446         * modules/sys_socket (Depends-on): Add absolute-header.
38447         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
38448         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
38449         (Include): Remove requirement of inclusion of <sys/types.h>.
38450
38451 2007-03-02  Bruno Haible  <bruno@clisp.org>
38452
38453         * lib/byteswap_.h (bswap_32): Fix formula.
38454
38455 2007-03-06  Bruno Haible  <bruno@clisp.org>
38456
38457         * modules/sprintf-posix-tests: New file.
38458         * tests/test-sprintf-posix.c: New file.
38459
38460         * modules/sprintf-posix: New file.
38461         * lib/sprintf.c: New file.
38462         * m4/sprintf-posix.m4: New file.
38463         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
38464         REPLACE_SPRINTF.
38465         * lib/stdio_.h (sprintf): New declaration.
38466         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
38467         REPLACE_SPRINTF.
38468
38469 2007-03-06  Bruno Haible  <bruno@clisp.org>
38470
38471         * modules/vsprintf-posix-tests: New file.
38472         * tests/test-vsprintf-posix.c: New file.
38473         * tests/test-sprintf-posix.h: New file.
38474
38475         * modules/vsprintf-posix: New file.
38476         * lib/vsprintf.c: New file.
38477         * m4/vsprintf-posix.m4: New file.
38478         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
38479         REPLACE_VSPRINTF.
38480         * lib/stdio_.h (vsprintf): New declaration.
38481         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
38482         REPLACE_VSPRINTF.
38483
38484 2007-03-06  Bruno Haible  <bruno@clisp.org>
38485
38486         * modules/vsnprintf (Depend-on): Remove minmax.
38487
38488 2007-03-06  Bruno Haible  <bruno@clisp.org>
38489
38490         * modules/snprintf-posix-tests: New file.
38491         * tests/test-snprintf-posix.c: New file.
38492
38493         * modules/snprintf-posix: New file.
38494         * m4/snprintf-posix.m4: New file.
38495         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
38496         gl_FUNC_SNPRINTF.
38497         (gl_FUNC_SNPRINTF): Invoke it.
38498         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
38499         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
38500         is set.
38501         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
38502
38503 2007-03-06  Bruno Haible  <bruno@clisp.org>
38504
38505         * modules/vsnprintf-posix-tests: New file.
38506         * tests/test-vsnprintf-posix.c: New file.
38507         * tests/test-snprintf-posix.h: New file.
38508
38509         * modules/vsnprintf-posix: New file.
38510         * m4/vsnprintf-posix.m4: New file.
38511         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
38512         gl_FUNC_VSNPRINTF.
38513         (gl_FUNC_VSNPRINTF): Invoke it.
38514         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
38515         * lib/stdio_.h (vsnprintf): Define as a replacement if
38516         REPLACE_VSNPRINTF is set.
38517         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
38518
38519 2007-03-06  Bruno Haible  <bruno@clisp.org>
38520
38521         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
38522         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
38523
38524 2007-03-06  Bruno Haible  <bruno@clisp.org>
38525
38526         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
38527         (asinl): Declare also if HAVE_DECL_ASINL is set.
38528         (atanl): Declare also if HAVE_DECL_ATANL is set.
38529         (ceill): Declare also if HAVE_DECL_CEILL is set.
38530         (cosl): Declare also if HAVE_DECL_COSL is set.
38531         (expl): Declare also if HAVE_DECL_EXPL is set.
38532         (floorl): Declare also if HAVE_DECL_FLOORL is set.
38533         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
38534         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
38535         (logl): Declare also if HAVE_DECL_LOGL is set.
38536         (sinl): Declare also if HAVE_DECL_SINL is set.
38537         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
38538         (tanl): Declare also if HAVE_DECL_TANL is set.
38539         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
38540         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
38541         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
38542         declaration of frexpl, ldexpl.
38543         * modules/printf-frexpl (Depends-on): Add math.
38544         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
38545
38546 2007-03-05  Bruno Haible  <bruno@clisp.org>
38547
38548         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
38549         frexpl and ldexpl are declared.
38550         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
38551
38552 2007-03-05  Bruno Haible  <bruno@clisp.org>
38553
38554         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
38555         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
38556
38557 2007-03-05  Bruno Haible  <bruno@clisp.org>
38558
38559         * lib/stdio_.h: Include <stddef.h>.
38560
38561 2007-03-05  Bruno Haible  <bruno@clisp.org>
38562
38563         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
38564
38565 2007-03-05  Bruno Haible  <bruno@clisp.org>
38566
38567         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
38568         NetBSD 4, from Ralf Wildenhues.
38569
38570 2007-03-04  Bruno Haible  <bruno@clisp.org>
38571
38572         * lib/vasprintf.h: Update #if logic for the case when the functions
38573         exist but are overridden.
38574
38575 2007-03-04  Bruno Haible  <bruno@clisp.org>
38576
38577         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
38578         implementations: glibc-2.4 and MacOS X 10.3.
38579         * tests/test-vasnprintf-posix.c (test_function): Test also the case
38580         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
38581         * tests/test-vasprintf-posix.c (test_function): Likewise.
38582
38583 2007-03-04  Bruno Haible  <bruno@clisp.org>
38584
38585         * modules/vasprintf-posix-tests: New file.
38586         * tests/test-vasprintf-posix.c: New file.
38587
38588         * modules/vasprintf-posix: New file.
38589         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
38590         defined.
38591         * m4/vasprintf-posix.m4: New file.
38592         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
38593         gl_FUNC_VASPRINTF.
38594         (gl_FUNC_VASPRINTF): Invoke it.
38595         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
38596         here.
38597         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
38598
38599 2007-03-04  Bruno Haible  <bruno@clisp.org>
38600
38601         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
38602         REPLACE_GETTIMEOFDAY.
38603         * modules/sys_time (Makefile.am): Likewise.
38604         * m4/sys_time_h.m4: Likewise.
38605         * m4/gettimeofday.m4: Likewise.
38606
38607 2007-03-04  Bruno Haible  <bruno@clisp.org>
38608
38609         * modules/vasnprintf-posix-tests: New file.
38610         * tests/test-vasnprintf-posix.c: New file.
38611
38612         * modules/vasnprintf-posix: New file.
38613         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
38614         printf-frexpl.h.
38615         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
38616         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
38617         REPLACE_VASNPRINTF is defined.
38618         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
38619         gl_FUNC_VASNPRINTF.
38620         (gl_FUNC_VASNPRINTF): Invoke it.
38621         * m4/vasnprintf-posix.m4: New file.
38622         * m4/printf.m4: New file.
38623
38624 2007-03-04  Bruno Haible  <bruno@clisp.org>
38625
38626         Compile progreloc.c only if --enable-relocatable is specified.
38627         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
38628         if --enable-relocatable was specified.
38629         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
38630         lib_SOURCES.
38631
38632 2007-03-04  Jim Meyering  <jim@meyering.net>
38633
38634         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
38635         Use it consistently, rather than enumerating errno constants.
38636
38637 2007-03-04  Bruno Haible  <bruno@clisp.org>
38638
38639         * modules/xvasprintf-tests: New file.
38640         * tests/test-xvasprintf.c: New file.
38641
38642         * modules/vasprintf-tests: New file.
38643         * tests/test-vasprintf.c: New file.
38644
38645         * modules/vasnprintf-tests: New file.
38646         * tests/test-vasnprintf.c: New file.
38647
38648         * modules/vsnprintf-tests: New file.
38649         * tests/test-vsnprintf.c: New file.
38650
38651         * modules/snprintf-tests: New file.
38652         * tests/test-snprintf.c: New file.
38653
38654 2007-03-04  Bruno Haible  <bruno@clisp.org>
38655
38656         Compile relocatable.c only if --enable-relocatable is specified.
38657         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
38658         gl_RELOCATABLE_LIBRARY.
38659         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
38660         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
38661         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
38662         gl_RELOCATABLE_LIBRARY.
38663         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
38664         (Makefile.am): Remove lib_SOURCES.
38665         * modules/relocatable-lib-lgpl (configure.ac): Invoke
38666         gl_RELOCATABLE_LIBRARY.
38667         (Makefile.am): Remove lib_SOURCES.
38668         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
38669         always.
38670         * modules/relocatable-prog-wrapper (configure.ac): Invoke
38671         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
38672
38673 2007-03-04  Bruno Haible  <bruno@clisp.org>
38674
38675         * modules/argmatch-tests: New file.
38676         * tests/test-argmatch.c: New file.
38677
38678         * tests/test-allocsa.c (main): Halve the number of loop runs.
38679
38680         * modules/alloca-opt-tests: New file.
38681         * tests/test-alloca-opt.c: New file.
38682
38683 2007-03-04  Jim Meyering  <jim@meyering.net>
38684
38685         Work around difference between Linux ACLs and Solaris 10 ZFS.
38686         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
38687         for EINVAL.
38688
38689 2007-03-03  Bruno Haible  <bruno@clisp.org>
38690
38691         * modules/relocatable-prog (Depends-on): Add back progreloc's
38692         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
38693
38694 2007-03-03  Bruno Haible  <bruno@clisp.org>
38695
38696         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
38697         * modules/relocatable-lib: New file.
38698
38699 2007-03-03  Bruno Haible  <bruno@clisp.org>
38700
38701         * modules/relocatable-prog: Renamed from modules/relocatable.
38702         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
38703
38704 2007-03-03  Bruno Haible  <bruno@clisp.org>
38705
38706         * modules/relocatable-script (Files): Add doc/relocatable.texi,
38707         m4/relocatable-lib.m4.
38708         (Depends-on): Remove 'relocatable'.
38709         (configure.ac): Add gl_RELOCATABLE_NOP.
38710
38711 2007-03-03  Bruno Haible  <bruno@clisp.org>
38712
38713         * modules/relocatable-prog-wrapper: New file.
38714         * modules/relocatable (Depends-on): Add it. Remove all other
38715         dependencies except progname.
38716         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
38717
38718         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
38719         (gl_FUNC_STRERROR): Nop.
38720         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
38721
38722         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
38723         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
38724
38725         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
38726         (gl_FUNC_READLINK): Update.
38727
38728         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
38729
38730 2007-03-03  Bruno Haible  <bruno@clisp.org>
38731
38732         * lib/xreadlink.c: Include <unistd.h> unconditionally.
38733         * modules/xreadlink (Depends-on): Add unistd.
38734         * modules/xreadlink-with-size (Depends-on): Likewise.
38735
38736 2007-03-03  Bruno Haible  <bruno@clisp.org>
38737
38738         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
38739         extracted from gt_FUNC_SETENV.
38740         (gt_FUNC_SETENV): Remove macro.
38741         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
38742         remove gt_FUNC_SETENV.
38743
38744 2007-03-03  Bruno Haible  <bruno@clisp.org>
38745
38746         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
38747         ENABLE_RELOCATABLE here.
38748         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
38749
38750 2007-03-03  Bruno Haible  <bruno@clisp.org>
38751
38752         * modules/rbtreehash-list-tests (Depends-on): Add progname.
38753         * tests/test-rbtreehash_list.c: Include progname.h.
38754         (main): Call set_program_name.
38755
38756         * modules/rbtree-oset-tests (Depends-on): Add progname.
38757         * tests/test-rbtree_oset.c: Include progname.h.
38758         (main): Call set_program_name.
38759
38760         * modules/rbtree-list-tests (Depends-on): Add progname.
38761         * tests/test-rbtree_list.c: Include progname.h.
38762         (main): Call set_program_name.
38763
38764         * modules/linked-list-tests (Depends-on): Add progname.
38765         * tests/test-linked_list.c: Include progname.h.
38766         (main): Call set_program_name.
38767
38768 2007-03-03  Bruno Haible  <bruno@clisp.org>
38769
38770         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
38771         All uses of __restrict changed to _Restrict_.
38772         * lib/glob_.h (__restrict): Remove macro.
38773
38774 2007-03-02  Bruno Haible  <bruno@clisp.org>
38775
38776         * modules/gettext (configure.ac): Require gettext infrastructure
38777         from version 0.16.1.
38778
38779 2007-03-02  Bruno Haible  <bruno@clisp.org>
38780
38781         * modules/linkedhash-list-tests (Depends-on): Add progname.
38782         * tests/test-linkedhash_list.c: Include progname.h.
38783         (main): Call set_program_name.
38784
38785         * modules/carray-list-tests (Depends-on): Add progname.
38786         * tests/test-carray_list.c: Include progname.h.
38787         (main): Call set_program_name.
38788
38789         * modules/avltreehash-list-tests (Depends-on): Add progname.
38790         * tests/test-avltreehash_list.c: Include progname.h.
38791         (main): Call set_program_name.
38792
38793         * modules/avltree-oset-tests (Depends-on): Add progname.
38794         * tests/test-avltree_oset.c: Include progname.h.
38795         (main): Call set_program_name.
38796
38797         * modules/avltree-list-tests (Depends-on): Add progname.
38798         * tests/test-avltree_list.c: Include progname.h.
38799         (main): Call set_program_name.
38800
38801         * modules/array-oset-tests (Depends-on): Add progname.
38802         * tests/test-array_oset.c: Include progname.h.
38803         (main): Call set_program_name.
38804
38805         * modules/array-list-tests (Depends-on): Add progname.
38806         * tests/test-array_list.c: Include progname.h.
38807         (main): Call set_program_name.
38808
38809         * modules/argp-tests (Depends-on): Add progname.
38810         * tests/test-argp.c: Include argp.h first. Include progname.h.
38811         (main): Call set_program_name.
38812
38813 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
38814
38815         * doc/gnulib-tool.texi (Initial import): Reword description of
38816         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
38817         limited effect even if defined after the first system include.
38818
38819 2007-03-01  Bruno Haible  <bruno@clisp.org>
38820
38821         * build-aux/config.libpath: Update to libtool-1.5.22.
38822         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
38823
38824 2007-03-01  Bruno Haible  <bruno@clisp.org>
38825
38826         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
38827         foo_CFLAGS.
38828         Reported by Ralf Wildenhues.
38829
38830 2007-03-01  Bruno Haible  <bruno@clisp.org>
38831
38832         * build-aux/install-reloc: Remove object files left over by some
38833         compilers.
38834         Reported by Ralf Wildenhues.
38835
38836 2007-03-01  Bruno Haible  <bruno@clisp.org>
38837
38838         * build-aux/install-reloc: Break long lines.
38839
38840 2007-03-01  Bruno Haible  <bruno@clisp.org>
38841
38842         * doc/relocatable.texi: Document that it may not work on OpenBSD.
38843         Reported by Ralf Wildenhues.
38844
38845 2007-03-01  Bruno Haible  <bruno@clisp.org>
38846
38847         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
38848         include ordering constraints.
38849
38850 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
38851
38852         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
38853         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
38854         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
38855         as another example.
38856         * lib/time_.h: Fix misspelling.
38857         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
38858         Require gl_HEADER_TIME_H_DEFAULTS.
38859         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
38860         * m4/time_r.m4 (gl_TIME_R): Likewise.
38861         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
38862
38863 2007-03-01  Bruno Haible  <bruno@clisp.org>
38864
38865         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
38866         * m4/utimens.m4 (gl_UTIMENS): Likewise.
38867
38868 2007-03-01  Jim Meyering  <jim@meyering.net>
38869
38870         * modules/xreadlink (Maintainer): Add my name.
38871         * modules/xreadlink-with-size (Depends-on): Alphabetize.
38872
38873 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
38874             Bruno Haible  <bruno@clisp.org>
38875
38876         * build-aux/install-reloc: Compile also c-ctype.c.
38877         * build-aux/relocatable.sh.in: New file.
38878         * doc/relocatable.texi: New file.
38879         * doc/relocatable-maint.texi: New file.
38880         * doc/gnulib.texi: Include relocatable-maint.texi.
38881         * lib/progreloc.c: Include unistd.h unconditionally.
38882         * lib/relocwrapper.c: Include unistd.h unconditionally.
38883         Include c-ctype.h.
38884         (add_dotbin): Use c_tolower.
38885         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
38886         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
38887         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
38888         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
38889         to m4/relocatable-lib.m4.
38890         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
38891         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
38892         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
38893         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
38894         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
38895         * modules/relocatable: New file.
38896         * modules/relocatable-lib: New file.
38897         * modules/relocatable-script: New file.
38898
38899 2007-02-28  Bruno Haible  <bruno@clisp.org>
38900
38901         Import --enable-relocatable infrastructure.
38902         * build-aux/config.libpath: New file, from GNU gettext.
38903         * build-aux/install-reloc: New file, from GNU gettext.
38904         * build-aux/reloc-ldflags: New file, from GNU gettext.
38905         * lib/relocatable.h: New file, from GNU gettext.
38906         * lib/relocatable.c: New file, from GNU gettext.
38907         * lib/relocwrapper.c: New file, from GNU gettext.
38908         * m4/relocatable.m4: New file, from GNU gettext.
38909
38910 2007-02-28  Bruno Haible  <bruno@clisp.org>
38911
38912         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
38913
38914         * modules/xreadlink: New file, from GNU gettext with modifications.
38915         * lib/xreadlink.c: New file, from GNU gettext.
38916         * lib/xreadlink.h: Add comments.
38917         (xreadlink): New declaration.
38918
38919         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
38920         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
38921         lib/xreadlink-with-size.c.
38922         (configure.ac): Remove gl_XREADLINK invocation.
38923         (Makefile.am): Augment lib_SOURCES.
38924         * m4/xreadlink.m4: Remove file.
38925         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
38926         (xreadlink_with_size): Renamed from xreadink.
38927         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
38928         * modules/canonicalize (Depends-on): Replace xreadlink with
38929         xreadlink-with-size.
38930         * lib/canonicalize.c (canonicalize_filename_mode): Update.
38931
38932 2007-02-25  Jim Meyering  <jim@meyering.net>
38933
38934         * build-aux/announce-gen: When complaining about excess arguments,
38935         list them.
38936
38937 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
38938
38939         * README: Document signed integer overflow situation more
38940         accurately.
38941
38942 2007-02-25  Bruno Haible  <bruno@clisp.org>
38943
38944         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
38945         'a' or 'A' conversion.
38946
38947 2007-02-25  Bruno Haible  <bruno@clisp.org>
38948
38949         * modules/filename: Renamed from modules/pathname.
38950         (Files): Replace lib/pathname.h with lib/filename.h. Replace
38951         lib/concatpath.c with lib/concat-filename.c.
38952         (Makefile.am): Update.
38953         (Include): Replace pathname.h with filename.h.
38954         * lib/filename.h: Renamed from lib/pathname.h.
38955         (concatenated_filename): Renamed from concatenated_pathname.
38956         * lib/concat-filename.c: Renamed from lib/concatpath.c.
38957         (concatenated_filename): Renamed from concatenated_pathname.
38958         * lib/findprog.c: Include filename.h instead of pathname.h.
38959         (find_in_path): Update.
38960         * lib/javacomp.c: Include filename.h instead of pathname.h.
38961         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
38962         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
38963         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
38964         is_oldgcj_14_13_usable, is_javac_usable): Update.
38965         * lib/javaexec.c: Include filename.h instead of pathname.h.
38966         (execute_java_class): Update.
38967         * modules/findprog: Update.
38968         * modules/javacomp: Update.
38969         * modules/javaexec: Update.
38970         * MODULES.html.sh (File system functions): Add 'filename', remove
38971         'pathname'.
38972
38973 2007-02-25  Bruno Haible  <bruno@clisp.org>
38974
38975         * modules/printf-frexpl-tests: New file.
38976         * tests/test-printf-frexpl.c: New file.
38977
38978         * modules/printf-frexpl: New file.
38979         * lib/printf-frexpl.h: New file.
38980         * lib/printf-frexpl.c: New file.
38981         * m4/printf-frexpl.m4: New file.
38982
38983 2007-02-25  Bruno Haible  <bruno@clisp.org>
38984
38985         * modules/printf-frexp-tests: New file.
38986         * tests/test-printf-frexp.c: New file.
38987
38988         * modules/printf-frexp: New file.
38989         * lib/printf-frexp.h: New file.
38990         * lib/printf-frexp.c: New file.
38991         * m4/printf-frexp.m4: New file.
38992
38993 2007-02-25  Bruno Haible  <bruno@clisp.org>
38994
38995         Assume automake >= 1.10 for the tests.
38996         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
38997         * modules/arctwo-tests: Likewise.
38998         * modules/argp-tests: Likewise.
38999         * modules/avltree-list-tests: Likewise.
39000         * modules/avltree-oset-tests: Likewise.
39001         * modules/avltreehash-list-tests: Likewise.
39002         * modules/carray-list-tests: Likewise.
39003         * modules/crc-tests: Likewise.
39004         * modules/des-tests: Likewise.
39005         * modules/gc-arcfour-tests: Likewise.
39006         * modules/gc-arctwo-tests: Likewise.
39007         * modules/gc-des-tests: Likewise.
39008         * modules/gc-hmac-md5-tests: Likewise.
39009         * modules/gc-hmac-sha1-tests: Likewise.
39010         * modules/gc-md2-tests: Likewise.
39011         * modules/gc-md4-tests: Likewise.
39012         * modules/gc-md5-tests: Likewise.
39013         * modules/gc-pbkdf2-sha1-tests: Likewise.
39014         * modules/gc-rijndael-tests: Likewise.
39015         * modules/gc-sha1-tests: Likewise.
39016         * modules/gc-tests: Likewise.
39017         * modules/getaddrinfo-tests: Likewise.
39018         * modules/hmac-md5-tests: Likewise.
39019         * modules/hmac-sha1-tests: Likewise.
39020         * modules/linked-list-tests: Likewise.
39021         * modules/linkedhash-list-tests: Likewise.
39022         * modules/lock-tests: Likewise.
39023         * modules/md2-tests: Likewise.
39024         * modules/md4-tests: Likewise.
39025         * modules/md5-tests: Likewise.
39026         * modules/rbtree-list-tests: Likewise.
39027         * modules/rbtree-oset-tests: Likewise.
39028         * modules/rbtreehash-list-tests: Likewise.
39029         * modules/read-file-tests: Likewise.
39030         * modules/rijndael-tests: Likewise.
39031         * modules/stdint-tests: Likewise.
39032         * modules/tls-tests: Likewise.
39033
39034 2007-02-24  Bruno Haible  <bruno@clisp.org>
39035
39036         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
39037         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
39038         function; instead check whether isnan with a double argument links.
39039         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
39040         function; instead check whether isnan with a 'long double' argument
39041         links.
39042         Reported by Eric Blake <ebb9@byu.net>.
39043
39044 2007-02-24  Bruno Haible  <bruno@clisp.org>
39045
39046         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
39047         defined.
39048         * lib/isnanl.c: Remove all code. Just include isnan.c.
39049         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
39050
39051 2007-02-25  Jim Meyering  <jim@meyering.net>
39052
39053         Avoid conflicting types for 'unsetenv' on FreeBSD.
39054         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
39055         conflicting with FreeBSD's (5.0 and 6.1) function declaration
39056         in stdlib.h.
39057
39058 2007-02-24  Bruno Haible  <bruno@clisp.org>
39059
39060         * modules/isnanl-nolibm-tests: New file.
39061         * tests/test-isnanl.c: New file.
39062
39063         * modules/isnanl-nolibm: New file.
39064         * lib/isnanl.h: New file.
39065         * lib/isnanl.c: New file.
39066         * m4/isnanl.m4: New file.
39067
39068 2007-02-24  Bruno Haible  <bruno@clisp.org>
39069
39070         * modules/isnan-nolibm-tests: New file.
39071         * tests/test-isnan.c: New file.
39072
39073         * modules/isnan-nolibm: New file.
39074         * lib/isnan.h: New file.
39075         * lib/isnan.c: New file.
39076         * m4/isnan.m4: New file.
39077
39078 2007-02-24  Bruno Haible  <bruno@clisp.org>
39079
39080         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
39081         assume that an exponent fits in 20 bits.
39082
39083 2007-02-24  Jim Meyering  <jim@meyering.net>
39084
39085         * m4/regex.m4: Update the description of the configure-time option,
39086         --without-included-regex, to state accurately what the defaults are,
39087         and perhaps to give people an idea why using this option is risky.
39088
39089 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
39090
39091         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
39092         loops on small arguments.  This attempts to avoid the problem
39093         Bruno Haible reported for AIX 4.3.2 in
39094         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
39095
39096 2007-02-23  Bruno Haible  <bruno@clisp.org>
39097
39098         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
39099         Needed for help2man.
39100
39101 2007-02-23  Karl Berry  <karl@gnu.org>
39102
39103         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
39104         exists, foo.h should be cvs-ignored, not committed.
39105
39106 2007-02-23  Eric Blake  <ebb9@byu.net>
39107
39108         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
39109         * lib/stat-time.h (includes): Likewise.
39110         * lib/utimecmp.c (includes): Likewise.
39111         * lib/utimens.h (includes): Likewise.
39112         * lib/getdate.y (includes): Also include "timespec.h" for use
39113         internal to the module.
39114         * modules/utimens (Depends-on): Revert yesterday's patch.
39115         * modules/nanosleep (Depends-on): Add missing dependency.
39116
39117 2007-02-22  Bruno Haible  <bruno@clisp.org>
39118
39119         * lib/glob.c: Don't include getlogin_r.h.
39120
39121 2007-02-22  Jim Meyering  <jim@meyering.net>
39122
39123         * modules/utimens (Depends-on): Add timespec, required for
39124         utimens.h's inclusion of timespec.h.
39125
39126 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
39127
39128         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
39129         long unreadable paths in GNU/Linux.  Problem reported by Andreas
39130         Schwab in
39131         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
39132         I'll try to think of a better way to fix the Solaris problem.
39133
39134         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
39135         like glibc; on Solaris 10, it fails with errno == EINVAL.
39136         POSIX says the behavior is unspecified if the first argument is NULL,
39137         so play it safe and never pass NULL to the system getcwd.
39138
39139 2007-02-21  Jim Meyering  <jim@meyering.net>
39140
39141         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
39142         of gettimeofday.  It would conflict with the one now always
39143         provided via sys_time_.h.  Reported by Matthew Woehlke, as
39144         an IRIX 6.5 build failure.
39145
39146 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
39147
39148         Minor fixups to port to Solaris 10 with Sun C 5.8.
39149         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
39150         * modules/getcwd (Depends-on): Add dirfd.
39151         * lib/putenv.c (putenv): #undef it.
39152         (rpl_putenv): New decl.
39153         (malloc, free): Include <stdlib.h> rather than prototyping separately.
39154
39155 2007-02-20  Bruno Haible  <bruno@clisp.org>
39156
39157         * modules/stdio-tests: New file.
39158         * tests/test-stdio.c: New file.
39159
39160         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
39161         (Depends-on): Add stdio.
39162         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
39163         (Include): Use <stdio.h> instead of vsnprintf.h.
39164         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
39165         HAVE_DECL_VSNPRINTF.
39166         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
39167
39168         * modules/snprintf (Files): Remove lib/snprintf.h.
39169         (Depends-on): Add stdio.
39170         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
39171         (Include): Use <stdio.h> instead of snprintf.h.
39172         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
39173         HAVE_DECL_SNPRINTF.
39174         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
39175         * lib/getaddrinfo.c: Likewise.
39176
39177         * modules/stdio: New file.
39178         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
39179         * lib/snprintf.h: Remove file.
39180         * lib/vsnprintf.h: Remove file.
39181         * lib/.cppi-disable: Remove snprintf.h.
39182         * m4/stdio_h.m4: New file.
39183         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
39184
39185 2007-02-20  Jim Meyering  <jim@meyering.net>
39186
39187         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
39188         used by e.g., mingw.  From Bruno Haible.
39189
39190 2007-02-19  Bruno Haible  <bruno@clisp.org>
39191
39192         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
39193         warnings.
39194         Reported by Ben Pfaff <blp@cs.stanford.edu>.
39195
39196 2007-02-19  Bruno Haible  <bruno@clisp.org>
39197
39198         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
39199         from mingw users.
39200
39201 2007-02-19  Bruno Haible  <bruno@clisp.org>
39202
39203         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
39204         warnings.
39205         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
39206
39207 2007-02-19  Jim Meyering  <jim@meyering.net>
39208
39209         Don't use FD after a successful "fdopendir (fd)".
39210         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
39211         Reset it by calling dirfd on the just-obtained DIR*.
39212
39213         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
39214         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
39215
39216 2007-02-18  Bruno Haible  <bruno@clisp.org>
39217
39218         * lib/readlink.c: Include <unistd.h>.
39219         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
39220         HAVE_READLINK.
39221         * modules/readlink (Depends-on): Add unistd.
39222         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39223         (Include): Add <unistd.h>.
39224
39225         * lib/getlogin_r.h: Remove file.
39226         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
39227         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
39228         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
39229         HAVE_DECL_GETLOGIN_R.
39230         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
39231         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39232         (Include): Use <unistd.h> instead of getlogin_r.h.
39233
39234         * lib/getcwd.h: Remove file.
39235         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
39236         * lib/xgetcwd.c: Likewise.
39237         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
39238         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
39239         * modules/getcwd (Files): Remove lib/getcwd.h.
39240         (Depends-on): Add unistd.
39241         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39242         (Include): Use <unistd.h> instad of getcwd.h.
39243
39244         * lib/ftruncate.c: Include <unistd.h> first.
39245         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
39246         Set HAVE_FTRUNCATE.
39247         * modules/ftruncate (Depends-on): Add unistd.
39248         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39249
39250         * lib/fchdir.c: Include <unistd.h> first.
39251         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
39252         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
39253         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
39254         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39255         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
39256
39257         * lib/dup2.c: Include <unistd.h> first.
39258         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
39259         HAVE_DUP2.
39260         * modules/dup2 (Depends-on): Add unistd.
39261         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39262
39263         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
39264         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
39265         REPLACE_CHOWN. Don't define chown as a macro here.
39266         * modules/chown (Depends-on): Add unistd.
39267         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39268
39269         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
39270         Add definition for GL_LINK_WARNING.
39271         (chown, dup2): New declarations.
39272         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
39273         link warning.
39274         (ftruncate): New declaration.
39275         (getcwd): New declaration, taken from old getcwd.h.
39276         (getlogin_r): New declaration, taken from old getlogin_r.h.
39277         (readlink): New declaration.
39278         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
39279         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
39280         (gl_PREREQ_UNISTD): Remove macro.
39281         (gl_UNISTD_MODULE_INDICATOR): New macro.
39282         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
39283         many new variables. Don't set UNISTD_H.
39284         * modules/unistd (Description): Change.
39285         (Depends-on): Add link-warning.
39286         (configure.ac): Update.
39287         (Makefile.am): Create unistd.h always. Substitute many new variables
39288         into it.
39289
39290 2007-02-18  Bruno Haible  <bruno@clisp.org>
39291
39292         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
39293         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
39294         HAVE_GETSUBOPT.
39295         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
39296         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
39297         * lib/getsubopt.h: Remove file.
39298         * modules/getsubopt (Files): Remove lib/getsubopt.h.
39299         (Depends-on): Add stdlib.
39300         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
39301         (Includes): Use <stdlib.h> instead of getsubopt.h.
39302         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
39303         Set HAVE_GETSUBOPT.
39304         * lib/getsubopt.c: Don't include getsubopt.h.
39305
39306 2007-02-18  Bruno Haible  <bruno@clisp.org>
39307
39308         * modules/fchdir (Depends-on): Add dup2.
39309
39310 2007-02-18  Bruno Haible  <bruno@clisp.org>
39311
39312         * lib/stdlib_.h: Handle glibc's special invocation convention
39313         specially.
39314
39315 2007-02-18  Bruno Haible  <bruno@clisp.org>
39316
39317         * modules/stdlib-tests: New file.
39318         * tests/test-stdlib.c: New file.
39319
39320         * modules/mkstemp (Files): Remove lib/mkstemp.h.
39321         (Depends-on): Add stdlib.
39322         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
39323         (Includes): Use <stdlib.h> instead of mkstemp.h.
39324         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
39325         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
39326         * lib/mkstemp.c: Don't include mkstemp.h.
39327         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
39328         * lib/stdlib--.h: Don't include mkstemp.h.
39329
39330         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
39331         (Depends-on): Add stdlib.
39332         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
39333         (Includes): Use <stdlib.h> instead of mkdtemp.h.
39334         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
39335         HAVE_MKDTEMP.
39336         * lib/mkdtemp.c: Don't include mkdtemp.h.
39337         * lib/clean-temp.c: Don't include mkdtemp.h.
39338
39339         * modules/exit (Files): Remove lib/exit.h.
39340         (Depends-on): Add stdlib.
39341         (Makefile.am): Remove lib_SOURCES.
39342         (Include): Use <stdlib.h> instead of exit.h.
39343         * lib/argmatch.c: Don't include exit.h.
39344         * lib/execute.c: Likewise.
39345         * lib/pagealign_alloc.c: Likewise.
39346         * lib/pipe.c: Likewise.
39347         * lib/wait-process.c: Likewise.
39348         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
39349         * lib/exitfail.c: Likewise.
39350         * lib/savewd.c: Likewise.
39351         * lib/xsetenv.c: Likewise.
39352
39353         * modules/stdlib: New file.
39354         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
39355         and extra comments about mkstemp().
39356         * lib/exit.h: Remove file.
39357         * lib/mkdtemp.h: Remove file.
39358         * lib/mkstemp.h: Remove file.
39359         * m4/stdlib_h.m4: New file.
39360         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
39361
39362 2007-02-18  Bruno Haible  <bruno@clisp.org>
39363
39364         * modules/math-tests: New file.
39365         * tests/test-math.c: New file.
39366
39367         * modules/math: New file.
39368         * modules/mathl (Files): Remove lib/mathl.h.
39369         (Depends-on): Add math.
39370         (Makefile.am): Don't mention mathl.h.
39371         (Include): Use <math.h> instead of mathl.h.
39372         * lib/math_.h: New file.
39373         * lib/mathl.h: Remove file.
39374         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
39375         mathl.h.
39376         * lib/asinl.c: Likewise.
39377         * lib/atanl.c: Likewise.
39378         * lib/ceill.c: Likewise.
39379         * lib/cosl.c: Likewise.
39380         * lib/expl.c: Likewise.
39381         * lib/floorl.c: Likewise.
39382         * lib/frexpl.c: Likewise.
39383         * lib/ldexpl.c: Likewise.
39384         * lib/logl.c: Likewise.
39385         * lib/sincosl.c: Likewise.
39386         * lib/sinl.c: Likewise.
39387         * lib/sqrtl.c: Likewise.
39388         * lib/tanl.c: Likewise.
39389         * lib/trigl.c: Likewise.
39390         * m4/math_h.m4: New file.
39391         * MODULES.html.sh (Mathematics): Add math.
39392
39393 2007-02-17  Bruno Haible  <bruno@clisp.org>
39394
39395         * modules/wctype-tests: New file.
39396         * tests/test-wctype.c: New file.
39397
39398         * modules/wchar-tests: New file.
39399         * tests/test-wchar.c: New file.
39400
39401         * modules/unistd-tests: New file.
39402         * tests/test-unistd.c: New file.
39403
39404         * modules/time-tests: New file.
39405         * tests/test-time.c: New file.
39406
39407         * modules/sysexits-tests: New file.
39408         * tests/test-sysexits.c: New file.
39409
39410         * modules/sys_time-tests: New file.
39411         * tests/test-sys_time.c: New file.
39412
39413         * modules/sys_stat-tests: New file.
39414         * tests/test-sys_stat.c: New file.
39415
39416         * modules/sys_socket-tests: New file.
39417         * tests/test-sys_socket.c: New file.
39418
39419         * modules/sys_select-tests: New file.
39420         * tests/test-sys_select.c: New file.
39421
39422         * modules/string-tests: New file.
39423         * tests/test-string.c: New file.
39424
39425         * modules/stdbool-tests: New file.
39426         * tests/test-stdbool.c: New file.
39427
39428         * modules/netinet_in-tests: New file.
39429         * tests/test-netinet_in.c: New file.
39430
39431         * modules/inttypes-tests: New file.
39432         * tests/test-inttypes.c: New file.
39433
39434         * modules/fcntl-tests: New file.
39435         * tests/test-fcntl.c: New file.
39436
39437         * modules/byteswap-tests: New file.
39438         * tests/test-byteswap.c: New file.
39439
39440         * modules/arpa_inet-tests: New file.
39441         * tests/test-arpa_inet.c: New file.
39442
39443 2007-02-17  Bruno Haible  <bruno@clisp.org>
39444
39445         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
39446         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
39447         if the corresponding module is not enabled. Emit link warnings if
39448         the function is used nevertheless.
39449         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
39450         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
39451         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
39452         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
39453         * modules/inttypes (Depends-on): Add link-warning.
39454         (Makefile.am): Copy the contents of build-aux/link-warning.h into
39455         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
39456         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
39457         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
39458         * modules/imaxdiv (configure.ac): Likewise.
39459         * modules/strtoimax (configure.ac): Likewise.
39460         * modules/strtoumax (configure.ac): Likewise.
39461
39462 2007-02-17  Bruno Haible  <bruno@clisp.org>
39463
39464         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
39465         gl_STRING_MODULE_INDICATOR_DEFAULTS.
39466         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
39467         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
39468
39469 2007-02-17  Bruno Haible  <bruno@clisp.org>
39470
39471         * modules/link-warning: New file.
39472         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
39473         * lib/string_.h (GL_LINK_WARNING): Remove definition.
39474         * modules/string (Depends-on): Add link-warning.
39475         (Makefile.am): Copy the contents of build-aux/link-warning.h into
39476         string.h.
39477         * MODULES.html.sh (Support for building libraries and executables): Add
39478         link-warning.
39479
39480 2007-02-17  Bruno Haible  <bruno@clisp.org>
39481
39482         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
39483         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
39484         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
39485         long lines.
39486
39487 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
39488             Bruno Haible  <bruno@clisp.org>
39489
39490         * modules/tmpfile: New file.
39491         * lib/tmpfile.c: New file.
39492         * m4/tmpfile.m4: New file.
39493         * MODULES.html.sh (func_all_modules): New section "Input/output".
39494
39495 2007-02-15  Bruno Haible  <bruno@clisp.org>
39496
39497         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
39498         (supports_delete_on_close): New function.
39499         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
39500
39501 2007-02-14  Bruno Haible  <bruno@clisp.org>
39502
39503         * modules/mbspcasecmp-tests: New file.
39504         * tests/test-mbspcasecmp.sh: New file.
39505         * tests/test-mbspcasecmp.c: New file.
39506
39507         New module mbspcasecmp.
39508         * modules/mbspcasecmp: New file.
39509         * lib/mbspcasecmp.c: New file.
39510         * lib/string_.h (strncasecmp): Change warning message.
39511         (mbspcasecmp): New declaration.
39512         * m4/mbspcasecmp.m4: New file.
39513         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39514         GNULIB_MBSPCASECMP.
39515         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
39516         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
39517
39518 2007-02-14  Bruno Haible  <bruno@clisp.org>
39519
39520         * modules/mbsncasecmp-tests: New file.
39521         * tests/test-mbsncasecmp.sh: New file.
39522         * tests/test-mbsncasecmp.c: New file.
39523
39524         New module mbsncasecmp.
39525         * modules/mbsncasecmp: New file.
39526         * lib/mbsncasecmp.c: New file.
39527         * lib/string_.h (mbsncasecmp): New declaration.
39528         * m4/mbsncasecmp.m4: New file.
39529         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39530         GNULIB_MBSNCASECMP.
39531         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
39532         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
39533
39534 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
39535
39536         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
39537         Verify that it doesn't overlap with our flags.
39538         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
39539         do not have the desired effect in multibyte locales; instead, use
39540         mbscasecmp.
39541         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
39542         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
39543         we don't require GNU fnmatch ourselves (if our users require it, they
39544         should do so explicitly).
39545
39546         Fix regex code so it doesn't rely on strcasecmp.
39547         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
39548         Otherwise, include gnulib's langinfo.h.
39549         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
39550         undesirable behavior in non-C locales.  Instead, rely on localecharset.
39551         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
39552         * modules/regex (FILES): Remove m4/codeset.m4.
39553         (Depends-on): Add localcharset.  Remove strcase.
39554
39555 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39556
39557         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
39558         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
39559
39560 2007-02-13  Bruno Haible  <bruno@clisp.org>
39561
39562         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
39563         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39564
39565 2007-02-12  Bruno Haible  <bruno@clisp.org>
39566
39567         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
39568         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
39569         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
39570         time warning rather than a link error.
39571
39572 2007-02-12  Bruno Haible  <bruno@clisp.org>
39573
39574         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
39575         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
39576         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39577
39578 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
39579
39580         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
39581         args, not 2.
39582
39583 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
39584
39585         New module 'time', so that apps can include <time.h> as per
39586         POSIX and GNU instead of separate include files like time_r.h
39587         and timegm.h.  This implementation tries out a simpler approach
39588         for replacing decls in standard include files (as compared to
39589         the string module), somewhat as an experiment.
39590
39591         * config/srclist.txt: Comment out mktime.c for now.
39592         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
39593         since it doesn't apply any more.  Use generic wording instead.
39594         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
39595         'time'.
39596         * lib/time_.h, m4/time_h.m4, modules/time: New files.
39597         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
39598         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
39599         Don't include <sys/types.h>; no longer needed since we assume C89.
39600         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
39601         * lib/strftime.c: Likewise.
39602         * lib/time_r.c: Likewise.
39603         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
39604         * lib/nanosleep.c: Include <time.h> first, to check interface.
39605         * lib/strptime.c: Likewise.
39606         * lib/time_r.c: Likewise.
39607         * lib/timegm.c: Likewise.
39608         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
39609         needed.
39610         * lib/timegm.c: Don't include timegm.h; no longer needed.
39611         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
39612         time.h now handles any problems in that area.
39613         (struct timespec, nanosleep): Remove; time.h now arranges for these.
39614         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
39615         that time.h defines struct timespec.
39616         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
39617         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
39618         handles that.
39619         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
39620         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
39621         needed.  Set REPLACE_LOCALTIME.
39622         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
39623         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
39624         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
39625         nanosleep; time_h.m4 now does that.  Don't require
39626         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
39627         module handles this now.
39628         * modules/getdate (Depends-on): Remove timespec.  Add time.
39629         * modules/nanosleep (Depends-on): Likewise.
39630         * modules/stat-time (Depends-on): Likewise.
39631         * modules/nanosleep (Include): Include time.h, not timespec.h.
39632         * modules/strptime (Files): Remove lib/strptime.h.
39633         (Depends-on): Add extensions, time.
39634         (Include): Include time.h, not strptime.h.
39635         * modules/time_r (Files): Remove lib/time_r.h.
39636         (Depends-on): Add time.
39637         (Include): Include time.h, not time_r.h.
39638         * modules/timegm: Likewise.
39639         * modules/timespec (Description): Now does timespec-related decls
39640         of our own, instead of struct timespec itself.
39641         (Depends-on): Add time; remove extensions.
39642         (Maintainer): Add self.
39643         * modules/utimecmp (Depends-on): Add time; remove timespec.
39644         * modules/utimens (Depends-on): Likewise.
39645         * modules/xnanosleep (Depends-on): Likewise.
39646
39647 2007-02-11  Bruno Haible  <bruno@clisp.org>
39648
39649         * lib/c-strstr.c: Include allocsa.h.
39650         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
39651         * lib/c-strcasestr.c: Include allocsa.h.
39652         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
39653         * lib/strcasestr.c: Include allocsa.h.
39654         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
39655         * lib/mbsstr.c: Include allocsa.h.
39656         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
39657         allocsa/freesa instead of malloc/free.
39658         * lib/mbscasestr.c: Include allocsa.h.
39659         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
39660         allocsa/freesa instead of malloc/free.
39661         * modules/c-strstr (Depends-on): Add allocsa.
39662         * modules/c-strcasestr (Depends-on): Likewise.
39663         * modules/strcasestr (Depends-on): Likewise.
39664         * modules/mbsstr (Depends-on): Likewise.
39665         * modules/mbscasestr (Depends-on): Likewise.
39666
39667 2007-02-11  Bruno Haible  <bruno@clisp.org>
39668
39669         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
39670
39671         * modules/mbsspn-tests: New file.
39672         * tests/test-mbsspn.sh: New file.
39673         * tests/test-mbsspn.c: New file.
39674
39675 2007-02-11  Bruno Haible  <bruno@clisp.org>
39676
39677         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
39678
39679         * modules/mbspbrk-tests: New file.
39680         * tests/test-mbspbrk.sh: New file.
39681         * tests/test-mbspbrk.c: New file.
39682
39683 2007-02-11  Bruno Haible  <bruno@clisp.org>
39684
39685         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
39686         unneeded cast.
39687
39688         * modules/mbscspn-tests: New file.
39689         * tests/test-mbscspn.sh: New file.
39690         * tests/test-mbscspn.c: New file.
39691
39692 2007-02-11  Bruno Haible  <bruno@clisp.org>
39693
39694         * modules/mbscasecmp-tests: New file.
39695         * tests/test-mbscasecmp.sh: New file.
39696         * tests/test-mbscasecmp.c: New file.
39697
39698 2007-02-11  Bruno Haible  <bruno@clisp.org>
39699
39700         Ensure O(n) worst-case complexity of mbscasestr.
39701         * lib/mbscasestr.c: Include stdbool.h.
39702         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
39703         functions.
39704         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
39705         the bookkeeping indicates that it's worth it.
39706         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
39707
39708         * modules/mbscasestr-tests: New file.
39709         * tests/test-mbscasestr1.c: New file.
39710         * tests/test-mbscasestr2.sh: New file.
39711         * tests/test-mbscasestr2.c: New file.
39712         * tests/test-mbscasestr3.sh: New file.
39713         * tests/test-mbscasestr3.c: New file.
39714         * tests/test-mbscasestr4.sh: New file.
39715         * tests/test-mbscasestr4.c: New file.
39716         * m4/locale-tr.m4: New file.
39717
39718 2007-02-11  Bruno Haible  <bruno@clisp.org>
39719
39720         Ensure O(n) worst-case complexity of mbsstr.
39721         * lib/mbsstr.c: Include stdbool.h.
39722         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
39723         functions.
39724         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
39725         bookkeeping indicates that it's worth it.
39726         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
39727
39728         * modules/mbsstr-tests: New file.
39729         * tests/test-mbsstr1.c: New file.
39730         * tests/test-mbsstr2.sh: New file.
39731         * tests/test-mbsstr2.c: New file.
39732         * tests/test-mbsstr3.sh: New file.
39733         * tests/test-mbsstr3.c: New file.
39734         * m4/locale-fr.m4: New file.
39735
39736 2007-02-11  Bruno Haible  <bruno@clisp.org>
39737
39738         * lib/mbsrchr.c (mbsrchr): Fix bug.
39739
39740         * modules/mbsrchr-tests: New file.
39741         * tests/test-mbsrchr.sh: New file.
39742         * tests/test-mbsrchr.c: New file.
39743
39744 2007-02-11  Bruno Haible  <bruno@clisp.org>
39745
39746         * lib/mbschr.c (mbschr): Fix bug.
39747
39748         * modules/mbschr-tests: New file.
39749         * tests/test-mbschr.sh: New file.
39750         * tests/test-mbschr.c: New file.
39751         * m4/locale-zh.m4: New file.
39752
39753 2007-02-11  Bruno Haible  <bruno@clisp.org>
39754
39755         Support for copying multibyte string iterators.
39756         * lib/mbiter.h: Include <string.h>.
39757         (mbiter_multi_copy): New function.
39758         (mbi_copy): New macro.
39759         * lib/mbuiter.h: Include <string.h>.
39760         (mbuiter_multi_copy): New function.
39761         (mbui_copy): New macro.
39762
39763 2007-02-11  Bruno Haible  <bruno@clisp.org>
39764
39765         New module mbslen.
39766         * modules/mbslen: New file.
39767         * lib/mbslen.c: New file.
39768         * lib/string_.h (mbslen): New declaration.
39769         * m4/mbslen.m4: New file.
39770         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39771         GNULIB_MBSLEN.
39772         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
39773         * MODULES.html.sh (Internationalization functions): Add mbslen.
39774
39775 2007-02-11  Bruno Haible  <bruno@clisp.org>
39776
39777         Ensure O(n) worst-case complexity of strcasestr substitute.
39778         * lib/strcasestr.c: Include stdbool.h.
39779         (knuth_morris_pratt): New function.
39780         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
39781         bookkeeping indicates that it's worth it.
39782         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
39783
39784         * modules/strcasestr-tests: New file.
39785         * tests/test-strcasestr.c: New file.
39786
39787 2007-02-11  Bruno Haible  <bruno@clisp.org>
39788
39789         Ensure O(n) worst-case complexity of c_strcasestr.
39790         * lib/c-strcasestr.c: Include stdbool.h, string.h.
39791         (knuth_morris_pratt): New function.
39792         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
39793         the bookkeeping indicates that it's worth it.
39794         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
39795
39796         * modules/c-strcasestr-tests: New file.
39797         * tests/test-c-strcasestr.c: New file.
39798
39799 2007-02-11  Bruno Haible  <bruno@clisp.org>
39800
39801         Ensure O(n) worst-case complexity of c_strstr.
39802         * lib/c-strstr.c: Include stdbool.h, string.h.
39803         (knuth_morris_pratt): New function.
39804         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
39805         bookkeeping indicates that it's worth it.
39806         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
39807
39808         * lib/c-strstr.c: Complete rewrite for maintainability.
39809
39810         * modules/c-strstr-tests: New file.
39811         * tests/test-c-strstr.c: New file.
39812
39813 2007-02-11  Bruno Haible  <bruno@clisp.org>
39814
39815         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
39816         5.2.1 and earlier, whereby \055 was treated just like the range
39817         delimiter '-'.
39818         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
39819
39820 2007-02-08  Bruno Haible  <bruno@clisp.org>
39821
39822         * modules/regex (Depends-on): Add stdbool.
39823         Reported by Dalibor Topic <robilad@kaffe.org>.
39824
39825 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
39826
39827         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
39828         Prefer returning from main to exiting from it.
39829         Remove unnecessary parens after sizeof.
39830
39831 2007-02-05  Bruno Haible  <bruno@clisp.org>
39832
39833         New module mbssep.
39834         * modules/mbssep: New file.
39835         * lib/mbssep.c: New file.
39836         * lib/string_.h (strsep): Add a conditional link warning.
39837         (mbssep): New declaration.
39838         * m4/mbssep.m4: New file.
39839         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39840         GNULIB_MBSSEP.
39841         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
39842         * MODULES.html.sh (Internationalization functions): Add mbssep.
39843
39844 2007-02-05  Bruno Haible  <bruno@clisp.org>
39845
39846         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
39847         Optimize search in case of 1 delimiter.
39848
39849 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
39850
39851         * lib/acl.h: Include sys/types.h before sys/acl.h.
39852
39853 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
39854
39855         Merge upstream fix for glibc bugzilla #3957:
39856
39857         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
39858
39859         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
39860         bit for RE_HAT_LISTS_NOT_NEWLINE.
39861         (build_charclass_op): Remove bogus comment.
39862
39863 2007-02-05  Simon Josefsson  <simon@josefsson.org>
39864
39865         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
39866
39867 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
39868
39869         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
39870         * lib/memmem.c [!defined _LIBC]: Include config.h.
39871
39872 2007-02-04  Bruno Haible  <bruno@clisp.org>
39873
39874         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
39875         warning message.
39876
39877 2007-02-04  Bruno Haible  <bruno@clisp.org>
39878
39879         New module mbstok_r.
39880         * modules/mbstok_r: New file.
39881         * lib/mbstok_r.c: New file.
39882         * lib/string_.h (strtok_r): Change argument names to match the
39883         comments. Add a conditional link warning.
39884         (mbstok_r): New declaration.
39885         * m4/mbstok_r.m4: New file.
39886         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39887         GNULIB_MBSTOK_R.
39888         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
39889         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
39890
39891 2007-02-04  Bruno Haible  <bruno@clisp.org>
39892
39893         New module mbsspn.
39894         * modules/mbsspn: New file.
39895         * lib/mbsspn.c: New file.
39896         * lib/string_.h (strspn): Add a conditional link warning.
39897         (mbsspn): New declaration.
39898         * m4/mbsspn.m4: New file.
39899         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39900         GNULIB_MBSSPN.
39901         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
39902         * MODULES.html.sh (Internationalization functions): Add mbsspn.
39903
39904 2007-02-04  Bruno Haible  <bruno@clisp.org>
39905
39906         New module mbspbrk.
39907         * modules/mbspbrk: New file.
39908         * lib/mbspbrk.c: New file.
39909         * lib/string_.h (strpbrk): Add a conditional link warning.
39910         (mbspbrk): New declaration.
39911         * m4/mbspbrk.m4: New file.
39912         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39913         GNULIB_MBSPBRK.
39914         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
39915         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
39916
39917 2007-02-04  Bruno Haible  <bruno@clisp.org>
39918
39919         New module mbscspn.
39920         * modules/mbscspn: New file.
39921         * lib/mbscspn.c: New file.
39922         * lib/string_.h (strcspn): Add a conditional link warning.
39923         (mbscspn): New declaration.
39924         * m4/mbscspn.m4: New file.
39925         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39926         GNULIB_MBSCSPN.
39927         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
39928         * MODULES.html.sh (Internationalization functions): Add mbscspn.
39929
39930 2007-02-04  Bruno Haible  <bruno@clisp.org>
39931
39932         New module mbscasestr, reduced goal of strcasestr.
39933         * modules/mbscasestr: New file.
39934         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
39935         (mbscasestr): Renamed from strcasestr.
39936         * lib/strcasestr.c: Don't include mbuiter.h.
39937         (strcasestr): Remove support for multibyte locales.
39938         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
39939         Change the conditional link warning.
39940         (mbscasestr): New declaration.
39941         * m4/mbscasestr.m4: New file.
39942         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
39943         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
39944         REPLACE_STRCASESTR.
39945         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
39946         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
39947         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
39948         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
39949         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
39950         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
39951         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
39952         (Depends-on): Remove mbuiter.
39953         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
39954
39955 2007-02-04  Bruno Haible  <bruno@clisp.org>
39956
39957         Simplify handling of strncasecmp.
39958         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
39959         the conditional link warning.
39960         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
39961         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
39962         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
39963         * modules/strcase (configure.ac): Don't invoke
39964         gl_STRING_MODULE_INDICATOR.
39965         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
39966
39967 2007-02-04  Bruno Haible  <bruno@clisp.org>
39968
39969         New module mbscasecmp, reduced goal of strcasecmp.
39970         * modules/mbscasecmp: New file.
39971         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
39972         (mbscasecmp): Renamed from strcasecmp.
39973         * lib/strcasecmp.c: Don't include mbuiter.h.
39974         (strcasecmp): Remove support for multibyte locales.
39975         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
39976         Change the conditional link warning.
39977         (mbscasecmp): New declaration.
39978         * m4/mbscasecmp.m4: New file.
39979         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
39980         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
39981         REPLACE_STRCASECMP.
39982         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
39983         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39984         GNULIB_MBSCASECMP.
39985         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
39986         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
39987         * modules/strcase (Files): Remove m4/mbrtowc.m4.
39988         (Depends-on): Remove mbuiter.
39989         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
39990
39991 2007-02-04  Bruno Haible  <bruno@clisp.org>
39992
39993         New module mbsstr. Remove module strstr.
39994         * modules/mbsstr: New file.
39995         * modules/strstr: Remove file.
39996         * lib/mbsstr.c: Renamed from lib/strstr.c.
39997         (mbsstr): Renamed from strstr.
39998         * lib/string_.h (strstr): Remove declaration. Change the conditional
39999         link warning.
40000         (mbsstr): New declaration.
40001         * m4/mbsstr.m4: New file.
40002         * m4/strstr.m4: Remove file.
40003         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
40004         REPLACE_STRSTR.
40005         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
40006         Don't initialize GNULIB_STRSTR.
40007         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
40008         substitute GNULIB_STRSTR and REPLACE_STRSTR.
40009         * MODULES.html.sh (Internationalization functions): Add mbsstr.
40010         (Support for systems lacking ANSI C 89): Remove strstr.
40011
40012 2007-02-04  Bruno Haible  <bruno@clisp.org>
40013
40014         New module mbsrchr.
40015         * modules/mbsrchr: New file.
40016         * lib/mbsrchr.c: New file.
40017         * lib/string_.h (strrchr): Add a conditional link warning.
40018         (mbsrchr): New declaration.
40019         * m4/mbsrchr.m4: New file.
40020         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
40021         GNULIB_MBSRCHR.
40022         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
40023         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
40024
40025 2007-02-04  Bruno Haible  <bruno@clisp.org>
40026
40027         New module mbschr.
40028         * modules/mbschr: New file.
40029         * lib/mbschr.c: New file.
40030         * lib/string_.h (strchr): Add a conditional link warning.
40031         (mbschr): New declaration.
40032         * m4/mbschr.m4: New file.
40033         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
40034         GNULIB_MBSCHR.
40035         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
40036         * MODULES.html.sh (Internationalization functions): Add mbschr.
40037
40038 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
40039
40040         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
40041
40042         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
40043
40044 2007-02-04  Bruno Haible  <bruno@clisp.org>
40045
40046         New module description section 'configure.ac-early'.
40047         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
40048         (func_get_autoconf_early_snippet): New function.
40049         (func_import, func_create_testdir): Use it. Remove special cases for
40050         modules 'extensions' and 'lock'.
40051         * modules/extensions (configure.ac-early): Require
40052         gl_USE_SYSTEM_EXTENSIONS.
40053         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
40054
40055 2007-02-04  Bruno Haible  <bruno@clisp.org>
40056
40057         Make use of gcj-4.3's -fsource and -ftarget option.
40058         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
40059         and if so try the options -fsource and -ftarget.
40060         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
40061         source_version, ftarget_option, target_version arguments.
40062         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
40063         (is_envjavac_oldgcj_14_14_usable): Renamed from
40064         is_envjavac_gcj_14_14_usable.
40065         (is_envjavac_oldgcj_14_13_usable): Renamed from
40066         is_envjavac_gcj_14_13_usable.
40067         (is_gcj_present): Update.
40068         (is_gcj_43, is_gcj43_usable): New functions.
40069         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
40070         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
40071         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
40072         try the options -fsource and -ftarget.
40073
40074 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40075
40076         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
40077         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
40078         larger value.
40079
40080 2007-02-03  Jim Meyering  <jim@meyering.net>
40081
40082         Give tools a better chance to allocate space for very large buffers.
40083         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
40084
40085         Make pwd and readlink work also when run with an unreadable parent dir
40086         on systems with openat support.
40087         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
40088         provided getcwd function, even when we have openat support.
40089         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
40090
40091 2007-02-02  Bruno Haible  <bruno@clisp.org>
40092
40093         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
40094         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
40095         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
40096         portability problems if one of these functions is only used on specific
40097         platforms.
40098         Reported by Paul Eggert.
40099
40100 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
40101
40102         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
40103         is causing more trouble than it's curing.
40104         * lib/regex_internal.h (__mempcpy): Remove.
40105         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
40106         (and make the code a tad smaller to boot).
40107         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
40108
40109 2007-02-02  Jim Meyering  <jim@meyering.net>
40110
40111         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
40112         section, not in the Makefile.am: one.
40113
40114 2007-02-02  Eric Blake  <ebb9@byu.net>
40115
40116         * lib/strchrnul.c: Always include config.h first.
40117
40118         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
40119         gnulib strstr is not necessary here.
40120
40121 2007-02-02  Simon Josefsson  <simon@josefsson.org>
40122
40123         * m4/socklen.m4: Fix typo.
40124
40125 2007-02-02  Eric Blake  <ebb9@byu.net>
40126
40127         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
40128         * modules/netinet_in (Makefile.am): Likewise.
40129
40130 2007-02-01  Bruno Haible  <bruno@clisp.org>
40131
40132         * lib/string_.h (GL_LINK_WARNING): New macro.
40133         (strcasecmp, strstr, strcasestr): If provided by the system,
40134         conditionally define as a macro that leads to a warning instead of to
40135         an error.
40136         (strncasecmp): Conditionally define as a macro that leads to a warning.
40137
40138 2007-02-01  Karl Berry  <karl@gnu.org>
40139
40140         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
40141
40142 2007-02-01  Bruno Haible  <bruno@clisp.org>
40143
40144         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
40145         renamings.
40146
40147 2007-02-01  Eric Blake  <ebb9@byu.net>
40148
40149         * modules/regex (Depends-on): Revert dependence on mempcpy.
40150         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
40151         module's definition of mempcpy.
40152         Reported by Paul Eggert.
40153
40154 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
40155
40156         * lib/string_.h: If the gnulib module XYZ is not present, undefine
40157         the symbol XYZ before redefining it.  This fixes a problem with
40158         programs that don't use XYZ, when compiled on systems that define
40159         XYZ to something else.
40160
40161 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
40162
40163         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
40164         occurs when "mkdir -m foo" creates a setgid directory that is (1)
40165         writeable to group or other and (2) is intended to have a special
40166         mode bit that is set or cleared.  In such a case, the directory
40167         should be neither group- nor other-writeable until the special
40168         mode bits are right.
40169
40170 2007-01-31  Eric Blake  <ebb9@byu.net>
40171
40172         * modules/mountlist (Depends-on): Add strstr.
40173
40174         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
40175         bug.
40176         * modules/string (Makefile.am): Remove redundant replacement.
40177         * modules/regex (Depends-on): Add mempcpy.
40178
40179 2007-01-31  Bruno Haible  <bruno@clisp.org>
40180
40181         New module description field 'Link'.
40182         * gnulib-tool (func_usage): Document --extract-link-directive.
40183         (sed_extract_prog): Recognize 'Link' directive.
40184         (func_get_link_directive): New function.
40185         (func_import): Show summary of link directives.
40186         Handle --extract-link-directive option.
40187         * modules/acl (Link): New section.
40188         * modules/clock-time (Link): New section.
40189         * modules/euidaccess (Link): New section.
40190         * modules/gettext (Link): New section.
40191         * modules/iconv (Link): New section.
40192         * modules/lock (Link): New section.
40193         * modules/nanosleep (Link): New section.
40194         * modules/readline (Link): New section.
40195
40196 2007-01-27  Bruno Haible  <bruno@clisp.org>
40197
40198         Enforce the use of gnulib modules for unportable <string.h> functions.
40199         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
40200         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
40201         (gl_HEADER_STRING_H_BODY): Require it.
40202         * lib/string_.h: If the gnulib module XYZ is not present, redefine
40203         the symbol XYZ to one that gives a link error.
40204         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
40205         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
40206         * modules/mempcpy (configure.ac): Likewise.
40207         * modules/memrchr (configure.ac): Likewise.
40208         * modules/stpcpy (configure.ac): Likewise.
40209         * modules/stpncpy (configure.ac): Likewise.
40210         * modules/strcase (configure.ac): Likewise.
40211         * modules/strcasestr (configure.ac): Likewise.
40212         * modules/strchrnul (configure.ac): Likewise.
40213         * modules/strdup (configure.ac): Likewise.
40214         * modules/strndup (configure.ac): Likewise.
40215         * modules/strnlen (configure.ac): Likewise.
40216         * modules/strpbrk (configure.ac): Likewise.
40217         * modules/strsep (configure.ac): Likewise.
40218         * modules/strstr (configure.ac): Likewise.
40219         * modules/strtok_r (configure.ac): Likewise.
40220
40221 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
40222
40223         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
40224
40225 2007-01-30  Jim Meyering  <jim@meyering.net>
40226
40227         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
40228
40229 2007-01-29  Bruno Haible  <bruno@clisp.org>
40230
40231         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
40232         * lib/execute.c: Likewise.
40233         * lib/pipe.c: Likewise.
40234         * lib/printf-args.h: Likewise.
40235         * lib/printf-args.c: Likewise.
40236         * lib/printf-parse.c: Likewise.
40237         * lib/vasnprintf.c: Likewise.
40238
40239 2007-01-29  Eric Blake  <ebb9@byu.net>
40240
40241         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
40242         declaration.
40243
40244 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
40245
40246         * lib/strptime.h (strptime): Use 'restrict' for args where
40247         POSIX requires this.
40248         * lib/strptime.c (strptime): Likewise.
40249         Change license notice from LGPL to GPL, since gnulib-tool will
40250         change this as needed.
40251         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
40252         defined.
40253         Include "strptime.h" first, to check interface.
40254         Do not #undef _LIBC and _NL_CURRENT.
40255         Do not include <stdlib.h>; no longer needed.
40256         Include "time_r.h" and declare ptime_locale_status
40257         only if _LIBC is not defined.
40258         (__P): Remove unused macro.
40259         (match_string): Bring back glibc version, but use it only if _LIBC
40260         is defined.
40261         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
40262         Remove unnecessary assertion and abort() call.
40263         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
40264         * m4/strptime.m4: Fix serial number comment.
40265         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
40266         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
40267         (Depends-on): Add time_r.
40268
40269 2007-01-29  Bruno Haible  <bruno@clisp.org>
40270
40271         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
40272         strptime.
40273         * modules/strptime (Depends-on): Add stdbool.
40274         * lib/strptime.h: Include <time.h> always. Add comments.
40275
40276 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40277
40278         * modules/strptime: New file.
40279         * lib/strptime.h: New file.
40280         * lib/strptime.c: New file.
40281         * m4/strptime.m4: New file.
40282
40283 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
40284
40285         * MODULES.html.sh: New module mpsort.
40286         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
40287
40288         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
40289         a circularity problem with HP-UX ia64 reported by Bob Proulx in
40290         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
40291         All uses changed.
40292         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
40293         All uses changed.
40294         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
40295         to _Restrict_.
40296         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
40297         the parameter matches the prototype.
40298
40299 2007-01-28  Jim Meyering  <jim@meyering.net>
40300
40301         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
40302         sys/time.h here, reverting that part of the previous patch:
40303         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
40304
40305 2007-01-28  Bruno Haible  <bruno@clisp.org>
40306
40307         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
40308         value of $(SYS_TIME_H).
40309         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
40310         remove it conditionally, too. [added by Jim Meyering]
40311         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
40312         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
40313         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
40314         GETTIMEOFDAY_REPLACEMENT to 1.
40315
40316 2007-01-28  Bruno Haible  <bruno@clisp.org>
40317
40318         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
40319         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
40320         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
40321         Set UNISTD_H instead of UNISTD_H2.
40322         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
40323
40324 2007-01-28  Bruno Haible  <bruno@clisp.org>
40325
40326         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
40327         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
40328
40329 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40330
40331         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
40332         (func_create_testdir): Ensure C locale for `grep' and `tr'
40333         character ranges.
40334         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
40335         ACLOCAL_AMFLAGS parsing state machine.
40336
40337 2007-01-27  Bruno Haible  <bruno@clisp.org>
40338
40339         * modules/unistr/base: Update.
40340
40341 2007-01-27  Bruno Haible  <bruno@clisp.org>
40342
40343         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
40344         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
40345         * modules/unistr/u32-mbtouc-unsafe: Renamed from
40346         modules/unistr/u32-mbtouc.
40347         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
40348         * lib/unistr.h: Update.
40349         * lib/linebreak.c: Update.
40350         * modules/unistr/u32-mbtouc: Renamed from
40351         modules/unistr/u32-mbtouc-safe.
40352         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
40353         * lib/unistr.h: Update.
40354         * lib/unistr/u32-to-u8.c: Update.
40355         * lib/unistr/u32-to-u16.c: Update.
40356
40357 2007-01-27  Bruno Haible  <bruno@clisp.org>
40358
40359         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
40360         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
40361         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
40362         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
40363         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
40364         * modules/unistr/u16-mbtouc-unsafe: Renamed from
40365         modules/unistr/u16-mbtouc.
40366         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
40367         * lib/unistr.h: Update.
40368         * lib/linebreak.c: Update.
40369         * modules/linebreak: Update.
40370         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
40371         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
40372         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
40373         * modules/unistr/u16-mbtouc: Renamed from
40374         modules/unistr/u16-mbtouc-safe.
40375         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
40376         * lib/unistr.h: Update.
40377         * lib/unistr/u16-to-u8.c: Update.
40378         * modules/unistr/u16-to-u8: Update.
40379         * lib/unistr/u16-to-u32.c: Update.
40380         * modules/unistr/u16-to-u32: Update.
40381
40382 2007-01-27  Bruno Haible  <bruno@clisp.org>
40383
40384         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
40385         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
40386         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
40387         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
40388         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
40389         * modules/unistr/u8-mbtouc-unsafe: Renamed from
40390         modules/unistr/u8-mbtouc.
40391         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
40392         * lib/unistr.h: Update.
40393         * lib/striconveh.c: Update.
40394         * modules/striconveh: Update.
40395         * lib/linebreak.c: Update.
40396         * modules/linebreak: Update.
40397         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
40398         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
40399         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
40400         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
40401         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
40402         * lib/unistr.h: Update.
40403         * lib/striconveh.c: Update.
40404         * modules/striconveh: Update.
40405         * lib/unistr/u8-to-u16.c: Update.
40406         * modules/unistr/u8-to-u16: Update.
40407         * lib/unistr/u8-to-u32.c: Update.
40408         * modules/unistr/u8-to-u32: Update.
40409
40410 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40411
40412         Sync from Libtool.
40413         * lib/argz.c: Do not include strings.h nor memory.h, include
40414         string.h unconditionally.  Patch by Simon Josefsson.
40415
40416 2007-01-27  Bruno Haible  <bruno@clisp.org>
40417
40418         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
40419         from gl_HEADER_STRING_H_BODY.
40420         (gl_HEADER_STRING_H_BODY): Require it.
40421         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
40422         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
40423         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
40424         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
40425         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
40426         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
40427         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
40428         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
40429         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
40430         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
40431         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
40432         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
40433         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
40434         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
40435         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
40436
40437 2007-01-27  Bruno Haible  <bruno@clisp.org>
40438
40439         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
40440         check_PROGRAMS into noinst_PROGRAMS.
40441         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
40442         check_PROGRAMS in this case.
40443         (func_import): Set for_test to false.
40444         (func_create_testdir): Set for_test to true.
40445
40446 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40447             Bruno Haible  <bruno@clisp.org>
40448
40449         * modules/strcasestr (Files): Remove lib/strcasestr.h.
40450         (Depends-on): Add string.
40451         (Includes): Use <string.h> instead of strcasestr.h.
40452         * modules/string (Makefile.am): Also substitute the value of
40453         REPLACE_STRCASESTR.
40454         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
40455         assume strcasestr is declared in <string.h> not <strings.h>. Also
40456         set REPLACE_STRCASESTR.
40457         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
40458         REPLACE_STRCASESTR.
40459         * lib/strcasestr.h: Remove file.
40460         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
40461         * lib/string_.h (strcasestr): New declaration.
40462
40463 2007-01-27  Bruno Haible  <bruno@clisp.org>
40464
40465         * lib/string_.h: Use 'extern'.
40466
40467 2007-01-27  Jim Meyering  <jim@meyering.net>
40468
40469         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
40470         of set-but-not-used local, "q".
40471
40472         * lib/mempcpy.c: Include <config.h> before <string.h>.
40473         This fixes a compilation error on HP-UX, due to the system's
40474         "restrict"-using mempcpy prototype.
40475
40476 2007-01-26  Bruno Haible  <bruno@clisp.org>
40477
40478         Small optimization.
40479         * lib/javacomp.c: Include c-strstr.h.
40480          (is_envjavac_gcj): Use c_strstr instead of strstr.
40481         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
40482
40483 2007-01-26  Bruno Haible  <bruno@clisp.org>
40484
40485         * MODULES.html.sh (Unicode string functions): Add the new modules.
40486
40487         * modules/uniconv/u32-strconv-to-locale: New file.
40488         * lib/uniconv/u32-strconv-to-locale.c: New file.
40489
40490         * modules/uniconv/u16-strconv-to-locale: New file.
40491         * lib/uniconv/u16-strconv-to-locale.c: New file.
40492
40493         * modules/uniconv/u8-strconv-to-locale: New file.
40494         * lib/uniconv/u8-strconv-to-locale.c: New file.
40495
40496         * modules/uniconv/u32-strconv-from-locale: New file.
40497         * lib/uniconv/u32-strconv-from-locale.c: New file.
40498
40499         * modules/uniconv/u16-strconv-from-locale: New file.
40500         * lib/uniconv/u16-strconv-from-locale.c: New file.
40501
40502         * modules/uniconv/u8-strconv-from-locale: New file.
40503         * lib/uniconv/u8-strconv-from-locale.c: New file.
40504
40505         * modules/uniconv/u32-strconv-to-enc: New file.
40506         * lib/uniconv/u32-strconv-to-enc.c: New file.
40507         * modules/uniconv/u32-strconv-to-enc-tests: New file.
40508         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
40509
40510         * modules/uniconv/u16-strconv-to-enc: New file.
40511         * lib/uniconv/u16-strconv-to-enc.c: New file.
40512         * lib/uniconv/u-strconv-to-enc.h: New file.
40513         * modules/uniconv/u16-strconv-to-enc-tests: New file.
40514         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
40515
40516         * modules/uniconv/u8-strconv-to-enc: New file.
40517         * lib/uniconv/u8-strconv-to-enc.c: New file.
40518         * modules/uniconv/u8-strconv-to-enc-tests: New file.
40519         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
40520
40521         * modules/uniconv/u32-strconv-from-enc: New file.
40522         * lib/uniconv/u32-strconv-from-enc.c: New file.
40523         * modules/uniconv/u32-strconv-from-enc-tests: New file.
40524         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
40525
40526         * modules/uniconv/u16-strconv-from-enc: New file.
40527         * lib/uniconv/u16-strconv-from-enc.c: New file.
40528         * modules/uniconv/u16-strconv-from-enc-tests: New file.
40529         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
40530
40531         * modules/uniconv/u8-strconv-from-enc: New file.
40532         * lib/uniconv/u8-strconv-from-enc.c: New file.
40533         * lib/uniconv/u-strconv-from-enc.h: New file.
40534         * modules/uniconv/u8-strconv-from-enc-tests: New file.
40535         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
40536
40537         * modules/uniconv/u32-conv-from-enc: New file.
40538         * lib/uniconv/u32-conv-from-enc.c: New file.
40539         * modules/uniconv/u32-conv-from-enc-tests: New file.
40540         * tests/uniconv/test-u32-conv-from-enc.c: New file.
40541
40542         * modules/uniconv/u16-conv-from-enc: New file.
40543         * lib/uniconv/u16-conv-from-enc.c: New file.
40544         * lib/uniconv/u-conv-from-enc.h: New file.
40545         * modules/uniconv/u16-conv-from-enc-tests: New file.
40546         * tests/uniconv/test-u16-conv-from-enc.c: New file.
40547
40548         * modules/uniconv/u8-conv-from-enc: New file.
40549         * lib/uniconv/u8-conv-from-enc.c: New file.
40550         * modules/uniconv/u8-conv-from-enc-tests: New file.
40551         * tests/uniconv/test-u8-conv-from-enc.c: New file.
40552
40553         * modules/uniconv/base: New file.
40554         * lib/uniconv.h: New file.
40555
40556 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
40557
40558         * doc/gnulib-tool.texi (Initial import): Update to match current
40559         behavior with strdup module.
40560         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
40561         * lib/memmem.h: Remove; all uses removed.  This is now done
40562         by <string.h>.
40563         * lib/mempcpy.h: Likewise.
40564         * lib/memrchr.h: Likewise.
40565         * lib/stpcpy.h: Likewise.
40566         * lib/stpncpy.h: Likewise.
40567         * lib/strcase.h: Likewise.
40568         * lib/strchrnul.h: Likewise.
40569         * lib/strdup.h: Likewise.
40570         * lib/strndup.h: Likewise.
40571         * lib/strnlen.h: Likewise.
40572         * lib/strpbrk.h: Likewise.
40573         * lib/strsep.h: Likewise.
40574         * lib/strstr.h: Likewise.
40575         * lib/strtok_r.h: Likewise.
40576         * lib/string_.h: New file.
40577         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
40578         Rely on <string.h> instead.
40579         * lib/canon-host.c: Likewise.
40580         * lib/chdir-long.c: Likewise.
40581         * lib/concatpath.c: Likewise.
40582         * lib/exclude.c: Likewise.
40583         * lib/fchdir.c: Likewise.
40584         * lib/getaddrinfo.c: Likewise.
40585         * lib/getcwd.c: Likewise.
40586         * lib/getsubopt.c: Likewise.
40587         * lib/glob.c: Likewise.
40588         * lib/hard-locale.c: Likewise.
40589         * lib/iconvme.c: Likewise.
40590         * lib/javacomp.c: Likewise.
40591         * lib/mempcpy.c: Likewise.
40592         * lib/memrchr.c: Likewise.
40593         * lib/regex_internal.h: Likewise.
40594         * lib/stpncpy.c: Likewise.
40595         * lib/strcasecmp.c: Likewise.
40596         * lib/strchrnul.c: Likewise.
40597         * lib/strdup.c: Likewise.
40598         * lib/striconv.c: Likewise.
40599         * lib/striconveh.c: Likewise.
40600         * lib/striconveha.c: Likewise.
40601         * lib/strncasecmp.c: Likewise.
40602         * lib/strndup.c: Likewise.
40603         * lib/strnlen.c: Likewise.
40604         * lib/strsep.c: Likewise.
40605         * lib/strstr.c: Likewise.
40606         * lib/strtok_r.c: Likewise.
40607         * lib/userspec.c: Likewise.
40608         * lib/w32spawn.h: Likewise.
40609         * lib/xstrndup.c: Likewise.
40610         * lib/mountlist.c (strstr): Remove decl.
40611         * m4/string_h.m4: New file.
40612         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
40613         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
40614         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
40615         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
40616         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
40617         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
40618         Set REPLACE_STRCASECMP if necessary.
40619         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
40620         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
40621         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
40622         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
40623         HAVE_DECL_STRDUP if necessary.
40624         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
40625         since gl_FUNC_STRNDUP does that now.
40626         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
40627         Check for decl here...
40628         (gl_PREREQ_STRNLEN): ... not here.
40629         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
40630         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
40631         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
40632         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
40633         necessary.
40634         * modules/string: New file.
40635         * modules/memmem (Files): Remove special-purpose include file.
40636         (Depends-on): Add string.
40637         (Include): Include <string.h>, not the removed file.
40638         * modules/mempcpy: Likewise.
40639         * modules/memrchr: Likewise.
40640         * modules/stpcpy: Likewise.
40641         * modules/stpncpy: Likewise.
40642         * modules/strcase: Likewise.
40643         * modules/strchrnul: Likewise.
40644         * modules/strdup: Likewise.
40645         * modules/strndup: Likewise.
40646         * modules/strnlen: Likewise.
40647         * modules/strpbrk: Likewise.
40648         * modules/strsep: Likewise.
40649         * modules/strstr: Likewise.
40650         * modules/strtok_r: Likewise.
40651         * tests/test-dirname.c: Don't include "strdup.h", since
40652         <string.h> now suffices.
40653         * tests/test-memmem.c: Don't include "memmem.h", since
40654         <string.h> now suffices.
40655
40656 2007-01-25  Bruno Haible  <bruno@clisp.org>
40657
40658         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
40659         *resultp is 0.
40660
40661         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
40662         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
40663         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
40664         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
40665
40666         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
40667         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
40668         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
40669         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
40670         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
40671         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
40672
40673 2007-01-24  Bruno Haible  <bruno@clisp.org>
40674
40675         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
40676         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
40677         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
40678         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
40679         gl_FUNC_FTS_CORE.
40680         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
40681         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
40682         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
40683         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
40684         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
40685         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
40686         gl_FUNC_FCHOWNAT.
40687         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
40688         gl_FUNC_STRFTIME.
40689         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
40690         Reported by Ralf Wildenhues.
40691
40692 2007-01-24  Bruno Haible  <bruno@clisp.org>
40693
40694         Drop AC_REQUIRE calls that are redundant with the module dependencies.
40695         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
40696         gl_GETADDRINFO.
40697         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
40698         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
40699         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
40700
40701 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
40702
40703         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
40704         Don't use 'exit'; just return from 'main'.
40705         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
40706
40707         * lib/fnmatch_.h: Readjust white space and comments to match
40708         glibc, to avoid spurious diffs.
40709
40710 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40711
40712         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
40713         2004-12-01 change by Jakub Jelinek, since this code won't compile
40714         if !LIBC.  Problem reported by Bob Proulx.
40715
40716 2007-01-23  Bruno Haible  <bruno@clisp.org>
40717
40718         * lib/striconveh.c: Include c-strcaseeq.h.
40719         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
40720         * modules/striconveh (Depends-on): Add c-strcaseeq.
40721
40722 2007-01-23  Bruno Haible  <bruno@clisp.org>
40723
40724         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
40725
40726         * modules/c-strcaseeq: New file.
40727         * lib/c-strcaseeq.h: New file.
40728
40729         * modules/streq: New file.
40730         * lib/streq.h: New file.
40731
40732 2007-01-23  Bruno Haible  <bruno@clisp.org>
40733
40734         * modules/striconveha-tests: New file.
40735         * tests/test-striconveha.c: New file.
40736
40737         * lib/striconveha.h: Include <stdbool.h>.
40738         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
40739         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
40740         (mem_iconveha_notranslit): Renamed from mem_iconveha.
40741         (mem_iconveha): New function.
40742         (str_iconveha_notranslit): Renamed from str_iconveha.
40743         (str_iconveha): New function.
40744         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
40745         c-strcase.
40746
40747 2007-01-23  Bruno Haible  <bruno@clisp.org>
40748
40749         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
40750         encodings without forgiving before trying any encoding with handler.
40751         (str_iconveha): Try all encodings without forgiving before trying any
40752         encoding with handler.
40753
40754 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40755
40756         Import the following changes from libc.
40757
40758         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
40759
40760         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
40761
40762         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
40763
40764         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
40765         normal_bracket label.
40766
40767         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
40768
40769         [BZ #361]
40770         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
40771         to normal_bracket after fetching the next character.
40772
40773 2007-01-22  Bruno Haible  <bruno@clisp.org>
40774
40775         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
40776         argument.
40777         * lib/striconveh.c (iconv_carefully_1): New function.
40778         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
40779         argument.
40780         (str_cd_iconveh): Update.
40781         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
40782         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
40783         * tests/test-striconveh.c (MAGIC): New macro.
40784         (new_offsets): New function.
40785         (main): Test call with and without offsets.
40786
40787 2007-01-22  Bruno Haible  <bruno@clisp.org>
40788
40789         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
40790         * modules/sys_select (Makefile.am): Likewise.
40791         * modules/sys_socket (Makefile.am): Likewise.
40792         * modules/sys_time (Makefile.am): Likewise.
40793
40794 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
40795
40796         * modules/gettimeofday (License): Change from GPL to LGPL, since
40797         gettimeofday is a library function.
40798
40799 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40800
40801         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
40802
40803 2007-01-21  Bruno Haible  <bruno@clisp.org>
40804
40805         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
40806
40807 2007-01-21  Bruno Haible  <bruno@clisp.org>
40808
40809         * modules/striconveha: New file.
40810         * lib/striconveha.h: New file.
40811         * lib/striconveha.c: New file.
40812         * MODULES.html.sh (Internationalization functions): Add striconveha.
40813         * lib/striconv.c (str_iconv): Optimize the case of an empty input
40814         string.
40815         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
40816
40817 2007-01-21  Bruno Haible  <bruno@clisp.org>
40818
40819         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
40820         * lib/striconveh.c (str_iconveh): Likewise.
40821
40822 2007-01-21  Bruno Haible  <bruno@clisp.org>
40823
40824         * lib/striconveh.h (mem_iconveh): New declaration.
40825         * lib/striconveh.c (mem_iconveh): New function.
40826         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
40827
40828 2007-01-21  Bruno Haible  <bruno@clisp.org>
40829
40830         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
40831
40832         * lib/striconveh.h (mem_cd_iconveh): Change specification.
40833         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
40834         original result buffer.
40835         (str_cd_iconveh): Update.
40836         * tests/test-striconveh.c (main): Update.
40837
40838         * lib/striconv.h (mem_cd_iconv): Change specification.
40839         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
40840         result buffer.
40841         (str_cd_iconv): Update.
40842         * tests/test-striconv.c (main): Update.
40843
40844 2007-01-21  Bruno Haible  <bruno@clisp.org>
40845
40846         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
40847
40848 2007-01-20  Jim Meyering  <jim@meyering.net>
40849
40850         * lib/userspec.c (parse_with_separator): If a user or group string
40851         starts with "+", skip the corresponding name-to-ID look-up, since
40852         such a look-up must fail: user and group names may not include "+".
40853
40854 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
40855
40856         * lib/poll.c: Include sys/time.h and time.h unconditionally,
40857         since we now assume the sys_time module.
40858         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
40859         check for sys/time.h; no longer needed.
40860         * modules/poll (Depends-on): Depend on sys_time.
40861
40862 2007-01-18  Bruno Haible  <bruno@clisp.org>
40863
40864         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
40865         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
40866
40867         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
40868         gettimeofday.
40869
40870         * tests/test-gettimeofday.c: Include <time.h>.
40871         (dummy): Remove variable.
40872
40873         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
40874         gl_HEADER_SYS_TIME_H.
40875         (gl_HEADER_SYS_TIME_H): New macro.
40876
40877         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
40878         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40879         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
40880         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
40881         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40882         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
40883         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
40884         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40885         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
40886         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
40887         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40888
40889         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
40890         last change; it caused a compilation error when cross-compiling to
40891         Cygwin.
40892
40893 2007-01-18  Jim Meyering  <jim@meyering.net>
40894
40895         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
40896         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
40897         than the race-prone "test -d sys || mkdir sys".
40898         (configure.ac): Use AC_PROG_MKDIR_P.
40899         * modules/sys_select: Likewise.
40900         * modules/sys_socket: Likewise.
40901         * modules/sys_time: Likewise.
40902
40903 2007-01-18  Eric Blake  <ebb9@byu.net>
40904
40905         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
40906         replace gettimeofday.
40907         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
40908         name, to avoid infinite recursion.
40909
40910 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
40911
40912         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
40913         module sys_time.
40914         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
40915         assume timespec.h defines struct timeval.
40916         * lib/settime.c: Likewise.
40917         * lib/utimens.c: Likewise.
40918         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
40919         since we now assume the gettimeofday module.
40920         * lib/tempname.c (__gen_tempname): Likewise.
40921         * lib/gettimeofday.h: Remove.
40922         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
40923         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
40924         Include <time.h>, for 'time()'.
40925         (localtime_buffer_addr): Also use this workaround if
40926         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
40927         to simplify the uses.  All uses changed.
40928         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
40929         that #undef is inside {}, and 'const' follows type name consistently.
40930         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
40931         (gettimeofday): Do not use the maximum possible value for
40932         tv->tv_usec, since that might break usages other than ls.c.
40933         Instead, we'll leave ls.c alone.  This undoes today's patch
40934         by Bruno.  Add a compile-time warning for 1s-clock resolution;
40935         we've never observed the problem but might as well keep the
40936         canary.
40937         * lib/nanosleep.c: Include timespec.h first, for interface check.
40938         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
40939         now assume the sys_time module.
40940         * lib/tempname.c: Likewise.
40941         * lib/timespec.h: Likewise.
40942         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
40943         needed.
40944         * lib/strftime.c: Likewise.
40945         * lib/timespec.h: Likewise.
40946         * lib/posixtm.c: Include posixtm.h first, for interface check.
40947         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
40948         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
40949         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
40950         * lib/sys_time_.h: New file.
40951         * lib/timespec.h (struct timespec): Use long int, not long.
40952         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
40953         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
40954         Remove obsolescent call to AC_HEADER_TIME.
40955         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
40956         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40957         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
40958         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
40959         Likewise.
40960         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
40961         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
40962         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
40963         into the sys_time module.  Check for gettimeofday just once.
40964         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
40965         for gettimeofday signature to just check the signature.  Merely
40966         compile it, since linking doesn't test signature.  Improve test for
40967         whether gettimeofday.o is actually needed.
40968         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
40969         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
40970         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
40971         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40972         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
40973         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
40974         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
40975         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
40976         than worrying about sys/time.h.
40977         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
40978         Don't bother worrying about TIME_WITH_SYS_TIME.
40979         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
40980         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
40981         * m4/sys_time_h.m4: New file.
40982         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
40983         Don't include sys/time.h.  Return from main rather than exiting.
40984         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
40985         all uses changed.
40986         * modules/gethrxtime (Depends-on): Add sys_time.
40987         * modules/gettime (Depends-on): Likewise.
40988         * modules/gettimeofday (Depends-on): Likewise.
40989         * modules/nanosleep (Depends-on): Likewise.
40990         * modules/settime (Depends-on): Likewise.
40991         * modules/tempname (Depends-on): Likewise.
40992         * modules/utimens (Depends-on): Likewise.
40993         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
40994         (Include:) Change back to <sys/time.h>.
40995         (Maintainer:) Add self.
40996         * modules/sys_time: New file.
40997         * modules/tempname (Depends-on): Add gettimeofday.
40998         * tests/test-gettimeofday.c: Include <sys/time.h>
40999         rather than gettimeofday.h.
41000
41001 2007-01-17  Bruno Haible  <bruno@clisp.org>
41002
41003         * gnulib-tool (func_get_license): Revert last patch. Instead, let
41004         the license default to GPL.
41005         (func_create_testdir): Don't complain if a module is LGPL and its
41006         tests module depends on GPLed modules.
41007
41008 2007-01-17  Bruno Haible  <bruno@clisp.org>
41009
41010         * lib/gettimeofday.c (gettimeofday): Add code for the case
41011         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
41012         maximum possible value for tv->tv_usec, rather than the minimum one.
41013
41014 2005-10-08  Martin Lambers  <marlam@marlam.de>
41015 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
41016 2007-01-16  Bruno Haible  <bruno@clisp.org>
41017
41018         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
41019         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
41020         gl_FUNC_GETTIMEOFDAY.
41021         (Include): Add gettimeofday.h.
41022         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
41023         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
41024         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
41025         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
41026         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
41027         * lib/gettimeofday.h: New file.
41028         * lib/gettimeofday.c: Include <sys/timeb.h>.
41029         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
41030         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
41031         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
41032         fall back on time().
41033
41034         * tests/test-gettimeofday.c: New file.
41035         * modules/gettimeofday-tests: New file.
41036
41037 2007-01-16  Eric Blake  <ebb9@byu.net>
41038
41039         * modules/fnmatch (Depends-on): Depend on wchar.
41040         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
41041         * m4/fnmatch.m4: Likewise.
41042         * modules/mbchar (Makefile.am): Assume <wchar.h>.
41043         * m4/mbchar.m4: Likewise.
41044         * modules/mbswidth (Depends-on): Depend on wchar.
41045         * lib/mbswidth.c: Assume <wchar.h>.
41046         * m4/mbswidth.m4: Likewise.
41047         * modules/quotearg (Depends-on): Depend on wchar.
41048         * lib/quotearg.c: Assume <wchar.h>.
41049         * m4/quotearg.m4: Likewise.
41050         * modules/regex (Depends-on): Depend on wchar.
41051         * lib/regex_internal.h: Assume <wchar.h>.
41052         * m4/regex.m4: Likewise.
41053         * modules/stdint (Depends-on): Depend on wchar.
41054         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
41055         * m4/stdint.m4: Likewise.
41056         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
41057         * modules/strftime (Depends-on): Depend on wchar.
41058         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
41059         * modules/strtol (Depends-on): Depend on wchar.
41060         * lib/strtol.c: Assume <wchar.h>.
41061         * modules/wcwidth (Depends-on): Depend on wchar.
41062         * lib/wcwidth.h: Assume <wchar.h>.
41063         * m4/wcwidth.m4: Likewise.
41064
41065 2007-01-16  Bruno Haible  <bruno@clisp.org>
41066
41067         * modules/csharpexec-script: New, created from...
41068         * modules/csharpexec: ... this.
41069
41070 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
41071
41072         * modules/javaexec-script: New, created from...
41073         * modules/javaexec: ... this.
41074
41075 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41076
41077         * modules/poll (Dependencies): Add sys_select.
41078
41079 2007-01-15  Jim Meyering  <jim@meyering.net>
41080
41081         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
41082         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
41083         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
41084         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
41085
41086 2007-01-15  Bruno Haible  <bruno@clisp.org>
41087
41088         * modules/striconveh: New file.
41089         * lib/striconveh.h: New file.
41090         * lib/striconveh.c: New file.
41091         * MODULES.html.sh (Internationalization functions): Add striconveh.
41092
41093         * modules/striconveh-tests: New file.
41094         * tests/test-striconveh.c: New file.
41095
41096 2007-01-15  Bruno Haible  <bruno@clisp.org>
41097
41098         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
41099         not from GNU libiconv or GNU libc.
41100
41101 2007-01-15  Bruno Haible  <bruno@clisp.org>
41102
41103         * doc/gnulib-intro.texi (Copyright): Explain the different license
41104         terms for module descriptions, autoconf macros, tests, documentation.
41105
41106 2007-01-14  Bruno Haible  <bruno@clisp.org>
41107
41108         * modules/striconv-tests: New file.
41109         * tests/test-striconv.c: New file.
41110
41111 2007-01-14  Bruno Haible  <bruno@clisp.org>
41112
41113         * modules/iconv-tests: New file.
41114         * tests/test-iconv.c: New file.
41115
41116 2007-01-14  Bruno Haible  <bruno@clisp.org>
41117
41118         * gnulib-tool (func_get_license): For test modules, use the license of
41119         the main module.
41120
41121 2007-01-14  Bruno Haible  <bruno@clisp.org>
41122
41123         * modules/iconv (Include): Clarify that <iconv.h> can only be included
41124         if iconv is found to exist.
41125
41126 2007-01-14  Bruno Haible  <bruno@clisp.org>
41127
41128         * modules/c-ctype-tests: New file.
41129         * tests/test-c-ctype.c: New file.
41130
41131 2007-01-14  Bruno Haible  <bruno@clisp.org>
41132
41133         * modules/binary-io-tests: New file.
41134         * tests/test-binary-io.sh: New file.
41135         * tests/test-binary-io.c: New file.
41136
41137 2007-01-14  Bruno Haible  <bruno@clisp.org>
41138
41139         * modules/array-oset-tests: New file.
41140         * tests/test-array_oset.c: New file.
41141
41142 2007-01-14  Bruno Haible  <bruno@clisp.org>
41143
41144         * modules/array-list-tests: New file.
41145         * tests/test-array_list.c: New file.
41146
41147 2007-01-14  Bruno Haible  <bruno@clisp.org>
41148
41149         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
41150         and make.
41151         Reported by Simon Josefsson in
41152         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
41153
41154 2007-01-14  Bruno Haible  <bruno@clisp.org>
41155
41156         * modules/allocsa-tests: New file.
41157         * tests/test-allocsa.c: New file.
41158
41159 2007-01-14  Bruno Haible  <bruno@clisp.org>
41160
41161         * modules/fchdir (Depends-on): Add absolute-header.
41162         * modules/unistd (Depends-on): Likewise.
41163
41164 2006-12-30  Bruno Haible  <bruno@clisp.org>
41165
41166         * modules/fchdir: New file.
41167         * modules/unistd (Files): Add lib/unistd_.h.
41168         (Makefile.am): Generate unistd.h from unistd_.h.
41169         * lib/fchdir.c: New file.
41170         * lib/dirent_.h: New file.
41171         * lib/unistd_.h: New file.
41172         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
41173         * m4/fchdir.m4: New file.
41174         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
41175         (gl_HEADER_UNISTD): Invoke it.
41176         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
41177         function.
41178         * lib/backupfile.c (opendir, closedir): Undefine.
41179         * lib/chown.c (open, close): Undefine.
41180         * lib/clean-temp.c (open, close): Undefine.
41181         * lib/copy-file.c (open, close): Undefine.
41182         * lib/execute.c (open, close): Undefine.
41183         * lib/fsusage.c (open, close): Undefine.
41184         * lib/gc-gnulib.c (open, close): Undefine.
41185         * lib/getcwd.c (opendir, closedir): Undefine.
41186         * lib/glob.c (opendir, closedir): Undefine.
41187         * lib/javacomp.c (open, close): Undefine.
41188         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
41189         * lib/openat-proc.c (open, close): Undefine.
41190         * lib/pagealign_alloc.c (open, close): Undefine.
41191         * lib/pipe.c (open, close): Undefine.
41192         * lib/progreloc.c (open, close): Undefine.
41193         * lib/savedir.c (opendir, closedir): Undefine.
41194         * lib/utime.c (open, close): Undefine.
41195         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
41196
41197 2007-01-10  Bruno Haible  <bruno@clisp.org>
41198
41199         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
41200
41201 2007-01-12  Eric Blake  <ebb9@byu.net>
41202
41203         Provide a robust <wchar.h>.  Further simplifications are now
41204         possible in other modules, but not included here.
41205         * modules/wchar: New module.
41206         * m4/wchar.m4: New file.
41207         * lib/wchar_.h: Likewise.
41208         * modules/mbchar (Depends-on): Depend on wchar, as the first use
41209         of the new module.
41210         * MODULES.html.sh (Extended multibyte and wide character utilities):
41211         New section.
41212
41213 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
41214
41215         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
41216         to a reasonable default for memory allocation.
41217         (xreadlink): Don't allocate a huge buffer, to work around a buggy
41218         file system that reports garbage st_size values for symlinks.
41219         Problem reported by Liyang Hu.
41220
41221 2007-01-11  Simon Josefsson  <simon@josefsson.org>
41222
41223         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
41224         Emacs .#* auto-save files).
41225
41226 2007-01-11  Bruno Haible  <bruno@clisp.org>
41227
41228         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
41229         directory.
41230
41231 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41232
41233         Use @...@ consistently in lib/wctype_.h.
41234         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
41235         on it being set to 1 or 0.
41236         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
41237         go back to AC_SUBSTing it.
41238         * modules/wctype (Makefile.am): Undo previous change.
41239
41240 2007-01-10  Eric Blake  <ebb9@byu.net>
41241
41242         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
41243         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
41244         * modules/wctype (Makefile.am): Likewise.
41245         Reported by Chris McGuire.
41246
41247 2007-01-10  Jim Meyering  <jim@meyering.net>
41248
41249         fts.c: a small readability/maintainability improvement
41250         * lib/fts.c (fts_read): Make this code slightly more readable and
41251         maintainable by hoisting the "sp->fts_cur = p" assignments to
41252         immediately follow the statements that set P.  Derived from
41253         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
41254
41255 2007-01-10  Eric Blake  <ebb9@byu.net>
41256
41257         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
41258         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
41259         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
41260         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
41261         Reported by Chris McGuire.
41262
41263 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41264
41265         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
41266         in sed script.
41267
41268 2007-01-09  Bruno Haible  <bruno@clisp.org>
41269
41270         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
41271         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
41272         variables.
41273         (func_module): Use them.
41274
41275 2007-01-09  Bruno Haible  <bruno@clisp.org>
41276
41277         * modules/unistr/base: New file.
41278         * lib/unistr.h: New file.
41279
41280         * modules/unistr/u8-to-u16: New file.
41281         * lib/unistr/u8-to-u16.c: New file.
41282
41283         * modules/unistr/u8-to-u32: New file.
41284         * lib/unistr/u8-to-u32.c: New file.
41285
41286         * modules/unistr/u16-to-u8: New file.
41287         * lib/unistr/u16-to-u8.c: New file.
41288
41289         * modules/unistr/u16-to-u32: New file.
41290         * lib/unistr/u16-to-u32.c: New file.
41291
41292         * modules/unistr/u32-to-u8: New file.
41293         * lib/unistr/u32-to-u8.c: New file.
41294
41295         * modules/unistr/u32-to-u16: New file.
41296         * lib/unistr/u32-to-u16.c: New file.
41297
41298         * modules/unistr/u8-check: New file.
41299         * modules/unistr/u16-check: New file.
41300         * modules/unistr/u32-check: New file.
41301         * lib/unistr/u8-check.c: New file.
41302         * lib/unistr/u16-check.c: New file.
41303         * lib/unistr/u32-check.c: New file.
41304
41305         * modules/unistr/u8-chr: New file.
41306         * modules/unistr/u16-chr: New file.
41307         * modules/unistr/u32-chr: New file.
41308         * lib/unistr/u8-chr.c: New file.
41309         * lib/unistr/u16-chr.c: New file.
41310         * lib/unistr/u32-chr.c: New file.
41311
41312         * modules/unistr/u8-cmp: New file.
41313         * modules/unistr/u16-cmp: New file.
41314         * modules/unistr/u32-cmp: New file.
41315         * lib/unistr/u8-cmp.c: New file.
41316         * lib/unistr/u16-cmp.c: New file.
41317         * lib/unistr/u32-cmp.c: New file.
41318
41319         * modules/unistr/u8-cpy: New file.
41320         * modules/unistr/u16-cpy: New file.
41321         * modules/unistr/u32-cpy: New file.
41322         * lib/unistr/u8-cpy.c: New file.
41323         * lib/unistr/u16-cpy.c: New file.
41324         * lib/unistr/u32-cpy.c: New file.
41325         * lib/unistr/u-cpy.h: New file.
41326
41327         * modules/unistr/u8-cpy-alloc: New file.
41328         * modules/unistr/u16-cpy-alloc: New file.
41329         * modules/unistr/u32-cpy-alloc: New file.
41330         * lib/unistr/u8-cpy-alloc.c: New file.
41331         * lib/unistr/u16-cpy-alloc.c: New file.
41332         * lib/unistr/u32-cpy-alloc.c: New file.
41333         * lib/unistr/u-cpy-alloc.h: New file.
41334
41335         * modules/unistr/u8-endswith: New file.
41336         * modules/unistr/u16-endswith: New file.
41337         * modules/unistr/u32-endswith: New file.
41338         * lib/unistr/u8-endswith.c: New file.
41339         * lib/unistr/u16-endswith.c: New file.
41340         * lib/unistr/u32-endswith.c: New file.
41341         * lib/unistr/u-endswith.h: New file.
41342
41343         * modules/unistr/u8-mblen: New file.
41344         * modules/unistr/u16-mblen: New file.
41345         * modules/unistr/u32-mblen: New file.
41346         * lib/unistr/u8-mblen.c: New file.
41347         * lib/unistr/u16-mblen.c: New file.
41348         * lib/unistr/u32-mblen.c: New file.
41349
41350         * modules/unistr/u8-mbtouc: New file.
41351         * modules/unistr/u16-mbtouc: New file.
41352         * modules/unistr/u32-mbtouc: New file.
41353         * lib/unistr/u8-mbtouc.c: New file.
41354         * lib/unistr/u16-mbtouc.c: New file.
41355         * lib/unistr/u32-mbtouc.c: New file.
41356
41357         * modules/unistr/u8-mbtouc-safe: New file.
41358         * modules/unistr/u16-mbtouc-safe: New file.
41359         * modules/unistr/u32-mbtouc-safe: New file.
41360         * lib/unistr/u8-mbtouc-safe.c: New file.
41361         * lib/unistr/u16-mbtouc-safe.c: New file.
41362         * lib/unistr/u32-mbtouc-safe.c: New file.
41363
41364         * modules/unistr/u8-move: New file.
41365         * modules/unistr/u16-move: New file.
41366         * modules/unistr/u32-move: New file.
41367         * lib/unistr/u8-move.c: New file.
41368         * lib/unistr/u16-move.c: New file.
41369         * lib/unistr/u32-move.c: New file.
41370         * lib/unistr/u-move.h: New file.
41371
41372         * modules/unistr/u8-next: New file.
41373         * modules/unistr/u16-next: New file.
41374         * modules/unistr/u32-next: New file.
41375         * lib/unistr/u8-next.c: New file.
41376         * lib/unistr/u16-next.c: New file.
41377         * lib/unistr/u32-next.c: New file.
41378
41379         * modules/unistr/u8-prev: New file.
41380         * modules/unistr/u16-prev: New file.
41381         * modules/unistr/u32-prev: New file.
41382         * lib/unistr/u8-prev.c: New file.
41383         * lib/unistr/u16-prev.c: New file.
41384         * lib/unistr/u32-prev.c: New file.
41385
41386         * modules/unistr/u8-set: New file.
41387         * modules/unistr/u16-set: New file.
41388         * modules/unistr/u32-set: New file.
41389         * lib/unistr/u8-set.c: New file.
41390         * lib/unistr/u16-set.c: New file.
41391         * lib/unistr/u32-set.c: New file.
41392         * lib/unistr/u-set.h: New file.
41393
41394         * modules/unistr/u8-startswith: New file.
41395         * modules/unistr/u16-startswith: New file.
41396         * modules/unistr/u32-startswith: New file.
41397         * lib/unistr/u8-startswith.c: New file.
41398         * lib/unistr/u16-startswith.c: New file.
41399         * lib/unistr/u32-startswith.c: New file.
41400         * lib/unistr/u-startswith.h: New file.
41401
41402         * modules/unistr/u8-stpcpy: New file.
41403         * modules/unistr/u16-stpcpy: New file.
41404         * modules/unistr/u32-stpcpy: New file.
41405         * lib/unistr/u8-stpcpy.c: New file.
41406         * lib/unistr/u16-stpcpy.c: New file.
41407         * lib/unistr/u32-stpcpy.c: New file.
41408         * lib/unistr/u-stpcpy.h: New file.
41409
41410         * modules/unistr/u8-stpncpy: New file.
41411         * modules/unistr/u16-stpncpy: New file.
41412         * modules/unistr/u32-stpncpy: New file.
41413         * lib/unistr/u8-stpncpy.c: New file.
41414         * lib/unistr/u16-stpncpy.c: New file.
41415         * lib/unistr/u32-stpncpy.c: New file.
41416         * lib/unistr/u-stpncpy.h: New file.
41417
41418         * modules/unistr/u8-strcat: New file.
41419         * modules/unistr/u16-strcat: New file.
41420         * modules/unistr/u32-strcat: New file.
41421         * lib/unistr/u8-strcat.c: New file.
41422         * lib/unistr/u16-strcat.c: New file.
41423         * lib/unistr/u32-strcat.c: New file.
41424         * lib/unistr/u-strcat.h: New file.
41425
41426         * modules/unistr/u8-strchr: New file.
41427         * modules/unistr/u16-strchr: New file.
41428         * modules/unistr/u32-strchr: New file.
41429         * lib/unistr/u8-strchr.c: New file.
41430         * lib/unistr/u16-strchr.c: New file.
41431         * lib/unistr/u32-strchr.c: New file.
41432
41433         * modules/unistr/u8-strcmp: New file.
41434         * modules/unistr/u16-strcmp: New file.
41435         * modules/unistr/u32-strcmp: New file.
41436         * lib/unistr/u8-strcmp.c: New file.
41437         * lib/unistr/u16-strcmp.c: New file.
41438         * lib/unistr/u32-strcmp.c: New file.
41439
41440         * modules/unistr/u8-strcpy: New file.
41441         * modules/unistr/u16-strcpy: New file.
41442         * modules/unistr/u32-strcpy: New file.
41443         * lib/unistr/u8-strcpy.c: New file.
41444         * lib/unistr/u16-strcpy.c: New file.
41445         * lib/unistr/u32-strcpy.c: New file.
41446         * lib/unistr/u-strcpy.h: New file.
41447
41448         * modules/unistr/u8-strcspn: New file.
41449         * modules/unistr/u16-strcspn: New file.
41450         * modules/unistr/u32-strcspn: New file.
41451         * lib/unistr/u8-strcspn.c: New file.
41452         * lib/unistr/u16-strcspn.c: New file.
41453         * lib/unistr/u32-strcspn.c: New file.
41454         * lib/unistr/u-strcspn.h: New file.
41455
41456         * modules/unistr/u8-strdup: New file.
41457         * modules/unistr/u16-strdup: New file.
41458         * modules/unistr/u32-strdup: New file.
41459         * lib/unistr/u8-strdup.c: New file.
41460         * lib/unistr/u16-strdup.c: New file.
41461         * lib/unistr/u32-strdup.c: New file.
41462         * lib/unistr/u-strdup.h: New file.
41463
41464         * modules/unistr/u8-strlen: New file.
41465         * modules/unistr/u16-strlen: New file.
41466         * modules/unistr/u32-strlen: New file.
41467         * lib/unistr/u8-strlen.c: New file.
41468         * lib/unistr/u16-strlen.c: New file.
41469         * lib/unistr/u32-strlen.c: New file.
41470         * lib/unistr/u-strlen.h: New file.
41471
41472         * modules/unistr/u8-strmblen: New file.
41473         * modules/unistr/u16-strmblen: New file.
41474         * modules/unistr/u32-strmblen: New file.
41475         * lib/unistr/u8-strmblen.c: New file.
41476         * lib/unistr/u16-strmblen.c: New file.
41477         * lib/unistr/u32-strmblen.c: New file.
41478
41479         * modules/unistr/u8-strmbtouc: New file.
41480         * modules/unistr/u16-strmbtouc: New file.
41481         * modules/unistr/u32-strmbtouc: New file.
41482         * lib/unistr/u8-strmbtouc.c: New file.
41483         * lib/unistr/u16-strmbtouc.c: New file.
41484         * lib/unistr/u32-strmbtouc.c: New file.
41485
41486         * modules/unistr/u8-strncat: New file.
41487         * modules/unistr/u16-strncat: New file.
41488         * modules/unistr/u32-strncat: New file.
41489         * lib/unistr/u8-strncat.c: New file.
41490         * lib/unistr/u16-strncat.c: New file.
41491         * lib/unistr/u32-strncat.c: New file.
41492         * lib/unistr/u-strncat.h: New file.
41493
41494         * modules/unistr/u8-strncmp: New file.
41495         * modules/unistr/u16-strncmp: New file.
41496         * modules/unistr/u32-strncmp: New file.
41497         * lib/unistr/u8-strncmp.c: New file.
41498         * lib/unistr/u16-strncmp.c: New file.
41499         * lib/unistr/u32-strncmp.c: New file.
41500
41501         * modules/unistr/u8-strncpy: New file.
41502         * modules/unistr/u16-strncpy: New file.
41503         * modules/unistr/u32-strncpy: New file.
41504         * lib/unistr/u8-strncpy.c: New file.
41505         * lib/unistr/u16-strncpy.c: New file.
41506         * lib/unistr/u32-strncpy.c: New file.
41507         * lib/unistr/u-strncpy.h: New file.
41508
41509         * modules/unistr/u8-strnlen: New file.
41510         * modules/unistr/u16-strnlen: New file.
41511         * modules/unistr/u32-strnlen: New file.
41512         * lib/unistr/u8-strnlen.c: New file.
41513         * lib/unistr/u16-strnlen.c: New file.
41514         * lib/unistr/u32-strnlen.c: New file.
41515         * lib/unistr/u-strnlen.h: New file.
41516
41517         * modules/unistr/u8-strpbrk: New file.
41518         * modules/unistr/u16-strpbrk: New file.
41519         * modules/unistr/u32-strpbrk: New file.
41520         * lib/unistr/u8-strpbrk.c: New file.
41521         * lib/unistr/u16-strpbrk.c: New file.
41522         * lib/unistr/u32-strpbrk.c: New file.
41523         * lib/unistr/u-strpbrk.h: New file.
41524
41525         * modules/unistr/u8-strrchr: New file.
41526         * modules/unistr/u16-strrchr: New file.
41527         * modules/unistr/u32-strrchr: New file.
41528         * lib/unistr/u8-strrchr.c: New file.
41529         * lib/unistr/u16-strrchr.c: New file.
41530         * lib/unistr/u32-strrchr.c: New file.
41531
41532         * modules/unistr/u8-strspn: New file.
41533         * modules/unistr/u16-strspn: New file.
41534         * modules/unistr/u32-strspn: New file.
41535         * lib/unistr/u8-strspn.c: New file.
41536         * lib/unistr/u16-strspn.c: New file.
41537         * lib/unistr/u32-strspn.c: New file.
41538         * lib/unistr/u-strspn.h: New file.
41539
41540         * modules/unistr/u8-strstr: New file.
41541         * modules/unistr/u16-strstr: New file.
41542         * modules/unistr/u32-strstr: New file.
41543         * lib/unistr/u8-strstr.c: New file.
41544         * lib/unistr/u16-strstr.c: New file.
41545         * lib/unistr/u32-strstr.c: New file.
41546         * lib/unistr/u-strstr.h: New file.
41547
41548         * modules/unistr/u8-strtok: New file.
41549         * modules/unistr/u16-strtok: New file.
41550         * modules/unistr/u32-strtok: New file.
41551         * lib/unistr/u8-strtok.c: New file.
41552         * lib/unistr/u16-strtok.c: New file.
41553         * lib/unistr/u32-strtok.c: New file.
41554         * lib/unistr/u-strtok.h: New file.
41555
41556         * modules/unistr/u8-uctomb: New file.
41557         * modules/unistr/u16-uctomb: New file.
41558         * modules/unistr/u32-uctomb: New file.
41559         * lib/unistr/u8-uctomb.c: New file.
41560         * lib/unistr/u16-uctomb.c: New file.
41561         * lib/unistr/u32-uctomb.c: New file.
41562
41563         * MODULES.html.sh (Unicode string functions): Add the new modules.
41564
41565 2007-01-08  Bruno Haible  <bruno@clisp.org>
41566
41567         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
41568         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
41569         subdirectories.
41570
41571 2007-01-08  Karl Berry  <karl@gnu.org>
41572
41573         * doc/error.texi: mention that main() fns must set program_name
41574         when progname is used.
41575
41576 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
41577
41578         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
41579         WCTYPE_H is empty, for the benefit of builds from non-distclean
41580         directories.  Problem reported by Eric Blake in
41581         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
41582
41583 2007-01-08  Bruno Haible  <bruno@clisp.org>
41584
41585         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
41586         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
41587         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
41588         PROVIDE_CANONICALIZE_FILENAME_MODE.
41589         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
41590
41591 2007-01-08  Bruno Haible  <bruno@clisp.org>
41592
41593         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
41594         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
41595         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
41596         * lib/fts.c: Likewise.
41597         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
41598
41599 2006-12-25  Bruno Haible  <bruno@clisp.org>
41600
41601         * modules/utf8-ucs4-safe: New file.
41602         * lib/utf8-ucs4-safe.h: New file.
41603         * lib/unistr/utf8-ucs4-safe.c: New file.
41604
41605         * modules/utf16-ucs4-safe: New file.
41606         * lib/utf16-ucs4-safe.h: New file.
41607         * lib/unistr/utf16-ucs4-safe.c: New file.
41608
41609         * MODULES.html.sh (Unicode string functions): Add the new modules.
41610
41611 2007-01-08  Bruno Haible  <bruno@clisp.org>
41612
41613         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
41614         (Depends-on): Add unitypes.
41615         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
41616         (u8_mbtouc_aux): Move out to separate file.
41617         (u8_mbtouc): Use ucs4_t, uint8_t types.
41618         * lib/unistr/utf8-ucs4.c: New file.
41619
41620         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
41621         (Depends-on): Add unitypes.
41622         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
41623         (u16_mbtouc_aux): Move out to separate file.
41624         (u16_mbtouc): Use ucs4_t, uint16_t types.
41625         * lib/unistr/utf16-ucs4.c: New file.
41626
41627         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
41628         (Depends-on): Add unitypes.
41629         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
41630         (u8_uctomb_aux): Move out to separate file.
41631         (u8_uctomb): Use ucs4_t, uint8_t types.
41632         * lib/unistr/ucs4-utf8.c: New file.
41633
41634         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
41635         (Depends-on): Add unitypes.
41636         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
41637         (u16_uctomb_aux): Move out to separate file.
41638         (u16_uctomb): Use ucs4_t, uint16_t types.
41639         * lib/unistr/ucs4-utf16.c: New file.
41640
41641 2006-12-25  Bruno Haible  <bruno@clisp.org>
41642
41643         * modules/unitypes: New file.
41644         * lib/unitypes.h: New file.
41645         * MODULES.html.sh (func_all_modules): New section "Unicode string
41646         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
41647         this section. Add unitypes.
41648
41649 2007-01-08  Bruno Haible  <bruno@clisp.org>
41650
41651         Avoid variable names that conflict with those from libtool.
41652         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
41653         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
41654         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
41655         library_names_spec to acl_library_names_spec, hardcode_* to
41656         acl_hardcode_*.
41657         Reported by Ralf Wildenhues.
41658
41659 2007-01-08  Bruno Haible  <bruno@clisp.org>
41660
41661         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
41662         definition.
41663         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
41664         definition.
41665         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
41666         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
41667         definition.
41668         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
41669         definition.
41670         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
41671         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
41672         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
41673         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
41674         definition.
41675         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
41676         definition.
41677         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
41678         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
41679         GC_USE_<algorithm>.
41680         * lib/gc-libgcrypt.c: Likewise.
41681         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
41682         * modules/gc-arctwo (configure.ac): Likewise.
41683         * modules/gc-des (configure.ac): Likewise.
41684         * modules/gc-hmac-md5 (configure.ac): Likewise.
41685         * modules/gc-hmac-sha1 (configure.ac): Likewise.
41686         * modules/gc-md2 (configure.ac): Likewise.
41687         * modules/gc-md4 (configure.ac): Likewise.
41688         * modules/gc-md5 (configure.ac): Likewise.
41689         * modules/gc-random (configure.ac): Likewise.
41690         * modules/gc-rijndael (configure.ac): Likewise.
41691         * modules/gc-sha1 (configure.ac): Likewise.
41692
41693 2007-01-08  Bruno Haible  <bruno@clisp.org>
41694
41695         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
41696         macro definition.
41697         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
41698         definition.
41699         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
41700         definition.
41701         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
41702         * modules/fcntl-safer (configure.ac): Likewise.
41703         * modules/fopen-safer (configure.ac): Likewise.
41704         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
41705         GNULIB_FWRITEERROR macro definition.
41706
41707 2007-01-08  Bruno Haible  <bruno@clisp.org>
41708
41709         * m4/gnulib-common.m4: New file.
41710         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
41711         (func_get_filelist): Add m4/gnulib-common.m4.
41712
41713 2007-01-08  Bruno Haible  <bruno@clisp.org>
41714
41715         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
41716         command.
41717
41718 2007-01-08  Jim Meyering  <jim@meyering.net>
41719
41720         Use a more robust test for a "can't happen" condition.
41721         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
41722         narrowed the st_size value.  Presuming the "can't happen" condition
41723         is true, that narrowing could conceivably convert an invalid st_size
41724         value into a valid one.  Instead, use a change based on Matthew
41725         Woehlke's original patch.
41726
41727         Slight readability improvement: use an assert-like macro
41728         in place of literal "abort ()" uses.
41729         * lib/fts.c (fts_assert): Define.
41730         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
41731         Use this macro instead of a bare 'abort'.
41732
41733 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
41734
41735         Don't worry about using IRIX 5.3's wctype.h broken definitions;
41736         simply work around them.
41737         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
41738         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
41739         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
41740         declaring.
41741         Don't bother to define as macros, since the standard doesn't require it.
41742         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
41743         longer worry about IRIX 5.3.
41744         (HAVE_WCTYPE_CTMP_BUG): Remove.
41745
41746 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41747
41748         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
41749         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
41750         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
41751         Problems reported by Georg Schwarz for IRIX 5.3.
41752
41753         * gnulib-tool (autoconf_minversion): Take the maximum version number
41754         found, not the minimum.  Problem reported by James Youngman.
41755
41756 2007-01-03  Karl Berry  <karl@gnu.org>
41757
41758         * doc/error.texi: new file, explaining interaction with progname.
41759         * doc/gnulib.texi: include it.  Update copyright.
41760
41761 2007-01-03  Simon Josefsson  <simon@josefsson.org>
41762
41763         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
41764         AC_CANONICAL_HOST, to improve autobuild outputs.
41765
41766 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
41767             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
41768
41769         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
41770         sockets, server sockets, and other file descriptors.  Count errors
41771         to compute the return value.  Reorder the code a bit to be easier
41772         to follow.  Don't set event bits that were not requested (except
41773         POLLERR and POLLHUP).
41774
41775 2007-01-01  Bruno Haible  <bruno@clisp.org>
41776
41777         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
41778
41779 2007-01-03  Jim Meyering  <jim@meyering.net>
41780
41781         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
41782
41783 2007-01-02  Bruno Haible  <bruno@clisp.org>
41784
41785         * modules/settime (Include): Require timespec.h.
41786         * modules/nanosleep (Include): Likewise.
41787
41788 2007-01-01  Bruno Haible  <bruno@clisp.org>
41789
41790         * gnulib-tool (func_emit_copyright_notice): Bump year.
41791         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
41792
41793 2007-01-01  Bruno Haible  <bruno@clisp.org>
41794
41795         Improve support for OpenBSD.
41796         * build-aux/config.rpath (libname_spec): Export.
41797         (library_names_spec): New variable. Export.
41798         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
41799         library_names_spec from the config.rpath output. Locate shared library
41800         through the name pattern in library_names_spec.
41801
41802 2007-01-01  Eric Blake  <ebb9@byu.net>
41803
41804         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
41805
41806 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
41807
41808         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
41809         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
41810         assume the C locale, and avoid an "eval" that could cause trouble.
41811         Problem with SORT reported by Bob Proulx.
41812
41813         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
41814         Define.  Trivial patch from Henning Nielsen Lund, originally
41815         sent to bug-grep@gnu.org today.
41816
41817 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
41818
41819         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
41820         struct stat.  Problem reported by Henning Nielsen Lund.
41821         * lib/acl.c: Include acl.h first, to check interface.  Don't
41822         bother to include sys/types.h and sys/stat.h again.
41823
41824 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
41825
41826         Import the following change from libc; problem reported by
41827         Sven Verdoolaege.
41828
41829         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
41830
41831         [BZ #1373]
41832         * lib/argp.h: Remove __NTH for __argp_usage inline function.
41833
41834 2006-12-28  Jim Meyering  <jim@meyering.net>
41835
41836         * build-aux/announce-gen: Do not assume that the package
41837         builds any of tar.gz, tar.bz2, and .xdelta files.
41838         Suggestion from Simon Josefsson.
41839
41840 2006-12-28  Simon Josefsson  <simon@josefsson.org>
41841
41842         * modules/announce-gen: New file.
41843
41844 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
41845
41846         * lib/mbchar.h: Just include <wctype.h>; the wctype module
41847         handles its gotchas now.
41848         * lib/mbswidth.c: Likewise.
41849         * lib/wcwidth.h: Likewise.
41850         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
41851         and iswcntrl; the wctype module does this stuff now.
41852         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
41853         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
41854         * modules/mbchar (Depends-on): Add wctype.
41855         * modules/mbswidth (Depends-on): Likewise.
41856         * modules/wcwidth (Depends-on): Likewise.
41857
41858 2006-12-27  Eric Blake  <ebb9@byu.net>
41859
41860         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
41861         module uses more than what <wctype.h> is required to provide.
41862
41863 2006-12-26  Eric Blake  <ebb9@byu.net>
41864
41865         * gnulib-tool (sed_extract_prog): Avoid space-tab.
41866
41867 2006-12-26  Eric Blake  <ebb9@byu.net>
41868
41869         * modules/absolute-header: New module.
41870         * modules/fcntl (Depends-on): Depend on it.
41871         * modules/inttypes (Depends-on): Likewise.
41872         * modules/stdint (Depends-on): Likewise.
41873         * modules/sys_stat (Depends-on): Likewise.
41874         * modules/wctype (Depends-on): Likewise.
41875         * MODULES.html.sh (Support for building libraries and
41876         executables): Document it.
41877
41878 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
41879
41880         * gnulib-tool (SED): Remove, undoing previous change.
41881         The problem was that it broke coreutils on Solaris, because
41882         "sed --posix" leaked into a makefile.
41883         (sed): New alias, if 'alias' and GNU sed.
41884
41885 2006-12-24  Jim Meyering  <jim@meyering.net>
41886
41887         Work around an fchownat bug in glibc-2.4:
41888         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
41889         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
41890         in spite of the -P option.
41891         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
41892         New macros.
41893         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
41894         * modules/openat (Files): Add lib/fchownat.c.
41895         * lib/openat.c (fchownat): Don't define here.  Move to...
41896         * lib/fchownat.c: ...this new file.
41897
41898 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
41899
41900         Fix bug reported by Bruno Haible in
41901         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
41902         where quotearg.c didn't compile on Mac OS X 10.2 because it
41903         lacks <wchar.h> and wint_t.
41904         * lib/wctype_.h (__wctype_wint_t): New type.
41905         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
41906         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
41907         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
41908         Arg is now of type __wctype_wint_t, not wint_t.
41909         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
41910         substitute HAVE_WINT_T.
41911         * modules/wctype (Files): Add m4/wint_t.m4.
41912         (wctype.h): Substitute HAVE_WINT_T.
41913
41914 2006-12-23  Bruno Haible  <bruno@clisp.org>
41915
41916         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
41917
41918 2006-12-23  Bruno Haible  <bruno@clisp.org>
41919
41920         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
41921         S_ISLNK.
41922         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
41923         mingw.
41924
41925 2006-12-22  Bruno Haible  <bruno@clisp.org>
41926
41927         * lib/copy-file.c: Include acl.h.
41928         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
41929         Close the file descriptors only after being done with copy_acl.
41930         * modules/copy-file (Depends-on): Add acl.
41931
41932 2006-12-22  Bruno Haible  <bruno@clisp.org>
41933
41934         * gnulib-tool (SED): New variable.
41935         Use $SED instead of sed everywhere.
41936
41937 2006-12-22  Bruno Haible  <bruno@clisp.org>
41938
41939         * modules/no-c++: New file.
41940         * m4/no-c++.m4: New file.
41941         * MODULES.html.sh (Support for building libraries and executables):
41942         Add no-c++.
41943
41944 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
41945
41946         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
41947         Include <limits.h>, and use its INT_MAX to rewrite the
41948         j loop so that it does not overflow 'int'.  Problem reported by
41949         Ralf Wildenhues in
41950         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
41951         Play it safe by shifting left by 1 rather than multiplying by 2,
41952         as GCC is less likely to optimize this away when the value
41953         is signed (when it assumes overflow leads to undefined behavior).
41954         Also, don't assume time_t uses two's complement.
41955
41956 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
41957
41958         * MODULES.html.sh: New module wctype.
41959         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
41960         * lib/fnmatch.c: Don't bother to include <wchar.h> before
41961         <wctype.h>, since the new wctype module should fix this.
41962         * lib/quotearg.c: Include <wctype.h> unconditionally, since
41963         the wctype module should arrange for it.
41964         * lib/regex_internal.h: Likewise.
41965         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
41966         since the wctype module should handle this now.
41967         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
41968         * modules/fnmatch (Depends-on): Add wctype.
41969         * modules/quotearg (Depends-on): Likewise.
41970         * modules/regex (Depends-on): Likewise.
41971
41972 2006-12-19  Bruno Haible  <bruno@clisp.org>
41973
41974         * lib/strdup.h [C++]: Wrap definitions in extern "C".
41975         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
41976
41977 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41978
41979         * modules/savewd (Depends-on): Fix dependency on fcntl.
41980
41981 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41982
41983         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
41984         conforms to C99, rather than relying on the user's environment
41985         setting of STDINT_H.
41986
41987 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41988         and Eric Blake  <ebb9@byu.net>
41989
41990         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
41991         This is more consistent with the other defines here.
41992         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
41993         Port to z/OS.  Problem reported by Paul Gilmartin.
41994         Change local vars to use gl_ prefix rather than ac_.
41995         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
41996         with other defines.
41997         * modules/double-slash-root: New module.
41998         * modules/dirname (Files): Remove m4/double-slash-root.m4.
41999         (Depends-on): Add double-slash-root.
42000         * MODULES.html.sh (File system functions): Mention new module.
42001
42002 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
42003
42004         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
42005         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
42006         This is for the benefit of gzip, which doesn't do i18n.
42007
42008 2006-12-12  Jim Meyering  <jim@meyering.net>
42009
42010         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
42011         Reported by Andreas Schwab <schwab@suse.de>.
42012
42013 2006-12-12  Bruno Haible  <bruno@clisp.org>
42014
42015         Merge these changes.
42016         2006-09-05  Bruno Haible  <bruno@clisp.org>
42017         * lib/iconvme.c (iconv_string): No need to save and restore errno when
42018         iconv_alloc succeeded.
42019         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
42020         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
42021         test for " && dest " at the end - dest is always != NULL there. Call
42022         iconv with 4xNULL arguments initially, to reset the state. Call iconv
42023         with 2xNULL arguments, also to flush the state storage. Handle the
42024         IRIX iconv behaviour. Realloc the final result, to throw away unused
42025         memory.
42026
42027 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
42028
42029         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
42030         and fchmodat unconditionally, since glibc 2.4 has them.
42031         Problem reported by Arkadiusz Miskiewicz.
42032
42033 2006-12-10  Bruno Haible  <bruno@clisp.org>
42034
42035         * gnulib-tool (func_import): Show the include files only for those
42036         modules that are copied and specified.
42037         Reported by Karl Berry.
42038
42039 2006-12-08  Jim Meyering  <jim@meyering.net>
42040
42041         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
42042         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
42043
42044         * build-aux/announce-gen: Add two new options, both optional:
42045         --bootstrap-tools=TOOL_LIST
42046               a comma-separated list of tools, e.g.,
42047               autoconf,automake,bison,gnulib
42048         --gnulib-snapshot-date=DATE
42049               if gnulib is in the bootstrap tool list,
42050               then report this as the snapshot date.
42051               If not specified, use the current date/time.
42052               If you specify a date here, be sure it's UTC.
42053
42054 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42055
42056         * tests/test-argp-2.sh: Fix test to match actual output.
42057         (func_compare): Fix sed script to be portable.
42058
42059 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
42060
42061         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
42062         workaround for this case.  It is not autoconfigured now; offhand
42063         it's hard to see how to autoconfigure it.
42064
42065 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
42066
42067         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
42068         a directory that is about to be chowned.  Such a directory's
42069         initial file permissions should permit the owner only and this
42070         should not be changed until after the chown, since the group and
42071         other bits would be incorrect if they granted permission before
42072         the chown.
42073
42074         Fix porting problem for iswctype reported by Georg Schwarz in:
42075         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
42076         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
42077         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
42078         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
42079         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
42080
42081 2006-12-03  Jim Meyering  <jim@meyering.net>
42082
42083         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
42084         p->fts_statp may not yet be defined.
42085         (fts_read): Instead, set it in the caller, once p->fts_statp is
42086         sure to be defined, and corresponds to a top-level directory.
42087         This bug made du -x fail.  Here's the coreutils test case:
42088         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
42089         Reported by Mike Frysinger.
42090
42091 2006-12-01  Jim Meyering  <jim@meyering.net>
42092
42093         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
42094         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
42095         Reported by Simon Josefsson.
42096
42097 2006-11-30  Jim Meyering  <jim@meyering.net>
42098
42099         * m4/warning.m4: Use the all-permissive copyright notice
42100         recommended by RMS (rather than LGPL).
42101         * m4/vararrays.m4: Likewise.
42102         * m4/flexmember.m4: Likewise.
42103
42104 2006-11-29  Bruno Haible  <bruno@clisp.org>
42105
42106         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
42107         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
42108         using +=.
42109         Reported by Simon Josefsson <simon@josefsson.org>.
42110
42111 2006-11-28  James Youngman <jay@gnu.org>
42112
42113         * README: Advise users that they might find the bug-gnulib@gnu.org
42114         and autotools-announce@gnu.org mailing lists useful.
42115
42116 2006-11-28  Bruno Haible  <bruno@clisp.org>
42117
42118         * m4/ptrdiff_max.m4: Remove file.
42119
42120 2006-11-21  Bruno Haible  <bruno@clisp.org>
42121
42122         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
42123         _AC_COMPUTE_INT.
42124         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
42125         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
42126         _AC_COMPUTE_INT.
42127         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
42128         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
42129         _AC_COMPUTE_INT.
42130         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
42131
42132 2006-11-28  Jim Meyering  <jim@meyering.net>
42133
42134         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
42135         warning from "gcc -Wshadow" about shadowing the builtin.
42136
42137 2006-11-27  Bruno Haible  <bruno@clisp.org>
42138
42139         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
42140         _AC_COMPUTE_INT.
42141         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
42142
42143 2006-11-27  Bruno Haible  <bruno@clisp.org>
42144             Paul Eggert  <eggert@cs.ucla.edu>
42145
42146         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
42147
42148 2006-11-26  Bruno Haible  <bruno@clisp.org>
42149
42150         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
42151         noinst_LTLIBRARIES.
42152
42153 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
42154             Bruno Haible  <bruno@clisp.org>
42155
42156         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
42157         if compiling with "gcc -ansi".
42158
42159 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
42160
42161         Fix some incompatibilities with gcc -ansi -pedantic.
42162         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
42163         if compiling pedantically with GCC, unless it's C99 or later.
42164         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
42165         it mishandles gcc -ansi -pedantic as well.
42166         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
42167         if gcc -pedantic.
42168         * lib/regexec.c (check_node_accept_bytes): Don't use auto
42169         initializers for struct if -pedantic, unless it's C99 or later.
42170
42171 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
42172
42173         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
42174         Don't close an fd more than once. Identical atimes indicate
42175         success, not failure.
42176
42177 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
42178
42179         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
42180
42181 2006-11-23  Jim Meyering  <jim@meyering.net>
42182
42183         * build-aux/announce-gen: New file.  From coreutils.
42184
42185 2006-11-22  Jim Meyering  <jim@meyering.net>
42186
42187         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
42188         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
42189         (fts_read): Use a temporary to narrow the overused st_size member
42190         before using it in a switch statement.  Reported by Matthew Woehlke.
42191
42192         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
42193         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
42194
42195 2006-11-20  Bruno Haible  <bruno@clisp.org>
42196
42197         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
42198         changequote instead of pairs of brackets.
42199         Reported by Andreas Schwab <schwab@suse.de>.
42200
42201 2006-11-21  Jim Meyering  <jim@meyering.net>
42202
42203         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
42204         so as to remain compatible with older compilers.
42205         Patch from Michael Deutschmann.
42206
42207 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
42208
42209         * MODULES.html.sh (File system functions): Add openat.
42210
42211         * lib/openat.h (rpl_fstatat): New macro, if
42212         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
42213         (fstatat): Define to rpl_fstatat under the same conditions,
42214         unless COMPILING_FSTATAT.
42215         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
42216         seems to have the bug.
42217         * lib/fstatat.c: New file.
42218         * modules/openat (Files): Add it.
42219
42220 2006-11-20  Bruno Haible  <bruno@clisp.org>
42221
42222         * Makefile: New file.
42223
42224 2006-11-20  Jim Meyering  <jim@meyering.net>
42225
42226         The beginnings of syntax-related checks for gnulib.
42227         * lib/Makefile: New file.
42228         * lib/t-idcache: New script.  Ensure that the two halves of
42229         idcache.c stay in sync.
42230
42231         * lib/idcache.c: Adjust comments in user- and group- portions to
42232         be more accurate, and to be consistent with one another.
42233
42234 2006-11-20  Jim Meyering  <jim@meyering.net>
42235
42236         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
42237         continue using the flexible array member (thus, this module performs
42238         half as many malloc calls), with the addition that...
42239         (getgroup, getuser): Consistently record a non-match via an empty
42240         "name" string, and map an empty string match to a NULL return value.
42241         * modules/idcache (Depends-on): Re-add flexmember.
42242
42243         * lib/idcache.c (getuser): Remove all uses of the register keyword.
42244         (getuidbyname, getgroup, getgidbyname): Likewise.
42245
42246         Use cleaner syntax: NULL rather than 0.
42247         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
42248
42249 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
42250
42251         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
42252         It mishandled the case where the group was missing.
42253         Problem reported by Greg Schafer.
42254         * modules/idcache: Likewise.
42255
42256 2006-11-18  Jim Meyering  <jim@meyering.net>
42257
42258         * check-module (%exempt_header): Add exception for some
42259         conditionally-included headers.
42260
42261         * modules/i-ring (Depends-on): Add verify.
42262         (License): Change to LGPL.
42263
42264 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
42265
42266         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
42267         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
42268         and inttostr.h.  Use snprintf rather than uinttostr, so that
42269         LGPLed code doesn't depend on GPLed.
42270
42271 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
42272
42273         * modules/inline (License): Change from GPL to LGPL.
42274
42275 2006-11-17  Jim Meyering  <jim@meyering.net>
42276
42277         * modules/d-type (License): Switch to LGPL.
42278
42279 2006-11-15  Bruno Haible  <bruno@clisp.org>
42280
42281         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
42282
42283 2006-11-15  Eric Blake  <ebb9@byu.net>
42284
42285         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
42286         the module dependency.
42287
42288 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
42289             Bruno Haible  <bruno@clisp.org>
42290
42291         * gnulib-tool (func_create_testdir): Add license consistency check.
42292
42293 2006-11-15  Eric Blake  <ebb9@byu.net>
42294
42295         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
42296         random "(cached)" in configure output.
42297
42298 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42299
42300         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
42301         test for conforming inttypes.h is both announced and cached.
42302
42303         * MODULES.html.sh (seen_modules, seen_files): New variables.
42304         (func_module): Rewrite to use a few less gnulib-tool and sed
42305         invocations.  Avoid a couple of quadratic algorithms for ...
42306         (missed_modules, missed_files): ... these, with ...
42307         (func_append, func_tmpdir): ... these new functions, from
42308         gnulib-tool.  Analogously, install traps for cleanup.
42309
42310         * tests/test-gc.c (main): Remove unused variables.
42311         * tests/test-read-file.c: Include stdlib.h, for 'free'.
42312
42313 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
42314
42315         * modules/inttostr (License): Change to LGPL.
42316
42317 2006-11-14  Eric Blake  <ebb9@byu.net>
42318
42319         * modules/tempname (License): Change to LGPL.
42320
42321 2006-11-14  Eric Blake  <ebb9@byu.net>
42322
42323         * doc/functions.texi (Function Portability): *printf functions on
42324         Cygwin now understand all POSIX size specifiers.
42325
42326 2006-11-14  Bruno Haible  <bruno@clisp.org>
42327
42328         * modules/c-ctype (License): Change to LGPL.
42329
42330 2006-11-12  Bruno Haible  <bruno@clisp.org>
42331
42332         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
42333         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
42334         for GNOME libraries, for which the include files are installed in
42335         subdirectories of $prefix/include.
42336
42337 2006-11-12  Bruno Haible  <bruno@clisp.org>
42338
42339         * m4/lib-link.m4: Require at least autoconf-2.54.
42340         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
42341         name to underscores for the --with option.
42342
42343 2006-11-13  Bruno Haible  <bruno@clisp.org>
42344
42345         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
42346         the tests directory.
42347         Reported by Ralf Wildenhues.
42348
42349 2006-11-13  Bruno Haible  <bruno@clisp.org>
42350
42351         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
42352         (func_emit_initmacro_end): Undo the override here.
42353         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
42354         Works around the famous automake error in coreutils.
42355
42356 2006-11-13  Eric Blake  <ebb9@byu.net>
42357
42358         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
42359         element, not its node.
42360
42361 2006-11-12  Bruno Haible  <bruno@clisp.org>
42362
42363         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
42364         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
42365
42366 2006-11-12  Bruno Haible  <bruno@clisp.org>
42367
42368         * gnulib-tool: New option --local-symlink.
42369         (func_usage): Document it.
42370         (lsymbolic): New variable.
42371         (func_import, func_create_testdir): If --symlink was not specified,
42372         test whether --local-symlink was specified and the file comes from
42373         the local_gnulib_dir.
42374
42375 2006-11-12  Bruno Haible  <bruno@clisp.org>
42376
42377         * gnulib-tool (func_ln): New function.
42378         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
42379
42380 2006-11-12  Bruno Haible  <bruno@clisp.org>
42381
42382         Finish support for source files in subdirectories.
42383         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
42384         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
42385         AUTOMAKE_OPTIONS.
42386         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
42387
42388 2006-11-12  Bruno Haible  <bruno@clisp.org>
42389
42390         * gnulib-tool (func_get_automake_snippet): Synthesize also an
42391         EXTRA_lib_SOURCES augmentation.
42392         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
42393
42394 2006-11-12  Jim Meyering  <jim@meyering.net>
42395
42396         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
42397         file descriptors.  This also averts a failure on systems with
42398         native openat support when a traversed directory lacks "x" access.
42399         * lib/fts_.h: Include "i-ring.h"
42400         (struct FTS) [fts_fd_ring]: New member.
42401         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
42402         (FCHDIR): Add parentheses.
42403         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
42404         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
42405         When descending, rather than simply closing the previous
42406         fts_cwd_fd value, push that file descriptor onto the ring.
42407         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
42408         (fts_open): Initialize the new fd_ring member.
42409         (fts_close): Clear the ring.
42410         (fts_safe_changedir): When possible, use our new fd_ring to skip
42411         the diropen and fstat and dev/ino comparison that would normally
42412         accompany a virtual `chdir ("..")'.
42413
42414         * modules/fts (Depends-on): Add i-ring.
42415         * modules/i-ring: New module.
42416         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
42417         * m4/i-ring.m4: New file.
42418
42419 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42420
42421         * gnulib-tool (func_create_testdir): Fix replacement of
42422         `build-aux' in configure.ac.  Run autotools in gltests
42423         subdirectory.
42424         (func_create_testdir, func_create_megatestdir, test): There is
42425         no need for '--force' in most autotool invocations in a new
42426         tree.  Actually fail the whole test if any of the tools, or the
42427         configure or make stages fail.
42428
42429         Sync from Automake.
42430         * build-aux/gnupload: Revert last change.  Add pointer to upload
42431         instructions of the GNU Maintenance Instructions.
42432         Suggestion by Karl Berry.
42433
42434 2006-11-10  Jim Meyering  <jim@meyering.net>
42435
42436         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
42437
42438 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
42439
42440         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
42441         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
42442         (bind_textdomain_codeset) [! ENABLE_NLS]:
42443         Evaluate all the arguments.  That way, callers get compatible behavior
42444         if the arguments have side effects.  Also, it avoids some GCC
42445         diagnostics in some cases; Joel E. Denny reported problems when Bison
42446         was configured with --enable-gcc-warnigs.
42447
42448 2006-11-10  Jim Meyering  <jim@meyering.net>
42449
42450         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
42451         relevant options in CFLAGS (like -O, -fno-inline) are taken into
42452         account.
42453
42454 2006-11-10  Jim Meyering  <jim@meyering.net>
42455
42456         * modules/inline: New file/module.
42457         * modules/xalloc (Files): Remove m4/inline.m4.
42458         (Depends-on): Add inline, instead.
42459         * modules/oset: Likewise.
42460         * modules/list: Likewise.
42461
42462 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
42463
42464         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
42465         Problem reported by Matthew Woehlke.
42466
42467 2006-11-09  Bruno Haible  <bruno@clisp.org>
42468
42469         * lib/tempname.c (gen_tempname): Remove variant that invokes
42470         __gen_tempname.
42471         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
42472         __gen_tempname.
42473
42474 2006-11-08  Bruno Haible  <bruno@clisp.org>
42475
42476         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
42477         to 'yes' instead of 'cross-compiling'.
42478
42479 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
42480
42481         * lib/quotearg.h (quotearg_free): New decl.
42482         * lib/quotearg.c (quotearg_free): New function.
42483         (slot0, nslots, slotvec0, slotvec):
42484         Now file-scope so that quotearg_free can get at them.
42485
42486 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42487
42488         Sync from Automake.
42489         * build-aux/gnupload: Add missing 'gnu' to example URL.
42490         Report by Karl Berry.
42491
42492 2006-11-08  Bruno Haible  <bruno@clisp.org>
42493
42494         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
42495         Suggested by Paul Eggert.
42496
42497 2006-11-08  Jim Meyering  <jim@meyering.net>
42498
42499         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
42500         It's already included if !_LIBC.
42501         (fts_safe_changedir): Add a comment.
42502
42503 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
42504
42505         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
42506         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
42507         Matthew Woehlke.
42508
42509         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
42510         definitions up, to avoid colliding with change below.
42511         (static_inline) [HAVE_INLINE]: New macro.
42512         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
42513         Provide extern decls when !HAVE_INLINE.  Do not define unless
42514         static_inline is defined, either by us or by xmalloc.c.  Use
42515         static_inline rather than static inline.
42516         (XCALLOC): Optimize sizeof(T) = 1 case.
42517         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
42518
42519 2006-11-07  Bruno Haible  <bruno@clisp.org>
42520
42521         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
42522         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
42523         AC_C_INLINE.
42524         * modules/xalloc (Files): Add m4/inline.m4.
42525
42526 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42527
42528         * README: Fix typo.
42529         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
42530         (Miscellanous Notes): ...from this.
42531
42532 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
42533
42534         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
42535         Mention that offsetof should be used instead of sizeof.
42536         From Bruno Haible.
42537
42538 2006-11-07  Bruno Haible  <bruno@clisp.org>
42539
42540         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
42541
42542 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
42543
42544         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
42545         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
42546         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
42547         (gl_tree_add_before, gl_tree_add_after):
42548         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
42549         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
42550         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
42551         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
42552         (gl_linked_add_after, gl_linked_add_at): Likewise.
42553         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
42554         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
42555         (gl_tree_add_before, gl_tree_add_after): Likewise.
42556         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
42557         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
42558         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
42559
42560 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42561
42562         * lib/gl_oset.h: Use C comment style, not C++ comment style.
42563
42564 2006-11-06  Bruno Haible  <bruno@clisp.org>
42565
42566         * m4/inline.m4: New file.
42567         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
42568         * modules/list (Files): Add m4/inline.m4.
42569         * modules/oset (Files): Likewise.
42570
42571 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
42572
42573         * lib/idcache.c: Include <stddef.h>, for offsetof.
42574         (struct userid.name): Change from char * to a flexible array member.
42575         All uses changed.
42576         * modules/idcache (Depends-on): Add flexmember.
42577
42578         * MODULES.html.sh (Core language properties): New module flexmember.
42579         * modules/flexmember, m4/flexmember.m4: New files.
42580
42581         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
42582         inline functions that are identical with the old xnmalloc_inline,
42583         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
42584         that we can avoid some unnecessary integer multiplications and
42585         divisions in the common case where the element size is known at
42586         compile time.
42587         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
42588         needed.
42589         (xnboundedmalloc): Remove.
42590         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
42591         arguments, for consistency with rest of this header.
42592         (xcharalloc): Rewrite using XNMALLOC.
42593         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
42594         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
42595         versions have been moved to lib/xalloc.h and renamed to be the
42596         non-*_inline versions.
42597         (xmalloc, xrealloc): Implement without reference to the xnmalloc
42598         and xnrealloc functions, since those functions are now inline and
42599         now call us.
42600         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
42601         renaming described above.
42602         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
42603         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
42604         captures the dependency in AC_C_INLINE.
42605
42606         New module canonicalize-lgpl, proposed by Charles Wilson in
42607         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
42608         with a few small changes afterwards.
42609         * MODULES.html.sh (File system functions): New module
42610         canonicalize-lgpl.
42611         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
42612         and canonicalize_file_name.
42613         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
42614         * modules/canonicalize-lgpl: New files.
42615
42616 2006-11-05  Bruno Haible  <bruno@clisp.org>
42617
42618         * gnulib-tool (func_import, func_create_testdir): Create directories
42619         also for files in subdirectories of lib/.
42620
42621 2006-11-05  Bruno Haible  <bruno@clisp.org>
42622
42623         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
42624         ANSI C compliant.
42625
42626 2006-11-03  Bruno Haible  <bruno@clisp.org>
42627
42628         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
42629         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
42630         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
42631         (xnboundedmalloc): New inline function.
42632         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
42633         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
42634         xmalloc.
42635         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
42636         xmalloc.
42637         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
42638         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
42639         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
42640         xmalloc.
42641         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
42642         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
42643         xmalloc.
42644         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
42645         gl_tree_add_after): Use XMALLOC instead of xmalloc.
42646         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
42647         xmalloc.
42648         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
42649         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
42650         gl_tree_add_after): Use XMALLOC instead of xmalloc.
42651         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
42652         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
42653         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
42654         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
42655
42656 2006-11-03  Bruno Haible  <bruno@clisp.org>
42657
42658         * lib/c-ctype.h [C++]: Define functions without name mangling.
42659         * lib/fwriteerror.h [C++]: Likewise.
42660         * lib/gcd.h [C++]: Likewise.
42661         * lib/linebreak.h [C++]: Likewise.
42662
42663 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
42664
42665         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
42666         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
42667         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
42668         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
42669         Check for functions and headers just once.
42670         Check for declaration of canonicalize_file_name.
42671         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
42672
42673 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
42674
42675         * gnulib-tool (func_import): Fix typo in actioncmd.
42676
42677 2006-11-02  Bruno Haible  <bruno@clisp.org>
42678
42679         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
42680         newline sequence in the Makefile.am snippet as a space, like "make"
42681         does.
42682         Reported by Roger Persson <perrog@gmail.com>.
42683
42684 2006-11-01  Bruno Haible  <bruno@clisp.org>
42685
42686         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
42687         already declared in <string.h>.
42688         * lib/strcase.h (strncasecmp): Don't declare it if yes.
42689
42690 2006-11-01  Bruno Haible  <bruno@clisp.org>
42691
42692         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
42693         * lib/strcase.h: Include <string.h>.
42694         (strcasecmp): Define to rpl_strcasecmp here.
42695
42696 2006-11-01  Bruno Haible  <bruno@clisp.org>
42697
42698         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
42699
42700 2006-11-01  Eric Blake  <ebb9@byu.net>
42701
42702         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
42703
42704         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
42705
42706 2006-10-29  Bruno Haible  <bruno@clisp.org>
42707
42708         Make it compile in C++ mode.
42709         * lib/full-write.c (full_rw): Add a cast.
42710
42711 2006-11-01  Bruno Haible  <bruno@clisp.org>
42712
42713         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
42714         be POSIX compliant.
42715         Reported by Roger Persson <perrog@gmail.com>.
42716
42717 2006-11-01  Eric Blake  <ebb9@byu.net>
42718
42719         * lib/getopt_.h: Fix comments.
42720
42721 2006-10-31  Eric Blake  <ebb9@byu.net>
42722
42723         * modules/tmpdir (Depends-on): Add sys_stat.
42724         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
42725         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
42726         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
42727         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
42728         tempname.
42729
42730 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
42731
42732         Avoid some C++ diagnostics reported by Bruno Haible.
42733         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
42734         xmalloc.
42735         (quotearg_alloc): Use xcharalloc rather than xmalloc.
42736         (struct slotvec): Move to top level.
42737         (quotearg_n_options): Rewrite to avoid xmalloc.
42738         * lib/xalloc.h (xcharalloc): New function.
42739         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
42740         [defined __cplusplus]: Add function template that provides result
42741         type propagation.  This part of the change is from Bruno Haible.
42742
42743 2006-10-29  Bruno Haible  <bruno@clisp.org>
42744
42745         Make it compile in C++ mode.
42746         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
42747         * lib/strnlen1.c (strnlen1): Cast memchr result.
42748         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
42749         * lib/clean-temp.c (string_equals, string_hash): Add casts.
42750         (create_temp_dir): Rename local variable 'template'.
42751         (compile_csharp_using_sscli): Add cast.
42752         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
42753         * lib/findprog.c (find_in_path): Likewise.
42754         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
42755         * lib/wait-process.c (register_slave_subprocess): Likewise.
42756
42757 2006-10-22  Bruno Haible  <bruno@clisp.org>
42758
42759         * modules/tsearch: New file.
42760         * lib/tsearch.h: New file.
42761         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
42762         * m4/tsearch.m4: New file.
42763         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
42764
42765 2006-10-29  Eric Blake  <ebb9@byu.net>
42766
42767         * lib/arcfour.c: Assume config.h.
42768         * lib/arctwo.c: Likewise.
42769         * lib/base64.c: Likewise.
42770         * lib/check-version.c: Likewise.
42771         * lib/crc.c: Likewise.
42772         * lib/des.c: Likewise.
42773         * lib/gc-gnulib.c: Likewise.
42774         * lib/gc-libgcrypt.c: Likewise.
42775         * lib/gc-pbkdf2-sha1.c: Likewise.
42776         * lib/getaddrinfo.c: Likewise.
42777         * lib/getdelim.c: Likewise.
42778         * lib/getline.c: Likewise.
42779         * lib/hmac-md5.c: Likewise.
42780         * lib/hmac-sha1.c: Likewise.
42781         * lib/iconvme.c: Likewise.
42782         * lib/md2.c: Likewise.
42783         * lib/md4.c: Likewise.
42784         * lib/memxor.c: Likewise.
42785         * lib/read-file.c: Likewise.
42786         * lib/readline.c: Likewise.
42787         * lib/rijndael-alg-fst.c: Likewise.
42788         * lib/rijndael-api-fst.c: Likewise.
42789         * lib/xgetdomainname.c: Likewise.
42790
42791 2006-10-28  Eric Blake  <ebb9@byu.net>
42792
42793         * lib/xstrndup.c: Assume config.h.
42794
42795 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42796
42797         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
42798         stat-macros.h is now for our own macros, whereas stat_h is for
42799         macros in the <sys/stat.h> name space.
42800         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
42801         (STAT_MACROS_H): Remove.
42802         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
42803         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
42804         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
42805         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
42806         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
42807         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
42808         Move these macros to ...
42809         * lib/stat_.h: here.  Don't include stat-macros.h.
42810         * lib/canonicalize.c: Don't include stat-macros.h.
42811         * lib/chown.c: Likewise.
42812         * lib/euidaccess.c: Likewise.
42813         * lib/file-type.c: Likewise.
42814         * lib/filemode.c: Likewise.
42815         * lib/glob.c: Likewise.
42816         * lib/isapipe.c: Likewise.
42817         * lib/lchown.c: Likewise.
42818         * lib/lstat.c: Likewise.
42819         * lib/mkdir-p.c: Likewise.
42820         * lib/rmdir.c: Likewise.
42821         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
42822         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
42823         unless mkdir isn't declared, to speed up 'configure'.
42824         Always create sys/stat.h, since it's unlikely any real sys/stat.h
42825         would define all the S_* symbols.
42826         * modules/canonicalize (Depends-on):
42827         Depend on sys_stat, not stat-macros.
42828         * modules/chown: Likewise.
42829         * modules/euidaccess: Likewise.
42830         * modules/filemode: Likewise.
42831         * modules/file-type: Likewise.
42832         * modules/glob: Likewise.
42833         * modules/isapipe: Likewise.
42834         * modules/lchown: Likewise.
42835         * modules/lstat: Likewise.
42836         * modules/mkancesdirs: Likewise.
42837         * modules/rmdir: Likewise.
42838         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
42839         * modules/modechange: Likewise.
42840         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
42841         (configure.ac): Remove gl_STAT_MACROS.
42842         * modules/sys_stat (Depends-on): Remove stat-macros.
42843
42844 2006-10-27  Bruno Haible  <bruno@clisp.org>
42845
42846         * m4/signed.m4: Remove file.
42847         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
42848         invocation.
42849         * modules/vasnprintf (Files): Remove m4/signed.m4.
42850
42851 2006-10-27  Bruno Haible  <bruno@clisp.org>
42852
42853         Update to GNU gettext 0.16.
42854         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
42855         m4/inttypes-h.m4, m4/signed.m4.
42856         * m4/gettext.m4: Update to GNU gettext 0.16.
42857         * m4/intl.m4: New file, from GNU gettext.
42858         * m4/intldir.m4: New file, from GNU gettext.
42859         * config/srclist.txt: Update
42860
42861 2006-10-27  Eric Blake  <ebb9@byu.net>
42862
42863         * MODULES.html.sh: Document tempname.
42864         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
42865         dependencies.
42866         (Files): Move lib/tempname.c...
42867         * modules/tempname: ...to this new module.
42868         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
42869         (gl_PREREQ_TEMPNAME): Move...
42870         * m4/tempname.m4: ...to this new file.
42871         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
42872         * modules/sys_stat (Depends-on): Add stat-macros.
42873         * lib/stat_.h (includes): Pick up stat macros.
42874         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
42875         if stat macros are broken.
42876         * lib/tempname.c (includes): No need to include "stat-macros.h".
42877         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
42878         (direxists, __path_search) [!_LIBC]: Don't compile these in
42879         gnulib; the tmpdir module covers that.
42880         * lib/tempname.h: New file.
42881
42882 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
42883
42884         * COPYING: Explain how gnulib-tool converts licence headers.
42885         Almost all wording by Eric Blake.
42886
42887 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
42888
42889         * lib/mbchar.h (is_basic_table): Make read-only.
42890         * lib/mbchar.c (is_basic_table): Likewise.
42891         Reported by John Darrington.
42892
42893 2006-10-25  Bruno Haible  <bruno@clisp.org>
42894
42895         * lib/progname.h (set_program_name): Undefine before defining.
42896
42897 2006-10-25  Bruno Haible  <bruno@clisp.org>
42898
42899         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
42900         false for non-gcc C++ compilers.
42901         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
42902
42903 2006-10-24  Bruno Haible  <bruno@clisp.org>
42904
42905         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
42906         iconv implementations like Irix iconv.
42907
42908 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42909
42910         * modules/vararrays: New file.
42911         * m4/vararrays.m4: New file, taken from diffutils.
42912         * MODULES.html.sh: New module vararrays.
42913
42914 2006-10-24  Karl Berry  <karl@gnu.org>
42915
42916         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
42917         Don't call GNU Unix.
42918
42919 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42920
42921         * users.txt: Add Libtool.
42922
42923         Sync from Libtool:
42924
42925         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42926
42927         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
42928         to gnulib's policy of including config.h unconditionally.
42929
42930 2006-10-24  Bruno Haible  <bruno@clisp.org>
42931
42932         * modules/wcwidth (Files): Add m4/wint_t.m4.
42933         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
42934         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
42935
42936 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42937
42938         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
42939         to pacify GCC with some -W flags enabled.  Problem reported by
42940         Bruno Haible.
42941
42942 2006-10-24  Jim Meyering  <jim@meyering.net>
42943
42944         * MODULES.html.sh: Remove uinttostr.  It's not a module.
42945         Reported by Karl Berry.
42946
42947 2006-10-23  Bruno Haible  <bruno@clisp.org>
42948
42949         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
42950
42951 2006-10-24  Bruno Haible  <bruno@clisp.org>
42952
42953         * lib/gl_list.h: Use C comment style, not C++ comment style.
42954
42955 2006-10-23  Eric Blake  <ebb9@byu.net>
42956
42957         * lib/getaddrinfo.c (includes): Add missing include.
42958
42959 2006-10-23  Bruno Haible  <bruno@clisp.org>
42960             Paul Eggert  <eggert@cs.ucla.edu>
42961
42962         Ability to rename obstack_free.
42963         * lib/obstack.h (__obstack_free): New macro. Declare instead of
42964         obstack_free.
42965         (obstack_free): Invoke the __obstack_free macro.
42966         * lib/obstack.c (obstack_free): Use __obstack_free macro.
42967
42968 2006-10-23  Bruno Haible  <bruno@clisp.org>
42969             Paul Eggert  <eggert@cs.ucla.edu>
42970
42971         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
42972         __argc, __argv from the declaration. (They are defined as macros on
42973         mingw.)
42974
42975 2006-10-22  Bruno Haible  <bruno@clisp.org>
42976
42977         * doc/gnulib-intro.texi: New file.
42978         * doc/gnulib.texi: Include it.
42979
42980 2006-10-21  Bruno Haible  <bruno@clisp.org>
42981
42982         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
42983         "Introduction", "Miscellanous Notes", "Particular Modules".
42984
42985 2006-10-21  Bruno Haible  <bruno@clisp.org>
42986
42987         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42988         Change mostlyclean-local rule to avoid sh syntax error from bash
42989         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
42990
42991 2006-10-23  Jim Meyering  <jim@meyering.net>
42992
42993         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
42994         in place of snprintf.
42995
42996         * modules/inttostr (Files): Add lib/uinttostr.c.
42997         * lib/uinttostr.c (inttostr): New file/function.
42998         * lib/inttostr.h (uinttostr): Declare.
42999         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
43000         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
43001         Add uinttostr.
43002         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
43003
43004 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
43005
43006         * lib/canonicalize.c (ELOOP): Define if not already defined.
43007         Problem reported by Bruno Haible in
43008         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
43009
43010 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
43011
43012         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
43013         Problem reported by Perry Smith and Ville Laurikari.
43014
43015         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
43016         uses.
43017
43018 2006-10-19  Bruno Haible  <bruno@clisp.org>
43019
43020         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
43021         for mingw.
43022
43023 2006-10-19  Bruno Haible  <bruno@clisp.org>
43024
43025         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
43026         Needed for mingw.
43027
43028 2006-10-19  Bruno Haible  <bruno@clisp.org>
43029
43030         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
43031
43032 2006-10-19  Bruno Haible  <bruno@clisp.org>
43033
43034         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
43035         it.
43036
43037 2006-10-19  Bruno Haible  <bruno@clisp.org>
43038
43039         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
43040         invocation.
43041
43042 2006-10-19  Bruno Haible  <bruno@clisp.org>
43043
43044         * gnulib-tool (func_create_testdir): Don't include ftruncate and
43045         mountlist by default.
43046
43047 2006-10-16  Bruno Haible  <bruno@clisp.org>
43048
43049         * lib/c-strstr.c: Include c-strstr.h.
43050
43051 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
43052
43053         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
43054         in a slash.
43055
43056 2006-10-18  Bruno Haible  <bruno@clisp.org>
43057
43058         * lib/lock.h [C++]: Wrap definitions in extern "C".
43059
43060 2006-10-18  Bruno Haible  <bruno@clisp.org>
43061
43062         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
43063         gl_LIBOBJS list.
43064
43065 2006-10-18  Bruno Haible  <bruno@clisp.org>
43066
43067         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
43068
43069 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
43070
43071         * lib/xstrtol.h: Include gettext.h.
43072         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
43073         Problem reported by Eric Blake.
43074         * modules/xstrtol (Depends-on): Add gettext-h.
43075
43076 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
43077
43078         * lib/strftime.c (advance): New macro.
43079         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
43080         incomplete type, so you can't add 0 to it.  Problem and patch
43081         reported by Eelco Dolstra for dietlibc.
43082
43083 2006-10-18  Jim Meyering  <jim@meyering.net>
43084
43085         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
43086         type for a local, and rename it: s/up/user_proc/.
43087
43088 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
43089
43090         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
43091         READ_UTMP_USER_PROCESS.
43092         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
43093
43094 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
43095
43096         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
43097         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
43098
43099 2006-10-17  Eric Blake  <ebb9@byu.net>
43100
43101         * lib/sigprocmask.c (sigprocmask): Fix typo.
43102
43103         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
43104
43105         * modules/clean-temp (Makefile.am): Don't add to make output...
43106         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
43107         config.h.
43108
43109 2006-10-17  Bruno Haible  <bruno@clisp.org>
43110
43111         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
43112         differently if DEFAULT_TEXT_DOMAIN is set.
43113
43114 2006-10-16  Bruno Haible  <bruno@clisp.org>
43115
43116         * lib/clean-temp.c: Include fwriteerror.h.
43117
43118 2006-10-16  Bruno Haible  <bruno@clisp.org>
43119
43120         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
43121
43122 2006-10-16  Bruno Haible  <bruno@clisp.org>
43123
43124         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
43125         * lib/sigprocmask.h: Include <sys/types.h>.
43126         (sigset_t): Use the system's definition if present.
43127
43128 2006-10-17  Eric Blake  <ebb9@byu.net>
43129
43130         * lib/xvasprintf.c (includes): Assume config.h.
43131         * lib/xasprintf.c (includes): Likewise.
43132
43133 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
43134
43135         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
43136         at least as wide as intmax_t.
43137
43138 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
43139
43140         (Imported from Automake.)
43141         * build-aux/gnupload: Update to version 1.1 of directive file.
43142
43143 2006-10-16  Eric Blake  <ebb9@byu.net>
43144
43145         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
43146         match Automake 1.10a.
43147
43148 2006-10-14  Bruno Haible  <bruno@clisp.org>
43149
43150         * modules/sigprocmask: New file.
43151         * lib/sigprocmask.h: New file.
43152         * lib/sigprocmask.c: New file.
43153         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
43154         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
43155         request sigprocmask.o.
43156         (gl_PREREQ_SIGPROCMASK): New macro.
43157         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
43158         (Depends-on): Add sigprocmask.
43159         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
43160         gt_SIGNALBLOCKING. Test for 'raise' only once.
43161         * lib/fatal-signal.c: Include sigprocmask.h.
43162         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
43163         unblock_fatal_signals): Define always.
43164         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
43165         sigprocmask.
43166
43167 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
43168
43169         Sync from Automake.
43170         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
43171         which incorrectly sets the mode of an existing destination
43172         directory.  In some cases the unpatched install-sh could do the
43173         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
43174         system.  We hope this is rare in practice, but it's clearly worth
43175         fixing.  Problem reported by Alex Unleashed in
43176         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
43177         Also, don't bother to check for -m bugs unless we're using -m;
43178         suggested by Stepan Kasal.
43179
43180 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43181
43182         Sync from Automake.
43183         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
43184         `-c' flag, so they appear at the same position as in %FASTDEP%
43185         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
43186         which ignores unknown options only after the first non-option.
43187         Bug report against M4 by Nelson H. F. Beebe.
43188
43189 2006-10-13  Jim Meyering  <jim@meyering.net>
43190
43191         Fix a bug in yesterday's change.
43192         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
43193         p->fts_statp->st_dev would be used uninitialized.
43194         Ensures that we always call fts_stat on the very first entry.
43195         Miklos Szeredi reported that find -xdev stopped working.
43196
43197 2006-10-12  Bruno Haible  <bruno@clisp.org>
43198
43199         * gnulib-tool (func_get_automake_snippet): Append an automatically
43200         computed EXTRA_DIST augmentation.
43201         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
43202         * modules/alloca-opt (Makefile.am): Likewise.
43203         * modules/allocsa (Makefile.am): Likewise.
43204         * modules/arcfour (Makefile.am): Likewise.
43205         * modules/arctwo (Makefile.am): Likewise.
43206         * modules/argmatch (Makefile.am): Likewise.
43207         * modules/argz (Makefile.am): Likewise.
43208         * modules/atexit (Makefile.am): Likewise.
43209         * modules/backupfile (Makefile.am): Likewise.
43210         * modules/byteswap (Makefile.am): Likewise.
43211         * modules/c-strtod (Makefile.am): Likewise.
43212         * modules/c-strtold (Makefile.am): Likewise.
43213         * modules/calloc (Makefile.am): Likewise.
43214         * modules/canon-host (Makefile.am): Likewise.
43215         * modules/canonicalize (Makefile.am): Likewise.
43216         * modules/chdir-long (Makefile.am): Likewise.
43217         * modules/chdir-safer (Makefile.am): Likewise.
43218         * modules/check-version (Makefile.am): Likewise.
43219         * modules/chown (Makefile.am): Likewise.
43220         * modules/cloexec (Makefile.am): Likewise.
43221         * modules/close-stream (Makefile.am): Likewise.
43222         * modules/closeout (Makefile.am): Likewise.
43223         * modules/crc (Makefile.am): Likewise.
43224         * modules/csharpexec (Makefile.am): Likewise.
43225         * modules/cycle-check (Makefile.am): Likewise.
43226         * modules/des (Makefile.am): Likewise.
43227         * modules/dev-ino (Makefile.am): Likewise.
43228         * modules/dirfd (Makefile.am): Likewise.
43229         * modules/dirname (Makefile.am): Likewise.
43230         * modules/dup2 (Makefile.am): Likewise.
43231         * modules/eealloc (Makefile.am): Likewise.
43232         * modules/error (Makefile.am): Likewise.
43233         * modules/euidaccess (Makefile.am): Likewise.
43234         * modules/exclude (Makefile.am): Likewise.
43235         * modules/exitfail (Makefile.am): Likewise.
43236         * modules/fcntl-safer (Makefile.am): Likewise.
43237         * modules/fcntl (Makefile.am): Likewise.
43238         * modules/file-type (Makefile.am): Likewise.
43239         * modules/fileblocks (Makefile.am): Likewise.
43240         * modules/filemode (Makefile.am): Likewise.
43241         * modules/filenamecat (Makefile.am): Likewise.
43242         * modules/fnmatch (Makefile.am): Likewise.
43243         * modules/fopen-safer (Makefile.am): Likewise.
43244         * modules/fpending (Makefile.am): Likewise.
43245         * modules/fprintftime (Makefile.am): Likewise.
43246         * modules/free (Makefile.am): Likewise.
43247         * modules/fsusage (Makefile.am): Likewise.
43248         * modules/ftruncate (Makefile.am): Likewise.
43249         * modules/fts (Makefile.am): Likewise.
43250         * modules/gc-arcfour (Makefile.am): Likewise.
43251         * modules/gc-des (Makefile.am): Likewise.
43252         * modules/gc-hmac-md5 (Makefile.am): Likewise.
43253         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
43254         * modules/gc-md4 (Makefile.am): Likewise.
43255         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
43256         * modules/gc-sha1 (Makefile.am): Likewise.
43257         * modules/gc (Makefile.am): Likewise.
43258         * modules/getaddrinfo (Makefile.am): Likewise.
43259         * modules/getcwd (Makefile.am): Likewise.
43260         * modules/getdelim (Makefile.am): Likewise.
43261         * modules/getdomainname (Makefile.am): Likewise.
43262         * modules/getgroups (Makefile.am): Likewise.
43263         * modules/gethostname (Makefile.am): Likewise.
43264         * modules/gethrxtime (Makefile.am): Likewise.
43265         * modules/getline (Makefile.am): Likewise.
43266         * modules/getloadavg (Makefile.am): Likewise.
43267         * modules/getlogin_r (Makefile.am): Likewise.
43268         * modules/getndelim2 (Makefile.am): Likewise.
43269         * modules/getopt (Makefile.am): Likewise.
43270         * modules/getpagesize (Makefile.am): Likewise.
43271         * modules/getpass-gnu (Makefile.am): Likewise.
43272         * modules/getpass (Makefile.am): Likewise.
43273         * modules/getsubopt (Makefile.am): Likewise.
43274         * modules/gettime (Makefile.am): Likewise.
43275         * modules/gettimeofday (Makefile.am): Likewise.
43276         * modules/getugroups (Makefile.am): Likewise.
43277         * modules/getusershell (Makefile.am): Likewise.
43278         * modules/glob (Makefile.am): Likewise.
43279         * modules/group-member (Makefile.am): Likewise.
43280         * modules/hard-locale (Makefile.am): Likewise.
43281         * modules/hash (Makefile.am): Likewise.
43282         * modules/hmac-md5 (Makefile.am): Likewise.
43283         * modules/hmac-sha1 (Makefile.am): Likewise.
43284         * modules/human (Makefile.am): Likewise.
43285         * modules/idcache (Makefile.am): Likewise.
43286         * modules/imaxabs (Makefile.am): Likewise.
43287         * modules/imaxdiv (Makefile.am): Likewise.
43288         * modules/inet_ntop (Makefile.am): Likewise.
43289         * modules/inet_pton (Makefile.am): Likewise.
43290         * modules/intprops (Makefile.am): Likewise.
43291         * modules/inttostr (Makefile.am): Likewise.
43292         * modules/inttypes (Makefile.am): Likewise.
43293         * modules/isapipe (Makefile.am): Likewise.
43294         * modules/javaversion (Makefile.am): Likewise.
43295         * modules/lchmod (Makefile.am): Likewise.
43296         * modules/lchown (Makefile.am): Likewise.
43297         * modules/localcharset (Makefile.am): Likewise.
43298         * modules/long-options (Makefile.am): Likewise.
43299         * modules/lstat (Makefile.am): Likewise.
43300         * modules/malloc (Makefile.am): Likewise.
43301         * modules/mathl (Makefile.am): Likewise.
43302         * modules/mbchar (Makefile.am): Likewise.
43303         * modules/md2 (Makefile.am): Likewise.
43304         * modules/md4 (Makefile.am): Likewise.
43305         * modules/md5 (Makefile.am): Likewise.
43306         * modules/memcasecmp (Makefile.am): Likewise.
43307         * modules/memchr (Makefile.am): Likewise.
43308         * modules/memcmp (Makefile.am): Likewise.
43309         * modules/memcoll (Makefile.am): Likewise.
43310         * modules/memcpy (Makefile.am): Likewise.
43311         * modules/memmem (Makefile.am): Likewise.
43312         * modules/memmove (Makefile.am): Likewise.
43313         * modules/mempcpy (Makefile.am): Likewise.
43314         * modules/memrchr (Makefile.am): Likewise.
43315         * modules/memset (Makefile.am): Likewise.
43316         * modules/memxor (Makefile.am): Likewise.
43317         * modules/mkancesdirs (Makefile.am): Likewise.
43318         * modules/mkdir-p (Makefile.am): Likewise.
43319         * modules/mkdir (Makefile.am): Likewise.
43320         * modules/mkdtemp (Makefile.am): Likewise.
43321         * modules/mkstemp (Makefile.am): Likewise.
43322         * modules/mktime (Makefile.am): Likewise.
43323         * modules/modechange (Makefile.am): Likewise.
43324         * modules/mountlist (Makefile.am): Likewise.
43325         * modules/nanosleep (Makefile.am): Likewise.
43326         * modules/obstack (Makefile.am): Likewise.
43327         * modules/openat (Makefile.am): Likewise.
43328         * modules/pagealign_alloc (Makefile.am): Likewise.
43329         * modules/pathmax (Makefile.am): Likewise.
43330         * modules/physmem (Makefile.am): Likewise.
43331         * modules/poll (Makefile.am): Likewise.
43332         * modules/posixtm (Makefile.am): Likewise.
43333         * modules/posixver (Makefile.am): Likewise.
43334         * modules/putenv (Makefile.am): Likewise.
43335         * modules/quote (Makefile.am): Likewise.
43336         * modules/quotearg (Makefile.am): Likewise.
43337         * modules/raise (Makefile.am): Likewise.
43338         * modules/read-file (Makefile.am): Likewise.
43339         * modules/readline (Makefile.am): Likewise.
43340         * modules/readlink (Makefile.am): Likewise.
43341         * modules/readtokens (Makefile.am): Likewise.
43342         * modules/readutmp (Makefile.am): Likewise.
43343         * modules/realloc (Makefile.am): Likewise.
43344         * modules/regex (Makefile.am): Likewise.
43345         * modules/rename-dest-slash (Makefile.am): Likewise.
43346         * modules/rename (Makefile.am): Likewise.
43347         * modules/rijndael (Makefile.am): Likewise.
43348         * modules/rmdir (Makefile.am): Likewise.
43349         * modules/rpmatch (Makefile.am): Likewise.
43350         * modules/safe-read (Makefile.am): Likewise.
43351         * modules/safe-write (Makefile.am): Likewise.
43352         * modules/same-inode (Makefile.am): Likewise.
43353         * modules/same (Makefile.am): Likewise.
43354         * modules/save-cwd (Makefile.am): Likewise.
43355         * modules/savedir (Makefile.am): Likewise.
43356         * modules/setenv (Makefile.am): Likewise.
43357         * modules/settime (Makefile.am): Likewise.
43358         * modules/sha1 (Makefile.am): Likewise.
43359         * modules/sig2str (Makefile.am): Likewise.
43360         * modules/snprintf (Makefile.am): Likewise.
43361         * modules/stat-macros (Makefile.am): Likewise.
43362         * modules/stat-time (Makefile.am): Likewise.
43363         * modules/stdbool (Makefile.am): Likewise.
43364         * modules/stdint (Makefile.am): Likewise.
43365         * modules/stdlib-safer (Makefile.am): Likewise.
43366         * modules/stpcpy (Makefile.am): Likewise.
43367         * modules/stpncpy (Makefile.am): Likewise.
43368         * modules/strcase (Makefile.am): Likewise.
43369         * modules/strcasestr (Makefile.am): Likewise.
43370         * modules/strchrnul (Makefile.am): Likewise.
43371         * modules/strcspn (Makefile.am): Likewise.
43372         * modules/strdup (Makefile.am): Likewise.
43373         * modules/strerror (Makefile.am): Likewise.
43374         * modules/strftime (Makefile.am): Likewise.
43375         * modules/strndup (Makefile.am): Likewise.
43376         * modules/strnlen (Makefile.am): Likewise.
43377         * modules/strpbrk (Makefile.am): Likewise.
43378         * modules/strsep (Makefile.am): Likewise.
43379         * modules/strstr (Makefile.am): Likewise.
43380         * modules/strtod (Makefile.am): Likewise.
43381         * modules/strtoimax (Makefile.am): Likewise.
43382         * modules/strtok_r (Makefile.am): Likewise.
43383         * modules/strtol (Makefile.am): Likewise.
43384         * modules/strtoll (Makefile.am): Likewise.
43385         * modules/strtoul (Makefile.am): Likewise.
43386         * modules/strtoull (Makefile.am): Likewise.
43387         * modules/strtoumax (Makefile.am): Likewise.
43388         * modules/strverscmp (Makefile.am): Likewise.
43389         * modules/sys_socket (Makefile.am): Likewise.
43390         * modules/sys_stat (Makefile.am): Likewise.
43391         * modules/sysexits (Makefile.am): Likewise.
43392         * modules/time_r (Makefile.am): Likewise.
43393         * modules/timegm (Makefile.am): Likewise.
43394         * modules/timespec (Makefile.am): Likewise.
43395         * modules/tmpfile-safer (Makefile.am): Likewise.
43396         * modules/trim (Makefile.am): Likewise.
43397         * modules/unistd-safer (Makefile.am): Likewise.
43398         * modules/unlinkdir (Makefile.am): Likewise.
43399         * modules/unlocked-io (Makefile.am): Likewise.
43400         * modules/userspec (Makefile.am): Likewise.
43401         * modules/utime (Makefile.am): Likewise.
43402         * modules/utimecmp (Makefile.am): Likewise.
43403         * modules/utimens (Makefile.am): Likewise.
43404         * modules/vasnprintf (Makefile.am): Likewise.
43405         * modules/vasprintf (Makefile.am): Likewise.
43406         * modules/vsnprintf (Makefile.am): Likewise.
43407         * modules/xalloc (Makefile.am): Likewise.
43408         * modules/xgetcwd (Makefile.am): Likewise.
43409         * modules/xnanosleep (Makefile.am): Likewise.
43410         * modules/xreadlink (Makefile.am): Likewise.
43411         * modules/xstrtod (Makefile.am): Likewise.
43412         * modules/xstrtol (Makefile.am): Likewise.
43413         * modules/xstrtold (Makefile.am): Likewise.
43414         * modules/yesno (Makefile.am): Likewise.
43415         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
43416
43417 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
43418
43419         * modules/error (Makefile.am): Distribute files through
43420         EXTRA_DIST, not lib_SOURCES.
43421
43422 2006-10-12  Eric Blake  <ebb9@byu.net>
43423
43424         * modules/error (Makefile.am): Distribute files in /lib.
43425         * modules/obstack (Makefile.am): Likewise.
43426
43427 2006-10-12  Bruno Haible  <bruno@clisp.org>
43428
43429         * modules/acl (Makefile.am): Distribute all files in lib/ through
43430         EXTRA_DIST.
43431         * modules/arcfour (Makefile.am): Likewise.
43432         * modules/arctwo (Makefile.am): Likewise.
43433         * modules/argmatch (Makefile.am): Likewise.
43434         * modules/argz (Makefile.am): Likewise.
43435         * modules/atexit (Makefile.am): Likewise.
43436         * modules/backupfile (Makefile.am): Likewise.
43437         * modules/c-strtod (Makefile.am): Likewise.
43438         * modules/c-strtold (Makefile.am): Likewise.
43439         * modules/calloc (Makefile.am): Likewise.
43440         * modules/canon-host (Makefile.am): Likewise.
43441         * modules/canonicalize (Makefile.am): Likewise.
43442         * modules/chdir-long (Makefile.am): Likewise.
43443         * modules/chdir-safer (Makefile.am): Likewise.
43444         * modules/check-version (Makefile.am): Likewise.
43445         * modules/chown (Makefile.am): Likewise.
43446         * modules/cloexec (Makefile.am): Likewise.
43447         * modules/close-stream (Makefile.am): Likewise.
43448         * modules/closeout (Makefile.am): Likewise.
43449         * modules/crc (Makefile.am): Likewise.
43450         * modules/cycle-check (Makefile.am): Likewise.
43451         * modules/des (Makefile.am): Likewise.
43452         * modules/dirfd (Makefile.am): Likewise.
43453         * modules/dirname (Makefile.am): Likewise.
43454         * modules/dup2 (Makefile.am): Likewise.
43455         * modules/euidaccess (Makefile.am): Likewise.
43456         * modules/exclude (Makefile.am): Likewise.
43457         * modules/exitfail (Makefile.am): Likewise.
43458         * modules/fcntl-safer (Makefile.am): Likewise.
43459         * modules/file-type (Makefile.am): Likewise.
43460         * modules/fileblocks (Makefile.am): Likewise.
43461         * modules/filemode (Makefile.am): Likewise.
43462         * modules/filenamecat (Makefile.am): Likewise.
43463         * modules/fnmatch (Makefile.am): Likewise.
43464         * modules/fopen-safer (Makefile.am): Likewise.
43465         * modules/fpending (Makefile.am): Likewise.
43466         * modules/fprintftime (Makefile.am): Likewise.
43467         * modules/free (Makefile.am): Likewise.
43468         * modules/fsusage (Makefile.am): Likewise.
43469         * modules/ftruncate (Makefile.am): Likewise.
43470         * modules/fts (Makefile.am): Likewise.
43471         * modules/gc (Makefile.am): Likewise.
43472         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
43473         * modules/getaddrinfo (Makefile.am): Likewise.
43474         * modules/getcwd (Makefile.am): Likewise.
43475         * modules/getdelim (Makefile.am): Likewise.
43476         * modules/getdomainname (Makefile.am): Likewise.
43477         * modules/getgroups (Makefile.am): Likewise.
43478         * modules/gethostname (Makefile.am): Likewise.
43479         * modules/gethrxtime (Makefile.am): Likewise.
43480         * modules/getline (Makefile.am): Likewise.
43481         * modules/getloadavg (Makefile.am): Likewise.
43482         * modules/getlogin_r (Makefile.am): Likewise.
43483         * modules/getopt (Makefile.am): Likewise.
43484         * modules/getpass (Makefile.am): Likewise.
43485         * modules/getpass-gnu (Makefile.am): Likewise.
43486         * modules/getsubopt (Makefile.am): Likewise.
43487         * modules/gettime (Makefile.am): Likewise.
43488         * modules/gettimeofday (Makefile.am): Likewise.
43489         * modules/getugroups (Makefile.am): Likewise.
43490         * modules/getusershell (Makefile.am): Likewise.
43491         * modules/glob (Makefile.am): Likewise.
43492         * modules/group-member (Makefile.am): Likewise.
43493         * modules/hard-locale (Makefile.am): Likewise.
43494         * modules/hash (Makefile.am): Likewise.
43495         * modules/hmac-md5 (Makefile.am): Likewise.
43496         * modules/hmac-sha1 (Makefile.am): Likewise.
43497         * modules/human (Makefile.am): Likewise.
43498         * modules/idcache (Makefile.am): Likewise.
43499         * modules/imaxabs (Makefile.am): Likewise.
43500         * modules/imaxdiv (Makefile.am): Likewise.
43501         * modules/inet_ntop (Makefile.am): Likewise.
43502         * modules/inet_pton (Makefile.am): Likewise.
43503         * modules/inttostr (Makefile.am): Likewise.
43504         * modules/isapipe (Makefile.am): Likewise.
43505         * modules/lchown (Makefile.am): Likewise.
43506         * modules/long-options (Makefile.am): Likewise.
43507         * modules/lstat (Makefile.am): Likewise.
43508         * modules/malloc (Makefile.am): Likewise.
43509         * modules/mathl (Makefile.am): Likewise.
43510         * modules/mbchar (Makefile.am): Likewise.
43511         * modules/md2 (Makefile.am): Likewise.
43512         * modules/md4 (Makefile.am): Likewise.
43513         * modules/md5 (Makefile.am): Likewise.
43514         * modules/memcasecmp (Makefile.am): Likewise.
43515         * modules/memchr (Makefile.am): Likewise.
43516         * modules/memcmp (Makefile.am): Likewise.
43517         * modules/memcoll (Makefile.am): Likewise.
43518         * modules/memcpy (Makefile.am): Likewise.
43519         * modules/memmem (Makefile.am): Likewise.
43520         * modules/memmove (Makefile.am): Likewise.
43521         * modules/mempcpy (Makefile.am): Likewise.
43522         * modules/memrchr (Makefile.am): Likewise.
43523         * modules/memset (Makefile.am): Likewise.
43524         * modules/memxor (Makefile.am): Likewise.
43525         * modules/mkancesdirs (Makefile.am): Likewise.
43526         * modules/mkdir (Makefile.am): Likewise.
43527         * modules/mkdir-p (Makefile.am): Likewise.
43528         * modules/mkdtemp (Makefile.am): Likewise.
43529         * modules/mkstemp (Makefile.am): Likewise.
43530         * modules/mktime (Makefile.am): Likewise.
43531         * modules/modechange (Makefile.am): Likewise.
43532         * modules/mountlist (Makefile.am): Likewise.
43533         * modules/nanosleep (Makefile.am): Likewise.
43534         * modules/openat (Makefile.am): Likewise.
43535         * modules/pagealign_alloc (Makefile.am): Likewise.
43536         * modules/physmem (Makefile.am): Likewise.
43537         * modules/poll (Makefile.am): Likewise.
43538         * modules/posixtm (Makefile.am): Likewise.
43539         * modules/posixver (Makefile.am): Likewise.
43540         * modules/putenv (Makefile.am): Likewise.
43541         * modules/quote (Makefile.am): Likewise.
43542         * modules/quotearg (Makefile.am): Likewise.
43543         * modules/raise (Makefile.am): Likewise.
43544         * modules/read-file (Makefile.am): Likewise.
43545         * modules/readline (Makefile.am): Likewise.
43546         * modules/readlink (Makefile.am): Likewise.
43547         * modules/readtokens (Makefile.am): Likewise.
43548         * modules/readutmp (Makefile.am): Likewise.
43549         * modules/realloc (Makefile.am): Likewise.
43550         * modules/regex (Makefile.am): Likewise.
43551         * modules/rename (Makefile.am): Likewise.
43552         * modules/rename-dest-slash (Makefile.am): Likewise.
43553         * modules/rijndael (Makefile.am): Likewise.
43554         * modules/rmdir (Makefile.am): Likewise.
43555         * modules/rpmatch (Makefile.am): Likewise.
43556         * modules/safe-read (Makefile.am): Likewise.
43557         * modules/safe-write (Makefile.am): Likewise.
43558         * modules/same (Makefile.am): Likewise.
43559         * modules/save-cwd (Makefile.am): Likewise.
43560         * modules/savedir (Makefile.am): Likewise.
43561         * modules/setenv (Makefile.am): Likewise.
43562         * modules/settime (Makefile.am): Likewise.
43563         * modules/sha1 (Makefile.am): Likewise.
43564         * modules/sig2str (Makefile.am): Likewise.
43565         * modules/snprintf (Makefile.am): Likewise.
43566         * modules/stdlib-safer (Makefile.am): Likewise.
43567         * modules/stpcpy (Makefile.am): Likewise.
43568         * modules/stpncpy (Makefile.am): Likewise.
43569         * modules/strcase (Makefile.am): Likewise.
43570         * modules/strcasestr (Makefile.am): Likewise.
43571         * modules/strchrnul (Makefile.am): Likewise.
43572         * modules/strcspn (Makefile.am): Likewise.
43573         * modules/strdup (Makefile.am): Likewise.
43574         * modules/strerror (Makefile.am): Likewise.
43575         * modules/strftime (Makefile.am): Likewise.
43576         * modules/strndup (Makefile.am): Likewise.
43577         * modules/strnlen (Makefile.am): Likewise.
43578         * modules/strpbrk (Makefile.am): Likewise.
43579         * modules/strsep (Makefile.am): Likewise.
43580         * modules/strstr (Makefile.am): Likewise.
43581         * modules/strtod (Makefile.am): Likewise.
43582         * modules/strtoimax (Makefile.am): Likewise.
43583         * modules/strtok_r (Makefile.am): Likewise.
43584         * modules/strtol (Makefile.am): Likewise.
43585         * modules/strtoll (Makefile.am): Likewise.
43586         * modules/strtoul (Makefile.am): Likewise.
43587         * modules/strtoull (Makefile.am): Likewise.
43588         * modules/strtoumax (Makefile.am): Likewise.
43589         * modules/strverscmp (Makefile.am): Likewise.
43590         * modules/time_r (Makefile.am): Likewise.
43591         * modules/timegm (Makefile.am): Likewise.
43592         * modules/tmpfile-safer (Makefile.am): Likewise.
43593         * modules/unistd-safer (Makefile.am): Likewise.
43594         * modules/unlinkdir (Makefile.am): Likewise.
43595         * modules/userspec (Makefile.am): Likewise.
43596         * modules/utime (Makefile.am): Likewise.
43597         * modules/utimecmp (Makefile.am): Likewise.
43598         * modules/utimens (Makefile.am): Likewise.
43599         * modules/vasnprintf (Makefile.am): Likewise.
43600         * modules/vasprintf (Makefile.am): Likewise.
43601         * modules/vsnprintf (Makefile.am): Likewise.
43602         * modules/xalloc (Makefile.am): Likewise.
43603         * modules/xgetcwd (Makefile.am): Likewise.
43604         * modules/xnanosleep (Makefile.am): Likewise.
43605         * modules/xreadlink (Makefile.am): Likewise.
43606         * modules/xstrtod (Makefile.am): Likewise.
43607         * modules/xstrtol (Makefile.am): Likewise.
43608         * modules/xstrtold (Makefile.am): Likewise.
43609         * modules/yesno (Makefile.am): Likewise.
43610
43611 2006-10-12  Jim Meyering  <jim@meyering.net>
43612
43613         * m4/getloadavg.m4: Revert the change below.
43614
43615         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
43616         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
43617         fail with a symlink, which is what coreutils' ./bootstrap now
43618         creates by default.
43619
43620 2006-10-12  Bruno Haible  <bruno@clisp.org>
43621
43622         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
43623         mingw.
43624         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
43625         MSVC and mingw explicitly.
43626
43627 2006-10-11  Simon Josefsson  <jas@extundo.com>
43628             Bruno Haible  <bruno@clisp.org>
43629
43630         Add support for multiple gnulib-tool invocations in the scope of a
43631         single configure.ac file.
43632         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
43633         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
43634         with the same contents as the _LIBADD variable.
43635         (func_emit_initmacro_start, func_emit_initmacro_end,
43636         func_emit_initmacro_done): New functions.
43637         (func_import, func_create_testdir): Invoke them. Allow the identifiers
43638         gl_LIBOBJS and gl_LTLIBOBJS.
43639
43640 2006-10-11  Bruno Haible  <bruno@clisp.org>
43641
43642         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
43643         (func_create_testdir): Don't create po/Makefile.am, don't invoke
43644         autoreconf. Instead, invoke autopoint explicitly but move back the
43645         *.m4 files from gnulib.
43646
43647 2006-10-11  Bruno Haible  <bruno@clisp.org>
43648
43649         * gnulib-tool (func_usage): Make module names after --create-testdir
43650         optional.
43651         (func_create_testdir): If no module was specified, use nearly all
43652         modules.
43653
43654 2006-10-12  Jim Meyering  <jim@meyering.net>
43655
43656         Big performance improvement for fts-based tools that use FTS_NOSTAT.
43657         Avoid spurious inode-mismatch problems on non-POSIX file systems.
43658         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
43659         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
43660         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
43661         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
43662         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
43663         (fts_set_stat_required): New function.
43664         (fts_open): Defer the calls to fts_stat, if possible or requested.
43665         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
43666         into fts_stat itself.
43667         (fts_read): Perform any required (deferred) fts_stat call.
43668         (fts_build): Likewise, for the directory we're about to open and read.
43669         In the readdir loop, carefully decide whether each entry will require
43670         an eventual call to fts_stat, using dirent.d_type info if available.
43671         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
43672         a command line argument into this function.  Update all callers.
43673         Map a return value of FTS_DOT to FTS_D for a command line argument.
43674         * modules/fts (Depends-on): Add d-type.  Alphabetize.
43675         Thanks to Miklos Szeredi for his tenacity and for the initial
43676         bug report about "find" failing on a FUSE-based file system.
43677
43678         * lib/fts.c (fts_open): Use consistent indentation.
43679
43680 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
43681
43682         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
43683         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
43684         reported by Jim Meyering.  All uses of cache variables renamed
43685         to match Autoconf's.
43686         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
43687         the other one.
43688
43689         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
43690         Fix misspelling in diagnostic.
43691
43692 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
43693
43694         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
43695         defined.  Problem reported by Matthew Woehlke.
43696
43697         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
43698         Add support for Tandem NonStop R series.
43699         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
43700         Use new macro.
43701
43702         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
43703         (has_trailing_slash): Omit size arg; all callers changed.
43704         Omit 'inline', since it doesn't help performance and we'd
43705         need to configure it.
43706         Don't count //, ///, etc. as having a trailing slash.
43707         As a side effect, this removes a C99ism reported by Matthew Woehlke.
43708         (rpl_rename_dest_slash): On failure, use rename's errno rather
43709         than (in some cases) an incorrect or junk errno.
43710         Simplify code by removing need to compute length; this does
43711         cause it to make two passes instead of one over the file name,
43712         but it's worth it.
43713
43714         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
43715         change, since Autoconf's version may no longer be appropriate now
43716         that we are using CVS Autoconf's version.  Add support for Tandem.
43717
43718 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
43719             Bruno Haible  <bruno@clisp.org>
43720
43721         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
43722         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
43723         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
43724         gl_AC_TYPE_LONG_LONG.
43725
43726         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
43727         instead of HAVE_LONG_LONG.
43728         * lib/printf-args.c (printf_fetchargs): Likewise.
43729         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
43730         * lib/vasnprintf.c (VASNPRINTF): Likewise.
43731         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
43732         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
43733         gl_AC_TYPE_LONG_LONG.
43734
43735 2006-10-11  Bruno Haible  <bruno@clisp.org>
43736
43737         * m4/longlong.m4: Add comments.
43738         * m4/ulonglong.m4: Likewise.
43739
43740 2006-10-10  Bruno Haible  <bruno@clisp.org>
43741
43742         Make it possible to #define stpcpy, strdup to aliases.
43743         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
43744         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
43745
43746 2006-10-10  Bruno Haible  <bruno@clisp.org>
43747
43748         Make it possible to #define gcd to an alias.
43749         * lib/gcd.c: Include config.h.
43750
43751 2006-10-10  Bruno Haible  <bruno@clisp.org>
43752
43753         Make it possible to #define c_isascii to an alias.
43754         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
43755         defined. Undefine the macros before defining them, to avoid gcc
43756         warnings.
43757         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
43758         define NO_C_CTYPE_MACROS early.
43759
43760 2006-10-10  Bruno Haible  <bruno@clisp.org>
43761
43762         Make it possible to #define set_program_name to an alias.
43763         * lib/progname.c: Don't undefine set_program_name; instead, undefine
43764         ENABLE_RELOCATABLE early.
43765
43766 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
43767
43768         Port to Tandem NSK OSS, which has 64-bit signed int but at most
43769         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
43770         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
43771         More generally, don't assume that 64-bit signed int is available
43772         if unsigned int is, and vice versa.
43773         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
43774         unsigned symbols, not on their signed counterparts.
43775         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
43776         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
43777         (UINT64_C, UINTMAX_C):
43778         Likewise.
43779         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
43780         unsigned counterparts.
43781         (Have_long_long, Unsigned): New macros.
43782         (Int): Renamed from INT.
43783         (strtoimax): Use the new macros.
43784         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
43785         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
43786         * modules/inttypes (inttypes.h): Substitute
43787         HAVE_UNSIGNED_LONG_LONG_INT.
43788         * modules/stdint (stdint.h): Likewise.
43789         (Files): Add m4/ulonglong.m4.
43790
43791 2006-10-10  Bruno Haible  <bruno@clisp.org>
43792
43793         Fix a gcc -Wshadow warning.
43794         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
43795         to 'bucket'.
43796         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
43797         gl_linked_indexof_from_to): Likewise.
43798         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
43799         Likewise.
43800         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
43801         Likewise.
43802         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
43803         Reported by Eric Blake.
43804
43805 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
43806
43807         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
43808         for NetBSD.  Problem reported by Bruno Haible.
43809
43810 2006-10-09  Jim Meyering  <jim@meyering.net>
43811
43812         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
43813         Patch from Bruno Haible.
43814
43815 2006-10-09  Jim Meyering  <jim@meyering.net>
43816
43817         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
43818         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
43819         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
43820
43821 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
43822
43823         Don't include <config.h> twice; this doesn't work in some cases,
43824         e.g., when config.h has "#define intmax_t long long int" and
43825         we include <config.h>, <inttypes.h>, <config.h> in that order.
43826         Problem reported by Matthew Woehlke in:
43827         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
43828         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
43829         * lib/fts-cycle.c: Don't include config.h.
43830         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
43831         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
43832         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
43833         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
43834         inttypes.h.
43835         * lib/xstrtoumax.c: Likewise.
43836         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
43837         __strtol and the like, so that this module is more like its siblings.
43838         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
43839         Remove; no longer needed now that we assume gnulib inttypes.h.
43840
43841 2006-10-08  Bruno Haible  <bruno@clisp.org>
43842
43843         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
43844         option.
43845
43846 2006-10-07  Jim Meyering  <jim@meyering.net>
43847
43848         * modules/inttypes (inttypes.h): Revert what seems to have been
43849         an inadvertent part of today's change: use "|", not "/" in the
43850         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
43851
43852 2006-10-07  Bruno Haible  <bruno@clisp.org>
43853
43854         * modules/sublist: New file.
43855
43856 2006-10-07  Bruno Haible  <bruno@clisp.org>
43857
43858         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
43859         * modules/argz (argz.h): Likewise.
43860         * modules/arpa_inet (arpa/inet.h): Likewise.
43861         * modules/byteswap (byteswap.h): Likewise.
43862         * modules/configmake (configmake.h): Likewise.
43863         * modules/fcntl (fcntl.h): Likewise.
43864         * modules/fnmatch (fnmatch.h): Likewise.
43865         * modules/getopt (getopt.h): Likewise.
43866         * modules/glob (glob.h): Likewise.
43867         * modules/inttypes (inttypes.h): Likewise.
43868         * modules/netinet_in (netinet/in.h): Likewise.
43869         * modules/poll (poll.h): Likewise.
43870         * modules/stdbool (stdbool.h): Likewise.
43871         * modules/stdint (stdint.h): Likewise.
43872         * modules/sys_select (sys/select.h): Likewise.
43873         * modules/sys_socket (sys/socket.h): Likewise.
43874         * modules/sys_stat (sys/stat.h): Likewise.
43875         * modules/sysexits (sysexits.h): Likewise.
43876         * modules/unistd (unistd.h): Likewise.
43877         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
43878         Add a "DO NOT EDIT" comment to the generated file.
43879         (func_import): Likewise for gnulib-comp.m4.
43880
43881 2006-10-07  Bruno Haible  <bruno@clisp.org>
43882
43883         * lib/gl_sublist.h: New file.
43884         * lib/gl_sublist.c: New file.
43885
43886 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
43887
43888         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
43889         name (relative to the original working directory) and the file
43890         name component (relative to the temporary working directory).  All
43891         callers changed.
43892         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
43893         * lib/mkdir-p.c (make_dir_parents): Likewise.
43894         * lib/mkdir-p.h (make_dir_parents): Likewise.
43895
43896 2006-10-06  Eric Blake  <ebb9@byu.net>
43897
43898         Define several macros for use by the clean-temp module.
43899         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
43900         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
43901         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
43902
43903         * lib/clean-temp.h (close_stream_temp): New declaration.
43904         * lib/clean-temp.c (includes): Pull in headers according to what
43905         other modules are in use.
43906         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
43907
43908 2006-10-06  Bruno Haible  <bruno@clisp.org>
43909
43910         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
43911         instead of fopen, fwriteerror.
43912
43913 2006-10-06  Bruno Haible  <bruno@clisp.org>
43914
43915         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
43916         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
43917         int.
43918         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
43919         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
43920         Return an error indicator.
43921         Suggested by Eric Blake.
43922
43923 2006-10-06  Bruno Haible  <bruno@clisp.org>
43924
43925         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
43926         Reported by Eric Blake.
43927
43928 2006-10-06  Bruno Haible  <bruno@clisp.org>
43929
43930         * modules/closeout (Description): Mention stderr too.
43931
43932 2006-10-06  Bruno Haible  <bruno@clisp.org>
43933         and Paul Eggert  <eggert@cs.ucla.edu>
43934
43935         * lib/closeout.c (close_stdout): Also close stderr.
43936         * lib/closeout.h: Update comment.
43937
43938 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
43939
43940         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
43941         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
43942         * lib/dirchownmod.c: Include lchown.h.
43943         * lib/lchown.c: Don't include files that lchown.h now includes.
43944         Don't declare chown, since lchown.h now does that.
43945         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
43946         (lchown): Define to rpl_chown if lchown is declared but
43947         does not exist.  Declare using a prototype if lchown is not
43948         declared.  Add a copyright notice.
43949         * lib/mkstemp.h: Include <unistd.h>.
43950         * lib/openat.c: Include lchown.h.
43951
43952         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
43953         we now test for that separately.
43954         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
43955         rather than O_NOFOLLOW, when testing whether it's possible to
43956         avoid a race condition reliably.
43957         * lib/savewd.c (savewd_chdir): Likewise.
43958
43959         Remove macros that are no longer needed now that stdint.h is
43960         reliable.
43961         * lib/fsusage.c (UINTMAX_MAX): Remove.
43962         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
43963         * lib/utimecmp.c (SIZE_MAX): Remove.
43964
43965         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
43966
43967         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
43968         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
43969         O_NOATIME works.
43970
43971 2006-10-05  Bruno Haible  <bruno@clisp.org>
43972
43973         * lib/gl_list.h (gl_sortedlist_search_from_to,
43974         gl_sortedlist_indexof_from_to): New declarations.
43975         (gl_list_implementation): New fields sortedlist_search_from_to,
43976         sortedlist_indexof_from_to.
43977         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
43978         inline functions.
43979         * lib/gl_list.c (gl_sortedlist_search_from_to,
43980         gl_sortedlist_indexof_from_to): New functions.
43981         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
43982         function.
43983         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
43984         (gl_array_sortedlist_search_from_to): New function.
43985         (gl_array_list_implementation): Update.
43986         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
43987         function.
43988         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
43989         (gl_carray_sortedlist_search_from_to): New function.
43990         (gl_carray_list_implementation): Update.
43991         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
43992         gl_linked_sortedlist_indexof_from_to): New functions.
43993         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43994         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43995         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
43996         gl_tree_sortedlist_indexof_from_to): New functions.
43997         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43998         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43999         Update.
44000         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
44001         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
44002         Update.
44003
44004 2006-10-05  Bruno Haible  <bruno@clisp.org>
44005
44006         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
44007         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
44008         (struct gl_list_implementation): Add fields search_from_to,
44009         indexof_from_to. Remove fields search, indexof.
44010         (gl_list_search): Use the search_from_to method.
44011         (gl_list_search_from, gl_list_search_from_to): New functions.
44012         (gl_list_indexof): Use the indexof_from_to method.
44013         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
44014         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
44015         (gl_list_search_from, gl_list_search_from_to): New functions.
44016         (gl_list_indexof): Use the indexof_from_to method.
44017         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
44018         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
44019         gl_array_indexof. Add start_index, end_index arguments.
44020         (gl_array_search_from_to): Renamed from gl_array_search. Add
44021         start_index, end_index arguments.
44022         (gl_array_remove, gl_array_list_implementation): Update.
44023         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
44024         gl_carray_indexof. Add start_index, end_index arguments.
44025         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
44026         start_index, end_index arguments.
44027         (gl_carray_remove, gl_carray_list_implementation): Update.
44028         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
44029         gl_linked_search. Add start_index, end_index arguments.
44030         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
44031         start_index, end_index arguments.
44032         (gl_linked_remove): Update.
44033         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
44034         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
44035         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
44036         field to 'size_t'.
44037         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
44038         gl_tree_search. Add start_index, end_index arguments.
44039         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
44040         start_index, end_index arguments.
44041         (gl_tree_remove): Update.
44042         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
44043         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
44044         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
44045         function.
44046         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
44047         gl_tree_search. Add start_index, end_index arguments.
44048         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
44049         start_index, end_index arguments.
44050         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
44051         Update.
44052         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
44053
44054 2006-10-05  Bruno Haible  <bruno@clisp.org>
44055
44056         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
44057
44058         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
44059         fwriteerror_temp): New declarations.
44060         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
44061         (descriptors): New variable.
44062         (cleanup): First, close the descriptors.
44063         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
44064         fclose_temp, fwriteerror_temp): New functions.
44065
44066 2006-10-04  Jim Meyering  <jim@meyering.net>
44067
44068         * lib/fts.c (fts_open): Tiny comment change.
44069
44070 2006-10-04  Bruno Haible  <bruno@clisp.org>
44071
44072         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
44073         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
44074         gl_LOCK_BODY.
44075         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
44076         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
44077         gl_LOCK_EARLY_BODY.
44078         (gl_LOCK): Require gl_LOCK_BODY.
44079
44080 2006-10-04  Bruno Haible  <bruno@clisp.org>
44081
44082         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
44083         (gl_oset_search_atleast): New declaration.
44084         (struct gl_oset_implementation): Add field 'search_atleast'.
44085         (gl_oset_search_atleast): New inline function.
44086         * lib/gl_oset.c (gl_oset_search_atleast): New function.
44087         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
44088         (gl_array_oset_implementation): Update.
44089         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
44090         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
44091         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
44092
44093 2006-10-04  Bruno Haible  <bruno@clisp.org>
44094
44095         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
44096
44097 2006-10-03  Bruno Haible  <bruno@clisp.org>
44098
44099         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
44100         from gl_avltreehash_list_implementation.
44101
44102 2006-10-03  Bruno Haible  <bruno@clisp.org>
44103
44104         * lib/gl_oset.c (gl_oset_add): Fix return type.
44105
44106 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
44107
44108         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
44109
44110 2006-10-02  Eric Blake  <ebb9@byu.net>
44111
44112         * modules/strnlen (Depends-on): Add extensions.
44113
44114 2006-10-02  Eric Blake  <ebb9@byu.net>
44115
44116         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
44117         definition in 2.60+.
44118
44119 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
44120
44121         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
44122         checks.
44123
44124 2006-10-02  Bruno Haible  <bruno@clisp.org>
44125
44126         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
44127         to the AUTOMAKE_OPTIONS.
44128         Reported by Jim Meyering.
44129
44130 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
44131
44132         Work around bug in Solaris 10 /proc file system:
44133         /proc/self/fd/NNN/.. isn't the parent directory of
44134         the directory whose file descriptor is NNN.  This needs to
44135         be worked around at run time, not compile time, since a
44136         program might be built on Solaris 8, where things work, and
44137         run on Solaris 10.
44138         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
44139         to use the following interface instead:
44140         (OPENAT_BUFFER_SIZE): New macro.
44141         (openat_proc_name): New function.
44142         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
44143         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
44144         Likewise.
44145         * lib/openat-proc.c: New file.
44146         * modules/openat (Files): Add lib/openat-proc.c.
44147         (Depends-on): Add same-inode, stdbool.
44148         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
44149
44150 2006-09-29  Bruno Haible  <bruno@clisp.org>
44151
44152         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
44153         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
44154         argument. Set stdout_closed before testing for ferror, not after.
44155         (fwriteerror, fwriteerror_no_ebadf): New functions.
44156
44157 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44158
44159         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
44160
44161 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
44162
44163         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
44164         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
44165
44166 2006-09-28  Jim Meyering  <jim@meyering.net>
44167
44168         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
44169         Include <unistd.h>.
44170
44171 2006-09-28  Bruno Haible  <bruno@clisp.org>
44172
44173         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
44174         * modules/linkedhash-list (Depends-on): Likewise.
44175         * modules/rbtreehash-list (Depends-on): Likewise.
44176
44177 2006-09-28  Bruno Haible  <bruno@clisp.org>
44178
44179         * lib/strndup.h: Simplify the redefinition of strndup.
44180         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
44181         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
44182
44183 2006-09-28  Bruno Haible  <bruno@clisp.org>
44184
44185         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
44186         * lib/gl_linkedhash_list.c: Likewise.
44187         * lib/gl_rbtreehash_list.c: Likewise.
44188
44189 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
44190
44191         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
44192         getaddrinfo.
44193
44194         * lib/__fpending.h: Don't include <stdio_ext.h> unless
44195         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
44196         it causes <stdio_ext.h> to cause a compile-time error.
44197         Problem reported by Nelson H. F. Beebe.
44198         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
44199         of HAVE_DECL___PENDING.
44200
44201         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
44202         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
44203         declaration.
44204
44205 2006-09-27  Jim Meyering  <jim@meyering.net>
44206
44207         This file could end up with a definition for a function
44208         named __strndup, rather than rpl_strndup on a system with
44209         incomplete weak_alias support.
44210         * lib/strndup.c (strndup): Rename from __strndup.
44211         Remove #defines that used to map __strndup to strndup.
44212         Don't use K&R prototypes.
44213         Remove LIBC-related code, since this file is not sync'd with glibc.
44214         * lib/strndup.h: Revamp, accordingly.
44215         * m4/strndup.m4: Modernize.
44216
44217 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
44218
44219         * modules/savewd (Depends-on): Add 'raise'.
44220         * lib/savewd.c: Include <signal.h>, for 'raise'.
44221
44222 2006-09-26  Jim Meyering  <jim@meyering.net>
44223
44224         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
44225         when we detect Darwin 8.7.0's acl_get_file bug.
44226         Rearrange to perform the new (below) run-test while $LIBS
44227         contains any acl-related library.  Set USE_ACL at the end.
44228         (gl_ACL_GET_FILE): New function.
44229
44230 2006-09-26  Eric Blake  <ebb9@byu.net>
44231
44232         * lib/verror.c: Include <config.h> unconditionally.
44233
44234 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
44235
44236         * modules/clock-time (Maintainer): Add self.
44237         * modules/getlogin_r (Depends-on): Add extensions.
44238
44239 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44240
44241         * modules/clock-time: New module.
44242         * modules/nanosleep (Depends-on): Add clock-time.
44243         * modules/gethrxtime (Depends-on): Likewise.
44244         * modules/gettime (Depends-on): Likewise.
44245         * modules/settime (Depends-on): Likewise.
44246
44247         * modules/fts-lgpl: Depend on openat.
44248         * modules/mkancesdirs: Depend on savewd.
44249         * modules/mkdir-p: Likewise.
44250
44251 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44252
44253         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
44254
44255         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
44256         `gl_have_arbitrary_file_name_length_limit' to
44257         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
44258         actually works between configure runs.
44259
44260 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44261             Bruno Haible  <bruno@clisp.org>
44262
44263         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
44264
44265 2006-09-25  Jim Meyering  <jim@meyering.net>
44266
44267         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
44268         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
44269
44270 2006-09-25  Eric Blake  <ebb9@byu.net>
44271
44272         * gnulib-tool (func_import, func_create_testdir): Fix typos in
44273         exec's in 2006-09-18 patch when shuffling fds.
44274
44275 2006-09-25  Bruno Haible  <bruno@clisp.org>
44276
44277         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
44278         Reported by Jim Meyering.
44279
44280 2006-09-24  Jim Meyering  <jim@meyering.net>
44281
44282         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
44283         compare a pointer against a literal "0".  That caused failures with
44284         at least HP-UX's hpcc.
44285
44286 2006-09-22  Simon Josefsson  <jas@extundo.com>
44287
44288         * modules/gc-sha1:
44289         * modules/gc-md4:
44290         * modules/gc-hmac-sha1:
44291         * modules/gc-hmac-md5:
44292         * modules/gc-des:
44293         * modules/gc-arcfour: Distribute more files.
44294
44295 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44296
44297         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
44298         (gl_linked_iterator_from_to): Initialize struct completely.
44299         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
44300         (gl_tree_iterator_from_to): Likewise
44301         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
44302         * lib/gl_array_list.c [lint] (gl_array_iterator)
44303         (gl_array_iterator_from_to): Likewise.
44304         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
44305         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
44306         (gl_carray_iterator_from_to): Likewise.
44307
44308         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
44309         * lib/md4.c (md4_process_block): Remove unused variable.
44310         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
44311         parentheses for clarity.
44312
44313 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44314
44315         * modules/bison-i18n (Depends-on): Add gettext.
44316
44317 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44318
44319         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
44320         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
44321         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
44322         also add missing comma that caused broken test.
44323         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
44324         stdlib.h, for `abort'.
44325         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
44326         variables.
44327         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
44328         include unistd.h if present, for `rmdir'.
44329         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
44330         variables.
44331         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
44332         in the process include standard headers for prototypes.
44333         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
44334         gets declared on GNU/Linux.
44335         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
44336         unistd.h, for `rmdir'.
44337         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
44338
44339         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
44340         always true.
44341         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
44342
44343         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
44344
44345 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44346
44347         * gnulib-tool (func_version): Create output all at once.  This
44348         may help avoid triggering unnecessary SIGPIPEs, and at any
44349         rate it doesn't hurt.
44350
44351 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44352             Bruno Haible  <bruno@clisp.org>
44353
44354         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
44355         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
44356         * m4/signed.m4 (bh_C_SIGNED): Likewise.
44357
44358         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
44359         (gl_FUNC_VASPRINTF): Invoke it.
44360
44361 2006-09-22  Bruno Haible  <bruno@clisp.org>
44362
44363         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
44364         getloadavg.c as first argument.
44365
44366 2006-09-22  Bruno Haible  <bruno@clisp.org>
44367
44368         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
44369         at the beginning of the gl_INIT macro.
44370         * modules/getloadavg (configure.ac): Pass $gl_source_base to
44371         gl_GETLOADAVG.
44372
44373 2006-09-22  Bruno Haible  <bruno@clisp.org>
44374
44375         * gnulib-tool (func_create_megatestdir): Don't include the config-h
44376         module.
44377         Suggested by Ralf Wildenhues.
44378
44379 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
44380
44381         Import this patch from libc:
44382
44383         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
44384
44385         * lib/regex_internal.c (re_string_reconstruct): Handle
44386         offset < pstr->valid_raw_len && pstr->offsets_needed case.
44387         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
44388         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
44389         re_string_context_at.
44390
44391         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
44392         now requires it.
44393         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
44394         gl_REGEX now does it for us.
44395         (gl_REGEX): Add test taken from
44396         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
44397
44398         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
44399         Check that large offsets work.  Modernize Autoconf usages.
44400         Prefer "yes" to mean a good thing rather than a bad.
44401         Don't put "#define mkstemp" in config.h, as this might interfere
44402         with standard system headers that "#define mkstemp mkstemp64".
44403
44404         * modules/mkstemp (Depends-on): Add extensions, so that
44405         mkstemp is visible on some platforms.
44406         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
44407         (Include): Change to "mkstemp.h" from <stdlib.h>.
44408         (Files): Add mkstemp.h.
44409
44410         * lib/mkstemp.h: New file, since some standard headers
44411         #define mkstemp.
44412         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
44413         Include "mkstemp.h".
44414         Make the _LIBC code resemble glibc original more,
44415         e.g., use K&R style.
44416         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
44417         (mkstemp): Remove, since mkstemp.h does this for us.
44418         * lib/stdlib--.h: Include mkstemp.h.
44419
44420         Import this patch from libc:
44421
44422         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
44423
44424         * lib/tempname.c (__gen_tempname): Change attempts_min
44425         into a macro.  Use preprocessor to decide how to initialize
44426         attempts [Coverity CID 67].
44427
44428 2006-09-20  Bruno Haible  <bruno@clisp.org>
44429
44430         * lib/mkdtemp.c: Import from libc.
44431         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
44432                 * sysdeps/posix/tempname.c (__gen_tempname): Change
44433                 attempts_min into a macro.  Use preprocessor to decide how to
44434                 initialize attempts [Coverity CID 67].
44435         2001-11-27  Paul Eggert  <eggert@twinsun.com>
44436                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
44437                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
44438
44439 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44440
44441         * gnulib-tool (func_exit): New function, to allow to pass the
44442         exit status portably through the trap.  Use everywhere.
44443         (--help, --version): Signal a write error.
44444         (trap): catch SIGPIPE, for write errors.
44445         Exit at the end of the trap, with the correct exit status.
44446
44447 2006-09-19  Karl Berry  <karl@gnu.org>
44448
44449         * doc/gnulib.texi: note about the license texinfo files.
44450
44451 2006-09-19  Eric Blake  <ebb9@byu.net>
44452
44453         * gnulib-tool: Avoid space-tab.
44454
44455 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
44456
44457         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
44458         that prevented coreutils 6.1 from building.  Problem reported
44459         by Petter Reinholdtsen.
44460
44461 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
44462
44463         * gnulib-tool (avoidlist): Fix typo that broke options like
44464         --avoid=lock that are used by coreutils bootstrap.
44465
44466 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
44467
44468         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
44469         more systematically.
44470
44471 2006-09-18  Jim Meyering  <jim@meyering.net>
44472
44473         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
44474
44475 2006-09-18  Bruno Haible  <bruno@clisp.org>
44476
44477         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
44478
44479 2006-09-18  Bruno Haible  <bruno@clisp.org>
44480
44481         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
44482         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
44483         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
44484         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
44485         * m4/gettext.m4: Require autoconf >= 2.52.
44486         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
44487         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
44488         of gl_cv_header_inttypes_h.
44489
44490 2006-09-18  Bruno Haible  <bruno@clisp.org>
44491
44492         * lib/javaversion.c: Include configmake.h.
44493
44494 2006-09-18  Bruno Haible  <bruno@clisp.org>
44495
44496         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
44497         avoid that the while loops be executed in a subshell.
44498
44499 2006-09-18  Bruno Haible  <bruno@clisp.org>
44500
44501         * MODULES.html.sh (func_module): Break long lines.
44502         Suggested by Bruce Korb <bkorb@gnu.org>.
44503
44504 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44505
44506         Speed up by a factor of 1.12.
44507         * gnulib-tool (nl): New variable.
44508         (func_import): Rewrite include directive extraction to only read each
44509         directive once.
44510
44511 2006-09-17  Bruno Haible  <bruno@clisp.org>
44512
44513         * modules/javaversion (Makefile.am): Remove DEFS setting.
44514         (Depends-on): Add configmake, for PKGDATADIR definition.
44515
44516 2006-09-17  Bruno Haible  <bruno@clisp.org>
44517
44518         * gnulib-tool (func_create_testdir): Rewrite all files at once.
44519
44520 2006-09-17  Bruno Haible  <bruno@clisp.org>
44521
44522         * gnulib-tool (func_append): New function, stolen from libtool.m4.
44523         (func_modules_transitive_closure, func_modules_add_dummy,
44524         func_modules_to_filelist, func_import, func_create_testdir,
44525         func_create_megatestdir, ...): Use it wherever possible.
44526         Suggested by Ralf Wildenhues.
44527
44528 2006-09-16  Karl Berry  <karl@gnu.org>
44529
44530         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
44531         to avoid sectioning errors.
44532         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
44533         [ifinfo]: blank line after @center-ed titles.
44534         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
44535         Spell FSF address consistently with others.
44536         (These changes approved by rms.)
44537
44538 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44539
44540         Speed up by a factor of 1.61.
44541         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
44542         already checked module names again.
44543
44544 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44545
44546         Speed up by a factor of 1.13.
44547         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
44548         for new_files, and the input to func_add_or_update.
44549
44550 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44551
44552         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
44553         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
44554
44555 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
44556
44557         * modules/mkancesdirs (Depends-on): Add fcntl.
44558         * modules/savewd: New file.
44559         * MODULES.html.sh (File system functions): Add savewd.
44560
44561         * modules/configmake (Makefile.am): Add support for the
44562         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
44563
44564 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
44565
44566         * m4/savewd.m4: New file.
44567
44568 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
44569
44570         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
44571         (dirchownmod): New arg FD.  All callers changed.
44572         Use FD rather than opening the directory ourself, as opening is
44573         now the caller's responsibility.
44574         * lib/dirchownmod.h: Likewise.
44575         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
44576         hosts that require <sys/types.h> before <sys/stat.h>.  Include
44577         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
44578         (test_dir): Remove.
44579         (mkancesdirs): Return length of prefix of FILE that has already
44580         been made, or -2 if there is a child doing the work.  Redo
44581         algorithm so that it is O(N) rather than O(N**2).  Optimize away
44582         ".", and treat ".." specially since it might stray back into
44583         already-created areas.  Use a subprocess if necessary.  New arg
44584         WD; all users changed.  MAKE_DIR function should now return 1
44585         if it creates a directory that is not readable.  Return -2 if
44586         a child process is spun off.
44587         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
44588         Adjust signature to match code.
44589         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
44590         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
44591         all users changed.
44592         * lib/savewd.c, lib/savewd.h: New files.
44593
44594 2006-09-15  Jim Meyering  <jim@meyering.net>
44595
44596         * modules/rename-dest-slash: New module.
44597         * MODULES.html.sh (posix_compat): Add it here.
44598
44599         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
44600
44601 2006-09-15  Jim Meyering  <jim@meyering.net>
44602
44603         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
44604         file.
44605
44606         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
44607
44608 2006-09-15  Jim Meyering  <jim@meyering.net>
44609
44610         * lib/rename-dest-slash.c (has_trailing_slash): Use
44611         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
44612         (rpl_rename_dest_slash): Perform the cheaper trailing slash
44613         test before testing whether SRC is a directory.
44614         Suggestions from Bruno Haible.
44615
44616         Avoid a warning about an unused variable.
44617         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
44618         into the #ifdef block where it's used.
44619
44620         * lib/rename-dest-slash.c: New file.
44621
44622 2006-09-14  Bruno Haible  <bruno@clisp.org>
44623
44624         * lib/allocsa.c: Include <config.h> unconditionally.
44625         * lib/asnprintf.c: Likewise.
44626         * lib/asprintf.c: Likewise.
44627         * lib/c-strcasecmp.c: Likewise.
44628         * lib/c-strcasestr.c: Likewise.
44629         * lib/c-strncasecmp.c: Likewise.
44630         * lib/c-strstr.c: Likewise.
44631         * lib/classpath.c: Likewise.
44632         * lib/clean-temp.c: Likewise.
44633         * lib/concatpath.c: Likewise.
44634         * lib/copy-file.c: Likewise.
44635         * lib/csharpcomp.c: Likewise.
44636         * lib/csharpexec.c: Likewise.
44637         * lib/execute.c: Likewise.
44638         * lib/fatal-signal.c: Likewise.
44639         * lib/findprog.c: Likewise.
44640         * lib/fwriteerror.c: Likewise.
44641         * lib/gl_array_list.c: Likewise.
44642         * lib/gl_array_oset.c: Likewise.
44643         * lib/gl_avltree_list.c: Likewise.
44644         * lib/gl_avltree_oset.c: Likewise.
44645         * lib/gl_avltreehash_list.c: Likewise.
44646         * lib/gl_carray_list.c: Likewise.
44647         * lib/gl_linked_list.c: Likewise.
44648         * lib/gl_linkedhash_list.c: Likewise.
44649         * lib/gl_list.c: Likewise.
44650         * lib/gl_oset.c: Likewise.
44651         * lib/gl_rbtree_list.c: Likewise.
44652         * lib/gl_rbtree_oset.c: Likewise.
44653         * lib/gl_rbtreehash_list.c: Likewise.
44654         * lib/imaxabs.c: Likewise.
44655         * lib/imaxdiv.c: Likewise.
44656         * lib/javacomp.c: Likewise.
44657         * lib/javaexec.c: Likewise.
44658         * lib/javaversion.c: Likewise.
44659         * lib/linebreak.c: Likewise.
44660         * lib/localcharset.c: Likewise.
44661         * lib/lock.c: Likewise.
44662         * lib/mbchar.c: Likewise.
44663         * lib/mbswidth.c: Likewise.
44664         * lib/mkdtemp.c: Likewise.
44665         * lib/pipe.c: Likewise.
44666         * lib/printf-args.c: Likewise.
44667         * lib/printf-parse.c: Likewise.
44668         * lib/progname.c: Likewise.
44669         * lib/progreloc.c: Likewise.
44670         * lib/readlink.c: Likewise.
44671         * lib/sh-quote.c: Likewise.
44672         * lib/stpcpy.c: Likewise.
44673         * lib/stpncpy.c: Likewise.
44674         * lib/strcasecmp.c: Likewise.
44675         * lib/strcasestr.c: Likewise.
44676         * lib/strcspn.c: Likewise.
44677         * lib/striconv.c: Likewise.
44678         * lib/strncasecmp.c: Likewise.
44679         * lib/strnlen1.c: Likewise.
44680         * lib/strstr.c: Likewise.
44681         * lib/strtok_r.c: Likewise.
44682         * lib/tls.c: Likewise.
44683         * lib/tmpdir.c: Likewise.
44684         * lib/unicodeio.c: Likewise.
44685         * lib/unsetenv.c: Likewise.
44686         * lib/vasnprintf.c: Likewise.
44687         * lib/vasprintf.c: Likewise.
44688         * lib/wait-process.c: Likewise.
44689         * lib/xallocsa.c: Likewise.
44690         * lib/xsetenv.c: Likewise.
44691         * lib/xstriconv.c: Likewise.
44692
44693 2006-09-13  Simon Josefsson  <jas@extundo.com>
44694
44695         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
44696         that internally, suggested by Ralf Wildenhues
44697         <Ralf.Wildenhues@gmx.de>.
44698
44699 2006-09-13  Simon Josefsson  <jas@extundo.com>
44700
44701         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
44702         @LIBOBJS@.
44703         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
44704
44705 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
44706
44707         * lib/_fpending.c: Include <config.h> unconditionally, since we no
44708         longer worry about uses that don't define HAVE_CONFIG_H.
44709         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
44710         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
44711         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
44712         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
44713         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
44714         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
44715         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
44716         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
44717         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
44718         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
44719         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
44720         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
44721         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
44722         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
44723         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
44724         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
44725         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
44726         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
44727         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
44728         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
44729         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
44730         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
44731         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
44732         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
44733         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
44734         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
44735         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
44736         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
44737         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
44738         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
44739         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
44740         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
44741         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
44742         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
44743         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
44744         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
44745         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
44746         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
44747         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
44748         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
44749         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
44750         Likewise.
44751
44752 2006-09-13  Eric Blake  <ebb9@byu.net>
44753
44754         * lib/getopt.c: Fix typo in last commit.
44755
44756 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
44757
44758         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
44759         dgettext.
44760
44761 2006-09-12  Jim Meyering  <jim@meyering.net>
44762
44763         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
44764         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
44765         Reported by Nelson H. F. Beebe.
44766
44767 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
44768
44769         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
44770         program_invocation_name and program_invocation_short_name are
44771         initialized.
44772         * lib/argp-namefrob.h: Move declarations of program_invocation_name
44773         and program_invocation_short_name to argp.h, so they are visible
44774         to user programs.
44775         * lib/argp.h: Likewise
44776
44777 2006-09-10  Bruno Haible  <bruno@clisp.org>
44778
44779         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
44780         m4/inttypes_h.m4, m4/uintmax_t.m4.
44781
44782 2006-09-10  Bruno Haible  <bruno@clisp.org>
44783
44784         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
44785         gl_AC_TYPE_UINTMAX_T.
44786
44787 2006-09-10  Bruno Haible  <bruno@clisp.org>
44788
44789         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
44790
44791 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44792
44793         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
44794         convention.  Text proposed by Bruno Haible.
44795         (struct argp_option): Document the use of N_() wrappers.
44796
44797         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
44798         '\v', and translate the two parts separately, instead of feeding
44799         the whole string to gettext.  This allows to exclude
44800         '\v' from the strings visible to the translator by writing doc
44801         strings as N_("..") "\v" N_("..").
44802
44803 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
44804
44805         * config/srclist.txt: Undo latest change; the bug was fixed.
44806
44807 2006-09-09  Bruno Haible  <bruno@clisp.org>
44808
44809         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
44810         assignments if building a library without libtool.
44811         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
44812         in func_emit_lib_Makefile_am.
44813         (func_import): When building a static library libfoo.a, arrange to
44814         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
44815         (func_create_testdir): Likewise.
44816         * modules/gc (configure.ac, Makefile.am): If building statically,
44817         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
44818         * modules/iconvme (configure.ac, Makefile.am): Likewise.
44819         * modules/striconv (configure.ac, Makefile.am): Likewise.
44820         Based on a suggestion by Ralf Wildenhues.
44821
44822 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44823
44824         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
44825         Check for unistd.h too, since Autoconf doesn't assume POSIX.
44826         Also:
44827
44828         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44829         Add year_2050_test to catch glibc bug 2821
44830         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
44831
44832         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44833         Prefer #ifdef to #if.
44834
44835         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
44836         Return from 'main' instead of calling 'exit'.
44837
44838 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44839
44840         * lib/mktime.c (guess_time_tm): Fix bug where mktime
44841         returned the maximum time_t value rather than (time_t) -1.
44842         Problem originally reported by William Bardwell
44843         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
44844
44845         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
44846         Moved to here ...
44847         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
44848         ... from here.
44849
44850 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44851
44852         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
44853         2821 is fixed.
44854
44855 2006-09-08  Jim Meyering  <jim@meyering.net>
44856
44857         Don't make generated files read-only.  That would bother too many
44858         people.  However, do retain the ability to work when targets are
44859         read-only: remove the destination and temporary files before writing
44860         them (when generated via sed or echo), or by using the -f option for
44861         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
44862         * modules/alloca-opt, modules/argz, modules/arpa_inet:
44863         * modules/byteswap, modules/configmake, modules/fcntl:
44864         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
44865         * modules/localcharset, modules/netinet_in, modules/poll:
44866         * modules/stdbool, modules/stdint, modules/sys_select:
44867         * modules/sys_socket, modules/sys_stat, modules/sysexits:
44868
44869 2006-09-08  Jim Meyering  <jim@meyering.net>
44870
44871         Avoid new build failure on FreeBSD 6.0.
44872         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
44873         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
44874         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
44875
44876 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44877
44878         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
44879
44880 2006-09-07  Jim Meyering  <jim@meyering.net>
44881
44882         Fix global typo in last change: use chmod u-w, not chmod u-x.
44883         Spotted by Paul Eggert and Bruce Korb.
44884         * modules/alloca-opt, modules/argz, modules/arpa_inet:
44885         * modules/byteswap, modules/configmake, modules/fcntl:
44886         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
44887         * modules/localcharset, modules/netinet_in, modules/poll:
44888         * modules/stdbool, modules/stdint, modules/sys_select:
44889         * modules/sys_socket, modules/sys_stat, modules/sysexits:
44890
44891 2006-09-06  Jim Meyering  <jim@meyering.net>
44892
44893         Make generated files be read-only.
44894         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
44895         Ensure that each generated file is now read-only.
44896         * modules/argz: Likewise.
44897         * modules/arpa_inet: Likewise.
44898         * modules/byteswap: Likewise.
44899         * modules/configmake: Likewise.
44900         * modules/fcntl: Likewise.
44901         * modules/fnmatch: Likewise.
44902         * modules/getopt: Likewise.
44903         * modules/glob: Likewise.
44904         * modules/inttypes: Likewise.
44905         * modules/netinet_in: Likewise.
44906         * modules/poll: Likewise.
44907         * modules/stdbool: Likewise.
44908         * modules/stdint: Likewise.
44909         * modules/sys_select: Likewise.
44910         * modules/sys_socket: Likewise.
44911         * modules/sys_stat: Likewise.
44912         * modules/sysexits: Likewise.
44913         * modules/localcharset: Same as above, but continue using temporary
44914         file named "t-$@" (why different?) rather than the "$@-t" used
44915         everywhere else.
44916
44917         * modules/sysexits (Makefile.am): Replace literal occurrences
44918         of "sysexit.h" more readable, and more consistent, "$@".
44919
44920 2006-09-06  Bruno Haible  <bruno@clisp.org>
44921
44922         * modules/striconv: New file.
44923         * modules/xstriconv: New file.
44924         * MODULES.html.sh (Internationalization functions): Add striconv,
44925         xstriconv.
44926
44927 2006-09-06  Bruno Haible  <bruno@clisp.org>
44928
44929         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
44930         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
44931         not using libtool correctly.
44932
44933 2006-09-06  Bruno Haible  <bruno@clisp.org>
44934
44935         * lib/striconv.h: New file.
44936         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
44937         iconvstring.c.
44938         * lib/xstriconv.h: New file.
44939         * lib/xstriconv.c: New file.
44940
44941 2006-09-06  Bruno Haible  <bruno@clisp.org>
44942
44943         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
44944         lib_..._LDFLAGS.
44945
44946 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44947
44948         * lib/argz_.h: Sync from Libtool.
44949
44950         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
44951                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
44952
44953         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
44954
44955 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
44956
44957         * modules/trim: New file.
44958
44959 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
44960
44961         * lib/trim.h: New file.
44962         * lib/trim.c: New file.
44963
44964 2006-09-05  Bruno Haible  <bruno@clisp.org>
44965
44966         * MODULES.html.sh (String handling): Add trim.
44967
44968 2006-09-04  Karl Berry  <karl@gnu.org>
44969
44970         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
44971         until next release.
44972
44973 2006-09-03  Bruno Haible  <bruno@clisp.org>
44974
44975         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
44976         correctly.
44977
44978 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44979
44980         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
44981         not gl_GETLOADAVG.  Omit unneeded semicolons.
44982         Problems reported by Ralf Wildenhues in
44983         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44984         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
44985         at the end, which is the usual gnulib style.
44986
44987         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
44988         of doing all the work ourselves.
44989         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
44990         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
44991
44992 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44993
44994         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
44995         Problem reported by Ralf Wildenhues in
44996         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44997
44998         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
44999         HAVE_STRUCT_STATFS_F_FSTYPENAME.
45000
45001 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
45002
45003         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
45004         yesterday's patch by changing test -n to test -z.
45005
45006 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
45007
45008         * modules/getloadavg (Files): Add m4/getloadavg.m4.
45009         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
45010         the former is now obsolescent.
45011
45012         * modules/chdir-long (Depends-on): Add fcntl.
45013
45014 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
45015
45016         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
45017         obsolescent, and programs should use gnulib instead.
45018         * m4/getloadavg.m4: New file, with contents taken from Autoconf
45019         but with prefixes changed.
45020
45021 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
45022
45023         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
45024         or stdbool.h, because they might not exist while configuring.
45025
45026         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
45027         Don't include unistd.h or limits.h; not needed, since chdir-long.h
45028         does that for us.
45029         (O_DIRECTORY): Remove.
45030
45031 2006-08-31  Eric Blake  <ebb9@byu.net>
45032
45033         * gnulib-tool: Don't let emacs change spaces to TAB.
45034
45035 2006-08-31  Bruno Haible  <bruno@clisp.org>
45036
45037         * gnulib-tool: When calling func_import more than once, do it in a
45038         subshell.
45039         Reported by Eric Blake <ebb9@byu.net>.
45040
45041 2006-08-31  Bruno Haible  <bruno@clisp.org>
45042
45043         * gnulib-tool (nl): Remove variable.
45044         (sed_transform_lib_file): Use more robust test for config-h module.
45045         (func_import): Fix typo in 2006-08-25 patch.
45046
45047 2006-08-31  Bruno Haible  <bruno@clisp.org>
45048
45049         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
45050         specified, augment Makefile.am variables instead of assigning them.
45051
45052 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
45053
45054         Work around a bug in both the Linux and SunOS 64-bit kernels:
45055         nanosleep mishandles sleeps for longer than 2**31 seconds.
45056         Problem reported by Frank v Waveren in
45057         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
45058         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
45059         Check for nanosleep bug.
45060         (LIB_NANOSLEEP): Append clock_gettime library if needed.
45061
45062 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
45063
45064         Work around a bug in both the Linux and SunOS 64-bit kernels:
45065         nanosleep mishandles sleeps for longer than 2**31 seconds.
45066         Problem reported by Frank v Waveren in
45067         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
45068         * lib/nanosleep.c (BILLION): New constant.
45069         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
45070         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
45071         implementation.
45072
45073 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
45074
45075         * modules/nanosleep (Depends-on): Add gettime.
45076
45077 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
45078         and Simon Josefsson  <jas@extundo.com>
45079         and Oskar Liljeblad  <oskar@osk.mine.nu>
45080
45081         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
45082         * gnulib-tool (func_import): New license type 'unmodifiable license
45083         text'.
45084         * modules/fdl: Use it.  Longer description.
45085         * module/gpl, module/lgpl: New files.
45086
45087 2006-08-30  Jim Meyering  <jim@meyering.net>
45088
45089         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
45090         shadowing the parameter.
45091
45092 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45093
45094         Sync from Libtool:
45095
45096         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45097
45098         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
45099         sharing with gnulib.  Report by Eric Blake.
45100
45101 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
45102
45103         * modules/isapipe: New file.
45104         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
45105
45106 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
45107
45108         * modules/configmake (Makefile.am): Add a comment, and omit
45109         the CONFIGMAKE_ prefix from generated macro names.  Suggested
45110         by Bruno Haible.
45111
45112 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
45113
45114         * m4/isapipe.m4: New file.
45115
45116 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
45117
45118         * lib/isapipe.c, lib/isapipe.h: New files.
45119
45120 2006-08-29  Jim Meyering  <jim@meyering.net>
45121
45122         * modules/configmake (Makefile.am): Make configmake.h depend on
45123         Makefile.  Otherwise, a stale configmake.h could hang around.
45124
45125 2006-08-29  Eric Blake  <ebb9@byu.net>
45126
45127         * lib/error.c (error_at_line, print_errno_message): Match libc, after
45128         resolution of upstream bug 3044.
45129
45130 2006-08-29  Bruno Haible  <bruno@clisp.org>
45131
45132         * modules/localcharset (Depends-on): Add configmake.
45133         (Makefile.am): Remove setting of LIBDIR through DEFS.
45134
45135 2006-08-29  Bruno Haible  <bruno@clisp.org>
45136
45137         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
45138         defined.
45139
45140 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45141
45142         * modules/fcntl: New file.
45143         * modules/chdir-safer (Depends-on): Add fcntl.
45144         * modules/fts: Likewise.
45145         * modules/mkdir-p: Likewise.
45146
45147         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
45148         This undoes the most recent change, since we're now addressing the
45149         problem in a different way.
45150
45151         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
45152         into output, since the output might be called Makefile.am even
45153         if $makefile_name is something different.
45154         (func_import): Use $makefile_am rather than
45155         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
45156         empty.
45157
45158         * modules/inttypes (Files): Add m4/inttypes-h.m4.
45159
45160 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45161
45162         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
45163         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
45164         recent change to stdint.m4, since we're now addressing the problem in a
45165         different way.
45166
45167 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45168
45169         * m4/fcntl_h.m4: New file.
45170
45171 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45172
45173         * lib/fcntl_.h: New file.
45174         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
45175         the fcntl module.
45176         * lib/dirchownmod.c: Likewise.
45177         * lib/fts.c: Likewise.
45178
45179         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
45180         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
45181         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
45182         just before including <inttypes.h>, to avoid circular inclusion.
45183
45184 2006-08-28  Jim Meyering  <jim@meyering.net>
45185
45186         * doc/visibility.texi: Actually read and correct the grammar of the
45187         sentence affected by yesterday's change.
45188
45189 2006-08-28  Eric Blake  <ebb9@byu.net>
45190
45191         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
45192         needs wrapper.
45193
45194 2006-08-28  Eric Blake  <ebb9@byu.net>
45195
45196         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
45197
45198 2006-08-28  Eric Blake  <ebb9@byu.net>
45199
45200         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
45201
45202 2006-08-28  Bruno Haible  <bruno@clisp.org>
45203
45204         * modules/c-strstr: New file, from GNU gettext.
45205         * MODULES.html.sh (String handling): Add c-strstr.
45206
45207 2006-08-28  Bruno Haible  <bruno@clisp.org>
45208
45209         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
45210         macros.
45211         Reported by Eric Blake.
45212
45213 2006-08-28  Bruno Haible  <bruno@clisp.org>
45214
45215         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
45216         (VASNPRINTF): Return a string of length > INT_MAX without failing.
45217         * lib/vasprintf.c: Include errno.h, limits.h.
45218         (EOVERFLOW): New fallback definition.
45219         (vasprintf): Test here whether the string length is > INT_MAX.
45220         * lib/vsnprintf.c: Include errno.h, limits.h.
45221         (EOVERFLOW): New fallback definition.
45222         (vsnprintf): Fix bug when generated string was too long for the buffer.
45223         Test here whether the string length is > INT_MAX.
45224
45225 2006-08-28  Bruno Haible  <bruno@clisp.org>
45226
45227         * lib/inttypes_.h (SCNX*): Remove definitions.
45228         Reported by Eric Blake.
45229
45230 2006-08-28  Bruno Haible  <bruno@clisp.org>
45231
45232         * lib/c-strstr.h: New file, from GNU gettext.
45233         * lib/c-strstr.c: New file, from GNU gettext.
45234
45235 2006-08-28  Bruno Haible  <bruno@clisp.org>
45236
45237         * gnulib-tool: Reorder some statements.
45238
45239 2006-08-28  Bruno Haible  <bruno@clisp.org>
45240
45241         * gnulib-tool: New option --makefile-name.
45242         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
45243         $makefile_name.
45244         (func_import): Write $makefile_name to the cache file, and read it from
45245         there unless explicitly specified. Use $makefile_name as file name
45246         instead of Makefile.am. Adjust the recommendations accordingly.
45247
45248 2006-08-28  Bruno Haible  <bruno@clisp.org>
45249
45250         * gnulib-tool (func_verify_module): Check against misapplying patch.
45251
45252 2006-08-28  Bruno Haible  <bruno@clisp.org>
45253
45254         * gnulib-tool (func_relativize, func_relconcat): New functions.
45255         Give an error if --local-dir is given with --update.
45256         Remove trailing slashes from $local_gnulib_dir.
45257         (func_import): Store the relativized $local_gnulib_dir in
45258         gnulib-cache.m4, and read it from there if not specified explicitly.
45259
45260 2006-08-28  Bruno Haible  <bruno@clisp.org>
45261
45262         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
45263         is the current directory. Respect also $local_gnulib_dir.
45264
45265 2006-08-28  Bruno Haible  <bruno@clisp.org>
45266             Simon Josefsson  <jas@extundo.com>
45267
45268         BeOS portability.
45269         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
45270
45271 2006-08-27  Jim Meyering  <jim@meyering.net>
45272
45273         * doc/visibility.texi: Remove duplicate word: "pointer".
45274
45275 2006-08-26  Bruno Haible  <bruno@clisp.org>
45276
45277         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
45278         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
45279         (Makefile.am): Create inttypes.h from inttypes_.h.
45280         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
45281
45282         * modules/imaxabs: New file.
45283
45284         * modules/imaxdiv: New file.
45285
45286 2006-08-26  Bruno Haible  <bruno@clisp.org>
45287
45288         * m4/inttypes.m4: New file.
45289         * m4/_inttypes_h.m4: Remove file.
45290         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
45291         PRI_MACROS_BROKEN.
45292         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
45293
45294         * m4/imaxabs.m4: New file.
45295
45296         * m4/imaxdiv.m4: New file.
45297
45298 2006-08-26  Bruno Haible  <bruno@clisp.org>
45299
45300         * lib/inttypes_.h: New file.
45301         * lib/inttypes.h: Remove file.
45302         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
45303
45304         * lib/imaxabs.c: New file.
45305
45306         * lib/imaxdiv.c: New file.
45307
45308 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
45309
45310         New config-h module, so that "make" output needn't be cluttered
45311         by -DHAVE_CONFIG_H.
45312         * MODULES.html.sh (Support for building libraries and executables):
45313         Add config-h.
45314         * modules/config-h: New file.
45315         * gnulib-tool (nl, sed_transform_lib_file): New vars.
45316         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
45317         the config-h module is used.
45318
45319         New configmake module, so that "make" output needn't be cluttered
45320         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
45321         * MODULES.html.sh (Support for building libraries and executables):
45322         Add configmake.
45323         * modules/configmake: New file.
45324
45325 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
45326
45327         * m4/config-h.m4: New file.
45328
45329 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
45330
45331         * config/srclist.txt: Add elisp-comp.
45332
45333 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
45334
45335         * MODULES.html.sh (Support for building libraries and executables):
45336         Add elisp-comp.
45337         * build-aux/elisp-comp: New file.
45338         * modules/elisp-comp: New file.
45339
45340 2006-08-24  Bruno Haible  <bruno@clisp.org>
45341
45342         * gnulib-tool (func_create_testdir): Use non-default values of
45343         sourcebase and m4base.
45344
45345 2006-08-24  Bruno Haible  <bruno@clisp.org>
45346
45347         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
45348         HTML structure.
45349
45350 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
45351
45352         * modules/openat (Depends-on): Add lchown.
45353
45354 2006-08-23  Bruno Haible  <bruno@clisp.org>
45355
45356         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
45357         of gl_LOCK_EARLY instead of gl_LOCK.
45358
45359 2006-08-23  Bruno Haible  <bruno@clisp.org>
45360
45361         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
45362         on OSF/1 to no.
45363         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
45364
45365 2006-08-23  Bruno Haible  <bruno@clisp.org>
45366
45367         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
45368         as unusable.
45369
45370         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
45371         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
45372         (gl_LOCK): New macro.
45373
45374 2006-08-22  Simon Josefsson  <jas@extundo.com>
45375
45376         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
45377         to md5 module.
45378
45379 2006-08-22  Simon Josefsson  <jas@extundo.com>
45380
45381         * MODULES.html.sh: Add "Support for maintaining and release
45382         projects".
45383
45384         * build-aux/gnupload: New file, from coreutils.
45385
45386 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
45387
45388         Avoid the need for AC_LIBSOURCES in m4 macros.
45389         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
45390         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
45391         * modules/check-version (EXTRA_DIST): Add check-version.h.
45392         * modules/crc (EXTRA_DIST): Add crc.h.
45393         * modules/des (EXTRA_DIST): Add des.h.
45394         * modules/gc (EXTRA_DIST): Add gc.h.
45395         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
45396         * modules/getline (EXTRA_DIST): Add getline.h.
45397         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
45398         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
45399         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
45400         * modules/md2 (EXTRA_DIST): Add md2.h.
45401         * modules/md4 (EXTRA_DIST): Add md4.h.
45402         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
45403         * modules/read-file (EXTRA_DIST): Add read-file.h.
45404         * modules/readline (EXTRA_DIST): Add readline.h.
45405         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
45406         rijndael-api-fst.h.
45407
45408 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
45409
45410         * m4/rijndael.m4 (gl_ARCFOUR):
45411         * m4/arctwo.m4 (gl_ARCTWO):
45412         * m4/check-version.m4 (gl_CHECK_VERSION):
45413         * m4/crc.m4 (gl_CRC):
45414         * m4/des.m4 (gl_DES):
45415         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
45416         * m4/gc.m4 (gl_GC):
45417         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
45418         * m4/getline.m4 (gl_FUNC_GETLINE):
45419         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
45420         * m4/hmac-md5.m4 (gl_HMAC_MD5):
45421         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
45422         * m4/md2.m4 (gl_MD2):
45423         * m4/md4.m4 (gl_MD4):
45424         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
45425         * m4/read-file.m4 (gl_FUNC_READ_FILE):
45426         * m4/readline.m4 (gl_FUNC_READLINE):
45427         * m4/rijndael.m4 (gl_RIJNDAEL):
45428         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
45429         to get the necessary .h files and whatnot.
45430
45431 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
45432
45433         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
45434         gnulib rather than the other way around.
45435         * config/srclistvars.sh (COREUTILS): Remove.
45436
45437 2006-08-22  Jim Meyering  <jim@meyering.net>
45438
45439         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
45440
45441         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
45442
45443 2006-08-22  Eric Blake  <ebb9@byu.net>
45444
45445         * modules/regexprops-generic: New file.
45446         * MODULES.html.sh (Support for building documentation): List it.
45447
45448 2006-08-22  Eric Blake  <ebb9@byu.net>
45449
45450         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
45451         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
45452         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
45453         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
45454
45455 2006-08-22  Bruno Haible  <bruno@clisp.org>
45456
45457         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
45458         and lib_LTLIBRARIES like the other lib_* variables.
45459
45460 2006-08-22  Bruno Haible  <bruno@clisp.org>
45461
45462         * build-aux/x-to-1.in: New file, from GNU gettext.
45463
45464 2006-08-22  Bruno Haible  <bruno@clisp.org>
45465
45466         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
45467         <utmpx.h> exists.
45468
45469 2006-08-22  Bruno Haible  <bruno@clisp.org>
45470
45471         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
45472         <utmpx.h> exists.
45473
45474 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
45475
45476         BeOS portability.
45477         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
45478         exist.
45479         Problem reported by Bruno Haible.
45480
45481 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
45482
45483         Avoid the need for AC_LIBSOURCES in m4 macros.
45484         * modules/acl (EXTRA_DIST): Add acl.h.
45485         * modules/argmatch (Files): Add m4/argmatch.m4.
45486         (configure.ac): Add gl_ARGMATCH.
45487         (EXTRA_DIST): Renamed from lib_SOURCES, for
45488         consistency with the other modules.  Remove argmatch.c.
45489         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
45490         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
45491         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
45492         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
45493         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
45494         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
45495         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
45496         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
45497         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
45498         * modules/closeout (EXTRA_DIST): Add closeout.h.
45499         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
45500         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
45501         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
45502         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
45503         dirname.h; remove basename.c and stripslash.c.
45504         * modules/exclude (EXTRA_DIST): Add exclude.h.
45505         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
45506         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
45507         * modules/file-type (EXTRA_DIST): Add file-type.h.
45508         * modules/filemode (EXTRA_DIST): Add filemode.h.
45509         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
45510         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
45511         * modules/fpending (EXTRA_DIST): Add __fpending.h.
45512         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
45513         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
45514         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
45515         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
45516         * modules/getdate (EXTRA_DIST): Add getdate.c.
45517         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
45518         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
45519         * modules/getpass (EXTRA_DIST): Add getpass.h.
45520         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
45521         * modules/group-member (EXTRA_DIST): Add group-member.h.
45522         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
45523         * modules/hash (EXTRA_DIST): Add hash.h.
45524         * modules/human (EXTRA_DIST): Add human.h.
45525         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
45526         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
45527         * modules/lchown (EXTRA_DIST): Add lchown.h.
45528         * modules/long-options (EXTRA_DIST): Add long-options.h.
45529         * modules/lstat (EXTRA_DIST): Add lstat.h.
45530         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
45531         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
45532         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
45533         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
45534         * modules/memxor (EXTRA_DIST): Add memxor.h.
45535         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
45536         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
45537         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
45538         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
45539         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
45540         * modules/physmem (EXTRA_DIST): Add physmem.h.
45541         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
45542         * modules/posixver (EXTRA_DIST): Add posixver.h.
45543         * modules/quote (EXTRA_DIST): Add quote.h.
45544         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
45545         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
45546         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
45547         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
45548         regex_internal.h regexec.c.
45549         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
45550         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
45551         * modules/same (EXTRA_DIST): Add same.h.
45552         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
45553         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
45554         * modules/savedir (EXTRA_DIST): Add savedir.h.
45555         * modules/sha1 (EXTRA_DIST): Add sha1.h.
45556         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
45557         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
45558         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
45559         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
45560         * modules/strdup (EXTRA_DIST): Add strdup.h.
45561         * modules/strftime (EXTRA_DIST): Add strftime.h.
45562         * modules/strndup (EXTRA_DIST): Add strndup.h.
45563         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
45564         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
45565         * modules/time_r (EXTRA_DIST): Add time_r.h.
45566         * modules/timespec (EXTRA_DIST): Add timespec.h.
45567         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
45568         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
45569         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
45570         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
45571         * modules/userspec (EXTRA_DIST): Add userspec.h.
45572         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
45573         * modules/utimens (EXTRA_DIST): Add utimens.h.
45574         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
45575         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
45576         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
45577         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
45578         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
45579         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
45580         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
45581         * modules/yesno (EXTRA_DIST): Add yesno.h.
45582
45583 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
45584
45585         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
45586
45587         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
45588         * m4/dev-ino.m4, same-inode.m4: Remove.
45589
45590         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
45591         * m4/acl.m4 (AC_FUNC_ACL):
45592         * m4/backupfile.m4 (gl_BACKUPFILE):
45593         * m4/c-strtod.m4 (gl_C99_STRTOLD):
45594         * m4/canon-host.m4 (gl_CANON_HOST):
45595         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
45596         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
45597         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
45598         * m4/cloexec.m4 (gl_CLOEXEC):
45599         * m4/close-stream.m4 (gl_CLOSE_STREAM):
45600         * m4/closeout.m4 (gl_CLOSEOUT):
45601         * m4/dirfd.m4 (gl_FUNC_DIRFD):
45602         * m4/dirname.m4 (gl_DIRNAME):
45603         * m4/exclude.m4 (gl_EXCLUDE):
45604         * m4/exitfail.m4 (gl_EXITFAIL):
45605         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
45606         * m4/file-type.m4 (gl_FILE_TYPE):
45607         * m4/filemode.m4 (gl_FILEMODE):
45608         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
45609         * m4/fpending.m4 (gl_FUNC_FPENDING):
45610         * m4/fprintftime.m4 (gl_FPRINTFTIME):
45611         * m4/fts.m4 (gl_FUNC_FTS):
45612         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
45613         * m4/getdate.m4 (gl_GETDATE):
45614         * m4/gethrxtime.m4 (gl_GETHRXTIME):
45615         * m4/getpagesize.m4 (gl_GETPAGESIZE):
45616         * m4/getpass.m4 (gl_FUNC_GETPASS):
45617         * m4/gettime.m4 (gl_GETTIME):
45618         * m4/getugroups.m4 (gl_GETUGROUPS):
45619         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
45620         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
45621         * m4/hard-locale.m4 (gl_HARD_LOCALE):
45622         * m4/hash.m4 (gl_HASH):
45623         * m4/idcache.m4 (gl_IDCACHE):
45624         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
45625         * m4/lchown.m4 (gl_FUNC_LCHOWN):
45626         * m4/long-options.m4 (gl_LONG_OPTIONS):
45627         * m4/lstat.m4 (gl_FUNC_LSTAT):
45628         * m4/md5.m4 (gl_MD5):
45629         * m4/memcasecmp.m4 (gl_MEMCASECMP):
45630         * m4/memcoll.m4 (gl_MEMCOLL):
45631         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
45632         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
45633         * m4/memxor.m4 (gl_MEMXOR):
45634         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
45635         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
45636         * m4/modechange.m4 (gl_MODECHANGE):
45637         * m4/mountlist.m4 (gl_MOUNTLIST):
45638         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
45639         * m4/openat.m4 (gl_FUNC_OPENAT):
45640         * m4/pathmax.m4 (gl_PATHMAX):
45641         * m4/physmem.m4 (gl_PHYSMEM):
45642         * m4/posixtm.m4 (gl_POSIXTM):
45643         * m4/posixver.m4 (gl_POSIXVER):
45644         * m4/quote.m4 (gl_QUOTE):
45645         * m4/quotearg.m4 (gl_QUOTEARG):
45646         * m4/readtokens.m4 (gl_READTOKENS):
45647         * m4/readutmp.m4 (gl_READUTMP):
45648         * m4/regex.m4 (gl_REGEX):
45649         * m4/safe-read.m4 (gl_SAFE_READ):
45650         * m4/safe-write.m4 (gl_SAFE_WRITE):
45651         * m4/same.m4 (gl_SAME):
45652         * m4/save-cwd.m4 (gl_SAVE_CWD):
45653         * m4/savedir.m4 (gl_SAVEDIR):
45654         * m4/settime.m4 (gl_SETTIME):
45655         * m4/sha1.m4 (gl_SHA1):
45656         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
45657         * m4/stat-macros.m4 (gl_STAT_MACROS):
45658         * m4/stat-time.m4 (gl_STAT_TIME):
45659         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
45660         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
45661         * m4/strdup.m4 (gl_FUNC_STRDUP):
45662         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
45663         * m4/strndup.m4 (gl_FUNC_STRNDUP):
45664         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
45665         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
45666         * m4/time_r.m4 (gl_TIME_R):
45667         * m4/timespec.m4 (gl_TIMESPEC):
45668         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
45669         * m4/unlinkdir.m4 (gl_UNLINKDIR):
45670         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
45671         * m4/userspec.m4 (gl_USERSPEC):
45672         * m4/utimecmp.m4 (gl_UTIMECMP):
45673         * m4/utimens.m4 (gl_UTIMENS):
45674         * m4/xalloc.m4 (gl_XALLOC):
45675         * m4/xgetcwd.m4 (gl_XGETCWD):
45676         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
45677         * m4/xreadlink.m4 (gl_XREADLINK):
45678         * m4/xstrtod.m4 (gl_XSTRTOD):
45679         * m4/yesno.m4 (gl_YESNO):
45680         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
45681         to get the necessary .h files and whatnot.
45682
45683 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
45684             Bruno Haible  <bruno@clisp.org>
45685
45686         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
45687         /bin/sh understanding of '!' conditional negation.
45688
45689 2006-08-21  Jim Meyering  <jim@meyering.net>
45690
45691         * modules/openat (Depends-on): Really alphabetize.
45692
45693         * modules/acl (Depends-on): Add error and quote.
45694
45695         * check-module (find_included_lib_files): Add at-func.c to the
45696         ok-to-include-more-than-once white list.
45697
45698         * modules/openat (Depends-on): Add lstat.  Alphabetize.
45699
45700 2006-08-21  Bruno Haible  <bruno@clisp.org>
45701
45702         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45703         Emit a pkgdata_DATA variable only if some snippets add contents to it.
45704         Reported by Martin Lambers <marlam@marlam.de>.
45705
45706 2006-08-21  Bruno Haible  <bruno@clisp.org>
45707
45708         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
45709         specify an installation location, don't emit a noinst_LIBRARIES or
45710         noinst_LTLIBRARIES assignment.
45711
45712 2006-08-21  Bruno Haible  <bruno@clisp.org>
45713
45714         BeOS portability.
45715         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
45716         BeOS has mbrtowc() but no <wctype.h>.
45717
45718 2006-08-21  Bruno Haible  <bruno@clisp.org>
45719
45720         BeOS portability.
45721         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
45722         exist.
45723
45724 2006-08-21  Bruno Haible  <bruno@clisp.org>
45725
45726         BeOS portability.
45727         * lib/mbchar.h: Include <wctype.h> only if it exists.
45728
45729 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45730
45731         Remove files that are no longer needed by their respective modules.
45732         * m4/obstack.m4: Remove.
45733         * m4/strerror_r.m4: Remove.
45734         * m4/uint32_t.m4: Remove.
45735         * m4/uintptr_t.m4: Remove.
45736         * m4/ullong_max.m4: Remove.
45737         * m4/xstrtoimax.m4: Remove.
45738         * m4/xstrtoumax.m4: Remove.
45739
45740         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
45741         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
45742         dependencies now capture this.
45743
45744         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
45745         Do not use AC_LIBSOURCES, since gnulib modules now do this.
45746         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
45747         * m4/human.m4 (gl_HUMAN): Likewise.
45748         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
45749         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
45750
45751         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
45752
45753         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
45754         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
45755         stdint.
45756         * m4/human.m4 (gl_HUMAN): Likewise.
45757         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
45758         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
45759         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
45760         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
45761         * m4/xstrtol (gl_XSTRTOL): Likewise.
45762
45763         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
45764         AC_TYPE_LONG_LONG_INT.
45765         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
45766         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
45767         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
45768         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
45769
45770         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
45771         on stdbool.
45772
45773         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
45774         (gl_PREREQ_XSTRTOUL): Remove.
45775
45776         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
45777
45778         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
45779         mode.
45780
45781 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45782
45783         Add and change modules to make it easier for coreutils to use
45784         gnulib-tool.
45785         * modules/backupfile (Files): Remove m4/d-ino.m4.
45786         (Depends-on): Add d-ino.
45787         * modules/cycle-check (Depends-on): Add stdint.
45788         (lib_SOURCES): Add cycle-check.h.
45789         * modules/d-ino: New module.
45790         * modules/d-type: New module.
45791         * modules/error (Files): Remove m4/strerror_r.m4.
45792         * modules/filemode (Files): Add m4/st_dm_mode.m4.
45793         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
45794         m4/inttypes_h.m4, m4/uintmax_t.m4.
45795         (Depends-on): Add stdint.
45796         (lib_SOURCES): Add fsusage.h.
45797         * modules/getcwd (Files): Remove d-ino.m4.
45798         (Depends-on): Add d-ino.
45799         * modules/getndelim2 (Depends-on): Add stdint.
45800         * modules/glob (Files): Remove m4/d-type.m4.
45801         (Depends-on): Add d-type.
45802         * modules/host-os: New module.
45803         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
45804         m4/inttypes_h.m4, m4/uintmax_t.m4.
45805         * Depends-on: Add stdint.
45806         (lib_SOURCES): Add human.h.
45807         * modules/inttostr (Files): Remove m4/intmax_t.m4,
45808         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
45809         m4/uintmax_t.m4, m4/ulonglong.m4.
45810         (Depends-on): Add stdint.
45811         (EXTRA_DIST): Add inttostr.h.
45812         * modules/lchmod: New module.
45813         * modules/link-follow: New module.
45814         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
45815         (Depends-on): Add lchmod.
45816         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
45817         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
45818         (Depends-on): Add stdint.
45819         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
45820         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
45821         (Depends-on): Add stdint.
45822         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
45823         * modules/perl: New module.
45824         * modules/regex (Depends-on): Add stdint.
45825         * modules/rmdir-errno: New module.
45826         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
45827         m4/intmax_t.m4.
45828         (Depends-on): Add stdint.
45829         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
45830         m4/uintmax_t.m4.
45831         (Depends-on): Add stdint.
45832         * modules/unlink-busy: New module.
45833         * modules/utimecmp (Depends-on): Add stdint.
45834         * modules/uptime: New module.
45835         * modules/winsz-ioctl: New module.
45836         * modules/winsz-termios: New module.
45837         * modules/xnanosleep (Depends-on): Add nanosleep.
45838         * modules/ullong_max: Remove.
45839         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
45840         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
45841         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
45842         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
45843         (Depends-on): Add inttypes.
45844         (lib_SOURCES): Add xstrtol.h.
45845         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
45846         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
45847         * MODULES.html.sh: Move 'assert' into the assert section.
45848         Move 'dummy' into the linking section.
45849         Remove ullong_max.
45850         Add section for compatibility checks for POSIX:2001 functions,
45851         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
45852         winsz-ioctl, and winsz-termios into it.
45853         Add lchmod.
45854         Add top-level Misc section and put host-os, perl, and uptime
45855         into it.
45856
45857 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45858
45859         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
45860         now assume the stdint module.  Do not include inttypes.h.
45861         * lib/fsusage.h: Likewise.
45862         * lib/getndelim2.c: Likewise.
45863         * lib/human.h: Likewise.
45864         * lib/inttostr.h: Likewise.
45865         * lib/obstack.c: Likewise.
45866         * lib/regex_internal.h: Likewise.
45867         * lib/tempname.c: Likewise.
45868         * lib/utimecmp.c: Likewise.
45869         * lib/xstrtol.h: Likewise.
45870
45871         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
45872
45873         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
45874         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
45875         * lib/xtime.h: Likewise.
45876
45877 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45878
45879         * modules/openat (Files): Add lib/fchmodat.c.
45880         Fixes problem reported by Jay Youngman.
45881
45882 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45883
45884         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
45885         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
45886
45887 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
45888             Bruno Haible  <bruno@clisp.org>
45889
45890         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
45891         and is a script that invokes bison. Tighten the code. Add comments.
45892
45893 2006-08-18  Jim Meyering  <jim@meyering.net>
45894
45895         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
45896         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
45897         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
45898         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
45899
45900 2006-08-18  Bruno Haible  <bruno@clisp.org>
45901
45902         * modules/bison-i18n: New file.
45903         * MODULES.html.sh (Internationalization functions): Add it.
45904
45905 2006-08-18  Bruno Haible  <bruno@clisp.org>
45906
45907         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
45908         sys/statvfs.h. When getmntinfo was found, check its declaration and
45909         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
45910
45911 2006-08-18  Bruno Haible  <bruno@clisp.org>
45912
45913         * m4/bison-i18n.m4: New file, from bison.
45914
45915 2006-08-18  Bruno Haible  <bruno@clisp.org>
45916
45917         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
45918         (ME_DUMMY): Treat "kernfs" as a dummy.
45919         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
45920
45921 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45922
45923         Update from coreutils.
45924
45925         2006-08-15  Jim Meyering  <jim@meyering.net>
45926
45927         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
45928
45929         2006-01-17  Jim Meyering  <jim@meyering.net>
45930
45931         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
45932
45933         2006-01-11  Jim Meyering  <jim@meyering.net>
45934
45935         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
45936         Check for the lchmod function.
45937
45938 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45939
45940         Update from coreutils.
45941
45942         * lib/__fpending.h: Add copyright notice.
45943         * lib/fprintftime.h: Likewise.
45944         * lib/savedir.c: Use (C) in copyright notice.
45945         * lib/savedir.h: Likewise.
45946
45947         2006-08-15  Jim Meyering  <jim@meyering.net>
45948
45949         * lib/at-func.c: New file, with the logic of all emulated at-functions.
45950         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
45951         in support of the EXPECTED_ERRNO macro.
45952         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
45953         definitions.  Instead, define the appropriate symbols and include
45954         "at-func.c".
45955         * lib/mkdirat.c (mkdirat): Likewise.
45956         * lib/fchmodat.c (fchmodat): Likewise.
45957         (ENOSYS): Remove definition.
45958         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
45959         it.  Don't include "unistd--.h" -- it wasn't ever used.
45960
45961         2006-01-17  Jim Meyering  <jim@meyering.net>
45962
45963         Rewrite fts.c not to change the current working directory,
45964         by using openat, fstatat, fdopendir, etc..
45965
45966         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
45967         (HAVE_OPENAT_SUPPORT): Define.
45968         [_LIBC] (fchdir): Don't undef or define; no longer used.
45969         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
45970         Now, this `function' always succeeds, and consumes its file descriptor
45971         parameter -- so callers must not close such FDs.  Update callers.
45972         (diropen_fd, opendirat, cwd_advance_fd): New functions.
45973         (diropen): Add parameter, SP.  Adjust all callers.
45974         Implement using diropen_fd, rather than open.
45975         (fts_open): Initialize new member, fts_cwd_fd.
45976         Remove fts_rft-setting code.
45977         (fts_close): Close fts_cwd_fd, if necessary.
45978         (__opendir2): Define in terms of opendir or opendirat,
45979         depending on whether the FST_NOCHDIR flag is set.
45980         (fts_build): Since fts_safe_changedir consumes its FD, and since
45981         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
45982         and close the dup'd file descriptor upon failure.
45983         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
45984         (fts_safe_changedir): Tweak semantics to reflect that this function
45985         now calls cwd_advance_fd and hence consumes its FD argument.
45986         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
45987         [struct FTS] (fts_rft): Remove now-unused member.
45988         [struct FTS] (fts_cycle.state): Improve comment.
45989
45990         * lib/openat.c (openat_needs_fchdir): New function.
45991         * lib/openat.h (openat_needs_fchdir): Declare it.
45992
45993 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
45994
45995         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
45996         Problem and fix reported by Pádraig Brady in
45997         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
45998
45999 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
46000
46001         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
46002
46003 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
46004
46005         * lib/memcoll.c (memcoll): Optimize for the common case where the
46006         arguments are bytewise equal.
46007
46008 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
46009
46010         * doc/regexprops-generic.texi: Add a copyright notice.
46011
46012 2006-08-15  Bruno Haible  <bruno@clisp.org>
46013
46014         * modules/tmpdir (License): Change to LGPL.
46015
46016 2006-08-15  Bruno Haible  <bruno@clisp.org>
46017
46018         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
46019         module.
46020
46021 2006-08-14  Simon Josefsson  <jas@extundo.com>
46022
46023         * config/srclist.txt: Add gnupload.
46024
46025 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
46026
46027         Change copyright notice from LGPL 2 to GPL 2, since that's the
46028         standard form used in the gnulib repository.
46029         * tests/test-lock.c: Likewise.
46030         * tests/test-stdint.c: Likewise.
46031         * tests/test-tls.c: Likewise.
46032
46033         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
46034         prelude-manager.  User shorter URLs for GNU projects, without '?'.
46035         Add copyright notice.
46036
46037         * check-module: Add copyright notice.  Output a copyright
46038         notice if "--version" is specified.
46039         * modules/COPYING: New file.
46040         * tests/test-getaddrinfo.c: Add copyright notice.
46041         * tests/test-verify.c: Likewise.
46042
46043 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
46044
46045         Change copyright notice from LGPL 2 to GPL 2, since that's the
46046         standard form used in the gnulib repository.
46047         * lib/lock.c: LGPL -> GPL.
46048         * lib/lock.h: Likewise.
46049         * lib/strnlen1.c: Likewise.
46050         * lib/strnlen1.h: Likewise.
46051         * lib/tls.c: Likewise.
46052         * lib/tls.h: Likewise.
46053         * lib/tmpdir.c: Likewise.
46054
46055         * lib/TODO: Remove; this belongs only in coreutils.
46056
46057 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
46058
46059         Add copyright notices to long-enough files that lack them, since
46060         otherwise the files aren't clearly free.  Use the same notice that
46061         getdate.texi already uses.
46062         * doc/alloca-opt.texi: Add copyright notice.
46063         * doc/alloca.texi: Likewise.
46064         * doc/ctime.texi: Likewise.
46065         * doc/functions.texi: Likewise.
46066         * doc/gcd.texi: Likewise.
46067         * doc/gnulib-tool.texi: Likewise.
46068         * doc/inet_ntoa.texi: Likewise.
46069         * doc/visibility.texi: Likewise.
46070
46071         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
46072         * doc/quote.texi: Add copyright notice.
46073
46074         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
46075         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
46076         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
46077         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
46078         is now obsolete, and give a pointer to the Sun list.
46079         Add copyright notice.
46080
46081 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
46082
46083         * config/srclistvars.sh: Add copyright notice.
46084
46085 2006-08-14  Eric Blake  <ebb9@byu.net>
46086
46087         Import the following change from libc:
46088
46089         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
46090
46091         Upstream bug 2997.
46092         * lib/misc/error.c: Add space between program name and message if file
46093         name is missing.
46094
46095 2006-08-12  Karl Berry  <karl@gnu.org>
46096
46097         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
46098         remove, these originate in gnulib now.
46099
46100 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46101
46102         * doc/Makefile (standards.info standards.html standards.dvi):
46103         Also depend on make-stds.texi.
46104
46105 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
46106
46107         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
46108         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
46109
46110         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
46111         in wchar_t.  Problem reported by Eric Blake.
46112
46113         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
46114         LEN is smaller than SIZE.  Suggested by Bruno Haible.
46115         Also, help the compiler to keep LEN in a register.
46116
46117 2006-08-11  Eric Blake  <ebb9@byu.net>
46118
46119         * users.txt: Sort.  Add tar.
46120
46121 2006-08-11  Bruno Haible  <bruno@clisp.org>
46122
46123         * users.txt: New file.
46124
46125 2006-08-11  Bruno Haible  <bruno@clisp.org>
46126
46127         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
46128         before <wchar.h>. Needed for OSF/1 and BSD/OS.
46129
46130 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
46131
46132         * modules/snprintf (Depends-on): Remove minmax.
46133         (Maintainer): Add self and Bruno.
46134
46135 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
46136
46137         * lib/.cppi-disable: Add snprintf.h, socket_.h.
46138         * lib/snprintf.c: Include <errno.h> and <limits.h>.
46139         (EOVERFLOW): Define if the system does not.
46140         Do not include "minmax.h"; it wasn't used.
46141         (snprintf): Don't assume size_t promotes to an unsigned type.
46142         Fix bug when generated string was too long for the buffer: the
46143         buffer's contents are supposed to be the initial prefix of the
46144         output.  Don't assume vasnprintf returns EOVERFLOW if the size
46145         exceeds INT_MAX; do the check ourselves.
46146
46147         Import the following changes from libc:
46148
46149         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
46150
46151         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
46152         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
46153         set wc to the byte which couldn't be converted.
46154         (re_string_reconstruct): Don't clear valid_raw_len before calling
46155         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
46156         tip_context using re_string_context_at.
46157
46158         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
46159
46160         * lib/posix/regex.h: g++ still cannot handled [restrict].
46161
46162         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
46163
46164         * lib/posix/regex.h: Remove special handling for VMS.
46165
46166 2006-08-10  Jim Meyering  <jim@meyering.net>
46167
46168         * modules/same-inode: New module.
46169         * modules/dev-ino: New module.
46170         * modules/cycle-check: Depend on these modules, rather than simply
46171         including their .h files.
46172         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
46173         required via m4/cycle-check.m4.
46174         * modules/same: Depend on new same-inode module, rather than
46175         including same-inode.h.
46176         * modules/chdir-safer: New file.
46177
46178         * modules/chown (Depends-on): Add stat-macros.
46179
46180 2006-08-10  Jim Meyering  <jim@meyering.net>
46181
46182         * m4/cycle-check.m4: New file.
46183         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
46184         * m4/dev-ino.m4, m4/same-inode.m4: New files.
46185
46186 2006-08-10  Eric Blake  <ebb9@byu.net>
46187
46188         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
46189         in from original proposal.
46190
46191 2006-08-10  Eric Blake  <ebb9@byu.net>
46192         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
46193
46194         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
46195         namespace.
46196
46197 2006-08-10  Bruno Haible  <bruno@clisp.org>
46198
46199         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
46200         as well.
46201
46202 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
46203
46204         Sync from coreutils.
46205
46206         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
46207
46208         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
46209         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
46210
46211 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
46212
46213         * modules/restrict: Remove; no longer needed now that we assume
46214         Autoconf 2.59 or later.
46215         * MODULES.html.sh: Remove 'restrict'.
46216         * modules/argp (Depends-on): Remove 'restrict'.
46217         * modules/base64 (Depends-on): Likewise.
46218         * modules/gc (Depends-on): Likewise.
46219         * modules/getaddrinfo (Depends-on): Likewise.
46220         * modules/glob (Depends-on): Likewise.
46221         * modules/inet_ntop (Depends-on): Likewise.
46222         * modules/inet_pton (Depends-on): Likewise.
46223         * modules/memxor (Depends-on): Likewise.
46224         * modules/regex (Depends-on): Likewise.
46225         * modules/strtok_r (Depends-on): Likewise.
46226         * modules/time_r (Depends-on): Likewise.
46227
46228 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
46229
46230         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
46231         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
46232         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
46233         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
46234         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
46235         * m4/memxor.m4 (gl_MEMXOR): Likewise.
46236         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
46237         gl_C_RESTRICT replaced by AC_C_RESTRICT.
46238
46239         Merge from coreutils.
46240         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
46241         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
46242         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
46243         * m4/time_r.m4 (gl_TIME_R): Likewise.
46244
46245 2006-08-09  Karl Berry  <karl@gnu.org>
46246
46247         * config/srclist.txt: no more gettext-tools, per Bruno.
46248
46249 2006-08-08  Eric Blake  <ebb9@byu.net>
46250
46251         * modules/verror: New module.
46252         * MODULES.html.sh: Document it.
46253
46254 2006-08-08  Eric Blake  <ebb9@byu.net>
46255
46256         * lib/verror.h, lib/verror.c: New files.
46257
46258 2006-08-08  Eric Blake  <ebb9@byu.net>
46259
46260         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
46261         verror_at_line output complies with GNU Coding Standards even when
46262         file is NULL.
46263
46264 2006-08-07  Bruno Haible  <bruno@clisp.org>
46265
46266         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
46267         versions of AIX.
46268         Reported by Ralf Wildenhues.
46269
46270 2006-08-07  Bruno Haible  <bruno@clisp.org>
46271
46272         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
46273         in an AC_DEFUN. Needed so that the autoconf snippets can use
46274         AC_REQUIRE.
46275
46276 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46277
46278         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
46279         Initialize pkgdata_DATA.
46280         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
46281         overriding it.
46282
46283 2006-08-06  Eric Blake  <ebb9@byu.net>
46284
46285         * lib/error.h: Fold in some upstream changes from glibc.
46286         * lib/error.c: Likewise.
46287
46288 2006-08-04  Bruno Haible  <bruno@clisp.org>
46289
46290         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
46291         Make the mostlyclean-local rule depend on mostlyclean-generic.
46292         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
46293
46294 2006-07-31  Bruno Haible  <bruno@clisp.org>
46295
46296         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
46297         <stdlib.h>, <string.h>.
46298
46299 2006-07-30  Bruno Haible  <bruno@clisp.org>
46300
46301         * modules/readlink (License): Change to LGPL.
46302
46303 2006-07-30  Bruno Haible  <bruno@clisp.org>
46304
46305         * modules/javaversion (Makefile.am): Distribute javaversion.java and
46306         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
46307         set PKGDATADIR to point to it.
46308
46309 2006-07-30  Bruno Haible  <bruno@clisp.org>
46310
46311         * modules/csharpexec (configure.ac): Comment out macro invocation.
46312         * modules/javaexec (configure.ac): Likewise.
46313         * modules/javacomp-script (configure.ac): Likewise.
46314
46315         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
46316
46317 2006-07-30  Bruno Haible  <bruno@clisp.org>
46318
46319         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
46320         linked-list.
46321
46322 2006-07-30  Bruno Haible  <bruno@clisp.org>
46323
46324         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
46325
46326 2006-07-30  Bruno Haible  <bruno@clisp.org>
46327
46328         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
46329         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
46330         get removed.
46331
46332 2006-07-29  Bruno Haible  <bruno@clisp.org>
46333
46334         Make it possible for gnulib-tool to work with locally modified or
46335         augmented gnulib repositories.
46336         * gnulib-tool (func_usage): Document --local-dir option.
46337         (local_gnulib_dir): New variable.
46338         Handle --local-dir option.
46339         (func_lookup_file): New function.
46340         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
46341         (func_get_description, func_get_filelist, func_get_description,
46342         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
46343         func_get_automake_snippet, func_get_include_directive,
46344         func_get_license, func_get_maintainer): Use func_lookup_file.
46345         (func_import, func_create_testdir): Use func_lookup_file.
46346
46347 2006-07-29  Bruno Haible  <bruno@clisp.org>
46348
46349         * modules/setenv (Depends-on): Add unistd.
46350
46351 2006-07-29  Bruno Haible  <bruno@clisp.org>
46352
46353         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
46354
46355 2006-07-29  Bruno Haible  <bruno@clisp.org>
46356
46357         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
46358
46359 2006-07-29  Bruno Haible  <bruno@clisp.org>
46360
46361         * gnulib-tool (import, update): If there is no Makefile.am, look at
46362         aclocal.m4, instead of bailing out.
46363
46364 2006-07-29  Bruno Haible  <bruno@clisp.org>
46365
46366         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
46367         Categorize the options by when they are useful.
46368
46369 2006-07-29  Bruno Haible  <bruno@clisp.org>
46370
46371         * gnulib-tool (func_usage): Document option --no-libtool.
46372         Handle option --no-libtool.
46373         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
46374         for changed semantics of $libtool variable.
46375         (func_import): Likewise. If libtool is not used, show this through
46376         an option --no-libtool.
46377         (func_create_testdir): Update.
46378
46379 2006-07-29  Bruno Haible  <bruno@clisp.org>
46380
46381         * gnulib-tool (func_import): Extend error message about missing
46382         --doc-base.
46383
46384 2006-07-29  Bruno Haible  <bruno@clisp.org>
46385
46386         * gnulib-tool (func_import): Don't create the $docbase directory if
46387         there is no file to store there.
46388
46389 2006-07-29  Bruno Haible  <bruno@clisp.org>
46390
46391         * gnulib-tool (autoconf_minversion): If a --dir option is given and
46392         relevant, look for configure.ac there, not in the current directory.
46393         Also use a simple search for AC_PREREQ, not "autoconf --trace".
46394
46395 2006-07-29  Bruno Haible  <bruno@clisp.org>
46396
46397         * gnulib-tool (SORT): New variable.
46398         (func_usage): Undocument --assume-autoconf option.
46399         Remove --assume-autoconf option handling.
46400         (autoconf_minversion): Determine from the contents of configure.ac.
46401         (func_import): Remove autoconf_minversion handling.
46402         Suggested by Eric Blake.
46403
46404 2006-07-29  Bruno Haible  <bruno@clisp.org>
46405
46406         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
46407
46408 2006-07-29  Bruno Haible  <bruno@clisp.org>
46409
46410         * config/srclist.txt (*setenv.[ch]): Remove rules.
46411
46412 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46413
46414         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
46415
46416 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46417
46418         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
46419         arpa/inet.h.
46420
46421 2006-07-28  Simon Josefsson  <jas@extundo.com>
46422
46423         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
46424         * modules/inet_pton (Depends-on): Likewise.
46425
46426 2006-07-28  Simon Josefsson  <jas@extundo.com>
46427
46428         * m4/netinet_in_h.m4: New file.
46429
46430 2006-07-28  Simon Josefsson  <jas@extundo.com>
46431
46432         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
46433         #include's.
46434
46435 2006-07-28  Simon Josefsson  <jas@extundo.com>
46436
46437         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
46438         #include's.
46439
46440 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
46441
46442         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
46443         setgid on directories only if they set these bits.
46444         * lib/modechange.h: Remove obsolete comment about masks.
46445
46446 2006-07-28  Eric Blake  <ebb9@byu.net>
46447
46448         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
46449         macro expansion.
46450
46451 2006-07-28  Bruno Haible  <bruno@clisp.org>
46452
46453         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
46454
46455 2006-07-28  Bruno Haible  <bruno@clisp.org>
46456
46457         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
46458
46459 2006-07-28  Bruno Haible  <bruno@clisp.org>
46460
46461         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
46462         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
46463         Define fallbacks.
46464         Avoids link error on FreeBSD 4.x.
46465         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
46466
46467         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
46468         encoding.
46469         * lib/mbswidth.c (iswcntrl): Likewise.
46470
46471 2006-07-27  Bruno Haible  <bruno@clisp.org>
46472
46473         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
46474         test.
46475
46476 2006-07-27  Bruno Haible  <bruno@clisp.org>
46477
46478         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
46479         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
46480         defined.
46481
46482 2006-07-26  Eric Blake  <ebb9@byu.net>
46483
46484         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
46485
46486 2006-07-26  Eric Blake  <ebb9@byu.net>
46487
46488         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
46489         like mingw that lack mkstemp.
46490         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
46491         avoid compilation warning on mingw.
46492
46493 2006-07-26  Bruno Haible  <bruno@clisp.org>
46494
46495         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
46496         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
46497         INT_FAST*_MIN, INTPTR_MIN.
46498
46499 2006-07-25  Bruno Haible  <bruno@clisp.org>
46500
46501         * modules/version-etc (Depends-on): Add stdarg.
46502
46503 2006-07-25  Bruno Haible  <bruno@clisp.org>
46504
46505         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
46506         complex commands.
46507
46508 2006-07-25  Bruno Haible  <bruno@clisp.org>
46509
46510         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
46511         defined in <stdarg.h> or config.h.
46512
46513 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
46514
46515         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
46516         (gl_STDIO_SAFER): Remove.
46517
46518 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
46519
46520         * MODULES.html.sh (File stream based Input/Output):
46521         Add fopen-safer, tmpfile-safer; remove stdio-safer.
46522         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
46523         * modules/fopen-safer, modules/tmpfile-safer: New files.
46524         * modules/stdio-safer: Remove.
46525
46526 2006-07-24  Bruno Haible  <bruno@clisp.org>
46527
46528         * modules/tmpdir: New file.
46529         * MODULES.html.sh (File system functions): Add it.
46530
46531 2006-07-24  Bruno Haible  <bruno@clisp.org>
46532
46533         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
46534         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
46535
46536 2006-07-24  Bruno Haible  <bruno@clisp.org>
46537
46538         * modules/clean-temp: New file.
46539
46540 2006-07-24  Bruno Haible  <bruno@clisp.org>
46541
46542         * m4/tmpdir.m4: New file, from GNU gettext.
46543
46544 2006-07-24  Bruno Haible  <bruno@clisp.org>
46545
46546         * lib/tmpdir.h: New file, from GNU gettext.
46547         * lib/tmpdir.c: New file, from GNU gettext.
46548
46549 2006-07-24  Bruno Haible  <bruno@clisp.org>
46550
46551         * lib/clean-temp.h: New file, from GNU gettext.
46552         * lib/clean-temp.c: New file, from GNU gettext.
46553
46554 2006-07-23  Eric Blake  <ebb9@byu.net>
46555
46556         * modules/stdio-safer (Files): Add tmpfile-safer.c.
46557         (Depends-on): Add binary-io.
46558
46559 2006-07-23  Eric Blake  <ebb9@byu.net>
46560
46561         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
46562
46563 2006-07-23  Eric Blake  <ebb9@byu.net>
46564
46565         * lib/tmpfile-safer.c: New file.
46566         * lib/stdio-safer.h (fopen_safer): Add prototype.
46567         * lib/stdio--.h (tmpfile): Make safer.
46568
46569 2006-07-23  Bruno Haible  <bruno@clisp.org>
46570
46571         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
46572         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
46573         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
46574         gl_linked_remove_at): Use it.
46575
46576 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46577         and Simon Josefsson <jas@extundo.com>
46578
46579         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
46580
46581         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
46582
46583 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
46584
46585         * modules/close-stream: New file.
46586         * modules/closeout (Description): Make it clear that it exits
46587         with a diagnostic on error.
46588         (Depends-on): Add close-stream.  Remove fpending, stdbool.
46589         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
46590
46591 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
46592
46593         * m4/close-stream.m4: New file.
46594
46595 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
46596
46597         * lib/close-stream.c, lib/close-stream.h: New files.
46598
46599 2006-07-22  Bruno Haible  <bruno@clisp.org>
46600
46601         Merge from GNU gettext 0.15.
46602
46603         2006-05-01  Bruno Haible  <bruno@clisp.org>
46604
46605                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
46606
46607         2006-07-22  Bruno Haible  <bruno@clisp.org>
46608
46609                 * modules/javaversion: New file.
46610                 * MODULES.html.sh (Java): Add javaversion.
46611
46612         2006-03-12  Bruno Haible  <bruno@clisp.org>
46613
46614                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
46615
46616         2005-12-04  Bruno Haible  <bruno@clisp.org>
46617
46618                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
46619                 (untested).
46620
46621         2006-06-21  Bruno Haible  <bruno@clisp.org>
46622
46623                 Avoid warnings from recent versions of mcs.
46624                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
46625                 -o, -L, -r any more. Use options documented since mcs-1.0
46626                 instead. Similarly for -g.
46627
46628         2005-12-04  Bruno Haible  <bruno@clisp.org>
46629
46630                 * build-aux/csharpcomp.sh.in: Suffix for resources is
46631                 .resources, not .resource.
46632
46633         2005-07-09  Bruno Haible  <bruno@clisp.org>
46634
46635                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
46636                 add a .dll suffix.
46637                 Reported by Mark Junker <mjscod@gmx.de>.
46638
46639         2006-07-22  Bruno Haible  <bruno@clisp.org>
46640
46641                 * modules/gettext: Upgrade to gettext-0.15.
46642                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
46643                 m4/visibility.m4.
46644                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
46645
46646 2006-07-22  Bruno Haible  <bruno@clisp.org>
46647
46648         Merge from GNU gettext 0.15.
46649
46650         2006-03-25  Bruno Haible  <bruno@clisp.org>
46651
46652                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
46653
46654         2006-07-21  Bruno Haible  <bruno@clisp.org>
46655
46656                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
46657                 "1.1".
46658
46659         2006-05-09  Bruno Haible  <bruno@clisp.org>
46660
46661                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
46662                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
46663                 for the conftestver execution.
46664
46665         2006-05-01  Bruno Haible  <bruno@clisp.org>
46666
46667                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
46668                 optional target-version argument. Verify that the compiler
46669                 groks source of the specified source-version, or add -source
46670                 option as necessary. Verify that the compiler produces
46671                 bytecode in the specified target-version, or add -target and
46672                 -source options as necessary. Make the result of the test
46673                 available as variable CONF_JAVAC. Also log error output in
46674                 config.log.
46675
46676         2006-03-11  Bruno Haible  <bruno@clisp.org>
46677
46678                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
46679
46680         2006-05-09  Bruno Haible  <bruno@clisp.org>
46681
46682                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
46683                 CLASSPATH_SEPARATOR to a semicolon.
46684
46685         2006-03-12  Bruno Haible  <bruno@clisp.org>
46686
46687                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
46688                 available as variable CONF_JAVA, for subsequent autoconf
46689                 tests. Also log error output in config.log.
46690
46691         2006-07-19  Bruno Haible  <bruno@clisp.org>
46692
46693                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
46694                 that getline works on glibc2 systems. Needed to avoid trouble
46695                 in relocatable.c.
46696                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
46697
46698         2005-12-04  Bruno Haible  <bruno@clisp.org>
46699
46700                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
46701                 launcher (untested).
46702
46703         2005-12-04  Bruno Haible  <bruno@clisp.org>
46704
46705                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
46706
46707         2006-07-22  Bruno Haible  <bruno@clisp.org>
46708
46709                 * gettext.m4: Update from GNU gettext-0.15.
46710                 * nls.m4: Likewise.
46711                 * po.m4: Likewise.
46712                 * inttypes-pri.m4: Likewise.
46713                 * inttypes-h.m4: Renamed from inttypes.m4.
46714                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
46715
46716 2006-07-22  Bruno Haible  <bruno@clisp.org>
46717
46718         Merge from GNU gettext 0.15.
46719
46720         2005-07-05  Bruno Haible  <bruno@clisp.org>
46721
46722                 * printf-args.c (printf_fetchargs): Work around broken
46723                 definition of wint_t on mingw.
46724
46725         2005-02-12  Bruno Haible  <bruno@clisp.org>
46726
46727                 * xallocsa.h: Add extern "C" for C++.
46728
46729         2006-05-17  Bruno Haible  <bruno@clisp.org>
46730
46731                 Cygwin portability.
46732                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
46733
46734         2006-04-30  Bruno Haible  <bruno@clisp.org>
46735
46736                 * progreloc.c: Include <mach-o/dyld.h> if available.
46737                 (find_executable): Use _NSGetExecutablePath when possible.
46738
46739         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
46740
46741                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
46742                 function.
46743
46744         2005-12-29  Bruno Haible  <bruno@clisp.org>
46745
46746                 * progreloc.c (set_program_name_and_installdir): Fix
46747                 compilation error.
46748
46749         2005-12-04  Bruno Haible  <bruno@clisp.org>
46750
46751                 Cygwin portability.
46752                 * progreloc.c: Include <windows.h> also on Cygwin.
46753                 (find_executable): Add support for Cygwin.
46754                 (set_program_name_and_installdir): Handle also platforms with
46755                 nonempty EXEEXT.
46756
46757         2006-07-11  Bruno Haible  <bruno@clisp.org>
46758
46759                 * javacomp.c: Fix a comment.
46760                 Reported by Jim Meyering.
46761
46762         2006-04-30  Bruno Haible  <bruno@clisp.org>
46763
46764                 * javacomp.h (compile_java_class): Add source_version,
46765                 target_version arguments.
46766                 * javacomp.c: Rewritten to choose only a compiler that
46767                 respects the specified source_version and target_version.
46768
46769         2006-06-27  Bruno Haible  <bruno@clisp.org>
46770
46771                 Assume correct S_ISDIR macro.
46772                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
46773
46774         2006-07-22  Bruno Haible  <bruno@clisp.org>
46775
46776                 * javaversion.h: New file, from GNU gettext.
46777                 * javaversion.c: New file, from GNU gettext.
46778                 * javaversion.java: New file, from GNU gettext.
46779                 * javaversion.class: New file, from GNU gettext.
46780
46781         2006-05-17  Bruno Haible  <bruno@clisp.org>
46782
46783                 Cygwin portability.
46784                 * javaexec.c (execute_java_class): Test for jview program
46785                 also on Cygwin.
46786
46787         2006-04-09  Bruno Haible  <bruno@clisp.org>
46788
46789                 * fatal-signal.c: Don't include string.h.
46790                 (at_fatal_signal): Use a copying loop instead of memcpy.
46791
46792         2005-12-04  Bruno Haible  <bruno@clisp.org>
46793
46794                 * csharpexec.c: Add support for 'clix' launcher (untested).
46795                 (execute_csharp_using_sscli): New function.
46796                 (execute_csharp_program): Call it.
46797
46798         2006-06-21  Bruno Haible  <bruno@clisp.org>
46799
46800                 Avoid warnings from recent versions of mcs.
46801                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
46802                 -o, -L, -r any more. Use options documented since mcs-1.0
46803                 instead. Similarly for -g.
46804
46805         2005-07-09  Bruno Haible  <bruno@clisp.org>
46806
46807                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
46808                 add a .dll suffix.
46809                 Reported by Mark Junker <mjscod@gmx.de>.
46810
46811         2006-06-17  Bruno Haible  <bruno@clisp.org>
46812
46813                 * config.charset: Update for NetBSD 3.0.
46814
46815         2006-05-17  Bruno Haible  <bruno@clisp.org>
46816
46817                 Cygwin portability.
46818                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
46819
46820         2006-05-16  Bruno Haible  <bruno@clisp.org>
46821
46822                 * localcharset.c [CYGWIN]: Include <windows.h>.
46823                 (get_charset_aliases): For Cygwin, return the same CPxxx
46824                 aliases list as under WIN32.
46825                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
46826                 the environment variables. Fall back to GetACP().
46827
46828         2006-04-05  Bruno Haible  <bruno@clisp.org>
46829
46830                 * config.charset: Update Juan Manuel Guerrero's address.
46831
46832         2005-02-12  Bruno Haible  <bruno@clisp.org>
46833
46834                 * allocsa.h: Add extern "C" for C++.
46835
46836         2005-02-10  Bruno Haible  <bruno@clisp.org>
46837
46838                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
46839                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
46840
46841         2006-07-22  Bruno Haible  <bruno@clisp.org>
46842
46843                 * gettext.h: Update to GNU gettext-0.15.
46844
46845 2006-07-22  Bruno Haible  <bruno@clisp.org>
46846
46847         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
46848         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
46849         lib-prefix.m4, longdouble.m4, ssize_t.m4.
46850
46851 2006-07-21  Eric Blake  <ebb9@byu.net>
46852
46853         * modules/stdlib-safer: New file.
46854         * MODULES.html.sh (File stream based Input/Output): Add
46855         stdlib-safer.
46856
46857 2006-07-21  Eric Blake  <ebb9@byu.net>
46858
46859         * lib/stdlib-safer.h: New file from coreutils, required by
46860         stdlib--.h.
46861
46862 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
46863
46864         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
46865
46866 2006-07-20  Bruno Haible  <bruno@clisp.org>
46867
46868         * gnulib-tool: Recognize new option --assume-autoconf.
46869         (autoconf_minversion): New variable.
46870         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
46871
46872 2006-07-20  Bruno Haible  <bruno@clisp.org>
46873
46874         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
46875
46876 2006-07-19  Derek R. Price  <derek@ximbiot.com>
46877
46878         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
46879         Reindent and repaginate.
46880
46881 2006-07-19  Derek Price  <derek@ximbiot.com>
46882
46883         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
46884         Correct grammar.
46885
46886 2006-07-17  Bruno Haible  <bruno@clisp.org>
46887
46888         * modules/list: New file.
46889         * modules/array-list: New file.
46890         * modules/carray-list, modules/carray-list-tests: New files.
46891         * modules/linked-list, modules/linked-list-tests: New files.
46892         * modules/avltree-list, modules/avltree-list-tests: New files.
46893         * modules/rbtree-list, modules/rbtree-list-tests: New files.
46894         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
46895         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
46896         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
46897         * modules/oset: New file.
46898         * modules/array-oset: New file.
46899         * modules/avltree-oset, modules/avltree-oset-tests: New files.
46900         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
46901         * tests/test-carray_list.c: New file.
46902         * tests/test-linked_list.c: New file.
46903         * tests/test-avltree_list.c: New file.
46904         * tests/test-rbtree_list.c: New file.
46905         * tests/test-linkedhash_list.c: New file.
46906         * tests/test-avltreehash_list.c: New file.
46907         * tests/test-rbtreehash_list.c: New file.
46908         * tests/test-avltree_oset.c: New file.
46909         * tests/test-rbtree_oset.c: New file.
46910         * MODULES.html.sh (Container data structures): New section.
46911
46912 2006-07-17  Bruno Haible  <bruno@clisp.org>
46913
46914         * m4/gl_list.m4: New file.
46915
46916 2006-07-17  Bruno Haible  <bruno@clisp.org>
46917
46918         * lib/gl_list.h: New file.
46919         * lib/gl_list.c: New file.
46920         * lib/gl_array_list.h: New file.
46921         * lib/gl_array_list.c: New file.
46922         * lib/gl_carray_list.h: New file.
46923         * lib/gl_carray_list.c: New file.
46924         * lib/gl_linked_list.h: New file.
46925         * lib/gl_linked_list.c: New file.
46926         * lib/gl_anylinked_list1.h: New file.
46927         * lib/gl_anylinked_list2.h: New file.
46928         * lib/gl_avltree_list.h: New file.
46929         * lib/gl_avltree_list.c: New file.
46930         * lib/gl_anyavltree_list1.h: New file.
46931         * lib/gl_anyavltree_list2.h: New file.
46932         * lib/gl_rbtree_list.h: New file.
46933         * lib/gl_rbtree_list.c: New file.
46934         * lib/gl_anyrbtree_list1.h: New file.
46935         * lib/gl_anyrbtree_list2.h: New file.
46936         * lib/gl_anytree_list1.h: New file.
46937         * lib/gl_anytree_list2.h: New file.
46938         * lib/gl_linkedhash_list.h: New file.
46939         * lib/gl_linkedhash_list.c: New file.
46940         * lib/gl_anyhash_list1.h: New file.
46941         * lib/gl_anyhash_list2.h: New file.
46942         * lib/gl_avltreehash_list.h: New file.
46943         * lib/gl_avltreehash_list.c: New file.
46944         * lib/gl_rbtreehash_list.h: New file.
46945         * lib/gl_rbtreehash_list.c: New file.
46946         * lib/gl_anytreehash_list1.h: New file.
46947         * lib/gl_anytreehash_list2.h: New file.
46948
46949         * lib/gl_oset.h: New file.
46950         * lib/gl_oset.c: New file.
46951         * lib/gl_array_oset.h: New file.
46952         * lib/gl_array_oset.c: New file.
46953         * lib/gl_avltree_oset.h: New file.
46954         * lib/gl_avltree_oset.c: New file.
46955         * lib/gl_rbtree_oset.h: New file.
46956         * lib/gl_rbtree_oset.c: New file.
46957         * lib/gl_anytree_oset.h: New file.
46958
46959 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46960
46961         * m4/mkancesdirs.m4: New file.
46962         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
46963         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
46964         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
46965         it.
46966
46967 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46968
46969         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
46970         * lib/mkancesdirs.h: New files.
46971         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
46972         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
46973         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
46974         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
46975         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
46976         callers changed.  Revamp internals significantly, by not
46977         attempting to create directories that are temporarily more
46978         permissive than the final results.  Do not attempt to use
46979         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
46980         This removes some race conditions, fixes some bugs, and simplifies
46981         things.  Use new dirchownmod function to do owner and mode changes.
46982         * lib/mkdir-p.h: Likewise.
46983         * lib/modechange.c (octal_to_mode): New function.
46984         (struct mode_change): New member mentioned.
46985         (make_node_op_equals): New arg mentioned.  All callers changed.
46986         (mode_compile): Keep track of which mode bits the user has explicitly
46987         mentioned.
46988         (mode_adjust): New arg DIR, so that we implement the X op correctly.
46989         New arg PMODE_BITS, to keep track of which mode bits the user
46990         mentioned; it treats S_ISUID and S_ISGID speciall.
46991         All callers changed.
46992         * lib/modechange.h: Likewise.
46993
46994 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46995
46996         * MODULES.html.sh: Add mkancestors.
46997         * modules/mkancesdirs: New module.
46998         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
46999         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
47000         The chdir-safer and afs files are now orphans; I'll remove them
47001         unless someone speaks up.
47002         Add lib/dirchownmod.c, lib/dirchownmod.h.
47003         (Depends-on): Remove alloca, chown, save-cwd, dirname.
47004         Add lchown, mkancesdirs.
47005         (Maintainer): Add self.
47006
47007 2006-07-15  Karl Berry  <karl@gnu.org>
47008
47009         * gnulib-tool: help message wording/arrangement.
47010
47011 2006-07-14  Simon Josefsson  <jas@extundo.com>
47012
47013         * doc/gnulib.texi (Libtool and Windows): New section.
47014
47015 2006-07-12  Simon Josefsson  <jas@extundo.com>
47016
47017         * modules/gendocs (License): Fix license, approved by Karl.
47018
47019 2006-07-12  Eric Blake  <ebb9@byu.net>
47020
47021         * MODULES.html.sh: Add gendocs.
47022
47023 2006-07-11  Eric Blake  <ebb9@byu.net>
47024
47025         * modules/fdl: New module, to install doc/fdl.texi.
47026         * MODULES.html.sh: Add new section for documentation modules.
47027         * gnulib-tool: Avoid space-tab.
47028         (--doc-base): New option, to manage files from doc.
47029
47030 2006-07-11  Eric Blake  <ebb9@byu.net>
47031
47032         * m4/absolute-header.m4: Fix comments to match recent change.
47033
47034 2006-07-11  Eric Blake  <ebb9@byu.net>
47035
47036         * gnulib-tool: List --doc-base before --tests-base.
47037
47038 2006-07-11  Derek R. Price  <derek@ximbiot.com>
47039
47040         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
47041
47042 2006-07-11  Bruno Haible  <bruno@clisp.org>
47043
47044         * README: Mention where to put documentation.
47045
47046 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47047
47048         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
47049
47050 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
47051
47052         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
47053         to stdint.m4.
47054
47055 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
47056
47057         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
47058         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
47059         "no/such/file/stdint.h" when there is no such file, so that
47060         the resulting C code can be parsed by dodgy compilers.
47061         Problems reported by Bob Proulx.
47062
47063 2006-07-10  Derek R. Price  <derek@ximbiot.com>
47064
47065         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
47066         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
47067         macros into the GNU _D_EXACT_NAMLEN.
47068         * lib/savedir.c:  Likewise.
47069         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
47070
47071 2006-07-10  Derek R. Price  <derek@ximbiot.com>
47072         and Paul Eggert  <eggert@cs.ucla.edu>
47073
47074         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
47075         * m4/savedir.m4:
47076         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
47077         macros into the GNU _D_EXACT_NAMLEN.
47078
47079 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
47080
47081         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
47082         around the absolute name, to work around a problem with the HP-UX
47083         11.23 native C compiler, reported by Bob Proulx.
47084
47085 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
47086
47087         * doc/maintain.texi, make-stds.texi: Sync from
47088         <http://savannah.gnu.org/projects/gnustandards>.
47089
47090 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
47091
47092         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
47093
47094 2006-07-09  Jim Meyering  <jim@meyering.net>
47095
47096         * m4/glob.m4: Remove a doubled word in a comment.
47097
47098 2006-07-09  Jim Meyering  <jim@meyering.net>
47099
47100         * lib/argp-pv.c: Remove a doubled word in a comment.
47101         * lib/check-version.c (check_version): Likewise.
47102         * lib/javacomp.c (compile_java_class): Likewise.
47103
47104 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
47105
47106         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
47107         for the benefit of people using Autoconf 2.60.  If you want to
47108         support older Autoconf versions you can copy m4/onceonly_2_57.m4
47109         (or m4/onceonly.m4, if pre-2.57) manually.
47110
47111 2006-07-08  Jim Meyering  <jim@meyering.net>
47112
47113         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
47114         comment.
47115         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
47116         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
47117         comment.
47118
47119 2006-07-08  Jim Meyering  <jim@meyering.net>
47120
47121         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
47122
47123 2006-07-07  Simon Josefsson  <jas@extundo.com>
47124
47125         * tests/test-crc.c: Change expected crc value, the test vector
47126         were probably computed using the old broken crc.c?
47127
47128 2006-07-06  Simon Josefsson  <jas@extundo.com>
47129
47130         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
47131         now the canonical place for the M4 file).
47132
47133         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
47134         from the sys_socket dependency now.
47135
47136         * modules/inet_pton (Files): Ditto.
47137
47138         * modules/inet_ntop (Files): Ditto.
47139
47140 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
47141
47142         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
47143         not gl_PREREQ_GETUSERSHELL.
47144
47145 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47146
47147         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
47148         with only one argument, for Autoconf 2.60.
47149         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
47150         expand to nothing, so add a shell command to avoid syntax error.
47151         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
47152
47153 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47154
47155         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
47156
47157 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47158
47159         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
47160         no longer needed.  Check for isblank decl.
47161         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
47162         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
47163         of existence.
47164
47165 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47166
47167         * lib/getloadavg.c: Use __VMS, not VMS.
47168         * lib/getopt.c: Likewise.
47169         * lib/getpagesize.h: Likewise.
47170         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
47171         and probably does not work.
47172
47173 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47174
47175         * lib/.cppi-disable: Add wcwidth.
47176         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
47177         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
47178         (ISGRAPH): Remove.  All uses changed to isgraph.
47179         (FOLD) [!defined _LIBC]: Remove special case.
47180         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
47181         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
47182         HAVE_ISBLANK.
47183         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
47184         case.
47185
47186 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
47187
47188         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
47189         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
47190         brackets.  Other minor changes to suppress some compiler
47191         warnings.
47192
47193 2006-07-06  Derek R. Price  <derek@ximbiot.com>
47194         and Paul Eggert  <eggert@cs.ucla.edu>
47195
47196         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
47197         of invoking obsolescent AC_HEADER_DIRENT macro.
47198         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
47199         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
47200         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
47201         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
47202         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
47203         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
47204         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
47205         * m4/readdir.m4: Remove; no longer needed.
47206
47207 2006-07-06  Derek R. Price  <derek@ximbiot.com>
47208         and Paul Eggert  <eggert@cs.ucla.edu>
47209
47210         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
47211         Don't worry about this obsolete case any more.
47212         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
47213         directories.
47214         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
47215         worry about this obsolete case any more.
47216         * lib/fts.c: Likewise.
47217         * lib/getcwd.c: Likewise.
47218         * lib/glob.h: Likewise.
47219         * lib/savedir.c: Likewise.
47220
47221 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
47222
47223         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
47224         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
47225         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
47226         needed.
47227         All uses removed.
47228         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
47229         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
47230         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
47231         needed.
47232         * m4/getdate.m4 (gl_GETDATE): Likewise.
47233         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
47234         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
47235         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
47236         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
47237         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
47238         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
47239         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
47240         needed.
47241
47242 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
47243
47244         * lib/memcasecmp.c: Include <limits.h>.
47245         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
47246         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
47247         Don't assume isdigit succeeds only on '0' through '9'.
47248
47249 2006-07-05  Eric Blake  <ebb9@byu.net>
47250
47251         * modules/getaddrinfo (Depends-on): Add snprintf.
47252
47253 2006-07-05  Eric Blake  <ebb9@byu.net>
47254
47255         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
47256         to avoid 'header present but could not be compiled' on cygwin.
47257
47258 2006-07-05  Eric Blake  <ebb9@byu.net>
47259
47260         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
47261         missing from netdb.h.
47262         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
47263
47264 2006-07-05  Derek R. Price  <derek@ximbiot.com>
47265
47266         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
47267         no longer needed.
47268         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
47269         * m4/getdate.m4 (gl_GETDATE): Likewise.
47270         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
47271         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
47272         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
47273         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
47274         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
47275
47276 2006-07-05  Derek R. Price  <derek@ximbiot.com>
47277
47278         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
47279         All uses of is_space replaced by isspace.
47280         * lib/exit.h: Don't talk about STDC_HEADERS.
47281         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
47282         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
47283         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
47284         replaced by isprint etc.
47285         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
47286         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
47287         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
47288         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
47289         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
47290         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
47291
47292 2006-07-05  Bruno Haible  <bruno@clisp.org>
47293
47294         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
47295         the function exists, before testing against AIX.
47296         Reported by Martin Lambers <marlam@marlam.de>.
47297
47298 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
47299
47300         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
47301         From Mark D. Baushke.
47302
47303 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
47304
47305         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
47306         to the absolute name, not just one, to bypass Sun C 5.8's
47307         "warning: #include of /usr/include/... may be non-portable".
47308
47309 2006-07-04  Eric Blake  <ebb9@byu.net>
47310
47311         * modules/dirname-tests: New test module.
47312         * tests/test-dirname.c: New file, replacing dirname.c
47313         TEST_DIRNAME section that was recently deleted.
47314
47315 2006-07-04  Bruno Haible  <bruno@clisp.org>
47316
47317         Assume ANSI C header files and <ctype.h> functions.
47318         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
47319         (mbsnwidth): Use isprint, iscntrl instead.
47320
47321 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47322
47323         Merge from coreutils.
47324         * MODULES.html.sh: Add xstrtold.
47325         * modules/xstrtold: New file.
47326         * modules/cycle-check (Files): Add lib/same-inode.h.
47327         * modules/dirname (Files): Add m4/double-slash-root.m4.
47328         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
47329         * modules/mkdir-p (Files): Add lib/same-inode.h.
47330         * modules/same (Files): Add lib/same-inode.h.
47331
47332 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47333
47334         * m4/absolute-header.m4: Renamed from full-header-path.m4.
47335         This is to keep the terminology clean; POSIX talks about
47336         "absolute pathnames", not "full pathnames", but the GNU
47337         Coding Standards say to use "path" for something else;
47338         so use "absolute" to keep both sides happy.
47339         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
47340         Set gl_absolute_header, not gl_full_header_path.
47341         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
47342         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
47343         All uses changed.
47344
47345         Merge from coreutils.
47346
47347         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
47348
47349         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
47350         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
47351         want to require the building of c-strtod.o.
47352         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
47353         needs -lm directly.
47354         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
47355
47356         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
47357
47358         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
47359         --as-needed option if available.  Problem reported by Albert Chin in
47360         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
47361         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
47362         cc merely issues a bunch of annoying warnings for --as-needed
47363         (this problem was reported by Bob Proulx).  Also, try linking with
47364         -lm to detect a bug in binutils 2.16 (this problem was reported
47365         by Ralf Wildenhues).
47366
47367         2006-06-18  Jim Meyering  <jim@meyering.net>
47368
47369         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
47370         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
47371         macro.
47372         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
47373         also check for glibc-2.4's abort-inducing bug.
47374
47375         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
47376         Low-probability clean-up should be to use rmdir to get rid of
47377         the just-created directory, not unlink.
47378
47379         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
47380         configure fail, and request a bug report to inform us about it.
47381         Add a comment that, barring reports to the contrary, in 2007 we'll
47382         assume ftruncate is universally available.
47383
47384         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
47385
47386         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
47387
47388         2006-03-12  Jim Meyering  <jim@meyering.net>
47389
47390         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
47391         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
47392         * m4/same.m4 (gl_SAME): Likewise.
47393         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
47394
47395         2006-03-11  Eric Blake  <ebb9@byu.net>
47396
47397         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
47398         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
47399         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
47400         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
47401
47402 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47403
47404         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
47405         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
47406         reported by Mark D. Baushke, one in
47407         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
47408
47409         Merge from coreutils.
47410
47411         * lib/.cppi-disable: Add stdint_.h.
47412         * lib/.cvsignore: Add stdint.h.
47413
47414         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
47415
47416         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
47417         both double and long double versions.
47418         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
47419         * lib/xstrtold.c: New file.
47420         * lib/xstrtod.h (xstrtold): New decl.
47421
47422         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
47423
47424         * lib/filemode.c (setst): Remove.
47425         (strmode): Rewrite to avoid setst.  This makes the code shorter,
47426         (arguably) clearer, and the generated code is a bit smaller on my
47427         Debian GNU/Linux stable x86 host.
47428
47429         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
47430
47431         * lib/filemode.c: Include "filemode.h" first, to test the interface.
47432         Assume that filemode.h includes sys/types.h and sys/stat.h.
47433         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
47434         (ftypelet): Reorder to put common cases first, for efficiency.
47435         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
47436         to do 'M'.
47437         (strmode): Renamed from mode_string, and now stores 12 bytes instead
47438         of 10, for compatibility with FreeBSD.  All callers changed.
47439         (filemodestring): Now stores 12 bytes instead of 10, and sets file
47440         types that can't be deduced solely from st_mode.  First arg is now a
47441         const pointer.
47442         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
47443         (strmode): Renamed from mode_string.
47444         (filemodestring): New decl.
47445         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
47446         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
47447         needed.
47448         (S_ISPORT, S_ISWHT): New macros, if not already defined.
47449
47450         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
47451
47452         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
47453         fsusage.h now does that.  Include fsusage.h first, to test interface.
47454         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
47455         at most one method (the old code could have generated decls that
47456         didn't conform to C89, not that this was ever exercised).
47457         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
47458
47459         2006-03-19  Jim Meyering  <jim@meyering.net>
47460
47461         Work even in a chroot where d_ino values for entries in "/"
47462         don't match the stat.st_ino values for the same names.
47463         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
47464         number, iterate through all entries again, using lstat instead.
47465         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
47466         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
47467
47468         * lib/getcwd.c (__getcwd): Clarify a comment.
47469         Use memcpy in place of a call to strcpy.
47470
47471         2006-03-12  Jim Meyering  <jim@meyering.net>
47472
47473         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
47474         matches that of the current directory (which we're about to chdir ".."
47475         out of), then save the dev-ino of the parent, instead.
47476
47477         * lib/same-inode.h (SAME_INODE): New file/macro.
47478         * lib/chdir-safer.c (SAME_INODE): Remove definition.
47479         Include "same-inode.h", instead.
47480         * lib/same.c: Likewise.
47481         * lib/cycle-check.h: Include "same-inode.h".
47482         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
47483         * lib/cycle-check.c (SAME_INODE): Remove definition.
47484         * lib/root-dev-ino.h: Include "same-inode.h".
47485
47486         2006-03-11  Eric Blake  <ebb9@byu.net>
47487
47488         * lib/same.c (same_name): s/base_name/last_component/
47489         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
47490         * lib/filenamecat.c (file_name_concat): Likewise.
47491
47492         2006-03-11  Eric Blake  <ebb9@byu.net>,
47493                     Paul Eggert  <eggert@cs.ucla.edu>
47494
47495         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
47496         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
47497         drive prefix.
47498         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
47499         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
47500         (last_component): New method.
47501         * lib/dirname.c (dir_len): Determine when drive letters need a
47502         subsequent slash.  Preserve // when it is special.
47503         (dir_name): Don't append dot when drive letter is absolute.
47504         [TEST_DIRNAME]: Move into a full-blown gnulib test.
47505         * lib/basename.c (base_name): New semantics - malloc the result.
47506         Preserve // when it is special.  Preserve relative files that look
47507         like drive letters.
47508         (base_len): Preserve // when it is special.
47509         (last_component): New method, similar to old base_name semantics.
47510         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
47511         base_name.  Strip redundant slashes from ///.
47512
47513 2006-07-03  Jim Meyering  <jim@meyering.net>
47514
47515         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
47516         macro is used before the first cycle_check call.
47517
47518 2006-07-03  Eric Blake  <ebb9@byu.net>
47519
47520         * modules/dirname (Depends-on): Add xstrndup.
47521
47522 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
47523
47524         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
47525         test cases, so that config.log is a bit easier to follow.
47526
47527 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
47528
47529         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
47530         both are 64 bits, since this seems to be the tradition, and this
47531         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
47532         we ever run into a host that prefers long long to long in this
47533         case, we'll need another configure-time test.  Problem reported by
47534         Jim Meyering.
47535
47536 2006-07-02  Eric Blake  <ebb9@byu.net>
47537
47538         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
47539
47540 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47541
47542         * modules/inttypes (Depends-on): No longer depends on stdint.
47543         * modules/stdint (Description): Say more about assumptions.
47544         Say that the fast types might differ.  Say macros are used.
47545         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
47546         (Makefile.am): Revise list of substituted symbols to match
47547         new stdint.m4.
47548         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
47549         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
47550         * tests/test-stdint.c (verify_same_types)
47551         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
47552         the code conforms to C99/C89.
47553         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
47554         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
47555
47556 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47557
47558         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
47559         but fix a bug, by requiring at least 64 bits.
47560         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
47561         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
47562         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
47563         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
47564
47565         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
47566         changes.  Make 2.59 a prerequisite.  Check and substitute for
47567         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
47568         inttypes.h.  Do not use special include files; just use the
47569         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
47570         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
47571         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
47572         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
47573         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
47574         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
47575         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
47576         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
47577         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
47578         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
47579         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
47580         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
47581         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
47582         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
47583         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
47584         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
47585         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
47586         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
47587         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
47588         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
47589         WINT_MAX.  Check for C99 conformance more strictly, by detecting
47590         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
47591         not check for things that C99 does not require, e.g., int8_t.  If
47592         a test isn't needed unless <stdint.h> isn't working, and is
47593         unlikely to be needed for any other reason, then don't do it
47594         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
47595         size_t, since we assume C89 freestanding at least.  Do not check
47596         for sig_atomic_t, wchar_t, or wint_t, since the code now does
47597         the right thing even if the types are not defined.  Instead use:
47598         (gl_STDINT_TYPE_PROPERTIES): New macro.
47599         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
47600         testing whether <sys/types.h> clashes, as Autoconf does this for
47601         us now.  All uses removed.
47602         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
47603         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
47604         (gl_CHECK_TYPE_SAME):
47605         Remove; no longer needed.
47606         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
47607         exists, since we'll return 0 anyway in that case.
47608         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
47609
47610 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47611
47612         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
47613         possible collision with system files.
47614         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
47615         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
47616         WCHAR_MIN and WCHAR_MAX in this case.
47617         (<stddef.h>): Do not include; no longer needed.
47618         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
47619         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
47620         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
47621         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
47622         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
47623         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
47624         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
47625         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
47626         !defined(__c99))]: Include in this case too, since it's harmless
47627         now.
47628         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
47629         dangerous to do so.
47630         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
47631         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
47632         (_STDINT_MIN, _STDINT_MAX): New macros.
47633         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
47634         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
47635         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
47636         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
47637         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
47638         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
47639         macros, not typedefs; this simplifies things quite a bit.
47640         Use long int for all types narrower than int64_t.
47641         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
47642         Define in terms of long long int or int64_t or long int,
47643         not int64_t or int32_t.  This saves some compile-time testing.
47644         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
47645         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
47646         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
47647         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
47648         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
47649         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
47650         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
47651         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
47652         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
47653         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
47654         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
47655         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
47656         undef any previous version and define our own version, for
47657         simplicity and consistency with the new macros for types.
47658         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
47659         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
47660         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
47661         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
47662         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
47663         @WINT_T_SUFFIX@ to keep things simple here.
47664         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
47665         Simplify by assuming typical 8/16/32/64 host, since we're
47666         already doing that elsewhere anyway.
47667         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
47668         and assume long long int is 64 bits if available.  This
47669         speeds up 'configure'.
47670
47671 2006-07-01  Eric Blake  <ebb9@byu.net>
47672
47673         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
47674         Reported by Andreas Buening.
47675
47676 2006-07-01  Eric Blake  <ebb9@byu.net>
47677
47678         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
47679
47680 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
47681
47682         * lib/getaddrinfo.c: fixed typo
47683
47684 2006-06-29  Jim Meyering  <jim@meyering.net>
47685
47686         * modules/strftime (Maintainer): Add my name, since with the
47687         FPRINTFTIME changes strftime.c has forked from glibc.
47688
47689 2006-06-29  Eric Blake  <ebb9@byu.net>
47690
47691         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
47692
47693 2006-06-29  Eric Blake  <ebb9@byu.net>
47694
47695         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
47696
47697 2006-06-29  Eric Blake  <ebb9@byu.net>
47698
47699         * lib/stat_.h: New file.
47700
47701 2006-06-29  Eric Blake  <ebb9@byu.net>
47702
47703         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
47704         unused static function.
47705
47706 2006-06-29  Eric Blake  <ebb9@byu.net>
47707
47708         * doc/functions.texi (Function Portability): Document missing lstat
47709         on mingw.
47710
47711 2006-06-29  Eric Blake  <ebb9@byu.net>
47712
47713         * MODULES.html.sh: Add sys_stat.
47714         * modules/sys_stat: New module.
47715         * modules/mkstemp (Depends-on): Add sys_stat.
47716
47717 2006-06-29  Derek R. Price  <derek@ximbiot.com>
47718
47719         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
47720
47721 2006-06-29  Derek R. Price  <derek@ximbiot.com>
47722
47723         * m4/c-bs-a.m4: Removed.
47724
47725 2006-06-29  Derek R. Price  <derek@ximbiot.com>
47726
47727         * lib/strftime.c: Assume strftime() exists.
47728
47729 2006-06-29  Derek Price  <derek@ximbiot.com>
47730
47731         * modules/c-bs-a: Removed - \a is C89.
47732         * MODULES.html.sh: Remove c-bs-a.
47733
47734 2006-06-29  Bruno Haible  <bruno@clisp.org>
47735
47736         * modules/wcwidth (License): Change to LGPL.
47737
47738 2006-06-28  Simon Josefsson  <jas@extundo.com>
47739
47740         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
47741         on _WIN32.
47742
47743         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
47744         getnameinfo.
47745
47746 2006-06-28  Simon Josefsson  <jas@extundo.com>
47747
47748         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
47749
47750 2006-06-28  Simon Josefsson  <jas@extundo.com>
47751
47752         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
47753         functions there.  It will succeed on Windows XP, but on Windows
47754         2000 and (presumably) earlier, it will fail, and use the internal
47755         re-implementation.
47756         (use_win32_p): New function.
47757         (getaddrinfo): Use strtoul on servname, to support numeric ports.
47758         Support AI_NUMERICSERV to disable getservbyname.
47759         (getnameinfo): New function, only supports
47760         NI_NUMERICHOST|NI_NUMERICSERV for now.
47761
47762         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
47763         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
47764         getnameinfo.
47765
47766 2006-06-28  Eric Blake  <ebb9@byu.net>
47767
47768         * modules/wcwidth: New file.
47769         * modules/mbchar (Depends-on): Add wcwidth.
47770         * modules/mbswidth (Depends-on): Add wcwidth.
47771         * MODULES.html.sh: Add wcwidth.
47772
47773 2006-06-28  Eric Blake  <ebb9@byu.net>
47774
47775         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
47776         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
47777
47778 2006-06-28  Eric Blake  <ebb9@byu.net>
47779
47780         * lib/xvasprintf.h: Fix comments.
47781
47782 2006-06-28  Eric Blake  <ebb9@byu.net>
47783
47784         * lib/mbchar.h (wcwidth): Include wcwidth.h.
47785         * lib/mbswidth.c (wcwidth): Move from here...
47786         * lib/wcwidth.h: ...to this new file.
47787
47788 2006-06-28  Derek R. Price  <derek@ximbiot.com>
47789
47790         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
47791
47792         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
47793         it's obsolete.
47794         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
47795
47796 2006-06-28  Derek R. Price  <derek@ximbiot.com>
47797
47798         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
47799         Autoconf 2.60 says this stuff was obsolete.
47800
47801 2006-06-28  Bruno Haible  <bruno@clisp.org>
47802
47803         * modules/wcwidth (Files): Add m4/wchar_t.m4.
47804
47805 2006-06-28  Bruno Haible  <bruno@clisp.org>
47806
47807         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
47808         gt_TYPE_WCHAR_T.
47809
47810 2006-06-28  Bruno Haible  <bruno@clisp.org>
47811
47812         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
47813         declaration for wcwidth.
47814         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
47815
47816 2006-06-28  Bruno Haible  <bruno@clisp.org>
47817
47818         * lib/mkdtemp.c [MINGW]: Include <io.h>.
47819         (mkdir): Define using _mkdir.
47820
47821 2006-06-28  Bruno Haible  <bruno@clisp.org>
47822
47823         * lib/getaddrinfo.h: Fix POSIX URL.
47824         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
47825         _WIN32.
47826         (use_win32_p): Make static.
47827         (getaddrinfo): Reject service name if it is empty or does not consist
47828         solely of decimal digits, or if its value is > 65535.
47829         (getnameinfo): Remove useless casts.
47830
47831 2006-06-27  Simon Josefsson  <jas@extundo.com>
47832
47833         * modules/sys_select: New file, suggested by Bruno Haible, Paul
47834         Eggert and Martin Lambers.
47835
47836 2006-06-27  Simon Josefsson  <jas@extundo.com>
47837
47838         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
47839         Eggert and Martin Lambers.
47840
47841 2006-06-27  Bruno Haible  <bruno@clisp.org>
47842
47843         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
47844         result to 0, not to empty.
47845         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
47846
47847 2006-06-27  Bruno Haible  <bruno@clisp.org>
47848
47849         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
47850
47851 2006-06-26  Simon Josefsson  <jas@extundo.com>
47852
47853         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
47854         present.
47855
47856 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
47857
47858         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
47859         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
47860         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
47861
47862 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
47863
47864         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
47865
47866 2006-06-26  Bruno Haible  <bruno@clisp.org>
47867
47868         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
47869
47870 2006-06-26  Bruno Haible  <bruno@clisp.org>
47871
47872         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
47873
47874 2006-06-26  Bruno Haible  <bruno@clisp.org>
47875
47876         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
47877         SGI C compiler in pre-C99 mode.
47878         Suggested by Mark D. Baushke and Larry Jones.
47879
47880 2006-06-26  Bruno Haible  <bruno@clisp.org>
47881
47882         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
47883         WCHAR_MAX.
47884         Reported by Mark D. Baushke and Larry Jones.
47885
47886 2006-06-26  Bruno Haible  <bruno@clisp.org>
47887
47888         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
47889         in pre-C99 mode.
47890         Suggested by Mark D. Baushke and Larry Jones.
47891
47892 2006-06-23  Simon Josefsson  <jas@extundo.com>
47893             Bruno Haible  <bruno@clisp.org>
47894
47895         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
47896         Emit mostlyclean-local rule.
47897         (func_emit_tests_Makefile_am): Likewise.
47898         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
47899
47900 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
47901
47902         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
47903
47904 2006-06-23  Bruno Haible  <bruno@clisp.org>
47905
47906         * tests/test-stdint.c: Update to match ISO C 99 Technical
47907         Corrigendum 1.
47908
47909 2006-06-23  Bruno Haible  <bruno@clisp.org>
47910
47911         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
47912
47913 2006-06-23  Bruno Haible  <bruno@clisp.org>
47914
47915         * lib/stdint_.h: Treat IRIX like OpenBSD.
47916
47917 2006-06-23  Bruno Haible  <bruno@clisp.org>
47918
47919         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
47920         ISO C 99 Technical Corrigendum 1.
47921
47922 2006-06-22  Simon Josefsson  <jas@extundo.com>
47923
47924         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
47925         MinGW.
47926
47927 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47928
47929         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
47930         needed.  Some compiler complained about some of them.  Problem reported
47931         by Larry Jones in
47932         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
47933
47934 2006-06-21  Simon Josefsson  <jas@extundo.com>
47935
47936         * tests/test-getaddrinfo.c: New file.
47937
47938         * modules/getaddrinfo-tests: New file.
47939
47940         * MODULES.html.sh: Add inet_pton.
47941
47942         * modules/inet_pton: New file.
47943
47944 2006-06-21  Simon Josefsson  <jas@extundo.com>
47945
47946         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
47947         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
47948         of using the (limited) gnulib implementation on Windows XP.
47949
47950         * m4/inet_pton.m4: New file.
47951
47952 2006-06-21  Simon Josefsson  <jas@extundo.com>
47953
47954         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
47955         variable.
47956
47957         * lib/socket_.h: Don't define WINVER.
47958
47959         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
47960         slightly modified to work in gnulib.
47961
47962 2006-06-21  Simon Josefsson  <jas@extundo.com>
47963
47964         * doc/gnulib.texi (Windows sockets): Add.
47965
47966 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
47967
47968         * lib/read-file.c (fread_file): Start with buffer allocation of
47969         0 bytes rather than 1 byte; this simplifies the code.
47970         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
47971         code to free buffer and save/restore errno.
47972         (internal_read_file): Remove unused local.
47973
47974 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
47975
47976         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
47977         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
47978         Problem reported by Denis Excoffier in
47979         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
47980
47981 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
47982
47983         * modules/sys_socket, modules/socklen: Include sys/types since
47984         FreeBSD 4.x's sys/socket.h needs it.
47985
47986 2006-06-19  Simon Josefsson  <jas@extundo.com>
47987
47988         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
47989
47990 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
47991
47992         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
47993
47994 2006-06-19  Bruno Haible  <bruno@clisp.org>
47995
47996         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
47997         and FULL_PATH_INTTYPES_H in angle brackets.
47998         Reported by Mark D. Baushke <mdb@gnu.org>.
47999
48000 2006-06-17  Eric Blake  <ebb9@byu.net>
48001
48002         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
48003         errno.
48004
48005 2006-06-17  Bruno Haible  <bruno@clisp.org>
48006
48007         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
48008         <sys/inttypes.h>.
48009
48010 2006-06-17  Bruno Haible  <bruno@clisp.org>
48011
48012         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
48013         whether errno is declared. Assume <errno.h> declares errno.
48014
48015 2006-06-17  Bruno Haible  <bruno@clisp.org>
48016
48017         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
48018
48019 2006-06-17  Bruno Haible  <bruno@clisp.org>
48020
48021         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
48022         problem on Solaris 2.5.1.
48023
48024 2006-06-16  Eric Blake  <ebb9@byu.net>
48025
48026         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
48027         * lib/unicodeio.c [!defined errno]: Likewise.
48028         * lib/strtol.c [!defined errno]: Likewise.
48029         * lib/strtod.c [!defined errno]: Likewise.
48030
48031 2006-06-15  Eric Blake  <ebb9@byu.net>
48032
48033         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
48034
48035 2006-06-15  Eric Blake  <ebb9@byu.net>
48036
48037         * config/srclist.txt (ssize_t.m4): Lose sync.
48038
48039 2006-06-15  Bruno Haible  <bruno@clisp.org>
48040
48041         * modules/stdint (Files): Include m4/full-header-path.m4,
48042         m4/size_max.m4, m4/wchar_t.m4.
48043         (Makefile.am): Many more substitutions.
48044         * modules/stdint-tests: New file.
48045         * tests/test-stdint.c: New file.
48046
48047 2006-06-15  Bruno Haible  <bruno@clisp.org>
48048
48049         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
48050         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
48051         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
48052         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
48053         gl_CHECK_TYPE_SAME): New macros.
48054
48055 2006-06-15  Bruno Haible  <bruno@clisp.org>
48056
48057         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
48058
48059 2006-06-15  Bruno Haible  <bruno@clisp.org>
48060
48061         * lib/stdint_.h: Rewritten to be fully auto-configured.
48062         Fixes bug on HP-UX/IA64.
48063
48064 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
48065
48066         * lib/getdate.y (__attribute__): Don't define if already defined.
48067         Problem reported by Larry Jones.
48068         * lib/utimens.c (__attribute__): Likewise.
48069
48070 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
48071
48072         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
48073         reported by Andreas Schwab.
48074
48075 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48076             Bruno Haible  <bruno@clisp.org>
48077
48078         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
48079         check for the declaration of strnlen and a run test that exposes the
48080         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
48081         rpl_strndup.
48082
48083 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48084             Bruno Haible  <bruno@clisp.org>
48085
48086         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
48087
48088 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48089
48090         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
48091         compile test, for Tru64 4.0D.
48092
48093 2006-05-28  Karl Berry  <karl@gnu.org>
48094
48095         * config/srclist.txt (printf-args.c): lose sync.
48096
48097 2006-05-26  Martin Lambers  <marlam@marlam.de>
48098
48099         * lib/getpass.c: Updates the test for the native W32 API, and adds
48100         missing includes, thus fixing compilation warnings.
48101
48102 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
48103
48104         * lib/exclude.c (exclude_fnmatch): New function.
48105         (excluded_file_name): Call exclude_fnmatch.
48106         * lib/exclude.h (excluded_file_name): New prototype
48107
48108 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
48109
48110         * lib/tempname.c (small_open, large_open): New macros.
48111         (__open, __open64) [!_LIBC]: Remove.
48112         (__gen_tempname): Use small_open and large_open instead of __open
48113         and __open64.  This fixes a portability bug on HP-UX 11.11i
48114         reported by Simon Wing-Tang in
48115         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
48116
48117 2006-05-24  Bruno Haible  <bruno@clisp.org>
48118
48119         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
48120         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
48121         Reported by Thorsten Maerz <torte@netztorte.de> via
48122         Aaron Stone <aaron@serendipity.cx>.
48123
48124 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
48125
48126         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
48127         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
48128         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
48129         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
48130         not really conditional on the cache.
48131         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
48132
48133 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
48134
48135         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
48136         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
48137         (my_usleep): Don't mishandle maximum value.
48138
48139 2006-05-19  Jim Meyering  <jim@meyering.net>
48140
48141         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
48142
48143 2006-05-17  Bruno Haible  <bruno@clisp.org>
48144
48145         Cygwin portability.
48146         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
48147
48148 2006-05-17  Bruno Haible  <bruno@clisp.org>
48149
48150         * lib/stdint_.h: Fix recognition of Cygwin.
48151
48152 2006-05-15  Bruno Haible  <bruno@clisp.org>
48153
48154         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
48155         on libtool patch by Ralf Wildenhues.
48156
48157 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
48158
48159         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
48160         test for C99 conformance; (bool) 0.5 is an integer constant
48161         expression, but (bool) -0.5 is not.  Problem reported by Fedor
48162         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
48163
48164 2006-05-11  Simon Josefsson  <jas@extundo.com>
48165
48166         * m4/xvasprintf.m4: Fix obvious typo.
48167
48168 2006-05-11  Jim Meyering  <jim@meyering.net>
48169
48170         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
48171         James Lemley.
48172
48173 2006-05-10  Simon Josefsson  <jas@extundo.com>
48174
48175         * lib/md4.c: Typo fix, update copyright years.
48176         (K1, K2): Don't use L because it turn computations into 64-bit on
48177         64-bit platforms.
48178
48179 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
48180
48181         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
48182         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
48183         unwanted sign propagation, e.g., on hosts with 64-bit int.
48184         There still are some problems with reeelly weird theoretical hosts
48185         (e.g., 33-bit int) but it's not worth worrying about now.
48186         * lib/sha1.c (rol): Likewise.
48187         (K1, K2, K3, K4): Remove unnecessary L suffix.
48188
48189 2006-05-10  Bruno Haible  <bruno@clisp.org>
48190
48191         * lib/des.c: Cast to avoid warnings.
48192
48193 2006-05-09  Bruno Haible  <bruno@clisp.org>
48194
48195         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
48196         (Depends-on): Depend also on xsize, stdarg.
48197         (configure.ac): Add gl_XVASPRINTF.
48198
48199 2006-05-09  Bruno Haible  <bruno@clisp.org>
48200
48201         * m4/xvasprintf.m4: New file.
48202
48203 2006-05-09  Bruno Haible  <bruno@clisp.org>
48204
48205         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
48206         (EOVERFLOW): Define fallback value.
48207         (xstrcat): New function.
48208         (xvasprintf): Recognize the special case of a string concatenation.
48209
48210 2006-05-08  Eric Blake  <ebb9@byu.net>
48211
48212         * gnulib-tool (func_version): Base copyright year on CVS date.
48213         (func_emit_copyright_notice): New function.
48214         (func_emit_lib_Makefile_am): Use it.
48215         (func_emit_tests_Makefile_am): Likewise.
48216         (func_import): Likewise.
48217
48218 2006-05-08  Bruno Haible  <bruno@clisp.org>
48219
48220         * modules/stdarg: New file.
48221         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
48222
48223 2006-05-08  Bruno Haible  <bruno@clisp.org>
48224
48225         * m4/stdarg.m4: New file, from GNU gettext.
48226
48227 2006-05-08  Bruno Haible  <bruno@clisp.org>
48228
48229         * config/srclist.txt (build-aux/config.rpath): different from latest
48230         release.
48231
48232 2006-05-08  Bruno Haible  <bruno@clisp.org>
48233
48234         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
48235
48236 2006-05-05  Jim Meyering  <jim@meyering.net>
48237
48238         * m4/warning.m4: New file, derived from bison's file by the same name.
48239
48240 2006-05-03  Bruno Haible  <bruno@clisp.org>
48241
48242         * lib/stdint_.h: Shorter URL.
48243         * lib/inttypes.h: Likewise.
48244
48245 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
48246
48247         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
48248
48249 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
48250
48251         * lib/verify.h: Document the internals better.  Most of this change
48252         was written by Bruno Haible.
48253
48254 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
48255
48256         * doc/verify.texi: New file, partly based on a proposal by
48257         Bruno Haible.
48258
48259 2006-05-02  Bruno Haible  <bruno@clisp.org>
48260
48261         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
48262         test from here...
48263         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
48264
48265 2006-04-29  Bruno Haible  <bruno@clisp.org>
48266
48267         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
48268         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
48269
48270 2006-04-29  Bruno Haible  <bruno@clisp.org>
48271
48272         * gnulib-tool: Make --update option actually work.
48273
48274 2006-04-29  Bruno Haible  <bruno@clisp.org>
48275
48276         * doc/gcd.texi: New file.
48277         * doc/gnulib.texi: Include it.
48278
48279 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
48280
48281         * lib/getdate.y (get_date): When adding relative date, start with the
48282         initial time, not with the result of the first mktime call.
48283
48284 2006-04-25  Bruno Haible  <bruno@clisp.org>
48285
48286         * gnulib-tool (func_import): Output the include directives in three
48287         blocks, sorted separately.
48288         Reported by Ben Pfaff <blp@cs.stanford.edu>.
48289
48290 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
48291
48292         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
48293         to define main with arguments, for C++.  Reported by Eric Blake.
48294         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
48295         Prefer 'int main ()' to 'int main (void)', for C++.
48296         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
48297         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
48298         for 'main', for C99 and C++.
48299
48300 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
48301
48302         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
48303         Don't assume that exit status -1 is valid.
48304         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
48305         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
48306         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
48307         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
48308         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
48309         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
48310         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
48311         functions can be used without declaring them, or that you can
48312         exit with status -1.
48313         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
48314
48315 2006-04-24  Karl Berry  <karl@gnu.org>
48316
48317         * config/srclist.txt (longdouble.m4): sync lost.
48318
48319 2006-04-24  Eric Blake  <ebb9@byu.net>
48320
48321         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
48322
48323 2006-04-24  Bruno Haible  <bruno@clisp.org>
48324
48325         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
48326         poll() implementation in AIX.
48327         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48328
48329 2006-04-24  Bruno Haible  <bruno@clisp.org>
48330
48331         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
48332         assigned exactly once.
48333
48334 2006-04-23  Claudio Fontana  <claudio@gnu.org>
48335             Bruno Haible  <bruno@clisp.org>
48336
48337         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
48338         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
48339         for AM_CPPFLAGS.
48340
48341 2006-04-23  Bruno Haible  <bruno@clisp.org>
48342
48343         * modules/copy-file: Depend on unistd.
48344         * modules/execute: Likewise.
48345         * modules/fatal-signal: Likewise.
48346         * modules/findprog: Likewise.
48347         * modules/mkdtemp : Likewise.
48348         * modules/pipe: Likewise.
48349         * modules/wait-process: Likewise.
48350
48351 2006-04-23  Bruno Haible  <bruno@clisp.org>
48352
48353         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
48354         condition was already detected.
48355         Reported by Ben Pfaff <blp@cs.stanford.edu>.
48356
48357 2006-04-23  Bruno Haible  <bruno@clisp.org>
48358
48359         * lib/copy-file.c: Include <unistd.h> unconditionally.
48360         * lib/execute.c: Likewise.
48361         * lib/fatal-signal.c: Likewise.
48362         * lib/findprog.c: Likewise.
48363         * lib/mkdtemp.c: Likewise.
48364         * lib/pipe.h: Likewise.
48365         * lib/pipe.c: Likewise.
48366         * lib/wait-process.h: Likewise.
48367
48368 2006-04-23  Bruno Haible  <bruno@clisp.org>
48369
48370         * gnulib-tool (func_usage): Fix --import description. Document
48371         --update.
48372         (func_import): Create temporary file in a temporary directory, if
48373         --dry-run is specified. Silence errors from 'grep' when there are no
48374         m4 files in $m4dir.
48375         (func_create_testdir): Silence errors from 'grep' when there are no
48376         m4 files in $m4dir.
48377         Reported by Karl Berry <karl@freefriends.org>.
48378
48379 2006-04-20  Bruno Haible  <bruno@clisp.org>
48380
48381         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
48382         one argument, so that the code will be portable to Autoconf 2.60.
48383         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
48384         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
48385         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
48386
48387 2006-04-19  Derek Price  <derek@ximbiot.com>
48388             Eric Blake  <ebb9@byu.net>
48389
48390         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
48391         rather than "/full/path.h".  Update comment to match.  Shorten &
48392         generalize m4_translit call via AS_TR_CPP.
48393
48394 2006-04-19  Derek Price  <derek@ximbiot.com>
48395             Eric Blake  <ebb9@byu.net>
48396
48397         * lib/inttypes.h: Correct grammar in comment.
48398
48399 2006-04-18  Derek Price  <derek@ximbiot.com>
48400             Paul Eggert  <eggert@cs.ucla.edu>
48401
48402         * modules/inttypes: New file.
48403         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
48404
48405 2006-04-18  Derek Price  <derek@ximbiot.com>
48406             Paul Eggert  <eggert@cs.ucla.edu>
48407
48408         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
48409         New files.
48410
48411 2006-04-18  Derek Price  <derek@ximbiot.com>
48412             Paul Eggert  <eggert@cs.ucla.edu>
48413
48414         * lib/inttypes.h: New file.
48415         * lib/strtoimax.c: Assume <inttypes.h>.
48416
48417 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
48418
48419         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
48420         isn't mounted.  Problem reported by Kir Kolyshkin.
48421
48422 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
48423
48424         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
48425         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
48426         Derek R. Price.
48427         * lib/regex.h (RE_DUP_MAX): Update comment to match current
48428         implementation.
48429
48430 2006-04-12  Eric Blake  <ebb9@byu.net>
48431
48432         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
48433         is now done automatically by the corresponding Autoconf macro.
48434
48435 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
48436
48437         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
48438         time_r.h.
48439
48440 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48441
48442         Merge regex changes from libc, removing some of our
48443         POSIX-conformance changes that were rejected and redoing them in a
48444         less-intrusive way.
48445
48446         * lib/regcomp.c (re_compile_internal, init_dfa):
48447         Length arg is now size_t, not Idx.  All uses changed.
48448         (peek_token): Forward decl now says internal_function.
48449         (__re_error_msgid, __re_error_msgid_idx):
48450         Now static rather than extern with attribute_hidden.
48451         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
48452         For some reason libc prefers K&R style defns for external functions.
48453         (regerror) [!defined _LIBC]: Likewise.
48454         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
48455         (seek_collating_symbol_entry, lookup_collation_sequence_value):
48456         (build_range_exp, build_collating_symbol):
48457         Use K&R-style defn.
48458         (re_compile_fastmap): Use '\0' to memset, not 0.
48459         (utf8_sb_map): Make the calculations more obvious.
48460         (init_dfa, parse_bracket_exp, build_charclass_op):
48461         Call calloc and cast result, as glibc does.
48462         (init_word_char, fetch_token, peek_token, peek_token_bracket):
48463         (build_range_exp, build_collating_symbol):
48464         Now internal functions.
48465
48466         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
48467
48468         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
48469         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
48470         Don't depend on VMS; depend on __VMS instead, for POSIX
48471         namespace cleanness.
48472         (regoff_t): Define to ssize_t, not long int.
48473
48474         Remove the REG_ macros named below.  Instead, make the old names
48475         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
48476         __USE_GNU_REGEX.
48477         (REG_BACKSLASH_ESCAPE_IN_LISTS):
48478         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
48479         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
48480         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
48481         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
48482         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
48483         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
48484         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
48485         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
48486         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
48487         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
48488         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
48489         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
48490         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
48491         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
48492         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
48493         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
48494         (REG_NREGS):
48495         Remove.  All uses replaced by the old RE_* names.
48496         (RE_BACKSLASH_ESCAPE_IN_LISTS):
48497         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
48498         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
48499         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
48500         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
48501         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
48502         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
48503         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
48504         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
48505         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
48506         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
48507         Don't bother having these macros be independent of each others'
48508         values, since they no longer exist in the POSIX name space.
48509
48510         Rename the following member names back to their old names,
48511         unless !__USE_GNU_REGEX.  All uses changed back.
48512         (buffer): Renamed from re_buffer.
48513         (allocated): Renamed from re_allocated.
48514         (used): Renamed from re_used.
48515         (syntax): Renamed from re_syntax.
48516         (fastmap): Renamed from re_fastmap.
48517         (translate): Renamed from re_translate.
48518         (can_be_null): Renamed from re_can_be_null.
48519         (regs_allocated): Renamed from re_regs_allocated.
48520         (fastmap_accurate): Renamed from re_fastmap_accurate.
48521         (no_sub): Renamed from re_no_sub.
48522         (not_bol): Renamed from re_not_bol.
48523         (not_eol): Renamed from re_not_eol.
48524         (newline_anchor): Renamed from re_newline_anchor.
48525         (num_regs): Renamed from rm_num_regs.
48526         (start): Renamed from rm_start.
48527         (end): Renamed from rm_end.
48528
48529         (free_state): Move up a bit.
48530
48531         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
48532         #define to be empty.
48533         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
48534         when that is what is intended.
48535         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
48536         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
48537         (MAX): New macro.
48538         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
48539         All uses changed back to re_malloc, etc.  It's now the caller's
48540         responsibility to check for overflow; all callers changed.
48541         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
48542         (re_x2nrealloc): Remove.
48543         (free_state): Remove decl.
48544
48545         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
48546         (re_set_registers, re_exec):
48547         Use K&R-style defn.
48548
48549         2006-01-31  Roland McGrath  <roland@redhat.com>
48550
48551         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
48552         Reported by Mike Frysinger <vapier@gentoo.org>.
48553
48554         2006-01-15  Andreas Jaeger  <aj@suse.de>
48555
48556         [BZ #1950]
48557         * lib/regex_internal.c (re_string_reconstruct): Adjust for
48558         build_wcs_upper_buffer change.
48559         (build_wcs_upper_buffer): Change return type.
48560
48561         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
48562
48563         * lib/regex_internal.h: Include <stdint.h> if available.
48564
48565         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
48566
48567         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
48568
48569         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
48570
48571         * lib/regcomp.c: Adjust for changed secondary hash function.
48572
48573         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
48574
48575         * lib/regex.h: Pretty printing.
48576         Clean up namespace a bit.
48577
48578         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
48579
48580         * lib/regexec.c (update_cur_sifted_state, check_arrival,
48581         check_arrival_add_next_nodes): Avoid using uninitialized variable.
48582
48583         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
48584                     Ulrich Drepper  <drepper@redhat.com>
48585
48586         [BZ #1302]
48587         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
48588         changed.
48589         (bitset_word_t): Renamed from bitset_word.  All uses changed.
48590
48591         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
48592
48593         [BZ #281]
48594         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
48595         * lib/regcomp.c: Remove unnecessary uses of
48596         unsigned RE_TRANSLATE_TYPE.
48597         * lib/regex_internal.h: Likewise.
48598         * lib/regex_internal.c: Likewise.
48599         * lib/regexec.c: Likewise.
48600         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
48601
48602         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
48603
48604         * lib/regexec.c (find_recover_state): Remove unnecessary
48605         initialization.
48606         (transit_state_bkref): Make DFA a const pointer.
48607         (get_subexp): Likewise.
48608         (check_arrival): Likewise.
48609         (update_cur_sifted_state): Likewise.
48610         (re_search_internal): Likewise.
48611         (prune_impossible_nodes): Likewise.
48612         (acquire_init_state_context): Likewise.
48613         (proceed_next_node): Likewise.
48614         (set_regs): Likewise.
48615         (free_fail_stack_return): Likewise.
48616         (check_arrival_expand_ecl): Mark DFA parameter as const.
48617         (check_arrival_expand_ecl_sub): Likewise.
48618         (check_subexp_limits): Likewise.
48619         (sub_epsilon_src_nodes):  Likewise.
48620         (add_epsilon_src_nodes):  Likewise.
48621         (merge_state_array): Likewise.
48622         (update_regs): Likewise.
48623         (build_trtable): Likewise.
48624         (sift_states_backward): Mark MCTX parameter as const.
48625         (build_sifted_states): Likewise.
48626         (update_cur_sifted_state): Likewise.
48627         (sift_states_mkref): Likewise.
48628         (check_arrival_expand_ecl): Mark eclosure as const.
48629         (check_dst_limits_calc_pos_1): Likewise.
48630         * lib/regex_internal.h (re_match_context_t): Make dfa a const
48631         pointer.
48632
48633         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
48634
48635         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
48636         (transit_state_sb): Likewise.
48637         (transit_state_mb): Likewise.
48638         (sift_states_iter_mb): Likewise.
48639         (check_arrival_add_next_nodes): Likewise.
48640         (check_node_accept_bytes): Change first parameter to pointer-to-const.
48641         [_LIBC] (re_search_2_stub): Use mempcpy.
48642
48643         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
48644         mbrtowc for very simple UTF-8 case.
48645
48646         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
48647         a pointer-to-const.
48648         (re_acquire_state_context): Likewise.
48649         * lib/regex_internal.h: Adjust prototypes.
48650
48651         * lib/regex.c: Prevent using C++ compilers.
48652
48653         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
48654         (re_acquire_state_context): Likewise.
48655
48656 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48657
48658         * modules/regex (Depends-on): Add ssize_t.
48659
48660 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48661
48662         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
48663         translation table.
48664
48665 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48666
48667         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
48668
48669 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
48670             Bruno Haible  <bruno@clisp.org>
48671
48672         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
48673         <sys/types.h> and <inttypes.h>.
48674
48675 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48676
48677         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
48678         `__error_t_defined', so argp.h will not typedef the former.
48679
48680 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
48681
48682         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
48683         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
48684         glibc names.  Even if glibc is changed to conform to POSIX, the
48685         traditional names will be available anyway, since regex depends on
48686         the extensions module.  Also, fix a longstanding typo in the
48687         implementation of Spencer ERE test #75 from grep 2.3.  Problems
48688         reported by Emanuele Giaquinta.  Also, change sense of cached
48689         variable, so that the message makes sense.
48690
48691 2006-03-24  Simon Josefsson  <jas@extundo.com>
48692
48693         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
48694         including some doc fixes.
48695         (base64_encode_alloc): Fix +1 bug on allocation failures.
48696
48697 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48698
48699         * lib/base64.c (base64_encode): Do not read past end of array with
48700         unsanitized input on systems with CHAR_BIT > 8.
48701
48702 2006-03-24  Eric Blake  <ebb9@byu.net>
48703
48704         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
48705
48706 2006-03-22  Karl Berry  <karl@gnu.org>
48707
48708         * config/srclist.txt (*setenv.[ch]): get from coreutils.
48709         * config/srclistvars.sh (COREUTILS): new var.
48710
48711 2006-03-17  Jim Meyering  <jim@meyering.net>
48712
48713         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
48714         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
48715
48716 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
48717
48718         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
48719         no longer needs it.  Instead, check that regoff_t is as least
48720         as wide as ptrdiff_t.
48721
48722         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
48723         so that our regex.h stays compatible with the installed regex.
48724         This is helpful for installers who configure --without-included-regex.
48725         Problem reported by Emanuele Giaquinta.
48726
48727 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
48728
48729         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
48730         Typedef to long int, not to off_, as POSIX will likely change
48731         in that direction.
48732
48733 2006-03-15  Eric Blake  <ebb9@byu.net>
48734
48735         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
48736
48737 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
48738
48739         * lib/argp-help.c (validate_uparams): Fix typo
48740         * lib/argp-parse.c (argp_default_options): Consistently begin help
48741         messages with a lowercase letter.
48742
48743 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
48744
48745         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
48746         overrun buffers and shouldn't be used (much as gets shouldn't be
48747         used).
48748         * lib/time_r.c (asctime_r, ctime_r): Likewise.
48749
48750 2006-03-08  Simon Josefsson  <jas@extundo.com>
48751
48752         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
48753         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48754
48755 2006-03-08  Simon Josefsson  <jas@extundo.com>
48756
48757         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
48758         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48759
48760 2006-03-08  Simon Josefsson  <jas@extundo.com>
48761
48762         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
48763         signal that configure disabled the device.
48764
48765 2006-03-08  Simon Josefsson  <jas@extundo.com>
48766
48767         * build-aux/maint.mk: Fix refresh-po, to handle no translated
48768         languages.
48769
48770 2006-03-07  Simon Josefsson  <jas@extundo.com>
48771
48772         * modules/getopt (Depends-on): Add unistd.
48773
48774         * modules/unistd: New file.
48775
48776 2006-03-07  Simon Josefsson  <jas@extundo.com>
48777
48778         * modules/gc-random: New file.
48779
48780 2006-03-07  Simon Josefsson  <jas@extundo.com>
48781
48782         * m4/unistd_h.m4: New file.
48783
48784 2006-03-07  Simon Josefsson  <jas@extundo.com>
48785
48786         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
48787         test to be side-effect free by storing the result in the cache
48788         variable gl_cv_lib_readline, and moving the assignment of
48789         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
48790         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48791
48792 2006-03-07  Simon Josefsson  <jas@extundo.com>
48793
48794         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
48795         error on missing devices (the functions will return an error).
48796
48797         * m4/gc.m4: Move random stuff to gc-random.m4
48798
48799 2006-03-07  Simon Josefsson  <jas@extundo.com>
48800
48801         * lib/unistd_.h: New file.
48802
48803 2006-03-07  Simon Josefsson  <jas@extundo.com>
48804
48805         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
48806
48807 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48808
48809         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
48810         Problem reported by Juan Manuel Guerrero.
48811
48812 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48813
48814         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
48815         the unistd module.
48816         * lib/getlogin_r.c: Likewise.
48817         * lib/getlogin_r.h: Likewise.
48818         * lib/glob.c: Likewise.
48819         * lib/pagealign_alloc.c: Likewise.
48820         * lib/unistd_.h: Remove; no longer needed.
48821
48822 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48823
48824         * MODULES.html.sh (Support for systems lacking POSIX:2001):
48825         Add unistd.
48826         * modules/c-stack (Depends-on): Add unistd.
48827         * modules/getlogin_r: Likewise.
48828         * modules/glob: Likewise.
48829         * modules/pagealign_alloc: Likewise.
48830         * modules/unistd (Files): Remove lib/unistd_.h.
48831         (EXTRA_DIST): Remove.
48832         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
48833         need unistd_.h.
48834         (MOSTLYCLEANFILES): Remove unistd.h-t.
48835
48836 2006-03-03  Simon Josefsson  <jas@extundo.com>
48837
48838         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
48839
48840 2006-03-03  Simon Josefsson  <jas@extundo.com>
48841
48842         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
48843         libidn and bison.
48844
48845 2006-03-03  Simon Josefsson  <jas@extundo.com>
48846
48847         * build-aux/maint.mk: Add indent target.
48848
48849 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
48850
48851         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
48852         our replacement poll.h in any case, to avoid a differing
48853         declaration from a system header.  Seen on AIX.
48854
48855 2006-03-01  Simon Josefsson  <jas@extundo.com>
48856
48857         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
48858         <kasal@ucw.cz>.
48859
48860 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
48861
48862         * modules/gettime (Depends-on): Add extensions module.
48863         * modules/nanosleep (Depends-on): Likewise.
48864         * modules/settime (Depends-on): Likewise.
48865
48866 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
48867
48868         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
48869         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
48870         pedantically.
48871         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
48872         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
48873
48874         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
48875         not "==".  Reported by Ralf Wildenhues.
48876
48877 2006-03-01  Karl Berry  <karl@gnu.org>
48878
48879         * doc/Copyright/request-*: new files, synced from gnuorg.
48880
48881 2006-03-01  Karl Berry  <karl@gnu.org>
48882
48883         * config/srclist.txt (Copyright/*): new entries.
48884
48885 2006-02-28  Simon Josefsson  <jas@extundo.com>
48886
48887         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
48888
48889 2006-02-27  Simon Josefsson  <jas@extundo.com>
48890
48891         * lib/base64.h: Indent #define's.  From Jim Meyering
48892         <jim@meyering.net>.
48893
48894 2006-02-27  Jim Meyering  <jim@meyering.net>
48895
48896         Revert the change of 2006-02-24, so these files can continue
48897         to be sync'd from gettext.
48898         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
48899         of `config.h'.
48900
48901 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
48902
48903         * modules/intprops: New file.
48904         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
48905         Add intprops.
48906         * modules/getloadavg (Files): Remove lib/intprops.h.
48907         (Depends-on): Add intprops.
48908         * modules/human: Likewise.
48909         * modules/inttostr: Likewise.
48910         * modules/openat: Likewise.
48911         * modules/sig2str: Likewise.
48912         * modules/userspec: Likewise.
48913         * modules/utimecmp: Likewise.
48914         * modules/xnanosleep: Likewise.
48915         * modules/xstrtol: Likewise.
48916
48917 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
48918
48919         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
48920         * modules/lock-tests (TESTS): Use $(EXEEXT).
48921         * modules/tls-tests: Likewise.
48922         * modules/argp-tests: Likewise.
48923         (check_PROGRAMS): New var, replacing...
48924         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
48925
48926 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48927
48928         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
48929         `config.h'.
48930
48931 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
48932
48933         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
48934
48935 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48936
48937         Sync from coreutils.
48938         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
48939         gl_CHDIR_SAFER.
48940
48941 2006-02-22  Jim Meyering  <jim@meyering.net>
48942
48943         Sync from coreutils.
48944         * m4/chdir-safer.m4: New file.
48945
48946 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
48947
48948         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
48949         AT_FDCWD exceeds INT_MAX.
48950         * lib/openat.h (AT_FDCWD): Likewise.
48951
48952 2006-02-17  Eric Blake  <address@hidden>
48953
48954         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
48955
48956 2006-02-16  Simon Josefsson  <jas@extundo.com>
48957
48958         * modules/getaddrinfo (Depends-on): Add sys_socket.
48959
48960 2006-02-15  Simon Josefsson  <jas@extundo.com>
48961
48962         * build-aux/maint.mk: Add dsyntax-check rule.
48963
48964 2006-02-15  Eric Blake  <ebb9@byu.net>
48965
48966         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
48967         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
48968         'present but cannot compile' warnings on cygwin.
48969         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
48970         use ws2tcpip.h if sys/socket.h works.
48971         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
48972         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
48973
48974 2006-02-14  Simon Josefsson  <jas@extundo.com>
48975
48976         * modules/maintainer-makefile (Files): Rename.
48977
48978         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
48979         and (the local) Makefile.cfg to maint-cfg.mk.
48980
48981         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
48982         to the latter.
48983
48984         * modules/maintainer-makefile: New module.
48985
48986         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
48987         severaly stripped to make it possible to build it up from scratch
48988         with reliable tests.
48989
48990         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
48991         fixes to permit overriding the default actions when configure and
48992         makefile are not available.
48993
48994 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
48995
48996         Sync from coreutils.
48997         * modules/lstat (Depends-on): Don't depend on xalloc.
48998         (License): Change from GPL to LGPL, since this is now simply a
48999         replacement for a libc function.
49000
49001 2006-02-14  Jim Meyering  <jim@meyering.net>
49002
49003         Sync from coreutils.
49004
49005         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
49006         failure on deficient systems, and simplify gnulib lgpl dependencies.
49007         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
49008         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
49009
49010         * lib/xalloc-die.c: Remove unused definition of N_.
49011
49012 2006-02-14  Jim Meyering  <jim@meyering.net>
49013
49014         Sync from coreutils.
49015         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
49016         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
49017         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
49018         double-quote uses of that variable, to accommodate the rare case in
49019         which getmntent is available in none of the libraries checked.  This
49020         happens at least on FreeBSD 5.0.
49021
49022 2006-02-13  Simon Josefsson  <jas@extundo.com>
49023
49024         * gnulib-tool (Usage): Fix --import, from
49025         karl@freefriends.org (Karl Berry).
49026
49027 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
49028
49029         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
49030
49031 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
49032
49033         * lib/argp-namefrob.h: Restore changes accidentally lost during the
49034         "autoupdate" on 2005-12-12.
49035
49036 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
49037
49038         * modules/closeout (Depends-on): Remove atexit.
49039
49040 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
49041
49042         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
49043         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
49044
49045 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
49046
49047         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
49048         __EXTENSIONS__ if this causes compilation to fail.  Problem
49049         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
49050         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
49051
49052 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
49053
49054         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
49055         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
49056         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
49057         All uses changed.
49058
49059 2006-01-26  Simon Josefsson  <jas@extundo.com>
49060
49061         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
49062         prototype is visible on mingw32.
49063
49064         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
49065         for mingw32.
49066
49067         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
49068         mingw32).
49069
49070 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
49071
49072         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
49073         attempt to open for write; this always fails, at least on POSIX
49074         hosts.  This reinstates the 2006-01-09 change, which was
49075         inadvertently removed.
49076
49077 2006-01-26  Bruno Haible  <bruno@clisp.org>
49078
49079         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
49080         Reported by Paul Eggert.
49081
49082 2006-01-26  Bruno Haible  <bruno@clisp.org>
49083             Paul Eggert  <eggert@cs.ucla.edu>
49084
49085         * lib/stdbool_.h (_Bool)
49086         [(! (defined __cplusplus || defined __BEOS__)
49087           && !defined __GNUC__
49088           && !(defined __HP_cc || defined __xlc__
49089                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
49090                || defined __sgi))]:
49091         #define to signed char in these cases too; this simplifies
49092         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
49093         etc., separately) and makes it more conservative.
49094
49095 2006-01-25  Simon Josefsson  <jas@extundo.com>
49096
49097         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
49098         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
49099         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
49100
49101 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
49102
49103         * lib/argp-namefrob.h: Bugfix. Remove stray #
49104
49105 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
49106
49107         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
49108         so that we test the test.
49109         Check for yet another HP-UX cc bug involving *bool |= bool.
49110
49111 2006-01-25  Karl Berry  <karl@gnu.org>
49112
49113         * config/srclist.txt (vasnprintf.c): sync lost.
49114
49115 2006-01-25  Jim Meyering  <jim@meyering.net>
49116
49117         Sync from the stable (b5) branch of coreutils:
49118
49119         * lib/fts.c (fts_children): Don't let close() clobber errno from
49120         failed fchdir().
49121
49122         * lib/fts.c (fts_stat): When following a symlink-to-directory,
49123         don't necessarily interpret stat-fails+lstat-succeeds as indicating
49124         a dangling symlink.  That can also happen at least for ELOOP.
49125         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
49126         FYI, this bug predates the inclusion of fts.c in coreutils.
49127
49128         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
49129         in their own block, so pre-c99 compilers don't object.
49130
49131         Avoid the double-free (first in fts_read, second in fts_close) that
49132         would occur when an `active' directory is made inaccessible (e.g.,
49133         via chmod a-x) during a traversal.
49134         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
49135         before returning.  Reproduce this failure by
49136         mkdir -p a/b; cd a; chmod a-x . b
49137         Reported by Stavros Passas.
49138
49139 2006-01-25  Jim Meyering  <jim@meyering.net>
49140
49141         * lib/fileblocks.c: Remove more useless parentheses.
49142         * lib/readutmp.h: Likewise.
49143
49144 2006-01-25  Bruno Haible  <bruno@clisp.org>
49145
49146         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
49147         warnings.
49148         Reported by Paul Eggert.
49149
49150 2006-01-25  Bruno Haible  <bruno@clisp.org>
49151
49152         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
49153         rid of a trap command. For Solaris sh.
49154         Reported by Mark D. Baushke <mdb@gnu.org>.
49155
49156 2006-01-24  Simon Josefsson  <jas@extundo.com>
49157
49158         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
49159         Bruno.
49160
49161 2006-01-24  Karl Berry  <karl@gnu.org>
49162
49163         * config/srclist.txt (argp-namefrob.h): sync lost.
49164
49165 2006-01-24  Jim Meyering  <jim@meyering.net>
49166
49167         * modules/openat (Files): Add lib/intprops.h.
49168         From Mark D. Baushke.
49169
49170 2006-01-24  Jim Meyering  <jim@meyering.net>
49171
49172         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
49173         Reported by Mark D. Baushke.
49174
49175 2006-01-24  Jim Meyering  <jim@meyering.net>
49176
49177         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
49178
49179 2006-01-24  Bruno Haible  <bruno@clisp.org>
49180
49181         * modules/strnlen (Maintainer): Change from glibc to all.
49182
49183 2006-01-24  Bruno Haible  <bruno@clisp.org>
49184
49185         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
49186         Patch by Paul Eggert.
49187
49188 2006-01-24  Bruno Haible  <bruno@clisp.org>
49189
49190         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
49191         already has it.
49192         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
49193         2005-11-26.
49194
49195         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
49196         'signed char' to avoid problems with the built-in _Bool type.
49197         Reported by Paul Eggert on 2005-11-26.
49198
49199 2006-01-24  Bruno Haible  <bruno@clisp.org>
49200
49201         * gnulib-tool (func_import): Avoid constructing complicated sed
49202         expressions inside backquote.
49203         Report and solution by Mark D. Baushke <mdb@gnu.org>.
49204
49205 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
49206
49207         These changes imported from libc.
49208         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
49209         test and two separate function calls.
49210         * lib/strndup.c (__strndup): Add libc_hidden_def.
49211
49212 2006-01-23  Simon Josefsson  <jas@extundo.com>
49213
49214         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
49215         Remove the test_*_SOURCES variable: automake infers it by default.
49216         * modules/tls-tests: Likewise.
49217
49218 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49219
49220         Work around porting bugs reported by Dieter in
49221         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
49222         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
49223         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
49224         Include "getopt.h" first, to check interface.
49225         (getenv): Declare only if defined HAVE_DECL_GETENV &&
49226         !HAVE_DECL_GETENV.
49227         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
49228         (__strndup): Revert to K&R-style function dfns, the glibc style.
49229         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
49230         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
49231         Include strnlen.h first, to get prototype properly.
49232         (strnlen): Renamed from __strnlen.
49233         Remove weak alias.
49234
49235 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49236
49237         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
49238
49239 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49240
49241         * config/srclist.txt: Adjust to reflect glibc reorganization.
49242         This affects only comments.
49243
49244 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
49245
49246          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
49247          Reported by Bruce Korb <bkorb@gnu.org>.
49248
49249 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
49250
49251         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
49252         to pacify gcc -Wswitch-default.
49253
49254 2006-01-22  Bruno Haible  <bruno@clisp.org>
49255
49256         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
49257         temporary buffer for sprintf, take into account the precision also
49258         for 'd', 'i', 'u', 'o', 'x', 'X'.
49259
49260 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
49261
49262         * modules/argp-tests: New module
49263         * tests/test-argp.c: New file
49264         * tests/test-argp-2.sh: New file
49265
49266 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
49267
49268         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
49269         (__argp_base_name): Removed
49270         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
49271         typo.
49272         (__argp_base_name): Provide macro definition or extern declaration
49273         depending on the configuration
49274
49275 2006-01-20  Simon Josefsson  <jas@extundo.com>
49276
49277         * modules/inet_ntop (Depends-on): Depend on sys_socket.
49278
49279 2006-01-20  Simon Josefsson  <jas@extundo.com>
49280
49281         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
49282
49283 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
49284
49285         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
49286         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
49287         Suggested by Bruno Haible.
49288
49289 2006-01-20  Karl Berry  <karl@gnu.org>
49290
49291         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
49292         until changes propagate, I guess.
49293
49294 2006-01-19  Simon Josefsson  <jas@extundo.com>
49295
49296         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
49297
49298 2006-01-19  Simon Josefsson  <jas@extundo.com>
49299
49300         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
49301
49302 2006-01-19  Simon Josefsson  <jas@extundo.com>
49303
49304         * gnulib-tool: Set check_PROGRAMS.
49305
49306         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
49307         modules/des-tests, modules/gc-arcfour-tests,
49308         modules/gc-arctwo-tests, modules/gc-des-tests,
49309         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
49310         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
49311         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
49312         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
49313         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
49314         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
49315         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
49316         test_*_SOURCES.
49317
49318 2006-01-18  Simon Josefsson  <jas@extundo.com>
49319
49320         * modules/socklen (Depends-on): Depend on sys_socket.
49321
49322 2006-01-18  Simon Josefsson  <jas@extundo.com>
49323
49324         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
49325         modules/des-tests, modules/gc-arcfour-tests,
49326         modules/gc-arctwo-tests, modules/gc-des-tests,
49327         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
49328         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
49329         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
49330         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
49331         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
49332         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
49333         $(EXEEXT) to automake TESTS variable, for mingw32.
49334
49335 2006-01-17  Simon Josefsson  <jas@extundo.com>
49336
49337         * modules/socklen (Include): Need sys/socket.h.
49338
49339 2006-01-17  Bruno Haible  <bruno@clisp.org>
49340
49341         * modules/ssize_t (Include): Add <sys/types.h>.
49342
49343 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
49344
49345         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
49346         it's not portable and it doesn't work with cross-compiles.
49347         Problem reported by Bruno Haible.  Fix missing-$ typo in
49348         'test "gl_cv_ignore_unused_libraries" ...' that prevented
49349         -zignore from being used with Sun's C compiler.
49350
49351 2006-01-12  Simon Josefsson  <jas@extundo.com>
49352
49353         * lib/base64.c: Fix warning, reported by Bruno Haible
49354         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
49355
49356 2006-01-12  Bruno Haible  <bruno@clisp.org>
49357
49358         * modules/ldd: New file.
49359         * build-aux/ldd.sh.in: New file.
49360         * MODULES.html.sh (Support for building libraries and executables): Add
49361         ldd.
49362
49363 2006-01-12  Bruno Haible  <bruno@clisp.org>
49364
49365         * m4/ldd.m4: New file.
49366
49367 2006-01-12  Bruno Haible  <bruno@clisp.org>
49368
49369         * gnulib-tool (func_import, func_create_testdir): Don't go into an
49370         endless loop while replacing $auxdir with build-aux.
49371
49372 2006-01-11  Simon Josefsson  <jas@extundo.com>
49373
49374         * lib/stdint_.h (SIZE_MAX): Add missing (.
49375
49376 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
49377
49378         Sync from coreutils.
49379         * lib/md5.c: Fix commentary typos.
49380         (alignof, UNALIGNED_P): No need for a GCC-specific version.
49381         * lib/md5.h (__attribute__): Remove; unused.
49382         * lib/sha1.c: Fix commentary to match md5 better.
49383         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
49384         so that we don't need to worry about alignment.  All uses changed.
49385         This merges the 2005-10-28 md5 change into sha1.
49386
49387 2006-01-11  Jim Meyering  <jim@meyering.net>
49388
49389         Sync from coreutils.
49390         * lib/md5.c (OP): Fix spacing.
49391
49392 2006-01-11  Bruno Haible  <bruno@clisp.org>
49393
49394         Ensure automatic ordering between gl_LOCK and gl_ARGP.
49395         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
49396         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
49397
49398 2006-01-11  Bruno Haible  <bruno@clisp.org>
49399
49400         Ensure automatic ordering between gl_LOCK and gl_ARGP.
49401         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
49402         the "early" section as well.
49403
49404 2006-01-11  Bruno Haible  <bruno@clisp.org>
49405
49406         Avoid "ar: no archive members specified" error on MacOS X.
49407         * gnulib-tool (func_modules_add_dummy): New function.
49408         (func_import, func_create_testdir): Invoke it.
49409
49410 2006-01-11  Bruno Haible  <bruno@clisp.org>
49411
49412         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
49413         with $auxdir in AC_CONFIG_FILES statements.
49414
49415 2006-01-11  Bruno Haible  <bruno@clisp.org>
49416
49417         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
49418         Initialize also noinst_HEADERS to empty.
49419
49420 2006-01-11  Bruno Haible  <bruno@clisp.org>
49421
49422         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
49423         variables.
49424         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
49425         autoreconf.
49426
49427 2006-01-11  Bruno Haible  <bruno@clisp.org>
49428
49429         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
49430         overridable by the user.
49431         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
49432
49433 2006-01-10  Simon Josefsson  <jas@extundo.com>
49434
49435         * modules/sys_socket: New file.
49436
49437 2006-01-10  Simon Josefsson  <jas@extundo.com>
49438
49439         * m4/sys_socket_h.m4: New file.
49440
49441 2006-01-10  Simon Josefsson  <jas@extundo.com>
49442
49443         * lib/socket_.h: New file.
49444
49445 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
49446
49447         * modules/readutmp (Maintainer): Add myself.
49448
49449 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
49450
49451         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
49452         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
49453         People who are still concerned with buggy memcmp implementations
49454         can invoke gl_FUNC_MEMCMP themselves.
49455
49456 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
49457
49458         * lib/regex_internal.h (BITSET_WORD_BITS):
49459         Work around a bug in 64-bit PGC (before version 6.1-2), where the
49460         preprocessor mishandles large unsigned values as if they were signed.
49461         Problem reported by Claudio Fontana in
49462         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
49463
49464 2006-01-10  Jim Meyering  <jim@meyering.net>
49465
49466         Avoid the double-free (first in fts_read, second in fts_close) that
49467         would occur when an `active' directory is made inaccessible (e.g.,
49468         via chmod a-x) during a traversal.
49469         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
49470         before returning.  Reproduce this failure by
49471         mkdir -p a/b; cd a; chmod a-x . b
49472         Reported by Stavros Passas.
49473
49474         Sync from coreutils.
49475         * lib/sha1.c: Tweak grammar in a comment.
49476
49477 2006-01-10  Jim Meyering  <jim@meyering.net>
49478
49479         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
49480         Patch by Joerg Sonnenberger.
49481
49482 2006-01-10  Bruno Haible  <bruno@clisp.org>
49483
49484         * modules/readutmp: Depend on module free.
49485         * modules/strtok_r: Depend on module restrict.
49486
49487 2006-01-10  Bruno Haible  <bruno@clisp.org>
49488
49489         * modules/gettext (configure.ac): Add an invocation of
49490         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
49491
49492 2006-01-10  Bruno Haible  <bruno@clisp.org>
49493
49494         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
49495         Reported by Werner Lemberg <wl@gnu.org>.
49496
49497 2006-01-10  Bruno Haible  <bruno@clisp.org>
49498
49499         * lib/localcharset.c: Update from GNU gettext.
49500
49501 2006-01-10  Bruno Haible  <bruno@clisp.org>
49502
49503         * lib/argp.h (__const): Remove macro. Use const instead.
49504         * lib/argp-fmtstream.h (__const): Likewise.
49505         * lib/glob_.h (__const): Remove macro.
49506         * lib/glob-libc.h: Use const instead of __const.
49507
49508 2006-01-10  Bruno Haible  <bruno@clisp.org>
49509
49510         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
49511         variable.
49512         Needed to avoid an automake error regarding the 'gettext' module.
49513
49514 2006-01-09  Simon Josefsson  <jas@extundo.com>
49515
49516         * modules/inet_ntop (Depends-on): Add restrict.
49517
49518 2006-01-09  Simon Josefsson  <jas@extundo.com>
49519
49520         * modules/gc-rijndael-tests (License): Put under LGPL.
49521
49522         * modules/gc-des-tests (License): Likewise.
49523
49524         * modules/gc-arcfour-tests (License): Likewise.
49525
49526         * modules/gc-arctwo-tests (License): Likewise.
49527
49528         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
49529
49530         * modules/gc-hmac-sha1-tests (Files): Likewise.
49531
49532         * modules/gc-hmac-md5-tests (License): Likewise.
49533
49534         * modules/gc-sha1-tests (License): Likewise.
49535
49536         * modules/gc-md5-tests (License): Likewise.
49537
49538         * modules/gc-md4-tests (License): Likewise.
49539
49540         * modules/gc-md2-tests (License): Likewise.
49541
49542         * modules/gc-tests (License): Likewise.
49543
49544         * modules/des-tests (License): Likewise.
49545
49546         * modules/md4-tests (License): Likewise.
49547
49548         * modules/md2-tests (License): Likewise.
49549
49550 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49551
49552         Sync from coreutils:
49553
49554         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
49555         * modules/lib-ignore: New file.
49556         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
49557         chdir-safer.m4, lchmod.m4.
49558         * modules/openat: Add mkdirat.c, openat-priv.h.
49559
49560 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49561
49562         Sync from coreutils.
49563         * m4/lib-ignore.m4: New file.
49564         * m4/lchmod.m4: New file.
49565
49566 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49567
49568         Sync from coreutils.
49569         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
49570         for write access: POSIX says that must fail.
49571         * lib/fts.c (diropen): Likewise.
49572         * lib/save-cwd.c (save_cwd): Likewise.
49573         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
49574         well, for minor improvements on hosts that lack O_DIRECTORY.
49575         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
49576         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
49577         Fall back on chown if open failed with EACCES.
49578
49579         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
49580         Report an error at compile-time if only a 1-second nominal clock
49581         resolution is found.
49582
49583         * lib/lchmod.h: New file.
49584         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
49585         (make_dir_parents): Use lchown rather than chown, and
49586         lchmod rather than chmod.
49587
49588         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
49589         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
49590         "proc" reported by n0dalus.
49591
49592         * lib/mountlist.c: Include <limits.h>.
49593         (dev_from_mount_options)
49594         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
49595         New function.  It no longer assumes "dev=" has the System V meaning
49596         on Linux (since it doesn't).  It also parses "dev=" more carefully.
49597         (read_file_system_list)
49598         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
49599         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
49600         dev= in that case.
49601
49602         * lib/posixtm.h (PDS_PRE_2000): New macro.
49603         * lib/posixtm.c (year): Arg is now syntax_bits rather than
49604         allow_century.  All usages changed.  Reject dates outside the range
49605         1969-1999 if PDS_PRE_2000 is used.
49606
49607 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49608
49609         Sync from coreutils.
49610         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
49611         (Time of day items): Mention the possibility of leap seconds.
49612         Problem reported by Dr. David Alan Gilbert.
49613
49614 2006-01-09  Jim Meyering  <jim@meyering.net>
49615
49616         Sync from coreutils.
49617
49618         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
49619
49620         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
49621
49622         * lib/modechange.c (mode_compile): Reject an invalid mode string
49623         that starts with an octal digit.  From Andreas Gruenbacher.
49624
49625         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
49626         and dup to open_safer and dup_safer, respectively.
49627         (openat_permissive): Fix typo in comment.
49628
49629         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
49630         "gettext.h"; either no longer needed or are guaranteed by openat.h.
49631         (_): Remove; no longer needed.
49632         (openat): Renamed from rpl_openat; no need for rpl_openat
49633         since openat.h renames openat for us.
49634         Replace most of the body with a call to openat_permissive,
49635         to avoid duplicate code.
49636         Port to (probably hypothetical) environments were mode_t is
49637         wider than int.
49638         (openat_permissive): Require mode arg, so that we can check
49639         types better.  Put it just after flags.  Change cwd failure
49640         indicator from pointer-to-bool to pointer-to-errno-value.
49641         All callers changed.
49642         Invoke openat_save_fail and/or openat_restore_fail if
49643         cwd_errno is null, so that openat can call us.
49644         (openat_permissive, fdopendir, fstatat, unlinkat):
49645         Simplify errno handling to avoid some duplicate code,
49646         as it's OK to set errno on success.
49647         * lib/openat.h: Revamp code so that function macros depend on
49648         __OPENAT_PREFIX only, not also on AT_FDCWD.
49649         (openat_ro): Remove.  Caller changed to use openat_permissive.
49650         (openat_permissive): Now a macro, if not a function.
49651         (openat_restore_fail, openat_save_fail): Now always functions,
49652         since mkdirat needs them even if __OPENAT_PREFIX is defined.
49653
49654         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
49655         and openat.c.
49656         * lib/mkdirat.c: Include openat-priv.h.
49657         Remove definitions of macros defined therein.
49658         * lib/openat.c: Likewise.
49659
49660         * lib/mkdirat.c (mkdirat): New file and function.
49661         * lib/openat.h (mkdirat): Declare.
49662
49663         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
49664
49665         * lib/openat.h (openat_permissive): Declare.
49666         (openat_ro): Define.
49667
49668         * lib/openat.c (EXPECTED_ERRNO): New macro.
49669         (openat_permissive): New function -- used in remove.c rewrite.
49670         (all functions): Set errno just before returning, only if there
49671         was an actual failure.
49672         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
49673
49674         Emulate openat-family functions using Linux's procfs, if possible.
49675         Idea and some code based on Ulrich Drepper's glibc changes.
49676
49677         * lib/openat.c: (BUILD_PROC_NAME): New macro.
49678         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
49679         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
49680         before falling back on save_cwd and restore_cwd.
49681         (fdopendir, fstatat, unlinkat): Likewise.
49682
49683         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
49684         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
49685
49686         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
49687         as second argument to va_arg.  Otherwise, some versions of gcc
49688         warn that `if this code is reached, the program will abort'.
49689
49690 2006-01-09  Jim Meyering  <jim@meyering.net>
49691
49692         Sync from coreutils.
49693         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
49694         Require openat-priv.h.
49695
49696 2006-01-09  Bruno Haible  <bruno@clisp.org>
49697
49698         * modules/strnlen (Include): Use strnlen.h.
49699
49700 2006-01-09  Bruno Haible  <bruno@clisp.org>
49701
49702         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
49703
49704 2006-01-09  Bruno Haible  <bruno@clisp.org>
49705
49706         * lib/sysexit_.h (EX_OK): New macro.
49707         Suggested by Martin Lambers <marlam@marlam.de>.
49708
49709 2006-01-09  Bruno Haible  <bruno@clisp.org>
49710
49711         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
49712         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
49713
49714 2006-01-09  Bruno Haible  <bruno@clisp.org>
49715
49716         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
49717         numbers.
49718
49719 2006-01-09  Bruno Haible  <bruno@clisp.org>
49720
49721         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
49722         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
49723         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
49724         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
49725
49726 2006-01-09  Bruno Haible  <bruno@clisp.org>
49727
49728         * build-aux/javacomp.sh.in: New file, moved from lib/.
49729         * modules/javacomp-script (Files): Update.
49730         (configure.ac): Add AC_CONFIG_FILES invocation.
49731         (EXTRA_DIST): Remove variable.
49732
49733         * build-aux/javaexec.sh.in: New file, moved from lib/.
49734         * modules/javaexec (Files): Update.
49735         (configure.ac): Add AC_CONFIG_FILES invocation.
49736         (EXTRA_DIST): Remove javaexec.sh.in.
49737
49738         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
49739         * modules/csharpcomp-script (Files): Update.
49740         (configure.ac): Add AC_CONFIG_FILES invocation.
49741         (EXTRA_DIST): Remove variable.
49742
49743         * build-aux/csharpexec.sh.in: New file, moved from lib/.
49744         * modules/csharpexec (Files): Update.
49745         (configure.ac): Add AC_CONFIG_FILES invocation.
49746         (EXTRA_DIST): Remove csharpexec.sh.in.
49747
49748 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
49749
49750         Sync from coreutils.
49751
49752         Add POSIX ACL support
49753         * lib/acl.h (copy_acl, set_acl): Add declarations.
49754         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
49755         systems other than Linux.
49756         (chmod_or_fchmod): New function: use fchmod when possible,
49757         and chmod otherwise.
49758         (file_has_acl): Add a POSIX ACL implementation, with a
49759         Linux-specific subcase.
49760         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
49761         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
49762         acls are unsupported.
49763         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
49764         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
49765         are unsupported.
49766
49767 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
49768
49769         Sync from coreutils.
49770         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
49771
49772 2006-01-07  Bruno Haible  <bruno@clisp.org>
49773
49774         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
49775         gl_EARLY.
49776
49777 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
49778
49779         * lib/strftime.c (tzname): Don't declare if it is already #defined.
49780         Problem reported for Mingw by Mark Junker.
49781
49782 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
49783
49784         * README: Gnulib normally doesn't generate a tarball.
49785
49786 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
49787
49788         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
49789         long int, not int, for nanosecond counts, so that people who are
49790         used to POSIX struct timespec won't be surprised.  Reported by Jim
49791         Meyering.
49792
49793 2005-12-28  Bruno Haible  <bruno@clisp.org>
49794
49795         * build-aux/config.rpath: Update from GNU gettext.
49796
49797 2005-12-16  Jim Meyering  <jim@meyering.net>
49798
49799         * modules/fprintftime: New module.
49800         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
49801
49802 2005-12-16  Jim Meyering  <jim@meyering.net>
49803
49804         * m4/fprintftime.m4: New file.
49805
49806 2005-12-16  Jim Meyering  <jim@meyering.net>
49807
49808         * lib/fprintftime.c, lib/fprintftime.h: New files.
49809
49810 2005-12-15  Simon Josefsson  <jas@extundo.com>
49811
49812         * modules/socklen (configure.ac): Fix M4 macro name, to align with
49813         new m4/socklen.m4.
49814
49815 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49816
49817         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
49818         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
49819
49820 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49821
49822         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
49823         * lib/argp-help.c (fill_in_uparams): Check if the constructed
49824         struct uparams is valid. Fall back to the default values if it is
49825         not.
49826
49827 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49828
49829         * modules/argp (Files): Add argp-pin.c
49830         (Depends-on): dirname
49831         (lib_SOURCES): Add argp-pin.c
49832
49833 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49834
49835         * m4/argp.m4:  Check if program_invocation_name and
49836         program_invocation_short_name are declared and define appropriate
49837         macros if they are not.
49838
49839 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49840
49841         * lib/argp-help.c (__argp_base_name): New function
49842         (__argp_short_program_name): Rewrite using __argp_base_name
49843         * lib/argp-namefrob.h: Define program_invocation_name and
49844         program_invocation_short_name if requested
49845         (__argp_base_name): Add prototype
49846         * lib/argp-parse.c (argp_def): Use gettext wrappers
49847         (argp_default_parser): Use __argp_base_name
49848         * lib/argp-pin.c: New file. Defines program_invocation_name and
49849         program_invocation_short_name on systems that lack them.
49850
49851 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49852
49853         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
49854         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
49855         porting problem reported by Georg Schwarz in
49856         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
49857
49858 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49859
49860         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
49861         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
49862         porting problem reported by Georg Schwarz in
49863         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
49864
49865 2005-12-05  Bruno Haible  <bruno@clisp.org>
49866
49867         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
49868         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
49869         Reported by Mark Junker <mjscod@gmx.de>.
49870
49871 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
49872
49873         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
49874         Use implementation from Albert Chin, with some
49875         comments/corrections by Stepan Kasal and myself.
49876
49877 2005-12-02  Bruno Haible  <bruno@clisp.org>
49878
49879         * gnulib-tool (func_import): Accept GPLed build tool modules when
49880         --lgpl is given.
49881         * modules/csharpcomp-script: New file.
49882         * modules/csharpcomp: Depend on it.
49883         * modules/javacomp-script: New file.
49884         * modules/javacomp: Depend on it.
49885         Suggested by Simon Josefsson.
49886
49887 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
49888
49889         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
49890         statement, to work around an HP-UX 10.20 compiler bug reported by
49891         Peter O'Gorman.
49892
49893 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
49894
49895         * modules/savedir (Depends-on): Add openat.
49896
49897 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
49898
49899         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
49900         (uintmax_t) [defined uintmax_t]: Do not declare.
49901         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
49902         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
49903         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
49904         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
49905         sake of portability to weird hosts that C allows (though we don't
49906         know of any practical examples).
49907
49908         * lib/savedir.h (fdsavedir): New decl.
49909         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
49910         contains most of the former guts of savedir.
49911         (savedir): Use savedirstream.
49912         Include "openat.h".
49913
49914 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
49915
49916         * modules/obstack (Files): Add m4/ulonglong.m4.
49917         Problem reported by Davide Angelocola.
49918
49919 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
49920
49921         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
49922         coreutils no longer futzes with rounding modes.
49923
49924 2005-11-14  Jim Meyering  <jim@meyering.net>
49925
49926         * lib/mkstemp-safer.c: Include <config.h>, required for possible
49927         replacement of mkstemp.
49928
49929 2005-11-10  Simon Josefsson  <jas@extundo.com>
49930
49931         * lib/readline.c: Remove EOL.
49932
49933 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49934
49935         * modules/gethrxtime (Depends-on): Add gettime.
49936
49937 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49938
49939         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
49940         or gettimeofday; no longer needed.
49941
49942 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49943
49944         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
49945         time business.
49946         (gethrxtime) [! (HAVE_NANOUPTIME
49947         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
49948         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
49949         our own approximation.
49950
49951 2005-11-08  Eric Blake  <ebb9@byu.net>
49952
49953         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
49954
49955 2005-11-08  Eric Blake  <ebb9@byu.net>
49956
49957         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
49958
49959 2005-11-04  Bruno Haible  <bruno@clisp.org>
49960
49961         * gnulib-tool: Implement --update mode.
49962
49963 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49964
49965         Fix porting problem reported by Theodoros V. Kalamatianos.
49966         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
49967         Don't assume that futimes failing means we must fail.
49968
49969 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49970
49971         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
49972         variables to suggest the intended function of the PATH_MAX check.
49973
49974 2005-10-30  Kean Johnston  <jkj@sco.com>
49975
49976         Trivial changes to support SCO systems.
49977         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
49978         as PATH_MAX.
49979         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
49980         where __ptr is null when no I/O is pending.
49981
49982 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
49983
49984         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
49985         leave errno alone.  Problem reported by Dmitry V. Levin.
49986
49987 2005-10-28  Simon Josefsson  <jas@extundo.com>
49988
49989         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
49990         Test more.
49991
49992         * tests/test-gc-md2.c, tests/test-md2.c: New files.
49993
49994         * modules/md2, modules/md2-tests: New files.
49995
49996 2005-10-28  Simon Josefsson  <jas@extundo.com>
49997
49998         * m4/inet_ntop.m4: More tests.
49999
50000         * m4/gc-md2.m4, md2.m4: New file.
50001
50002 2005-10-28  Simon Josefsson  <jas@extundo.com>
50003
50004         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
50005         "restrict" keywords, as per POSIX.  Protect the function
50006         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
50007         Don't use K&R prototypes.  Check the sprintf return values.
50008         Re-define EAFNOSUPPORT if not present.  Indent.
50009
50010         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
50011         suggested by Bruno Haible <bruno@clisp.org>.
50012
50013         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
50014
50015         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
50016
50017         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
50018         libgcrypt).
50019
50020         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
50021
50022         * lib/md2.h, lib/md2.c: New files.
50023
50024 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
50025
50026         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
50027         errno alone.  Problem reported by Frederic Jolliton.
50028
50029 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
50030
50031         * modules/verify (License): Change from GPL to LGPL.  This is a
50032         tiny module and there are apparently near-equivalents that are
50033         under the BSD license.
50034
50035 2005-10-24  Simon Josefsson  <jas@extundo.com>
50036
50037         * modules/sha1: Relicense to LGPL.
50038
50039 2005-10-24  Simon Josefsson  <jas@extundo.com>
50040
50041         * lib/md4.h: Shrink buffer size, now that we changed the type.
50042
50043 2005-10-23  Simon Josefsson  <jas@extundo.com>
50044
50045         * gnulib-tool (func_import): Fix --tests-base.
50046
50047 2005-10-22  Simon Josefsson  <jas@extundo.com>
50048
50049         * modules/arcfour (Depends-on): Need stdint.
50050
50051 2005-10-22  Simon Josefsson  <jas@extundo.com>
50052
50053         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
50054         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
50055
50056 2005-10-22  Simon Josefsson  <jas@extundo.com>
50057
50058         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
50059         suggested by Bruno Haible <bruno@clisp.org>.
50060
50061 2005-10-22  Simon Josefsson  <jas@extundo.com>
50062
50063         * lib/crc.h: Include stddef.h, for size_t.
50064
50065 2005-10-22  Simon Josefsson  <jas@extundo.com>
50066
50067         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
50068         arcfour_context struct (simplify test vector testing in GNU
50069         Shishi).
50070
50071 2005-10-21  Simon Josefsson  <jas@extundo.com>
50072
50073         * modules/des, modules/des-tests: New files.
50074
50075         * modules/gc-des, modules/gc-des-tests: New files.
50076
50077         * tests/test-des.c, tests/test-gc-des.c: New file.
50078
50079 2005-10-21  Simon Josefsson  <jas@extundo.com>
50080
50081         * modules/arctwo, modules/arctwo-tests: New files.
50082
50083         * tests/test-arctwo.c: New file.
50084
50085         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
50086
50087         * tests/test-gc-arctwo.c: New file.
50088
50089 2005-10-21  Simon Josefsson  <jas@extundo.com>
50090
50091         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
50092         Bruno Haible <bruno@clisp.org>.
50093
50094         * m4/gc-des.m4: New file.
50095
50096 2005-10-21  Simon Josefsson  <jas@extundo.com>
50097
50098         * m4/arctwo.m4: New file.
50099
50100         * m4/gc-arctwo.m4: New file.
50101
50102 2005-10-21  Simon Josefsson  <jas@extundo.com>
50103
50104         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
50105         block.
50106
50107 2005-10-21  Simon Josefsson  <jas@extundo.com>
50108
50109         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
50110         <bruno@clisp.org>.
50111
50112         * lib/hmac-sha1.c (hmac_sha1): Likewise.
50113
50114         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
50115         Bruno Haible <bruno@clisp.org>.
50116
50117         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
50118         <bruno@clisp.org>.
50119
50120 2005-10-21  Simon Josefsson  <jas@extundo.com>
50121
50122         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
50123
50124 2005-10-21  Simon Josefsson  <jas@extundo.com>
50125
50126         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
50127
50128 2005-10-21  Simon Josefsson  <jas@extundo.com>
50129
50130         * lib/des.h, lib/des.c: New files.
50131
50132         * lib/gc-gnulib.c: Support DES.c
50133
50134 2005-10-21  Simon Josefsson  <jas@extundo.com>
50135
50136         * lib/arctwo.h, lib/arctwo.c: New files.
50137
50138         * lib/gc-gnulib.c: Support ARCTWO.
50139
50140 2005-10-21  Simon Josefsson  <jas@extundo.com>
50141
50142         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
50143         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
50144
50145 2005-10-21  Simon Josefsson  <jas@extundo.com>
50146
50147         * gnulib-tool (func_import, func_create_testdir): Define automake
50148         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
50149         Makefile.am snippet),
50150         suggested by Bruno Haible <bruno@clisp.org>.
50151
50152         * modules/gc (Makefile.am): Use it.
50153
50154 2005-10-21  Bruno Haible  <bruno@clisp.org>
50155
50156         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
50157         patch.
50158
50159 2005-10-19  Simon Josefsson  <jas@extundo.com>
50160
50161         * tests/test-gc-rijndael.c: New file.
50162
50163         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
50164
50165 2005-10-19  Simon Josefsson  <jas@extundo.com>
50166
50167         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
50168         interface too.
50169
50170 2005-10-19  Simon Josefsson  <jas@extundo.com>
50171
50172         * tests/test-gc-arcfour.c: New file.
50173
50174         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
50175
50176 2005-10-19  Simon Josefsson  <jas@extundo.com>
50177
50178         * modules/gc-md4, modules/gc-md4-tests: New file.
50179
50180         * tests/test-gc-md4.c: New file.
50181
50182 2005-10-19  Simon Josefsson  <jas@extundo.com>
50183
50184         * m4/gc-md4.m4: New file.
50185
50186 2005-10-19  Simon Josefsson  <jas@extundo.com>
50187
50188         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
50189         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
50190         <kasal@ucw.cz>.
50191
50192 2005-10-19  Simon Josefsson  <jas@extundo.com>
50193
50194         * m4/gc-arcfour.m4: New file.
50195
50196         * m4/gc-rijndael.m4: New file.
50197
50198 2005-10-19  Simon Josefsson  <jas@extundo.com>
50199
50200         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
50201
50202 2005-10-19  Simon Josefsson  <jas@extundo.com>
50203
50204         * lib/gc-gnulib.c: Support ARCFOUR.
50205
50206 2005-10-19  Simon Josefsson  <jas@extundo.com>
50207
50208         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
50209         support.
50210
50211         * lib/gc.h: Add ECB enum type.
50212
50213         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
50214
50215 2005-10-18  Simon Josefsson  <jas@extundo.com>
50216
50217         * tests/test-md5.c: New file.
50218
50219         * modules/md5-tests: New file.
50220
50221 2005-10-18  Simon Josefsson  <jas@extundo.com>
50222
50223         * tests/test-md4.c: New file.
50224
50225         * modules/md4, modules/md4-tests: New files.
50226
50227 2005-10-18  Simon Josefsson  <jas@extundo.com>
50228
50229         * m4/md4.m4: New file.
50230
50231 2005-10-18  Simon Josefsson  <jas@extundo.com>
50232
50233         * lib/md4.h, lib/md4.c: New files, based on md5.?.
50234
50235 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
50236
50237         * gnulib-tool (func_create_testdir): Omit the second check whether
50238         BUILT_SOURCES in nonempty.
50239
50240 2005-10-17  Simon Josefsson  <jas@extundo.com>
50241
50242         * tests/test-rijndael.c: New file.
50243
50244 2005-10-17  Simon Josefsson  <jas@extundo.com>
50245
50246         * modules/sha1: Depend on stdint instead of md5.
50247
50248         * modules/md5: Depend on stdint, remove uint32_t.
50249
50250 2005-10-17  Simon Josefsson  <jas@extundo.com>
50251
50252         * modules/gc-sha1-tests: New file.
50253
50254         * tests/test-gc-sha1.c: New file.
50255
50256 2005-10-17  Simon Josefsson  <jas@extundo.com>
50257
50258         * m4/md5.m4: Remove call to uint32_t.m4.
50259
50260 2005-10-17  Simon Josefsson  <jas@extundo.com>
50261
50262         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
50263
50264         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
50265         md5.h.
50266
50267         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
50268
50269         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
50270
50271 2005-10-17  Simon Josefsson  <jas@extundo.com>
50272
50273         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
50274
50275 2005-10-17  Simon Josefsson  <jas@extundo.com>
50276
50277         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
50278
50279 2005-10-17  Simon Josefsson  <jas@extundo.com>
50280
50281         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
50282
50283         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
50284
50285 2005-10-17  Bruno Haible  <bruno@clisp.org>
50286
50287         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
50288         that it can also be used in a test.
50289
50290 2005-10-16  Bruno Haible  <bruno@clisp.org>
50291
50292         * gnulib-tool (func_emit_tests_Makefile_am): Also define
50293         TESTS_ENVIRONMENT, so that individual tests can augment it.
50294
50295         * gnulib-tool (func_create_testdir): Use an intermediate target for
50296         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
50297         macros, like $(ALLOCA_H), which cannot be passed through the command
50298         line.
50299
50300 2005-10-15  Simon Josefsson  <jas@extundo.com>
50301
50302         * modules/rijndael-tests: New file.
50303
50304         * modules/rijndael: New file.
50305
50306 2005-10-15  Simon Josefsson  <jas@extundo.com>
50307
50308         * m4/rijndael.m4: New file.
50309
50310 2005-10-15  Simon Josefsson  <jas@extundo.com>
50311
50312         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
50313
50314         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
50315
50316 2005-10-14  Simon Josefsson  <jas@extundo.com>
50317
50318         * tests/test-arcfour.c: New file.
50319
50320         * modules/arcfour, modules/arcfour-tests: New files.
50321
50322 2005-10-14  Simon Josefsson  <jas@extundo.com>
50323
50324         * m4/arcfour.m4: New file.
50325
50326 2005-10-14  Simon Josefsson  <jas@extundo.com>
50327
50328         * lib/arcfour.h, lib/arcfour.c: New files.
50329
50330 2005-10-14  Roland McGrath  <roland@redhat.com>
50331
50332         Import from libc.  [BZ #1331]
50333         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
50334         macro argument.
50335         Reported by Matej Vela <vela@debian.org>.
50336
50337 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
50338
50339         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
50340         include <wchar.h>; no longer needed.
50341
50342 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
50343
50344         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
50345
50346 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
50347         and  Ulrich Drepper  <drepper@redhat.com>
50348
50349         Import from libc.
50350         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
50351         instead of inline stream orientation test and two separate
50352         function calls.  Pay no attention to USE_IN_LIBIO.
50353
50354 2005-10-13  Simon Josefsson  <jas@extundo.com>
50355
50356         * modules/gc-hmac-md5-tests: New file.
50357
50358         * tests/test-gc-hmac-sha1.c: New file.
50359
50360         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
50361
50362         * modules/gc-hmac-md5-tests: New file.
50363
50364         * tests/test-gc-md5.c: New file.
50365
50366         * modules/gc-md5-tests: New file.
50367
50368 2005-10-13  Simon Josefsson  <jas@extundo.com>
50369
50370         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
50371         Move memory allocation outside of loop.
50372
50373 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
50374
50375         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
50376         intermediate directory is in a read-only file system.  Problem
50377         reported by Eric Blake.
50378
50379 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
50380
50381         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
50382
50383 2005-10-12  Simon Josefsson  <jas@extundo.com>
50384
50385         * tests/test-hmac-sha1.c: New file.
50386
50387         * modules/hmac-sha1-tests: New file.
50388
50389         * modules/hmac-sha1: New file.
50390
50391 2005-10-12  Simon Josefsson  <jas@extundo.com>
50392
50393         * modules/gc-sha1: New file.
50394
50395 2005-10-12  Simon Josefsson  <jas@extundo.com>
50396
50397         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
50398
50399         * tests/test-gc-pbkdf2-sha1.c: New file.
50400
50401 2005-10-12  Simon Josefsson  <jas@extundo.com>
50402
50403         * modules/gc-md5, modules/gc-hmac-md5: New files.
50404
50405         * modules/gc (Files): Remove md5, memxor and hmac files.
50406
50407 2005-10-12  Simon Josefsson  <jas@extundo.com>
50408
50409         * m4/gc-pbkdf2-sha1.m4: New file.
50410
50411         * m4/gc-hmac-sha1.m4: New file.
50412
50413         * m4/gc-sha1: New file.
50414
50415         * m4/hmac-sha1.m4: New file.
50416
50417 2005-10-12  Simon Josefsson  <jas@extundo.com>
50418
50419         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
50420
50421         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
50422
50423 2005-10-12  Simon Josefsson  <jas@extundo.com>
50424
50425         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
50426         suggested by Bruno Haible <bruno@clisp.org>.
50427
50428 2005-10-12  Simon Josefsson  <jas@extundo.com>
50429
50430         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
50431
50432 2005-10-12  Simon Josefsson  <jas@extundo.com>
50433
50434         * lib/gc-pbkdf2-sha1.c: New file.
50435
50436         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
50437
50438 2005-10-12  Simon Josefsson  <jas@extundo.com>
50439
50440         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
50441
50442         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
50443
50444 2005-10-12  Simon Josefsson  <jas@extundo.com>
50445
50446         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
50447         GC_USE_HMAC_MD5, respectively.
50448
50449         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
50450         (gc_md5): Fix typo.
50451
50452         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
50453
50454         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
50455
50456         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
50457
50458 2005-10-12  Bruno Haible  <bruno@clisp.org>
50459
50460         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
50461         Reported by Stepan Kasal <kasal@ucw.cz>.
50462
50463 2005-10-11  Simon Josefsson  <jas@extundo.com>
50464
50465         * tests/test-crc.c: New file.
50466
50467         * modules/crc, modules/crc-tests: New files.
50468
50469 2005-10-11  Simon Josefsson  <jas@extundo.com>
50470
50471         * m4/crc.m4: New file.
50472
50473 2005-10-11  Simon Josefsson  <jas@extundo.com>
50474
50475         * lib/gc.h: Add gc_hash and gc_hash_buffer.
50476
50477         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
50478
50479         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
50480
50481 2005-10-11  Simon Josefsson  <jas@extundo.com>
50482
50483         * lib/crc.h, lib/crc.c: New files.
50484
50485         * lib/gc.h (gc_hash_buffer): Add doc.
50486
50487 2005-10-11  Bruno Haible  <bruno@clisp.org>
50488
50489         * modules/c-strcasestr: New file.
50490         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
50491
50492 2005-10-11  Bruno Haible  <bruno@clisp.org>
50493
50494         * modules/c-strcase: New file.
50495         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
50496
50497 2005-10-11  Bruno Haible  <bruno@clisp.org>
50498
50499         * lib/strcasecmp.c: Include limits.h.
50500         (strcasecmp): Avoid integer overflow on exotic platforms.
50501         * lib/strncasecmp.c: Include limits.h.
50502         (strncasecmp): Avoid integer overflow on exotic platforms.
50503         Reported by Paul Eggert.
50504
50505 2005-10-11  Bruno Haible  <bruno@clisp.org>
50506
50507         * lib/c-strcasestr.h: New file, from GNU gettext.
50508         * lib/c-strcasestr.c: New file, from GNU gettext.
50509
50510 2005-10-11  Bruno Haible  <bruno@clisp.org>
50511
50512         * lib/c-strcase.h: New file, from GNU gettext.
50513         * lib/c-strcasecmp.c: New file, from GNU gettext.
50514         * lib/c-strncasecmp.c: New file, from GNU gettext.
50515
50516 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
50517
50518         * modules/mempcpy (License): GPL -> LGPL.
50519         * modules/strchrnul (License): Likewise.
50520         * modules/sysexits (License): Likewise.
50521
50522 2005-10-08  Simon Josefsson  <jas@extundo.com>
50523
50524         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
50525
50526 2005-10-07  Simon Josefsson  <jas@extundo.com>
50527
50528         * m4/memxor.m4: Remove gl_C_RESTRICT call.
50529
50530 2005-10-06  Simon Josefsson  <jas@extundo.com>
50531
50532         * tests/test-hmac-md5.c: New file.
50533
50534         * modules/hmac-md5-tests: New file.
50535
50536         * modules/hmac-md5: New file.
50537
50538 2005-10-06  Simon Josefsson  <jas@extundo.com>
50539
50540         * m4/hmac-md5.m4: New file.
50541
50542         * m4/memxor.m4: Require gl_C_RESTRICT.
50543
50544 2005-10-06  Simon Josefsson  <jas@extundo.com>
50545
50546         * lib/memxor.c (memxor): Avoid casts and warnings.
50547
50548 2005-10-06  Simon Josefsson  <jas@extundo.com>
50549
50550         * lib/hmac-md5.c: New file.
50551
50552         * lib/hmac.h: New file.
50553
50554 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
50555
50556         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
50557         promotes to int, not unsigned int, to catch the AIX 5.3
50558         compiler bug.
50559
50560 2005-10-05  Simon Josefsson  <jas@extundo.com>
50561
50562         * modules/memxor: New file.
50563
50564         * modules/iconv (Files): Move config.rpath to havelib, it is used
50565         there.
50566
50567         * modules/havelib (Files): Add config.rpath.
50568
50569 2005-10-05  Simon Josefsson  <jas@extundo.com>
50570
50571         * m4/memxor.m4: New file.
50572
50573 2005-10-05  Simon Josefsson  <jas@extundo.com>
50574
50575         * lib/memxor.c (memxor): Fix compiler error.
50576
50577         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
50578         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
50579
50580         * lib/memxor.h, lib/memxor.c: New files.
50581
50582         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
50583         we assume all systems have it, suggested by Jim Meyering
50584         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
50585         any systems lack sys/socket.h; mingw32 is known to lack it, but we
50586         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
50587         same reasons.
50588
50589 2005-10-05  Simon Josefsson  <jas@extundo.com>
50590
50591         * config/srclist.txt: Add glibc bug 1423 for md5.h.
50592
50593 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
50594
50595         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
50596         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
50597         needed, since the source code now assumes these .h files.
50598
50599 2005-10-05  Derek Price  <derek@ximbiot.com>
50600
50601         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
50602
50603 2005-10-05  Bruno Haible  <bruno@clisp.org>
50604
50605         * modules/stdint (License): Change to LGPL.
50606
50607 2005-10-04  Simon Josefsson  <jas@extundo.com>
50608
50609         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
50610         D. Baushke" <mdb@gnu.org>.
50611
50612 2005-10-04  Bruno Haible  <bruno@clisp.org>
50613
50614         * lib/verify.h (verify_true): Provide alternative definition for C++.
50615
50616 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
50617
50618         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
50619         (SSIZE_MAX): New macro, if not already defined.
50620         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
50621         than 2 GiB.
50622
50623 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
50624
50625         Sync from coreutils.
50626         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
50627         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
50628         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
50629         ULLONG_MAX doesn't work with 2.7.2.1.
50630
50631 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
50632
50633         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
50634         From Ben Pfaff.
50635
50636         * modules/exclude (Depends-on): Depend on verify.
50637         * modules/strtoimax (Depends-on): Likewise.
50638         * modules/utimecmp (Depends-on): Likewise.
50639
50640 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
50641
50642         * lib/exclude.c: Include verify.h.
50643         (verify): Remove.  All callers changed to use verify.h's version.
50644         * lib/strtoimax.c: Likewise.
50645         * lib/utimecmp.c: Likewis.e
50646
50647         Sync from coreutils.
50648         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
50649         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
50650         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
50651         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
50652         bother returning ENOSYS if settimeofday or stime fails; just let
50653         them return whatever errno they want to return.
50654         * lib/utimens.c: Include unistd.h, for dup2.
50655         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
50656         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
50657
50658 2005-10-02  Jim Meyering  <jim@meyering.net>
50659
50660         Sync from coreutils.
50661         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
50662         from glibc-2.2.5 that fails for read-only files.
50663
50664 2005-10-02  Jim Meyering  <jim@meyering.net>
50665
50666         Sync from coreutils.
50667         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
50668         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
50669         `#if HAVE_CONFIG_H'.
50670         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
50671         Remove AT_FDCWD test.
50672         Do not consume the fd unless successful.
50673         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
50674         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
50675         block, so that we don't even try to compile it if settimeofday is
50676         available.  This works around a compilation failure on OSF1 V5.1,
50677         due to stime requiring a `long int*' while tv_sec is `int'.
50678
50679 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
50680
50681         Sync from coreutils.
50682         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
50683         against `yes', rather than just testing for nonempty.
50684
50685 2005-10-01  Simon Josefsson  <jas@extundo.com>
50686
50687         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
50688         and Darwin.
50689
50690         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
50691         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
50692         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
50693         freeaddrinfo and gai_strerror are declared by the POSIX headers.
50694         Check if struct addrinfo is declared.
50695
50696 2005-10-01  Simon Josefsson  <jas@extundo.com>
50697
50698         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
50699         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
50700         AI_* and EAI_* definitions.  Protect function declarations.
50701
50702 2005-10-01  Jim Meyering  <jim@meyering.net>
50703
50704         Sync from coreutils.
50705
50706         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
50707         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
50708         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
50709         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
50710         in the inet and nsl libraries.  Required on Solaris 5.7.
50711
50712 2005-10-01  Jim Meyering  <jim@meyering.net>
50713
50714         Sync from coreutils.
50715         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
50716         in the inet and nsl libraries.  Required on Solaris 5.7.
50717
50718 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
50719
50720         * lib/getdelim.c (getdelim): Remove unused variables.
50721
50722 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
50723
50724         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
50725         so that the code works even with ancient cpp.  Portability problem
50726         with GCC 2.7.2.1 reported by Thomas M.Ott.
50727
50728 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
50729
50730         * modules/regex (Depends-on): Add strcase.
50731
50732         * modules/gethostname (Licence): Change from GPL to LGPL, since
50733         gethostname.c is a trivial implementation of a standard library
50734         function.
50735         * modules/poll (License): Change from GPL to LGPL, since it's
50736         derived from LGPL code.
50737
50738 2005-09-27  Jim Meyering  <jim@meyering.net>
50739
50740         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
50741         HAVE_CONFIG_H.
50742
50743         * lib/intprops.h (signed_type_or_expr__): Define.
50744         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
50745         for unsigned types.
50746
50747 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
50748
50749         * lib/verify.h (verify_expr): Remove, replacing with:
50750         (verify_true): New macro that returns true instead of void.
50751         (verify_type__): Remove.
50752         (verify): Use verify_true rather than verify_type__.
50753
50754 2005-09-26  Bruno Haible  <bruno@clisp.org>
50755
50756         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
50757         is necessary.
50758         (lib_SOURCES): Remove mbchar.c.
50759         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
50760         (Files): Add m4/mbrtowc.m4.
50761         * modules/mbiter: Likewise.
50762         * modules/mbuiter: Likewise.
50763
50764 2005-09-26  Bruno Haible  <bruno@clisp.org>
50765
50766         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
50767         compile mbchar.c if they are not both present.
50768         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
50769         * m4/mbiter.m4 (gl_MBITER): Likewise.
50770         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
50771         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
50772         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
50773
50774 2005-09-25  Jim Meyering  <jim@meyering.net>
50775
50776         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
50777         also uses socklen_t.
50778
50779 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
50780
50781         * lib/utimens.c (ENOSYS): Define if not already defined.
50782         (futimens): Support having a null PATH if the file descriptor
50783         is nonnegative.
50784
50785         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
50786         Remove.
50787         (__attribute): Define to empty unless GCC 3.1 or later.
50788         This works around a core dump on OpenBSD 3.4, which has GCC
50789         2.95.3, which dumps core when given __attribute__(()).  It also
50790         simplifies other tests, since we really don't want to bother with
50791         worrying about which ancient version of GCC supported what.
50792         Original problem reported by Yoann Vandoorselaere, with part of
50793         the fix suggested by Derek Price.
50794
50795 2005-09-24  Jim Meyering  <jim@meyering.net>
50796
50797         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
50798         so we can once again use a positive bitfield width of 1 -- now we
50799         don't have to explain why we were using a bitfield width of 2.
50800
50801 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
50802
50803         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
50804         and similarly for the other external symbols.  Problem reported
50805         by James Gallager.
50806
50807         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
50808         bug reported by Jim Meyering.
50809
50810         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
50811         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
50812         not needed, since socklen is a prerequisite module.
50813
50814 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
50815
50816         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
50817         Problem reported by Eric Blake.
50818         (getaddrinfo): Initialize se so that it's not garbage.
50819         Redo internal storage allocation so that it doesn't make unportable
50820         assumptions about alignment.
50821         Fix a memory leak.
50822
50823         * lib/utimens.c (futimens): Use futimesat if available.
50824         Prefer it to futimes since it doesn't have the futimes bug.
50825
50826         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
50827         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
50828         Instead, declare a function that returns a pointer to an array,
50829         and use verify_type__ to declare the size of the array.
50830         Problem and germ of a solution reported by Bruno Haible.
50831         (verify_type__): Use 2, not 1, for bitfield size, to avoid
50832         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
50833
50834 2005-09-23  Jim Meyering  <jim@meyering.net>
50835
50836         Sync from coreutils.
50837         Correct build failure (socklen_t not defined) on at least
50838         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
50839         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
50840
50841 2005-09-23  Jim Meyering  <jim@meyering.net>
50842
50843         * modules/getaddrinfo (Depends-on): Add socklen.
50844
50845 2005-09-23  Bruno Haible  <bruno@clisp.org>
50846
50847         * tests/test-verify.c: New file.
50848
50849 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50850
50851         Sync from coreutils.
50852
50853         * modules/argmatch (Depends-on): Add verify.
50854         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
50855         unistd-safer.
50856         * modules/save-cwd (Depends-on): Likewise.
50857
50858         * modules/openat (Files): Add lib/openat-die.c.
50859         (Depends-on): Remove error, exitfail.
50860         Add dirname.
50861
50862         * modules/verify: New file.
50863         * MODULES.html.sh (Diagnostics <assert.h>): New section,
50864         with "verify" module.
50865
50866 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50867
50868         Sync from coreutils.
50869
50870         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
50871         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
50872         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
50873         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
50874         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
50875         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
50876         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
50877         Don't bother checking for string.h, stdlib.h, unistd.h.
50878         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
50879         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
50880         module's job.
50881         * m4/jm-macros.m4 (gl_MACROS): Likewise.
50882         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
50883
50884         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
50885         (gl_GETDATE): Use it.
50886
50887         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
50888
50889 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50890
50891         Sync from coreutils.
50892
50893         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
50894         stat-time.h.
50895         * lib/argmatch.h: Include verify.h
50896         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
50897         (ARGMATCH_ASSERT): Remove; unused.
50898         * lib/canonicalize.c: Assume STDC_HEADERS.
50899         * lib/exclude.c: Include "strcase.h".
50900         * lib/regex_internal.h [!defined _LIBC]: Likewise.
50901         * lib/getusershell.c: Include stdio--.h rather than stdio.h
50902         and stdio-safer.h.
50903         (getusershell): Call fopen, not fopen_safer.
50904         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
50905         Do not include unistd-safer.h.
50906         (save_cwd): Don't call fd_safer; no longer needed
50907         now that we include fcntl--.h.
50908
50909         * lib/getdate.y (relative_time): New type.
50910         (RELATIVE_TIME_0): New constant.
50911         (parser_control): Use relative_time instead of doing it ourselves.
50912         (%union): Add new relative_time rel member.
50913         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
50914         Now typeless.
50915         (relunit, relunit_snumber): Now of type rel.
50916         (zone, rel, relunit, get_date): Adjust to above changes.
50917
50918         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
50919         Do not include unistd-safer.h.
50920         (getloadavg): Don't call fd_safer; no longer needed
50921         now that we include fcntl--.h.
50922
50923         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
50924         (make_dir_parents): Treat ENOSYS like EEXIST.
50925
50926         Improve quality of diagnostics on restore_cwd failure.
50927         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
50928         (make_dir_parents): Last arg is now int * (for errno), not bool *.
50929         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
50930         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
50931         each time through the loop.  Do not diagnose restore_cwd failure;
50932         that is the caller's job (and perhaps the caller does not care).
50933
50934         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
50935         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
50936         If the file already exists but is not a directory, don't bother
50937         to try to make its parents.
50938         Close potential file descriptor leak if we can't chdir("/") (!).
50939         Don't always return true if chdir($PWD) fails; return true only
50940         if the requested action was done successfully (except for the
50941         chdir($PWD)).
50942         Don't log final directory unless we actually made it.
50943         Refactor to avoid duplicate code to fix up permissions.
50944         Don't attempt to fix up parent permissions if chdir($PWD) fails.
50945
50946         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
50947         to make it a bit faster and (I hope) clearer.
50948         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
50949         Fix bug in formats like %2N.
50950
50951         * lib/verify.h: New file.
50952
50953 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50954
50955         Sync from coreutils.
50956         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
50957
50958 2005-09-22  Jim Meyering  <jim@meyering.net>
50959
50960         Sync from coreutils.
50961
50962         * m4/lstat.m4 (gl_FUNC_LSTAT):
50963         Use AC_LIBSOURCES to require lstat.c and lstat.h.
50964         Remove obsolete comment.
50965         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
50966         * m4/xstrtod.m4: Likewise.
50967
50968         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
50969
50970 2005-09-22  Jim Meyering  <jim@meyering.net>
50971
50972         Sync from coreutils.
50973
50974         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
50975
50976         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
50977         the .tm_year member, since otherwise gcc-4.0 would now warn about
50978         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
50979
50980         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
50981         order to avoid an unsuppressible warning from gcc on 64-bit systems.
50982
50983         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
50984         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
50985         when run in a time zone for which daylight savings time is in effect
50986         for the starting date.
50987
50988         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
50989         stop us from restricting permissions of just-created absolute-named
50990         directories.
50991         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
50992         to restore initial working directory.
50993         * lib/mkdir-p.c (make_dir_parents): New parameter:
50994         different_working_dir, to tell caller if/when we change the working
50995         directory and are unable to return to the initial one.
50996         * lib/mkdir-p.h (make_dir_parents): Update prototype.
50997         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
50998         `return false'.  This fixes a bug introduced on 2004-07-30.
50999
51000         * lib/openat.c (fdopendir): Be sure to close the supplied
51001         file descriptor before returning.  This makes our replacement
51002         implementation a little closer to Solaris's, where fdopendir
51003         ties the file descriptor to the returned DIR* pointer.
51004         * lib/openat.c (unlinkat): New function.
51005         * lib/openat.h (unlinkat): Add prototype.
51006         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
51007         (openat_restore_fail): Rename from openat_restore_die.
51008         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
51009
51010         Provide an alternative to exiting immediately upon save_cwd or
51011         restore_cwd failure.  Now, an application can arrange e.g.,
51012         to perform a longjump in that case.
51013         * lib/openat.c: Include dirname.h.
51014         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
51015         (rpl_openat, fdopendir, fstatat): Call openat_save_die
51016         and openat_restore_die rather than calling error directly.
51017         Don't include "error.h" or "exitfail.h"; they're no longer needed.
51018
51019         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
51020         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
51021         define.
51022
51023         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
51024         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
51025                             int utc, int nanoseconds);
51026         Background:
51027         date should not have to allocate a megabyte of virtual memory to
51028         handle a format argument like +%1048575T.  When implemented with
51029         strftime, it must allocate such a buffer, use strftime to fill it
51030         in, print it, then free it.
51031         With fprintftime, it simply prints everything and exits.
51032         With no need for memory allocation, that's one fewer way to fail.
51033         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
51034         optional field width, not before, so we accept %9:z, not %:9z.
51035         (my_strftime): Be sure to use L_('x') for literals.
51036
51037         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
51038         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
51039         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
51040         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
51041         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
51042         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
51043         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
51044         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
51045         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
51046         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
51047         * lib/xgethostname.c, lib/xreadlink.c:
51048         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
51049
51050         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
51051         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
51052         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
51053         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
51054         and don't include <sys/file.h>).
51055
51056 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
51057
51058         Sync from coreutils.
51059
51060         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
51061         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
51062         [!LDAV_DONE]: Avoid unused variable warning.
51063
51064 2005-09-21  Bruno Haible  <bruno@clisp.org>
51065
51066         * lib/unicodeio.h (unicode_to_mb): New declaration.
51067
51068 2005-09-20  Derek Price  <derek@ximbiot.com>
51069
51070         * lib/getaddrinfo.c: Don't include <netdb.h> included from
51071         getaddrinfo.h.
51072
51073 2005-09-20  Bruno Haible  <bruno@clisp.org>
51074
51075         * gnulib-tool: Remove trailing slashes from the values specified for
51076         --source-base, --m4-base, --tests-base, --aux-dir.
51077         Suggested by Simon Josefsson <jas@extundo.com>.
51078
51079 2005-09-20  Bruno Haible  <bruno@clisp.org>
51080
51081         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
51082         func_modules_to_filelist, func_import, func_create_testdir): Make all
51083         sorting results locale-independent, so that gnulib-cache.m4 doesn't
51084         change when gnulib-tool is invoked in a different locale.
51085
51086 2005-09-19  Simon Josefsson  <jas@extundo.com>
51087
51088         * m4/socklen.m4: Fix typo.
51089
51090 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
51091
51092         Use a consistent style for including <config.h>.
51093         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
51094         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
51095         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
51096         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
51097         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
51098         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
51099         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
51100         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
51101         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
51102         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
51103         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
51104         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
51105         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
51106         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
51107         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
51108         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
51109         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
51110         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
51111         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
51112         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
51113         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
51114         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
51115         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
51116         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
51117         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
51118         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
51119         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
51120         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
51121         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
51122         lib/xstrtoumax.c, lib/yesno.c:
51123         Standardize inclusion of config.h.
51124         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
51125         lib/inttostr.h:  Removed inclusion of config.h from header files.
51126         * lib/inttostr.c:  Adjusted in-tree users.
51127         * lib/timespec.h: Remove superfluous warning to include config.h.
51128         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
51129         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
51130         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
51131         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
51132         config.h with HAVE_CONFIG_H.
51133
51134 2005-09-19  Jim Meyering  <jim@meyering.net>
51135
51136         * modules/pathmax (License): Change to LGPL.
51137
51138 2005-09-19  Derek Price  <derek@ximbiot.com>
51139
51140         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
51141
51142 2005-09-19  Bruno Haible  <bruno@clisp.org>
51143
51144         * gnulib-tool (import): Provide default for --tests-base.
51145
51146 2005-09-19  Bruno Haible  <bruno@clisp.org>
51147
51148         * doc/quote.texi: New file, extracted from gnulib.texi.
51149         * doc/ctime.texi: New file, extracted from gnulib.texi.
51150         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
51151         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
51152         * doc/gnulib.texi: Include them.
51153
51154 2005-09-18  Bruno Haible  <bruno@clisp.org>
51155
51156         Portability fix.
51157         * gnulib-tool (func_readlink): New function.
51158         (func_ln_if_changed): Use it.
51159
51160 2005-09-18  Bruno Haible  <bruno@clisp.org>
51161
51162         * gnulib-tool: Support --with-tests also with --import.
51163         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
51164         (func_import): Use variables $testsbase and $inctests. Emit a
51165         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
51166         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
51167         SUBDIRS += $testsdir.
51168         (func_create_testdir): Update.
51169
51170 2005-09-18  Bruno Haible  <bruno@clisp.org>
51171
51172         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
51173         instead of $dry_run.
51174         (func_cp_if_changed, func_mv_if_changed): Remove functions.
51175         (func_ln_if_changed): Don't handle dry-run here.
51176         (func_import): In dry-run mode, detect more precisely which actions
51177         would be performed, and don't use "...ing" verbs.
51178
51179 2005-09-18  Bruno Haible  <bruno@clisp.org>
51180
51181         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
51182         (func_import): Use join on two temporary files instead of three nested
51183         loops, in order to determine which files are new or old.
51184
51185 2005-09-18  Bruno Haible  <bruno@clisp.org>
51186
51187         * gnulib-tool (func_import): Comment out code that spits out the
51188         new files with --dry-run.
51189
51190 2005-09-18  Bruno Haible  <bruno@clisp.org>
51191
51192         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
51193
51194 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
51195
51196         * lib/stat-time.h: New file.
51197         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
51198         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
51199         in a different way.
51200         (timespec_cmp): New function.
51201         * lib/utimecmp.c: Include stat-time.h.
51202         (SYSCALL_RESOLUTION): Depend on whether various struct stat
51203         members exist, not on the obsolescent ST_MTIM_NSEC.
51204         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
51205
51206 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
51207
51208         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
51209
51210 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
51211
51212         * MODULES.html.sh (File system functions): Add stat-time.
51213         * modules/stat-time: New file.
51214         * modules/timespec (Files): Remove m4/st_mtim.m4; this
51215         is now done in a different way, by the stat-time module.
51216         * modules/utimecmp (Depends-on): Add stat-time.
51217
51218 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
51219
51220         * m4/st_mtim.m4: Remove.  Superseded by...
51221         * m4/stat-time.m4: New file.
51222         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
51223         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
51224
51225 2005-09-15  Derek Price  <derek@ximbiot.com>
51226
51227         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
51228
51229 2005-09-15  Derek Price  <derek@ximbiot.com>
51230
51231         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
51232         * lib/regex_internal.c: Ditto, using this...
51233         (__GNUC_PREREQ): ...new macro.
51234         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
51235         using...
51236         (__GNUC_PREREQ): ...this new macro.
51237
51238         * lib/strstr.h: Include string.h. Define strstr as a macro here.
51239
51240 2005-09-15  Derek Price  <derek@ximbiot.com>
51241             Paul Eggert  <eggert@cs.ucla.edu>
51242
51243         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
51244         changes, consolidating in...
51245         * lib/regex_internal.h: ...this file.
51246
51247 2005-09-13  Jim Meyering  <jim@meyering.net>
51248
51249         * lib/canon-host.c: Filter through gnu indent and reword comments
51250         slightly.
51251         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
51252
51253 2005-09-13  Derek Price  <derek@ximbiot.com>
51254
51255         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
51256         failure.
51257         Reported by Jim Meyering  <jim@meyering.net>.
51258
51259 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51260
51261         * lib/base64.c: Typo.
51262         (base64_encode): Put b64str in initialized data section.
51263
51264 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
51265
51266         Merge glibc and coreutils changes into gnulib, plus a few
51267         extra fixes.
51268         * lib/md5.c: Use #error rather than a string.
51269         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
51270         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
51271         (__attribute__): Define to empty for non recent-GCC.
51272         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
51273         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
51274         Renamed from their non-__ counterparts, with new macros replacing
51275         them if not _LIBC.  Add __THROW attribute.
51276         (rol): Remove.
51277         (struct md5_ctx): Align buffer if using GCC.
51278         * lib/sha1.h (struct sha1_ctx): Likewise.
51279         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
51280         The old name was backwards.
51281         (NOTSWAP): Remove; not used.
51282         (rol): New macro, moved here from md5.h.
51283         (sha1_process_block): Remove a FIXME that doesn't make sense.
51284
51285 2005-09-12  Derek Price  <derek@ximbiot.com>
51286
51287         Return usable errors from canon-host.
51288         * lib/canon-host.h: New file.
51289         * lib/canon-host.c (canon_host): Wrap...
51290         (canon_host_r): ...this new function, which now relies exclusively on
51291         getaddrinfo.
51292         (ch_strerror): New function.
51293         (last_cherror): New global.
51294         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
51295         interface.
51296         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
51297         void *.
51298         (freeaddrinfo): Free ai->ai_canonname when set.
51299
51300 2005-09-12  Derek Price  <derek@ximbiot.com>
51301
51302         Make canon-host require getaddrinfo.
51303         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
51304         AC_LIBSOURCE canon-host.h.  Call...
51305         (gl_PREREQ_CANON_HOST): ...this new function, which requires
51306         gl_GETADDRINFO.
51307         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
51308
51309 2005-09-12  Derek Price  <derek@ximbiot.com>
51310
51311         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
51312         LGPL.
51313         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
51314
51315 2005-09-12  Derek Price  <derek@ximbiot.com>
51316
51317         * lib/gai_strerror.c: Include config.h when available.  Include
51318         getaddrinfo.h before other headers to test interface.
51319         Reported by Larry Jones <lawrence.jones@ugs.com>.
51320
51321 2005-09-12  Derek Price  <derek@ximbiot.com>
51322             Paul Eggert  <eggert@cs.ucla.edu>
51323
51324         * modules/glob (Files): Add glob-libc.h.
51325
51326 2005-09-12  Derek Price  <derek@ximbiot.com>
51327             Paul Eggert  <eggert@cs.ucla.edu>
51328
51329         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
51330         glob_.h, glob-libc.h.
51331         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
51332
51333 2005-09-12  Derek Price  <derek@ximbiot.com>
51334             Paul Eggert  <eggert@cs.ucla.edu>
51335
51336         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
51337         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
51338         protecting things that should be done only in gnulib contexts.
51339         * lib/glob_.h: New file, containing only the glob things needed for
51340         gnulib.
51341         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
51342         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
51343         (glob, globfree, glob_pattern_p): Now defined simply in terms of
51344         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
51345         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
51346         and to respect the namespace rules better.
51347
51348 2005-09-08  Simon Josefsson  <jas@extundo.com>
51349
51350         * modules/socklen: New file.
51351
51352 2005-09-08  Simon Josefsson  <jas@extundo.com>
51353
51354         * m4/socklen.m4: New file.
51355
51356 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
51357
51358         * modules/utimens (Files): Add m4/utimbuf.m4, since
51359         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
51360         Reported by Sergey Poznyakoff.
51361
51362 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
51363
51364         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
51365         definitions, since that's the preferred style in glibc.
51366         Fix a minor spacing issue, and update copyright notice to match
51367         glibc's.
51368
51369 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
51370
51371         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
51372
51373 2005-09-06  Simon Josefsson  <jas@extundo.com>
51374
51375         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
51376         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
51377
51378 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
51379
51380         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
51381         warning.
51382
51383 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
51384
51385         * config/srclist.txt: Add glibc bug 1302.
51386
51387 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
51388
51389         Change bitset word type from unsigned int to unsigned long int,
51390         as this has better performance on typical 64-bit hosts.
51391         Port bitset code to hosts with unusual word sizes.
51392         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
51393         (build_collating_symbol):
51394         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
51395         argument is a bitset.  This is merely a style issue, but it makes
51396         it clearer that an entire array is expected.
51397         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
51398         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
51399         Port to the case where bitset_word is not the same as unsigned int.
51400         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
51401         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
51402         Likewise.
51403         * lib/regexec.c (check_dst_limits_calc_pos_1,
51404         check_subexp_matching_top):
51405         (build_trtable, group_nodes_into_DFAstates):
51406         Likewise.
51407         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
51408         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
51409         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
51410         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
51411         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
51412         * lib/regcomp.c (optimize_subexps, lower_subexp):
51413         Work even if bitset_word has holes in its bitwise representation.
51414         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
51415         * lib/regexec.c (check_dst_limits_calc_pos_1,
51416         check_subexp_matching_top):
51417         Likewise.
51418         * lib/regex_internal.c (re_string_reconstruct):
51419         Don't assume UCHAR_MAX == 255.
51420         * lib/regex_internal.h (bitset_set_all): Likewise.
51421         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
51422         All uses changed.
51423         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
51424         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
51425         All uses changed.
51426         (BITSET_WORD_MAX): New macro.
51427         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
51428         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
51429         (bitset_empty, bitset_copy):
51430         Prefer sizeof (bitset) to multiplying it out ourselves.
51431         (bitset_not_merge): Remove; unused.
51432         (bitset_contain): Return bool, not unsigned int with one bit on.
51433         All callers changed.
51434         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
51435         alignment than re_node_set; do this by defining a new internal
51436         type struct dests_alloc and using it to allocate memory.
51437
51438 2005-09-05  Bruno Haible  <bruno@clisp.org>
51439
51440         * gnulib-tool (func_import): Fix comparison in handling of symbolic
51441         links.
51442
51443 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
51444
51445         * modules/size_max (Makefile.am): Add size_max.h
51446
51447 2005-09-04  Derek Price  <derek@ximbiot.com>
51448
51449         * gnulib-tool (func_import): Fix reversed $symbolic logic.
51450
51451 2005-09-03  Simon Josefsson  <jas@extundo.com>
51452
51453         * gnulib-tool: Fix typo.
51454
51455 2005-09-03  Simon Josefsson  <jas@extundo.com>
51456
51457         * config/srclist.txt: Add glibc bug 1293.
51458
51459 2005-09-03  Derek Price  <derek@ximbiot.com>
51460
51461         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
51462         From Larry Jones <lawrence.jones@ugs.com>.
51463
51464 2005-09-02  Simon Josefsson  <jas@extundo.com>
51465
51466         * modules/socklen: New file.
51467
51468 2005-09-02  Simon Josefsson  <jas@extundo.com>
51469
51470         * modules/havelib: New module.
51471
51472         * modules/gettext, modules/iconv, modules/lock, modules/readline:
51473         Use havelib.
51474
51475 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
51476
51477         Check for arithmetic overflow when calculating sizes, to prevent
51478         some buffer-overflow issues.  These patches are conservative, in the
51479         sense that when I couldn't determine whether an overflow was possible,
51480         I inserted a run-time check.
51481         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
51482         macros.
51483         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
51484         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
51485         (re_xnrealloc, re_x2nrealloc): New inline functions.
51486         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
51487         parse_bracket_exp):
51488         (build_equiv_class, build_charclass): Check for arithmetic overflow
51489         in size expression calculations.
51490         * lib/regex_internal.c (re_string_realloc_buffers):
51491         (build_wcs_upper_buffer, re_node_set_add_intersect):
51492         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
51493         (re_dfa_add_node, register_state): Likewise.
51494         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
51495         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
51496         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
51497         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
51498
51499 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
51500
51501         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
51502         m4/ulonglong.m4.  Problem reported by Martin Lambers.
51503
51504 2005-09-02  Bruno Haible  <bruno@clisp.org>
51505
51506         Support for lib vs. lib64 distinction on biarch platforms.
51507         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
51508         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
51509         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
51510
51511 2005-09-02  Bruno Haible  <bruno@clisp.org>
51512
51513         * gnulib-tool (import): In the other first-use case, provide defaults
51514         as well.
51515
51516 2005-09-02  Bruno Haible  <bruno@clisp.org>
51517
51518         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
51519         patches not yet found in the latest gettext release.
51520
51521 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
51522
51523         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
51524         to avoid a collision with bits/local_lim.h in glibc.
51525         All uses changed.  Problem reported by Dmitry V. Levin in
51526         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
51527
51528         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
51529         bugs in int versus size_t comparisons.
51530         (re_string_context_at): Fix bug where the code assumed that
51531         Idx is signed.
51532
51533         Use bool where appropriate.
51534         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
51535         All callers changed.
51536         (calc_eclosure_iter): Likewise, for ROOT arg.
51537         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
51538         (build_charclass_op): Likewise, for NON_MATCH arg.
51539         * lib/regex_internal.c (re_string_allocate, re_string_construct):
51540         (re_string_construct_common): Likewise, for ICASE arg.
51541         * lib/regexec.c (re_search_2_stub, re_search_stub):
51542         Likewise, for RET_LEN arg.
51543         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
51544         (set_regs): Likewise, for FL_BACKTRACK arg.
51545         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
51546         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
51547         (calc_eclosure_iter, parse_bracket_exp):
51548         Use bool for internal variables that are booleans.
51549         * lib/regexec.c (re_search_internal, check_matching,
51550         proceed_next_node):
51551         (set_regs, build_sifted_states, sift_states_bkref):
51552         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
51553         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
51554         (find_collation_sequence_value):
51555         Likewise.
51556         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
51557         (re_node_set_compare):
51558         Return bool, not int. All callers changed.
51559         * lib/regexec.c (check_halt_node_context, check_dst_limits):
51560         (build_trtable, check_node_accept): Likewise.
51561         * lib/regex_internal.h: Include stdbool.h.
51562
51563         Fix bugs uncovered when converting to bool.
51564         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
51565         failure instead of charging ahead blindly.
51566         * lib/regex_internal.c (register_state): Likewise.
51567         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
51568         for freeing internal storage.
51569         (group_nodes_into_DFA_states): Use unsigned int, not int, for
51570         bitset pieces used as boolean, to avoid undefined behavior
51571         on hosts that do int overflow checking.
51572
51573 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
51574
51575         * config/srclist.txt: Add glibc bugs 1285-1287.
51576
51577 2005-09-01  Jim Meyering  <jim@meyering.net>
51578
51579         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
51580         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
51581         Require gl_STAT_MACROS, too.
51582
51583 2005-09-01  Bruno Haible  <bruno@clisp.org>
51584
51585         * gnulib-tool (import): In the first-use case, provide defaults.
51586
51587 2005-09-01  Bruno Haible  <bruno@clisp.org>
51588
51589         * gnulib-tool (func_import): Remove the .tmp files.
51590
51591 2005-09-01  Bruno Haible  <bruno@clisp.org>
51592
51593         * gnulib-tool (func_import): Fix handling of symbolic links.
51594
51595 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51596
51597         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
51598         old glibc regex code mishandles strings longer than 2**31 bytes.
51599         This patch fixes this when the regex code is used in gnulib
51600         (i.e., outside glibc).
51601
51602         This patch should not affect the use of the regex code inside
51603         glibc.  No doubt this problem also needs to be handled for glibc
51604         as well, but the result will be an incompatible change to the
51605         glibc ABI, and the old ABI will have to be supported too.  That
51606         can be the the subject for another patch.
51607
51608         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
51609         governing whether the rest of this patch is active.  By default,
51610         the macro is disabled and the patch has no effect.
51611         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
51612         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
51613         (struct re_pattern_buffer, re_search, re_search_2, re_match):
51614         (re_match_2, re_set_registers): Use the new types.
51615         * lib/regex_internal.h (Idx, re_hashval_t): New types.
51616         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
51617         New macros.
51618         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
51619         (re_string_context_at, bin_tree_t, re_dfastate_t):
51620         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
51621         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
51622         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
51623         (re_string_char_size_at, re_string_wchar_at):
51624         (re_string_elem_size_at):
51625         Use the new types and macros to port to 64-bit hosts.
51626         Use unsigned types for internal values, so that the code
51627         mostly works even for arrays larger than SSIZE_MAX.
51628         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
51629         (search_duplicated_node, calc_eclosure_iter, fetch_number):
51630         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
51631         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
51632         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
51633         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
51634         (calc_inveclosure, parse_dup_op, build_range_exp):
51635         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
51636         (fetch_number, create_token_tree, mark_opt_subexp):
51637         Likewise.
51638         * lib/regex_internal.c (re_string_construct_common,
51639         create_ci_newstate):
51640         (create_cd_newstate, re_string_allocate, re_string_construct):
51641         (re_string_realloc_buffers, build_wcs_upper_buffer):
51642         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
51643         (re_string_reconstruct, re_string_peek_byte_case):
51644         (re_string_fetch_byte_case, re_string_context_at):
51645         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
51646         (re_node_set_init_copy, re_node_set_add_intersect):
51647         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51648         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51649         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
51650         (re_acquire_state, re_acquire_state_context, register_state):
51651         Likewise.
51652         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
51653         search_cur_bkref_entry):
51654         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
51655         (re_search_internal, re_search_2_stub, re_search_stub)
51656         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
51657         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
51658         (update_cur_sifted_state, check_dst_limits):
51659         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
51660         (check_subexp_limits, sift_states_bkref, merge_state_array):
51661         (check_subexp_matching_top, get_subexp, get_subexp_sub):
51662         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
51663         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
51664         (expand_bkref_cache, check_node_accept_bytes):
51665         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
51666         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
51667         (acquire_init_state_context, check_halt_node_context):
51668         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
51669         (sift_states_backward, clean_state_log_if_needed):
51670         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
51671         (find_recover_state, transit_state_sb, transit_state_mb):
51672         (transit_state_bkref, build_trtable, match_ctx_clean):
51673         Likewise.
51674         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
51675         to work around an assumption that REG_MISSING is negative.
51676
51677         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
51678         (seek_collating_symbol_entry) [defined _LIBC]:
51679         (lookup_collation_sequence_value) [defined _LIBC]:
51680         (build_range_exp, build_collating_symbol) [defined _LIBC]:
51681         Use prototypes rather than old-style function definitions.
51682         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
51683         (transit_state_sb) [0]:
51684         (find_collation_sequence_value) [defined _LIBC]: Likewise.
51685
51686         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
51687         rm_eo.
51688
51689         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
51690         (optimize_subexps, lower_subexp):
51691         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
51692         since the signed shift might overflow.  Use 1u<<31 instead.
51693         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
51694         Likewise.
51695         * lib/regexec.c (check_dst_limits_calc_pos_1,
51696         check_subexp_matching_top): Likewise.
51697
51698         * lib/regcomp.c (optimize_subexps, lower_subexp):
51699         Use CHAR_BIT rather than 8, for clarity.
51700         * lib/regexec.c (check_dst_limits_calc_pos_1):
51701         (check_subexp_matching_top): Likewise.
51702         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
51703         have to worry about portability issues when shifting it left.
51704         Remove no-longer-needed test for table_size > 0.
51705         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
51706         in a word, as the resulting behavior is undefined.
51707         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
51708         in one case, a <= should have been an <, and in another case the
51709         whole test was missing.
51710         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
51711         the standard name CHAR_BIT.
51712         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
51713         this is not true on one's complement and signed-magnitude hosts.
51714
51715         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
51716         next_last_offset.
51717         (struct re_dfa_t): Remove unused member states_alloc.
51718         * lib/regcomp.c (init_dfa): Don't initialize unused members.
51719
51720 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51721
51722         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
51723         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
51724         and large-file glibc and in 32-bit large-file Solaris.
51725
51726 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51727
51728         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
51729         lengths fit in regoff_t; this isn't true if regoff_t is the same
51730         width as size_t.
51731         * lib/regex.c (re_search_internal): 5th arg is LAST_START
51732         (= START + RANGE) instead of RANGE.  This avoids overflow
51733         problems when regoff_t is the same width as size_t.
51734         All callers changed.
51735         (re_search_2_stub): Check for overflow when adding the
51736         sizes of the two strings.
51737         (re_search_stub): Check for overflow when adding START
51738         to RANGE; if it occurs, substitute the extreme value.
51739
51740 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51741
51742         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
51743
51744 2005-08-31  Jim Meyering  <jim@meyering.net>
51745
51746         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
51747         a pointer-to-const.
51748         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
51749         (register_state): Likewise.
51750         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
51751         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
51752         (group_nodes_into_DFAstates): Likewise.
51753
51754 2005-08-31  Jim Meyering  <jim@meyering.net>
51755
51756         * check-module: Add a FIXME comment.
51757
51758 2005-08-31  Eric Blake  <ebb9@byu.net>
51759
51760         * modules/unistd-safer (Files): Add unistd--.h.
51761         * modules/stdio-safer (Files): Add stdio--.h.
51762
51763 2005-08-31  Derek Price  <derek@ximbiot.com>
51764
51765         * lib/getdelim.c (getdelim): Return EOF on EOF.
51766         Reported by Larry Jones <lawrence.jones@ugs.com>.
51767
51768 2005-08-31  Bruno Haible  <bruno@clisp.org>
51769
51770         Avoid unnecessary diffs in the generated lib/Makefile.am.
51771         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
51772         the generated files.
51773         (func_import): Don't set cmd.
51774
51775 2005-08-31  Bruno Haible  <bruno@clisp.org>
51776
51777         * lib/strstr.c: Include <stddef.h>, for NULL.
51778         * lib/strcasestr.c: Likewise.
51779         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
51780
51781 2005-08-31  Bruno Haible  <bruno@clisp.org>
51782
51783         * gnulib-tool: New option --macro-prefix.
51784         (func_import): Use macro_prefix.
51785         (import): Handle option --macro-prefix.
51786
51787 2005-08-31  Bruno Haible  <bruno@clisp.org>
51788
51789         * gnulib-tool (import): Rename most ac_* variables to cached_*.
51790         Also use new variables cached_lgpl, cached_libtool.
51791
51792 2005-08-31  Bruno Haible  <bruno@clisp.org>
51793
51794         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
51795         always instantiating them.
51796
51797 2005-08-31  Bruno Haible  <bruno@clisp.org>
51798
51799         * gnulib-tool (func_import): Read the previous cached settings
51800         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
51801         earlier added by gnulib but are now dropped. Warn when a gnulib file
51802         overwrites a non-gnulib file.
51803
51804 2005-08-31  Bruno Haible  <bruno@clisp.org>
51805
51806         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
51807         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
51808         projects that don't keep autogenerated files in CVS. Put into
51809         actioncmd only the specified modules, not the transitive closure.
51810
51811 2005-08-31  Bruno Haible  <bruno@clisp.org>
51812
51813         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
51814         Create directories that shall be filled.
51815         (import): Don't look for gl_* macros in configure.ac. Recurse across
51816         all directories containing a gnulib-cache.m4 files, if meaningful.
51817
51818 2005-08-31  Bruno Haible  <bruno@clisp.org>
51819
51820         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
51821         (import): Set seen_libtool when we see gl_LIBTOOL.
51822
51823 2005-08-31  Bruno Haible  <bruno@clisp.org>
51824
51825         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
51826         declaration macro definitions from generated gnulib.m4.
51827
51828 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
51829
51830         * lib/iconvme.h: Add prototype for iconv_alloc.
51831
51832 2005-08-29  Simon Josefsson  <jas@extundo.com>
51833
51834         * lib/iconvme.c: Fix errno.
51835
51836 2005-08-29  Bruno Haible  <bruno@clisp.org>
51837
51838         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
51839         that it works when the directory contains spaces.
51840
51841 2005-08-29  Bruno Haible  <bruno@clisp.org>
51842
51843         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
51844
51845 2005-08-29  Bruno Haible  <bruno@clisp.org>
51846
51847         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
51848         Emit more advice.
51849
51850 2005-08-29  Bruno Haible  <bruno@clisp.org>
51851         and Stepan Kasal  <kasal@ucw.cz>
51852
51853         * check-module: If more parameters are given, check each of them
51854         separately; add more exceptions, as noted by Jim Meyering.
51855         (check_module): New procedure.
51856         (%exempt_header): Now contains all exceptions.
51857
51858 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
51859
51860         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
51861
51862 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
51863
51864         * lib/iconvme.c: Split iconv_string into iconv_alloc.
51865
51866 2005-08-28  Bruno Haible  <bruno@clisp.org>
51867
51868         * m4/gnulib-tool.m4: New file.
51869
51870 2005-08-27  Jim Meyering  <jim@meyering.net>
51871
51872         * modules/unistd-safer (Files): Add pipe-safer.c.
51873         * modules/fcntl-safer (Files): Add creat-safer.c.
51874
51875 2005-08-27  Jim Meyering  <jim@meyering.net>
51876
51877         * m4/stdlib-safer.m4: New file.  From coreutils.
51878         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
51879         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
51880         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
51881         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
51882         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
51883
51884 2005-08-27  Jim Meyering  <jim@meyering.net>
51885
51886         * lib/fopen-safer.c: Merge minor changes from coreutils.
51887         * lib/dup-safer.c: Likewise.
51888         * lib/fd-safer.c: Likewise.
51889
51890         Merge from coreutils.
51891         * lib/stdio--.h: New file.
51892         * lib/stdlib--.h: New file.
51893         * lib/mkstemp-safer.c: New file.
51894
51895         GNU tar needs these.
51896         * lib/pipe-safer.c: New file.
51897         * lib/creat-safer.c: New file.
51898         * lib/fcntl--.h (creat): Define to creat_safer.
51899         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
51900         * lib/unistd--.h (pipe): Define to pipe_safer.
51901         * lib/unistd-safer.h: Declare pipe_safer.
51902
51903 2005-08-26  Simon Josefsson  <jas@extundo.com>
51904
51905         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
51906         Haible <bruno@clisp.org>.
51907
51908 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
51909
51910         * lib/regex_internal.h: Remove all references to
51911         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
51912         or better.
51913         (bitset_not, bitset_merge, bitset_not_merge):
51914         (bitset_mask, re_string_allocate, re_string_construct):
51915         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
51916         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
51917         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
51918         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
51919         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51920         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51921         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
51922         (re_acquire_state_context):
51923         Remove unnecessary forward decls.
51924         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
51925         Put __attribute at function definition,
51926         now that the function decl has been removed.
51927         * lib/regex_internal.c (re_string_peek_byte_case):
51928         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
51929         Likewise.
51930
51931 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
51932
51933         * m4/regex.m4: Add AC_PREREQ(2.50).
51934         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
51935
51936 2005-08-25  Simon Josefsson  <jas@extundo.com>
51937
51938         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
51939         __fsetlocking.
51940
51941 2005-08-25  Simon Josefsson  <jas@extundo.com>
51942
51943         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
51944         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
51945         GLIBC specific code.
51946
51947 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51948
51949         Make regex safe for g++.  This fixes one real bug (an "err"
51950         that should have been "*err").  g++ problem reported by
51951         Sam Steingold.
51952         * lib/regex_internal.h (re_calloc): New macro, consistent with
51953         re_malloc etc.  All callers of calloc changed to use re_calloc.
51954         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
51955         not int.  All callers changed.
51956         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
51957         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
51958         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
51959         (find_recover_state): Change "err" to "*err"; this fixes what
51960         appears to be a real bug.
51961         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
51962         versus int.
51963
51964 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51965
51966         * modules/regex (Depends-on): Add malloc, since the code
51967         assumes that !malloc(0) means failure.
51968
51969 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51970
51971         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
51972
51973         alloca modernization/simplification for regex.
51974         * lib/regex.c: Remove portability cruft for alloca.  This no longer
51975         needs to be at the start of the file, and can be moved into
51976         regex_internal.h and simplified.
51977         * lib/regex_internal.h: Include <alloca.h>.
51978         (__libc_use_alloca) [!defined _LIBC]: New macro.
51979         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
51980         now works outside glibc.
51981
51982 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51983
51984         * config/srclist.txt: Add glibc bugs 1241, 1245.
51985
51986 2005-08-25  Jim Meyering  <jim@meyering.net>
51987
51988         * lib/open-safer.c: Include <config.h>.
51989         Otherwise, we'd lose LARGEFILE support in any file using
51990         e.g. "fcntl--.h"
51991
51992 2005-08-25  Bruno Haible  <bruno@clisp.org>
51993
51994         * m4/minmax.m4: Require autoconf 2.52.
51995         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
51996         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
51997         alternatives of translit over the alphabet.
51998         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
51999
52000 2005-08-24  Simon Josefsson  <jas@extundo.com>
52001
52002         * tests/test-getpass.c: New file.
52003
52004 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
52005
52006         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
52007         for GNU regex features.
52008
52009 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
52010
52011         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
52012         * lib/regex.h (regerror): Likewise.
52013
52014         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
52015         requires this.  (The code never needed it.)
52016
52017         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
52018         All uses of recently-renamed identifiers changed to use the new,
52019         POSIX-compliant names.  The code will build and run just fine
52020         without these changes, but it's better to eat our own dog food
52021         and use the standard-conforming names.
52022
52023         * lib/regex.h: Fix a multitude of POSIX name space violations.
52024         These changes have an effect only for programs that define
52025         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
52026         do not change anything for programs compiled in the normal way.
52027         Also, there is no effect on the ABI.
52028
52029         (_REGEX_SOURCE): New macro.
52030         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
52031         defined and _GNU_SOURCE is not; this fixes a name space violation.
52032
52033         Rename the following macros to obey POSIX requirements.
52034         The old names are still visible as macros if _REGEX_SOURCE is defined.
52035         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
52036         RE_BACKSLASH_ESCAPE_IN_LISTS.
52037         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
52038         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
52039         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
52040         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
52041         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
52042         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
52043         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
52044         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
52045         (REG_INTERVALS): renamed from RE_INTERVALS.
52046         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
52047         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
52048         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
52049         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
52050         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
52051         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
52052         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
52053         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
52054         RE_UNMATCHED_RIGHT_PAREN_ORD.
52055         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
52056         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
52057         (REG_DEBUG): renamed from RE_DEBUG.
52058         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
52059         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
52060         unusual, since we can't clash with the POSIX REG_ICASE.
52061         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
52062         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
52063         (REG_NO_SUB): renamed from RE_NO_SUB.
52064         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
52065         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
52066         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
52067         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
52068         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
52069         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
52070         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
52071         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
52072         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
52073         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
52074         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
52075         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
52076         RE_SYNTAX_POSIX_MINIMAL_BASIC.
52077         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
52078         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
52079         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
52080         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
52081         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
52082         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
52083         (REG_FIXED): Renamed from REGS_FIXED.
52084         (REG_NREGS): Renamed from RE_NREGS.
52085
52086         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
52087         of other REG_* macros, since POSIX says the user is allowed to
52088         #undef these macros selectively.
52089
52090         (reg_errcode_t): Update comment stating what other tables need
52091         to be consistent.
52092
52093         Rename the following enum values to obey POSIX requirements.
52094         The old names are still visible as macros.
52095         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
52096         is not defined, since GNU is supposed to be a superset of POSIX as
52097         much as possible, and since we want reg_errcode_t to be a signed
52098         type for implementation consistency.
52099         (_REG_NOERROR): Renamed from REG_NOERROR.
52100         (_REG_NOMATCH): Renamed from REG_NOMATCH.
52101         (_REG_BADPAT): Renamed from REG_BADPAT.
52102         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
52103         (_REG_ECTYPE): Renamed from REG_ECTYPE.
52104         (_REG_EESCAPE): Renamed from REG_EESCAPE.
52105         (_REG_ESUBREG): Renamed from REG_ESUBREG.
52106         (_REG_EBRACK): Renamed from REG_EBRACK.
52107         (_REG_EPAREN): Renamed from REG_EPAREN.
52108         (_REG_EBRACE): Renamed from REG_EBRACE.
52109         (_REG_BADBR): Renamed from REG_BADBR.
52110         (_REG_ERANGE): Renamed from REG_ERANGE.
52111         (_REG_ESPACE): Renamed from REG_ESPACE.
52112         (_REG_BADRPT): Renamed from REG_BADRPT.
52113         (_REG_EEND): Renamed from REG_EEND.
52114         (_REG_ESIZE): Renamed from REG_ESIZE.
52115         (_REG_ERPAREN): Renamed from REG_ERPAREN.
52116         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
52117         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
52118         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
52119         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
52120
52121         (_REG_RE_NAME, _REG_RM_NAME): New macros.
52122         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
52123         changed.  But support the old name if the new one is not defined
52124         and if _REGEX_SOURCE.
52125
52126         Change the following member names in struct re_pattern_buffer.
52127         The old names are still supported if !_REGEX_SOURCE.
52128         The new names are always supported, regardless of _REGEX_SOURCE.
52129         (re_buffer): Renamed from buffer.
52130         (re_allocated): Renamed from allocated.
52131         (re_used): Renamed from used.
52132         (re_syntax): Renamed from syntax.
52133         (re_fastmap): Renamed from fastmap.
52134         (re_translate): Renamed from translate.
52135         (re_can_be_null): Renamed from can_be_null.
52136         (re_regs_allocated): Renamed from regs_allocated.
52137         (re_fastmap_accurate): Renamed from fastmap_accurate.
52138         (re_no_sub): Renamed from no_sub.
52139         (re_not_bol): Renamed from not_bol.
52140         (re_not_eol): Renamed from not_eol.
52141         (re_newline_anchor): Renamed from newline_anchor.
52142
52143         Change the following member names in struct re_registers.
52144         The old names are still supported if !_REGEX_SOURCE.
52145         The new names are always supported, regardless of _REGEX_SOURCE.
52146         (rm_num_regs): Renamed from num_regs.
52147         (rm_start): Renamed from start.
52148         (rm_end): Renamed from end.
52149
52150         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
52151         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
52152         Prepend __ to parameter names.
52153
52154         Undo yesterday's changes.
52155
52156 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
52157
52158         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
52159         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
52160         lib/regex.c.
52161
52162 2005-08-24  Jim Meyering  <jim@meyering.net>
52163
52164         Sync from coreutils.
52165         * m4/fcntl-safer.m4: New file.
52166
52167         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
52168         and object files for this module.
52169
52170 2005-08-24  Jim Meyering  <jim@meyering.net>
52171
52172         Sync from coreutils.
52173         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
52174
52175 2005-08-24  Jim Meyering  <jim@meyering.net>
52176
52177         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
52178         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
52179
52180 2005-08-24  Jim Meyering  <jim@meyering.net>
52181
52182         * modules/fcntl-safer: New module.
52183         * modules/fts (Depends-on): Add fcntl-safer.
52184         * MODULES.html.sh (File descriptor based Input/Output):
52185         Add fcntl-safer.
52186
52187 2005-08-24  Bruno Haible  <bruno@clisp.org>
52188
52189         Support for unit test modules.
52190         * modules/README: Mention tests modules.
52191         * modules/TEMPLATE-TESTS: New file.
52192         * gnulib-tool: New options --extract-tests-module, --with-tests and
52193         --tests-base (unused for the moment).
52194         (testsbase, inctests): New variables.
52195         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
52196         (func_verify_module): Exclude TEMPLATE-TESTS.
52197         (func_verify_nontests_module, func_verify_tests_module): New functions.
52198         (func_get_dependencies): Add implicit dependency for tests modules.
52199         (func_get_tests_module): New function.
52200         (func_modules_transitive_closure): When --with-tests was specified,
52201         include the unit tests as well, unless explicitly avoided.
52202         (func_emit_lib_Makefile_am): Ignore the tests modules here.
52203         (func_emit_tests_Makefile_am): New function.
52204         (func_create_testdir): When --with-tests was specified, emit a
52205         tests/ directory.
52206         * MODULES.html.sh (Future developments): Update.
52207
52208 2005-08-24  Bruno Haible  <bruno@clisp.org>
52209
52210         * modules/tls-tests: New file.
52211         * tests/test-tls.c: New file, from GNU gettext.
52212
52213 2005-08-24  Bruno Haible  <bruno@clisp.org>
52214
52215         * modules/lock-tests: New file.
52216         * tests/test-lock.c: New file, from GNU gettext.
52217
52218 2005-08-24  Bruno Haible  <bruno@clisp.org>
52219
52220         * lib/lock.h: Add multiple inclusion guard.
52221         * lib/tls.h: Add multiple inclusion guard.
52222
52223 2005-08-24  Bruno Haible  <bruno@clisp.org>
52224
52225         * gnulib-tool: Add support for the --aux-dir option to
52226         --create-testdir, --create-megatestdir, --test, --megatest.
52227         (func_create_testdir, func_create_megatestdir): Optionally emit a
52228         AC_CONFIG_AUX_DIR directive.
52229         (create-testdir, create-megatestdir, test, megatest): Provide a
52230         default value for $auxdir.
52231
52232 2005-08-24  Bruno Haible  <bruno@clisp.org>
52233
52234         * gnulib-tool (import): Use compound statement instead of subshell
52235         where possible.
52236
52237 2005-08-24  Bruno Haible  <bruno@clisp.org>
52238
52239         * gnulib-tool (import): Change --aux-dir default to "build-aux".
52240
52241 2005-08-24  Bruno Haible  <bruno@clisp.org>
52242
52243         * gnulib-tool (func_version): Update.
52244
52245 2005-08-24  Bruno Haible  <bruno@clisp.org>
52246
52247         * gnulib-tool (func_import, func_create_testdir,
52248         func_create_megatestdir): Quote all autoconf macro arguments.
52249
52250 2005-08-24  Bruno Haible  <bruno@clisp.org>
52251
52252         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
52253         option --force, because --force causes the aclocal.m4 of each
52254         subdirectory to be newer than the corresponding config.h.in.
52255
52256 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
52257
52258         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
52259         All contents moved to gl_REGEX.
52260         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
52261         assume that it does.
52262
52263 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
52264
52265         * lib/regex.h (REG_NOSYS)
52266         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
52267         Define, since POSIX requires it as of 2001.
52268         (_REG_ENOSYS)
52269         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
52270         New private symbol, used to keep the enum signed in all cases.
52271         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
52272         Youngman in
52273         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
52274
52275         * lib/regex_internal.c (re_string_skip_chars, register_state):
52276         (calc_state_hash):
52277         Remove forward decls; no longer needed now that we use prototypes.
52278         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
52279         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
52280         (clean_state_log_if_needed): Likewise.
52281
52282 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
52283
52284         * config/srclist.txt: Add glibc bugs 1231-1233.
52285
52286 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
52287
52288         Fix problems reported by Sam Steingold in
52289         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
52290         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
52291         assumed that reg_errcode_t is a signed type, which is not
52292         necessarily true if _XOPEN_SOURCE is not defined.
52293         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
52294         since some compilers warn about it otherwise.
52295
52296 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
52297
52298         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
52299         (init_word_char, create_initial_state, duplicate_node_closure):
52300         (fetch_token, peek_token_bracket, build_range_exp):
52301         (build_collating_symbol): Remove forward decls; no longer needed
52302         now that we use prototypes.
52303
52304         * lib/regcomp.c:
52305         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
52306         (re_compile_fastmap_iter, regcomp, regerror, regfree):
52307         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
52308         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
52309         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
52310         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
52311         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
52312         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
52313         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
52314         (build_range_exp, build_collating_symbol, parse_bracket_exp):
52315         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
52316         (build_charclass, build_charclass_op, fetch_number, create_tree):
52317         (create_token_tree, mark_opt_subexp, duplicate_tree):
52318         Use prototypes rather than old-style definitions.
52319
52320         * lib/regex_internal.c:
52321         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
52322         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
52323         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
52324         (re_string_reconstruct, re_string_peek_byte_case):
52325         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
52326         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
52327         (re_node_set_init_copy, re_node_set_add_intersect):
52328         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
52329         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
52330         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
52331         (re_acquire_state, re_acquire_state_context, register_state):
52332         (create_ci_newstate, create_cd_newstate, free_state):
52333         Likewise.
52334         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
52335         re_search_2):
52336         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
52337         (re_search_internal, prune_impossible_nodes):
52338         (acquire_init_state_context, check_matching, static):
52339         (check_halt_node_context, check_halt_state_context, proceed_next_node):
52340         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
52341         (update_regs, sift_states_backward, build_sifted_states):
52342         (clean_state_log_if_needed, merge_state_array):
52343         (update_cur_sifted_state, add_epsilon_src_nodes):
52344         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
52345         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
52346         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
52347         (find_recover_state, check_subexp_matching_top, transit_state_mb):
52348         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
52349         (check_arrival, check_arrival_add_next_nodes):
52350         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
52351         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
52352         (check_node_accept_bytes, check_node_accept, extend_buffers):
52353         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
52354         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
52355         (sift_ctx_init):
52356         Likewise.
52357
52358         * lib/regex_internal.h:
52359         (re_string_allocate, re_string_construct, re_string_reconstruct):
52360         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
52361         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
52362         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
52363         (re_string_context_at, re_string_peek_byte_case):
52364         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
52365         is defined, since we now use prototypes always.
52366
52367         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
52368         C89 or better.  All uses removed.
52369
52370 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
52371
52372         * config/srclist.txt: Add glibc bugs 1220-1227.
52373
52374 2005-08-20  Jim Meyering  <jim@meyering.net>
52375
52376         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
52377         of unused local, dfa.
52378
52379 2005-08-20  Bruno Haible  <bruno@clisp.org>
52380
52381         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
52382
52383 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
52384
52385         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
52386         (re_node_set_insert_last, re_dfa_add_node):
52387         Rename local variables to avoid GCC shadowing warnings.
52388
52389 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
52390
52391         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
52392         [defined lint]: Suppress bogus uninitialized-variable warnings.
52393
52394         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
52395         and let the caller return REG_ESPACE if out of space.  This
52396         removes an uninitialied-variable warning with GCC 4.0.1, and also
52397         avoids taking the address of a local variable.  All callers
52398         changed.
52399
52400 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
52401
52402         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
52403         $LIBCSRC/posix/regexec.c.
52404         Add glibc bug 1217 for regcomp.c.
52405
52406 2005-08-19  Jim Meyering  <jim@meyering.net>
52407
52408         * lib/regexec.c (proceed_next_node): Redo local variables to
52409         avoid GCC shadowing warnings.
52410
52411 2005-08-18  Bruno Haible  <bruno@clisp.org>
52412
52413         * lib/strstr.c (strstr): Fix return value in multibyte case.
52414         * lib/strcasestr.c (strcasestr): Likewise.
52415
52416 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
52417
52418         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
52419
52420 2005-08-17  Jim Meyering  <jim@meyering.net>
52421
52422         Make the %s format (seconds since the epoch) work for a negative
52423         number and when used with a zero-padded field width, e.g. %015s.
52424
52425         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
52426         label so that it precedes the code to set `digits'.  Otherwise,
52427         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
52428         print `00-22'.  Now, it prints `-0022', as it should.
52429
52430 2005-08-17  Bruno Haible  <bruno@clisp.org>
52431
52432         * modules/strstr (Files): Add m4/mbrtowc.m4.
52433         (Depends-on): Add mbuiter.
52434
52435 2005-08-17  Bruno Haible  <bruno@clisp.org>
52436
52437         * modules/strcasestr: New file.
52438         * MODULES.html.sh (String handling, based on ANSI C 89): Add
52439         strcasestr.
52440
52441 2005-08-17  Bruno Haible  <bruno@clisp.org>
52442
52443         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
52444
52445 2005-08-17  Bruno Haible  <bruno@clisp.org>
52446
52447         * modules/mbuiter: New file.
52448         * MODULES.html.sh (Extended multibyte and wide character utilities):
52449         Add mbuiter.
52450
52451 2005-08-17  Bruno Haible  <bruno@clisp.org>
52452
52453         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
52454         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
52455
52456 2005-08-17  Bruno Haible  <bruno@clisp.org>
52457
52458         * m4/strcasestr.m4: New file.
52459
52460 2005-08-17  Bruno Haible  <bruno@clisp.org>
52461
52462         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
52463         * lib/strstr.c: Completely rewritten, with multibyte locale support.
52464
52465 2005-08-17  Bruno Haible  <bruno@clisp.org>
52466
52467         * lib/strcasestr.h: New file.
52468         * lib/strcasestr.c: New file.
52469
52470 2005-08-17  Bruno Haible  <bruno@clisp.org>
52471
52472         * lib/strcasecmp.c: Use mbuiter.h.
52473
52474 2005-08-17  Bruno Haible  <bruno@clisp.org>
52475
52476         * lib/mbuiter.h: New file.
52477
52478 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
52479
52480         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
52481         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
52482         and gl_GETOPT are both invoked via different paths (as happens
52483         with GNU tar CVS because it uses both argp and getopt), the former
52484         wins.
52485
52486 2005-08-16  Bruno Haible  <bruno@clisp.org>
52487
52488         * modules/tls: New file.
52489         * MODULES.html.sh (Multithreading): Add tls.
52490
52491 2005-08-16  Bruno Haible  <bruno@clisp.org>
52492
52493         * modules/strnlen1: New file.
52494         * MODULES.html.sh (String handling): Add strnlen1.
52495
52496 2005-08-16  Bruno Haible  <bruno@clisp.org>
52497
52498         * modules/strcase (Files): Add m4/mbrtowc.m4.
52499         (Depends-on): Add strnlen1, mbchar.
52500
52501 2005-08-16  Bruno Haible  <bruno@clisp.org>
52502
52503         * modules/mbiter: New file.
52504         * MODULES.html.sh (Extended multibyte and wide character utilities):
52505         Add mbiter.
52506
52507 2005-08-16  Bruno Haible  <bruno@clisp.org>
52508
52509         * modules/mbfile: New file.
52510         * MODULES.html.sh (Extended multibyte and wide character utilities):
52511         Add mbfile.
52512
52513 2005-08-16  Bruno Haible  <bruno@clisp.org>
52514
52515         * modules/mbchar: New file.
52516         * MODULES.html.sh (Extended multibyte and wide character utilities):
52517         New section.
52518
52519 2005-08-16  Bruno Haible  <bruno@clisp.org>
52520
52521         * m4/tls.m4: New file, from GNU gettext.
52522
52523 2005-08-16  Bruno Haible  <bruno@clisp.org>
52524
52525         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
52526         always.
52527         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
52528
52529 2005-08-16  Bruno Haible  <bruno@clisp.org>
52530
52531         * m4/mbiter.m4: New file.
52532
52533 2005-08-16  Bruno Haible  <bruno@clisp.org>
52534
52535         * m4/mbfile.m4: New file.
52536
52537 2005-08-16  Bruno Haible  <bruno@clisp.org>
52538
52539         * m4/mbchar.m4: New file.
52540
52541 2005-08-16  Bruno Haible  <bruno@clisp.org>
52542
52543         * lib/tls.h: New file, from GNU gettext.
52544         * lib/tls.c: New file, from GNU gettext.
52545
52546 2005-08-16  Bruno Haible  <bruno@clisp.org>
52547
52548         * lib/strnlen1.h: New file.
52549         * lib/strnlen1.c: New file.
52550
52551 2005-08-16  Bruno Haible  <bruno@clisp.org>
52552
52553         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
52554         (mbi_init): Update.
52555         (mbi_avail, mbi_advance): Let the iteration end before the terminating
52556         NUL byte, not after it.
52557
52558 2005-08-16  Bruno Haible  <bruno@clisp.org>
52559
52560         * lib/strcase.h (strcasecmp): Add note in comments.
52561         * lib/strncasecmp.c: Use code from strcasecmp.c.
52562         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
52563         (strcasecmp): Work correctly in multibyte locales.
52564
52565 2005-08-16  Bruno Haible  <bruno@clisp.org>
52566
52567         * lib/mbiter.h: New file.
52568
52569 2005-08-16  Bruno Haible  <bruno@clisp.org>
52570
52571         * lib/mbfile.h: New file.
52572
52573 2005-08-16  Bruno Haible  <bruno@clisp.org>
52574
52575         * lib/mbchar.h: New file.
52576         * lib/mbchar.c: New file.
52577
52578 2005-08-16  Bruno Haible  <bruno@clisp.org>
52579
52580         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
52581         the valid ones. Makes the comparison operations transitive:
52582         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
52583         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
52584
52585 2005-08-15  Simon Josefsson  <jas@extundo.com>
52586
52587         * modules/ssize_t (License): Change to 'unlimited'.
52588
52589         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
52590
52591 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
52592
52593         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
52594         Add comments for each pending glibc patch.
52595
52596 2005-08-15  Bruno Haible  <bruno@clisp.org>
52597
52598         * lib/regex.h (__restrict_arr): Don't define to __restrict if
52599         __cplusplus is defined.
52600
52601 2005-08-14  Jim Meyering  <jim@meyering.net>
52602
52603         Sync from coreutils.
52604
52605         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
52606         Use the hash-table-based cycle-detection code not just when
52607         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
52608         Reported by James Youngman in
52609         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
52610         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
52611         FTS_TIGHT_CYCLE_CHECK.
52612         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
52613         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
52614         once again.
52615         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
52616         * lib/fts.c (fd_safer): Remove decl.
52617         Include fcntl--.h rather than unistd-safer.h
52618         (fts_safe_changedir): Don't call fd_safer; no longer needed
52619         now that we include fcntl--.h.
52620
52621 2005-08-12  Simon Josefsson  <jas@extundo.com>
52622
52623         * modules/getndelim2: Use ssize_t module.
52624         * modules/getnline: Likewise.
52625         * modules/safe-read: Likewise.
52626         * modules/xreadlink: Likewise.
52627
52628         * modules/ssize_t: New file.
52629
52630 2005-08-12  Simon Josefsson  <jas@extundo.com>
52631
52632         * m4/readline.m4: Look for termcap, curses or ncurses if required.
52633
52634 2005-08-12  Simon Josefsson  <jas@extundo.com>
52635
52636         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52637         ssize_t.
52638
52639 2005-08-12  Simon Josefsson  <jas@extundo.com>
52640
52641         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
52642         readline, getdelim and check_version.
52643         (Support for systems lacking ISO C 99: Sizes of integer types):
52644         Add size_max.
52645
52646 2005-08-12  Bruno Haible  <bruno@clisp.org>
52647
52648         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
52649
52650 2005-08-11  Simon Josefsson  <jas@extundo.com>
52651
52652         * modules/readline: New file.
52653
52654         * modules/strnlen (Files): Add strnlen.h.
52655
52656 2005-08-11  Simon Josefsson  <jas@extundo.com>
52657
52658         * m4/readline.m4: New file.
52659
52660 2005-08-11  Simon Josefsson  <jas@extundo.com>
52661
52662         * lib/readline.h, readline.c: New file.
52663
52664 2005-08-11  Simon Josefsson  <jas@extundo.com>
52665
52666         * doc/gnulib.texi (Initial import, Finishing touches): Mention
52667         gl_AVOID.
52668
52669 2005-08-11  Bruno Haible  <bruno@clisp.org>
52670
52671         * lib/strnlen.h (strnlen): Change parameter name to match comment.
52672
52673 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
52674
52675         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
52676
52677 2005-08-10  Simon Josefsson  <jas@extundo.com>
52678
52679         * tests/test-iconvme.c: New file.
52680
52681 2005-08-10  Simon Josefsson  <jas@extundo.com>
52682
52683         * m4/strnlen.m4: New file.
52684
52685         * m4/strndup.m4: Don't check for strnlen declaration, done in
52686         strnlen.m4.
52687
52688 2005-08-10  Simon Josefsson  <jas@extundo.com>
52689
52690         * lib/strndup.c: Use strnlen.h.
52691
52692         * lib/strnlen.h: New file.
52693
52694 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
52695
52696         * README: Typos.
52697
52698 2005-08-02  Simon Josefsson  <jas@extundo.com>
52699
52700         * modules/readline: New file.
52701
52702 2005-08-02  Simon Josefsson  <jas@extundo.com>
52703
52704         * modules/getdelim: New file.
52705
52706         * modules/getline: Rewrite, don't use getndelim2.
52707
52708 2005-08-02  Simon Josefsson  <jas@extundo.com>
52709
52710         * m4/getline.m4: Separate out getdelim stuff into separate module.
52711
52712         * m4/getdelim.m4: New file.
52713
52714 2005-08-02  Simon Josefsson  <jas@extundo.com>
52715
52716         * lib/getline.h, getline.c: Rewrite.
52717
52718         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
52719
52720 2005-07-31  Bruno Haible  <bruno@clisp.org>
52721
52722         * lib/lock.h (gl_lock_initializer): New macro.
52723         (gl_lock_define_initialized): Use it.
52724         (gl_rwlock_initializer): New macro.
52725         (gl_rwlock_define_initialized): Use it.
52726         (gl_recursive_lock_initializer): New macro.
52727         (gl_recursive_lock_define_initialized): Use it.
52728
52729 2005-07-30  Karl Berry  <karl@gnu.org>
52730
52731         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
52732         Report from Ben Pfaff, regarding getopt.
52733
52734 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
52735
52736         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
52737         normal way.
52738         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
52739         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
52740         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
52741         (gl_GETOPT): Use the new macros.  Most of the implementation
52742         is moved to the new macros.  This is for programs like Emacs
52743         that don't want all the functionality of gl_GETOPT.
52744
52745 2005-07-26  Bruno Haible  <bruno@clisp.org>
52746
52747         * m4/lock.m4: Update from GNU gettext.
52748
52749 2005-07-26  Bruno Haible  <bruno@clisp.org>
52750
52751         * lib/lock.h: Update from GNU gettext.
52752         * lib/lock.c: Update from GNU gettext.
52753
52754 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
52755
52756         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
52757         obsolescent AC_TRY_RUN.  Include the default includes files, for
52758         'exit'.
52759
52760 2005-07-24  Bruno Haible  <bruno@clisp.org>
52761
52762         * modules/visibility: New file.
52763         * MODULES.html.sh (Misc): Add visibility.
52764
52765 2005-07-24  Bruno Haible  <bruno@clisp.org>
52766
52767         * m4/visibility.m4: New file.
52768
52769 2005-07-24  Bruno Haible  <bruno@clisp.org>
52770
52771         * doc/visibility.texi: New file.
52772
52773 2005-07-22  Bruno Haible  <bruno@clisp.org>
52774
52775         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
52776         $(ALLOCA_H), redundant through BUILT_SOURCES.
52777         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
52778         redundant through BUILT_SOURCES.
52779         * modules/byteswap (Makefile.am): Remove explicit dependency on
52780         $(BYTESWAP_H), redundant through BUILT_SOURCES.
52781         * modules/fnmatch (Makefile.am): Remove explicit dependency on
52782         $(FNMATCH_H), redundant through BUILT_SOURCES.
52783         * modules/getopt (Makefile.am): Remove explicit dependency on
52784         $(GETOPT_H), redundant through BUILT_SOURCES.
52785         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
52786         redundant through BUILT_SOURCES.
52787         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
52788         redundant through BUILT_SOURCES.
52789         * modules/stdbool (Makefile.am): Remove explicit dependency on
52790         $(STDBOOL_H), redundant through BUILT_SOURCES.
52791         * modules/stdint (Makefile.am): Remove explicit dependency on
52792         $(STDINT_H), redundant through BUILT_SOURCES.
52793         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
52794         Remove explicit dependency on $(SYSEXITS_H).
52795         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
52796
52797 2005-07-18  Simon Josefsson  <jas@extundo.com>
52798
52799         * lib/check-version.c (check_version): Accept identical versions too.
52800
52801 2005-07-18  Bruno Haible  <bruno@clisp.org>
52802
52803         * modules/lock: New file.
52804         * MODULES.html.sh (Multithreading): New section.
52805
52806 2005-07-18  Bruno Haible  <bruno@clisp.org>
52807
52808         * m4/lock.m4: New file, from GNU gettext.
52809
52810 2005-07-18  Bruno Haible  <bruno@clisp.org>
52811
52812         * lib/lock.h: New file, from GNU gettext.
52813         * lib/lock.c: New file, from GNU gettext.
52814
52815 2005-07-18  Bruno Haible  <bruno@clisp.org>
52816
52817         * lib/lock.h (gl_once_t): New type.
52818         (gl_once_define, gl_once): New macros.
52819         * lib/lock.c (fresh_once): New variable.
52820         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
52821         functions.
52822
52823 2005-07-16  Simon Josefsson  <jas@extundo.com>
52824
52825         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
52826         workaround, suggested by Bruno.
52827
52828 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
52829
52830         * modules/xalloc (Depends-on): Add xalloc-die.
52831         * modules/xvasprintf (Depends-on): Add xalloc-die.
52832
52833 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
52834
52835         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
52836         with a minor change.
52837
52838 2005-07-15  Bruno Haible  <bruno@clisp.org>
52839
52840         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
52841         When using lib/poll.c, define poll as rpl_poll.
52842
52843 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
52844
52845         * modules/argp (Depends-on): Remove unlocked-io.
52846
52847 2005-07-14  Derek Price  <derek@ximbiot.com>
52848
52849         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
52850         for glob symlink bug.
52851
52852 2005-07-14  Bruno Haible  <bruno@clisp.org>
52853
52854         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
52855         Instead, test for *_unlocked function declarations directly.
52856
52857 2005-07-11  Simon Josefsson  <jas@extundo.com>
52858
52859         * modules/size_max: New file.
52860
52861         * modules/xsize: Depend on size_max module for size_max.m4.
52862
52863 2005-07-11  Simon Josefsson  <jas@extundo.com>
52864
52865         * lib/size_max.h: New file.
52866
52867 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
52868
52869         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
52870         copyright symbol and the year.
52871         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
52872         (version_etc_va): Use parameterized copyright notice.
52873         Reword to conform to the current GNU coding standards.
52874
52875 2005-07-11  Karl Berry  <karl@gnu.org>
52876
52877         * doc/gnulib.texi (Quoting): new node.
52878         (Initial import): more info, from Patrice.
52879
52880 2005-07-11  Bruno Haible  <bruno@clisp.org>
52881
52882         * gnulib-tool (func_usage): Document option --avoid.
52883         (Command line options): Handle --avoid.
52884         (func_acceptable): New function.
52885         (func_modules_transitive_closure): Use it.
52886
52887 2005-07-11  Bruno Haible  <bruno@clisp.org>
52888
52889         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
52890         Reported by Jim Meyering.
52891
52892 2005-07-10  Bruno Haible  <bruno@clisp.org>
52893
52894         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
52895         Needed when size_t is smaller than 'unsigned int'.
52896         Reported by Paul Eggert.
52897
52898 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
52899
52900         * modules/argp (Depends-on): Add unlocked-io
52901
52902 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
52903
52904         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
52905         block of defines.
52906
52907 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
52908
52909         * config/srclist.txt: Comment out regcomp.c, since we have a porting
52910         fix now.
52911
52912 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
52913         and Paul Eggert  <eggert@cs.ucla.edu>
52914
52915         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
52916         in wint_t, not wchar_t.  Remove now-unnecessary cast.
52917
52918 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52919
52920         * modules/regex (Files): Add lib/regex_internal.c,
52921         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
52922         (Depends-on): Add extensions.
52923         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
52924
52925 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52926
52927         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
52928         pathconf.
52929         * m4/same.m4 (gl_SAME): Likewise.
52930         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
52931
52932         * m4/regex.m4: Adjust to new libc regex implementation.
52933         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
52934         all the .c and .h parts of (the new) regex.
52935         Quote the m4 stuff better.
52936         Check for RE_ICASE bug of old gnulib.
52937         Check for REG_STARTEND of recent libc.
52938         Rename local variables from jm_* to gl_*.
52939         Quote operand of "test -f".
52940         Say "recent enough" version of libc, not "version 2".
52941         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
52942         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
52943         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
52944         Remove check for btowc, isascii.
52945         Require AM_LANGINFO_CODESET.
52946
52947 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52948
52949         * lib/regex.c, regex.h: Sync from libc.
52950         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
52951         * lib/regexec.c:
52952         New files, synced from libc, except that regex_internal.h
52953         currently has a small porting fix.
52954
52955 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52956
52957         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
52958         regex_internal.c, regexec.c.
52959         Add regex_internal.h too, but as a comment, since the libc version
52960         is currently broken in gnulib mode.
52961
52962 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
52963
52964         Support programs like Emacs that use gnulib but not gettext.
52965         * MODULES.html.sh (Internationalization functions): Add gettext-h.
52966         * modules/gettext-h: New file.
52967         * modules/gettext (Files): Remove lib/gettext.h.
52968         (Depends-on): Add gettext-h.
52969         (Makefile.am): Remove lib_SOURCES.
52970         * modules/argmatch, modules/c-stack, modules/closeout:
52971         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
52972         * modules/execute, modules/file-type, modules/getaddrinfo:
52973         * modules/getopt, modules/human, modules/javacomp:
52974         * modules/javaexec, modules/mkdir-p, modules/obstack:
52975         * modules/openat, modules/pagealign_alloc, modules/pipe:
52976         * modules/quotearg, modules/regex, modules/rpmatch:
52977         * modules/unicodeio, modules/userspec, modules/version-etc:
52978         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
52979         * modules/xsetenv:
52980         Depend on gettext-h, not gettext.
52981
52982 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
52983
52984         * gnulib-tool (func_import): Add support for 'public domain' license.
52985         * modules/alloca, modules/atexit, modules/memmove:
52986         Now public domain, not GPL.
52987         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
52988         * modules/realloc, modules/strerror, modules/strtod:
52989         Now LGPL, not GPL.
52990
52991 2005-07-05  Bruno Haible  <bruno@clisp.org>
52992
52993         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
52994         autoconf CVS. Needed for mingw.
52995
52996 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52997
52998         Remove the dependency of the strftime module on the tzset module.
52999         * modules/strftime (Depends-on): Remove dependency on tzset.
53000
53001 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
53002
53003         Remove the dependency of the strftime module on the tzset module.
53004         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
53005         gl_FUNC_TZSET_CLOBBER.
53006
53007 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
53008
53009         Remove the dependency of the strftime module on the tzset module.
53010         * lib/strftime.c (my_strftime)
53011         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
53012         Copy the input structure, to work around some of the bug with
53013         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
53014         Solaris releases, you should also use the tzset module, but we won't
53015         require it as a dependency any more since we don't want LGPLed code
53016         to depend on GPLed code.
53017
53018 2005-07-02  Jim Meyering  <jim@meyering.net>
53019
53020         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
53021         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
53022         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
53023         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
53024
53025 2005-07-02  Jim Meyering  <jim@meyering.net>
53026
53027         * lib/backupfile.c (backup_args): Change a `0' to NULL.
53028
53029 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
53030
53031         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
53032         declares only 'struct timespec;' (!).
53033
53034 2005-07-01  Jim Meyering  <jim@meyering.net>
53035
53036         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
53037         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
53038         * lib/save-cwd.c, tempname.c:
53039         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
53040         and don't include <sys/file.h>).
53041
53042 2005-06-29  Jim Meyering  <jim@meyering.net>
53043
53044         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
53045         type name.  Use the variable name instead.
53046         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
53047         Likewise.
53048
53049 2005-06-28  Simon Josefsson  <jas@extundo.com>
53050
53051         * modules/check-version (Files): Add check-version.m4.
53052
53053 2005-06-28  Simon Josefsson  <jas@extundo.com>
53054
53055         * m4/check-version.m4: New file, suggested by Jim Meyering
53056         <jim@meyering.net>.
53057
53058 2005-06-28  Simon Josefsson  <jas@extundo.com>
53059
53060         * lib/check-version.h, lib/check-version.c: New files.
53061
53062 2005-06-28  Simon Josefsson  <jas@extundo.com>
53063
53064         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
53065         collision with global variable.  Better indentation.  Don't
53066         increment buffer pointer beyond buffer end.  Based on comments
53067         from Paul Eggert <eggert@cs.ucla.edu>.
53068
53069         * lib/base64.h: Indent.
53070
53071 2005-06-28  Simon Josefsson  <jas@extundo.com>
53072
53073         * doc/gnulib.texi (Library version handling): New section.
53074
53075 2005-06-28  Jim Meyering  <jim@meyering.net>
53076
53077         * check-module (find_included_lib_files): Hard-code another
53078         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
53079         but modules/fts-lgpl (correctly) does not list those files.
53080
53081         * modules/canonicalize (Files): Add lib/pathmax.h.
53082
53083 2005-06-25  Simon Josefsson  <jas@extundo.com>
53084
53085         * modules/check-version: New file.
53086
53087 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
53088
53089         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
53090         initializer of struct addrinfo, as an indication that we don't
53091         care how many members the structure has.
53092
53093 2005-06-24  Derek Price  <derek@ximbiot.com>
53094         and Bruno Haible  <bruno@clisp.org>
53095
53096         Remove stat module & update lstat.
53097         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
53098         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
53099         * m4/stat.m4: Remove this file.
53100
53101 2005-06-24  Derek Price  <derek@ximbiot.com>
53102         and Bruno Haible  <bruno@clisp.org>
53103
53104         Remove stat module & update lstat.
53105         * lib/stat.c: Remove this file...
53106         (slash_aware_lstat): ...moving this content and its support...
53107         * lib/lstat.c (rpl_lstat): ...into here.
53108         * lib/lstat.h: New file.
53109
53110 2005-06-24  Derek Price  <derek@ximbiot.com>
53111         and Bruno Haible  <bruno@clisp.org>
53112
53113         Remove stat module & update lstat.
53114         * config/srclist.txt (libc sources): Remove stat.
53115
53116 2005-06-24  Derek Price  <derek@ximbiot.com>
53117         and Bruno Haible  <bruno@clisp.org>
53118
53119         Remove stat module & update lstat.
53120         * MODULES.html.sh (stat): Remove.
53121         * MODULES.html: Regenerated.
53122         * modules/lstat (Description): Correct function name.
53123         (Files): Add "lstat.h".
53124         (Depends-on): Remove stat, add xalloc, stat-macros.
53125         * modules/stat: Remove this file.
53126         (Include): Add "lstat.h", remove <sys/stat.h>.
53127
53128 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
53129
53130         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
53131         (ranged_convert): Don't save conversion in a temporary struct.
53132         This causes a warning with GCC 4.0.0, and anyway in the typical
53133         case it's not worth the extra 100 bytes or so of code.
53134         (ranged_convert, __mktime_internal): When calling a function via a
53135         pointer P, use P () rather than (*P) (), as we now assume C89 or
53136         better.
53137
53138 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
53139
53140         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
53141         "who -r" failed to give output.  Problem reported by Tim Waugh.
53142
53143         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
53144         (xcalloc): Use it to avoid needless tests.
53145         Problem reported by Jim Meyering.
53146
53147 2005-06-20  Derek Price  <derek@ximbiot.com>
53148
53149         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
53150         unnecessary for Autoconfs > 2.59c.
53151
53152 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53153
53154         * lib/argp.h (__option_is_short): Check upper limit of
53155         __key. Isprint() requires its argument to have the value
53156         of an unsigned char or EOF.
53157
53158 2005-06-16  Jim Meyering  <jim@meyering.net>
53159
53160         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
53161         when either N or S is zero.
53162
53163 2005-06-16  Derek Price  <derek@ximbiot.com>
53164
53165         * m4/bison.m4: Declare YACC & YFLAGS precious.
53166
53167 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
53168
53169         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
53170         multibyte string or pattern, fall back on unibyte matching.
53171         Problem reported by James Youngman.
53172
53173 2005-06-08  Bruno Haible  <bruno@clisp.org>
53174
53175         * modules/csharpcomp: New file.
53176         * MODULES.html.sh (C#): Add csharpcomp.
53177
53178 2005-06-08  Bruno Haible  <bruno@clisp.org>
53179
53180         * m4/csharpcomp.m4: New file, from GNU gettext.
53181
53182 2005-06-08  Bruno Haible  <bruno@clisp.org>
53183
53184         * lib/csharpcomp.h: New file, from GNU gettext.
53185         * lib/csharpcomp.c: New file, from GNU gettext.
53186         * lib/csharpcomp.sh.in: New file, from GNU gettext.
53187
53188 2005-06-08  Bruno Haible  <bruno@clisp.org>
53189
53190         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
53191         warning on mingw.
53192
53193 2005-06-07  Derek Price  <derek@ximbiot.com>
53194
53195         Sync from CVS.
53196         * lib/glob_.h: Indent nested #ifdef.
53197
53198 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
53199
53200         Sync from coreutils.
53201         Use "file name" when talking about file names, instead of "filename"
53202         or "path", as per the GNU coding standards.
53203         * lib/mkdir-p.c: Renamed from makepath.c.
53204         (make_dir_parents): Renamed from make_path.  All callers changed.
53205         * lib/mkdir-p.h: Likewise.  All includers changed.
53206         * lib/filenamecat.c: Renamed from path-concat.c.
53207         (file_name_concat): Renamed from path_concat.  All callers changed.
53208         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
53209         * lib/filenamecat.h: Likewise.  All includers changed.
53210         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
53211         in comments or local variable names.
53212         * lib/basename.c: Likewise.
53213         * lib/canonicalize.c, canonicalize.h: Likewise.
53214         * lib/dirname.c, dirname.h: Likewise.
53215         * lib/euidaccess.c: Likewise.
53216         * lib/exclude.c: Likewise
53217         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
53218         * lib/fsusage.c, fsuage.h: Likewise.
53219         * lib/fts.c, fts_.h: Likewise.
53220         * lib/getcwd.c: Likewise.
53221         * lib/getloadavg.c: Likewise.
53222         * lib/mkstemp.c: Likewise.
53223         * lib/mountlist.c, mountlist.h: Likewise.
53224         * lib/openat.c, openat.h: Likewise.
53225         * lib/readlink-stub.c: Likewise.
53226         * lib/readutmp.c, readutmp.h: Likewise.
53227         * lib/rename.c: Likewise.
53228         * lib/rmdir.c: Likewise.
53229         * lib/same.c: Likewise.
53230         * lib/savedir.c: Likewise.
53231         * lib/stripslash.c: Likewise.
53232         * lib/tempname.c: Likewise.
53233         * lib/xreadlink.c: Likewise.
53234         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
53235         All uses changed.
53236         * lib/exclude.h: Likewise.
53237
53238         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
53239         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
53240         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
53241         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
53242         * lib/pathmax.h: Include <limits.h> unconditionally, since other
53243         files have been getting away with it for years (MORE/BSD 4.3
53244         is extinct now).
53245         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
53246         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
53247
53248         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
53249         Define to 256, not 255, as per modern POSIX.
53250
53251 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
53252
53253         Sync from coreutils.
53254         Use "file name" when talking about file names, instead of "filename"
53255         or "path", as per the GNU coding standards.
53256         * MODULES.html.sh: mkdir-p renamed from makepath.
53257         filenamecat renamed from path-concat.
53258         * modules/filenamecat: Renamed from modules/path-concat.
53259         (Files): filenamecat.h and filenamecat.c renamed from
53260         path-concat.h and path-concat.c.
53261         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
53262         (Include): filenamecat.h, not path-concat.h.
53263         * modules/mkdir-p: Renamed from modules/makepath.
53264         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
53265         makepath.c.
53266         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
53267         (Include): mkdir-p.h, not makepath.h.
53268
53269 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
53270
53271         Sync from coreutils.
53272         * m4/mkdir-p.m4: Renamed from makepath.m4.
53273         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
53274         Rename files from makepath.c to mkdir-p.c, and from
53275         makepath.h to mkdir-p.h.
53276         * m4/filenamecat.m4: Renamed from path-concat.m4.
53277         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
53278         Rename files from path-concat.c to filenamecat.c,
53279         and from path-concat.h to filenamecat.h.
53280         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
53281         "file name" in local variables or comments.
53282         * m4/rename.m4: Likewise.
53283
53284 2005-06-01  Bruno Haible  <bruno@clisp.org>
53285
53286         * modules/csharpexec: New file.
53287         * MODULES.html.sh (C#): New section.
53288
53289 2005-06-01  Bruno Haible  <bruno@clisp.org>
53290
53291         * m4/csharp.m4: New file, from GNU gettext.
53292         * m4/csharpexec.m4: New file, from GNU gettext.
53293
53294 2005-06-01  Bruno Haible  <bruno@clisp.org>
53295
53296         * lib/csharpexec.h: New file, from GNU gettext.
53297         * lib/csharpexec.c: New file, from GNU gettext.
53298         * lib/csharpexec.sh.in: New file, from GNU gettext.
53299
53300 2005-05-31  Derek Price  <derek@ximbiot.com>
53301             Paul Eggert  <eggert@cs.ucla.edu>
53302
53303         Sync from cvs.
53304         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
53305
53306 2005-05-31  Derek Price  <derek@ximbiot.com>
53307             Paul Eggert  <eggert@cs.ucla.edu>
53308
53309         Sync from cvs.
53310         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
53311
53312 2005-05-29  Derek Price  <derek@ximbiot.com>
53313
53314         * config/srclist.txt (glob_.h, glob.c): Add these files.
53315
53316 2005-05-29  Derek Price  <derek@ximbiot.com>
53317
53318         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
53319         * modules/glob: New file.
53320         * modules/getlogin_r: Add link to POSIX spec in description.
53321
53322 2005-05-29  Derek Price  <derek@ximbiot.com>
53323             Paul Eggert  <eggert@cs.ucla.edu>
53324
53325         * m4/glob.m4: New file.
53326
53327 2005-05-29  Derek Price  <derek@ximbiot.com>
53328             Paul Eggert  <eggert@cs.ucla.edu>
53329
53330         * lib/glob_.h, lib/glob.c: New files.
53331
53332 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
53333
53334         * modules/fts (Files): Remove m4/inttypes-pri.m4.
53335         * modules/fts-lgpl (Depends-on): Remove gettext.
53336
53337 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
53338
53339         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
53340         and don't require gt_INTTYPES_PRI.
53341
53342 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
53343
53344         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
53345
53346         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
53347         the configuration hassle isn't worth it.
53348         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
53349         (LONGEST_MODIFIER, PRIuMAX): Remove.
53350
53351 2005-05-27  Bruno Haible  <bruno@clisp.org>
53352
53353         * lib/getlogin_r.h: Remove second include of <stddef.h>.
53354
53355 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
53356
53357         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
53358         _POSIX_PTHREAD_SEMANTICS for Solaris.
53359
53360 2005-05-25  Derek Price  <derek@ximbiot.com>
53361
53362         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
53363
53364 2005-05-25  Derek Price  <derek@ximbiot.com>
53365             Paul Eggert  <eggert@cs.ucla.edu>
53366
53367         * modules/getlogin_r, m4/getlogin_r.m4: New files.
53368         * lib/getlogin_r.c, getlogin_r.h: New files.
53369
53370 2005-05-25  Bruno Haible  <bruno@clisp.org>
53371             Derek Price  <derek@ximbiot.com>
53372
53373         * lib/getlogin_r.h: Simplify API documentation.
53374
53375 2005-05-23  Derek Price  <derek@ximbiot.com>
53376
53377         * modules/minmax (Files): Add m4/minmax.m4.
53378         (configure.ac): Add gl_MINMAX.
53379
53380 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
53381
53382         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
53383         so that unistd-safer.h (GPL'ed code) need not be included.
53384
53385 2005-05-22  Bruno Haible  <bruno@clisp.org>
53386
53387         * m4/minmax.m4: New file.
53388         Based on a patch by Derek Price <derek@ximbiot.com>.
53389
53390 2005-05-22  Bruno Haible  <bruno@clisp.org>
53391
53392         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
53393         (INT64_MIN): Fix definition.
53394         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
53395
53396         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
53397         NEED_SIGNED_INT_TYPES.
53398
53399         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
53400         HAVE_SYSTEM_INTTYPES.
53401
53402 2005-05-22  Bruno Haible  <bruno@clisp.org>
53403
53404         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
53405         Also include <sys/param.h> if it defines MIN, MAX.
53406         Based on a patch by Derek Price <derek@ximbiot.com>.
53407
53408 2005-05-21  Jim Meyering  <jim@meyering.net>
53409
53410         * modules/fts (Files): Add m4/inttypes-pri.m4.
53411         (Depends-on): Add lstat and remove gettext.  Alphabetize.
53412
53413 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
53414
53415         New fts module.
53416         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
53417         (setup_dir, free_dir): New functions.
53418         (enter_dir, leave_dir): Define trivial
53419         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
53420         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
53421         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
53422         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
53423         Move to fts-cycle.c.
53424         (fts_open): Use setup_dir.
53425         (fts_close): Use free_dir.
53426         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
53427         This adds a label and some gotos, but the alternatives were messier.
53428         Check for memory allocation failure when entering a dir.
53429         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
53430         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
53431         (FTS): New member fts_cycle, that is a union that contains the
53432         old active_dir_ht and cycle_state.  All uses changed to mention
53433         fts_cycle.ht and fts_cycle.state.
53434         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
53435         fts.c, with the following changes:
53436         (setup_dir, free_dir): New functions.
53437         (enter_dir): Now returns bool.  Return true if successful, false
53438         if memory exhausted.  All callers changed.
53439         Do not bother partly cleaning up on
53440         memory allocation failure; that is free_dir's job.
53441         However, free ad if hash_insert fails, to avoid memory leak.
53442         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
53443         fts->fts_options to see which union member to use.
53444
53445 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
53446
53447         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
53448         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
53449
53450 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
53451
53452         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
53453
53454 2005-05-20  Jim Meyering  <jim@meyering.net>
53455
53456         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
53457         Now a macro, to pacify GCC.
53458
53459 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
53460
53461         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
53462         of -1.
53463
53464 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
53465
53466         * lib/chown.c (rpl_chown): Return -1 on failure.
53467
53468 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
53469
53470         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
53471         Don't check for stddef.h.
53472         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
53473         don't use its results.
53474         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
53475         since we include them unconditionally.  Don't require
53476         AM_STDBOOL_H, since stdbool is a prerequisite.
53477         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
53478         since we assume C89 or better.
53479         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
53480         as we don't use their results.
53481         Don't check for fchdir, memmove, memset, strrchr, as we use
53482         them unconditionally.
53483         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
53484         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
53485
53486 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
53487
53488         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
53489         Include <stddef.h> unconditionally, since we assume C89 now.
53490         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
53491         * lib/fts.c: Include fts_.h first, to check interface.
53492         Do not include intprops.h; no longer needed.
53493         Include cycle-check.h and hash.h, since fts_.h no longer does.
53494         Remove unnecessary casts of closedir to void.
53495         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
53496         decide whether to decrement nlinks.
53497         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
53498         (FTS): Use struct hash_table * instead of Hash_table, so that
53499         we no longer need to include hash.h here.
53500
53501 2005-05-18  Jim Meyering  <jim@meyering.net>
53502
53503         * modules/dirfd (License): Change to LGPL.  Most of the code
53504         is already in the public domain.
53505
53506 2005-05-18  Jim Meyering  <jim@meyering.net>
53507
53508         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
53509         Reported by Yoann Vandoorselaere.
53510
53511 2005-05-17  Jim Meyering  <jim@meyering.net>
53512
53513         * m4/fts.m4: New file, from coreutils.
53514
53515 2005-05-17  Jim Meyering  <jim@meyering.net>
53516
53517         * lib/fts.c, lib/fts_.h: New files, from coreutils.
53518
53519 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
53520
53521         Sync from coreutils.
53522         * m4/unlinkdir.m4: New file.
53523
53524 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
53525
53526         Sync from coreutils.
53527         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
53528         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
53529         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
53530         White space changes only.
53531         * lib/makepath.c (make_path): Port to hosts where leading "//" is
53532         special.
53533         * lib/yesno.c: Include getline.h, not ctype.h.
53534         (yesno): Don't remove leading white space; POSIX doesn't allow it.
53535         Use getline to remove arbitrary restriction on response length.
53536
53537 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
53538
53539         * config/srclist-update: Spell out "Street" in FSF postal
53540         mail address; this is the style the FSF seems to prefer.
53541
53542         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
53543         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
53544         this updates FSF postal mail address.
53545
53546         Sync from coreutils.
53547         * modules/unlinkdir: New file.
53548         * modules/yesno (Depends-on): Add getline.
53549         * MODULES.html.sh (File system functions): Add unlinkdir.
53550
53551 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
53552
53553         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
53554         lib/strsep.h:
53555         Change the initial comment to refer to GPL, not LGPL.
53556         gnulib-tool will change it to LGPL as needed.
53557
53558         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
53559         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
53560         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
53561         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
53562         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
53563         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
53564         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
53565         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
53566         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
53567         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
53568         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
53569         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
53570         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
53571         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
53572         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
53573         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
53574         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
53575         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
53576         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
53577         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
53578         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
53579         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
53580         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
53581         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
53582         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
53583         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
53584         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
53585         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
53586         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
53587         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
53588         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
53589         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
53590         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
53591         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
53592         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
53593         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
53594         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
53595         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
53596         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
53597         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
53598         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
53599         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
53600         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
53601         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
53602         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
53603         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
53604         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
53605         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
53606         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
53607         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
53608         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
53609         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
53610         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
53611         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
53612         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
53613         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
53614         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
53615         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
53616         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
53617         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
53618         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
53619         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
53620         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
53621         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
53622         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
53623         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
53624         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
53625         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
53626         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
53627         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
53628         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
53629         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
53630         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
53631         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
53632         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
53633         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
53634         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
53635         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
53636         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
53637         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
53638         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
53639         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
53640         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
53641         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
53642         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
53643         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
53644         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
53645         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
53646         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
53647         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
53648         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
53649         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
53650         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
53651         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
53652         lib/yesno.c, lib/yesno.h:
53653         Update FSF postal mail address.
53654
53655 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
53656
53657         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
53658         tests/test-memmem.c, tests/test-stpncpy.c:
53659         Update FSF postal mail address.
53660
53661 2005-05-13  Bruno Haible  <bruno@clisp.org>
53662
53663         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
53664         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
53665         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
53666         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
53667         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
53668         Add support for 64-bit integers in the MSVC compiler.
53669
53670 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53671
53672         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
53673
53674 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
53675
53676         * gnulib-tool (func_import): Sort and uniquify recommended includes.
53677
53678 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
53679
53680         * doc/getdate.texi (General date syntax): Don't say that date
53681         date --iso-8601=ns generates acceptable dates; it doesn't yet.
53682         Problem reported by Nic Ferrier.
53683
53684 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53685
53686         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
53687         specified in ai_socktype. Fix invalid ai_protocol
53688         check. ai_protocol is usually set to 0 or depending on
53689         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
53690         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
53691         ai_socktype / ai_protocol in the returned addrinfo structure.
53692
53693 2005-05-10  Simon Josefsson  <jas@extundo.com>
53694
53695         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
53696         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
53697
53698 2005-05-10  Karl Berry  <karl@gnu.org>
53699
53700         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
53701         (from http://www.gnu.org/licenses).
53702         * doc/COPYING.LIB: also rename to COPYING.LESSER.
53703         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
53704         fdl.texi suffices.
53705
53706 2005-05-10  Karl Berry  <karl@gnu.org>
53707
53708         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
53709         (COPYING.DOC): remove.
53710
53711         * config/srclist-update: new FSF address.
53712
53713 2005-05-10  Derek Price  <derek@ximbiot.com>
53714
53715         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
53716         possible.
53717
53718 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53719             Bruno Haible  <bruno@clisp.org>
53720
53721         * modules/inet_ntop: New file.
53722         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53723         inet_ntop.
53724
53725 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53726             Bruno Haible  <bruno@clisp.org>
53727
53728         * m4/inet_ntop.m4: New file.
53729
53730 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53731             Bruno Haible  <bruno@clisp.org>
53732
53733         * lib/inet_ntop.h: New file.
53734         * lib/inet_ntop.c: New file, from glibc with modifications.
53735
53736 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
53737
53738         * modules/time_r (License): Change to LGPL.
53739         * modules/extensions (License): Change to LGPL.  Actually,
53740         the license is more permissive than that, but currently gnulib-tool
53741         doesn't know how to handle more-permissive licenses.
53742
53743         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
53744         Problem reported by Dave Love.
53745
53746 2005-05-08  Jim Meyering  <jim@meyering.net>
53747
53748         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
53749         blank.
53750
53751 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
53752
53753         * modules/argmatch (Depends-on): Add stdbool.
53754         * modules/backupfile (Depends-on): Likewise.
53755         * modules/chdir-long (Depends-on): Likewise.
53756         * modules/closeout (Depends-on): Likewise.
53757         * modules/cycle-check (Depends-on): Likewise.
53758         * modules/dirname (Depends-on): Likewise.
53759         * modules/fnmatch (Depends-on): Likewise.
53760         * modules/fsusage (Depends-on): Likewise.
53761         * modules/fwriteerror (Depends-on): Likewise.
53762         * modules/getcwd (Depends-on): Likewise.
53763         * modules/getloadavg (Depends-on): Likewise.
53764         * modules/hard-locale (Depends-on): Likewise.
53765         * modules/makepath (Depends-on): Likewise.
53766         * modules/mountlist (Depends-on): Likewise.
53767         * modules/nanosleep (Depends-on): Likewise.
53768         * modules/posixtm (Depends-on): Likewise.
53769         * modules/quotearg (Depends-on): Likewise.
53770         * modules/readtokens (Depends-on): Likewise.
53771         * modules/readtokens0 (Depends-on): Likewise.
53772         * modules/readutmp (Depends-on): Likewise.
53773         * modules/save-cwd (Depends-on): Likewise.
53774         * modules/strftime (Depends-on): Likewise.
53775         * modules/userspec (Depends-on): Likewise.
53776         * modules/utimecmp (Depends-on): Likewise.
53777         * modules/xgetcwd (Depends-on): Likewise.
53778         * modules/xnanosleep (Depends-on): Likewise.
53779         * modules/xstrtod (Depends-on): Likewise.
53780         * modules/yesno (Depends-on): Likewise.
53781
53782 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
53783
53784         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
53785         needless checks.
53786
53787 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53788
53789         Merge from coreutils.  Among other things,
53790         add bulletproofing for cases where stdin, stdout, or stderr are closed.
53791         * lib/fd-safer.c: New file.
53792         * lib/fcntl-safer.h, open-safer.c: Remove.
53793         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
53794         * lib/dup-safer.c: Include unistd-safer.h first.
53795         Don't include errno.h.
53796         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
53797         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
53798         * lib/file-type.c: Rely on file-type.h change.
53799         * lib/getloadavg.c: Include unistd-safer.h.
53800         (getloadavg): Use safer open.
53801         * lib/getusershell.c: Include "stdio-safer.h".
53802         (getusershell): Use safer fopen.
53803         * lib/long-options.c (long_options): Use NULL rather than 0.
53804         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
53805         'free'.
53806         * lib/modechange.c: Likewise.
53807         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
53808         (MODE_DONE): New constant.
53809         (struct mode_change): Remove 'next' member.
53810         (make_node_op_equals): New function; like the old one of the
53811         same name, except it allocates an array.
53812         (mode_compile, mode_create_from_ref): Use it.
53813         (mode_compile): Allocate result as an array, not a linked list.
53814         Parse octal string ourself, so that we catch mistakes like "+0".
53815         (mode_adjust): Arg is an array, not a linked list.
53816         * lib/modechange.c: Include stat-macros.h, xalloc.h.
53817         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
53818         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
53819         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
53820         Remove.  This is now stat-macros.h's job.
53821         (talloc): Remove.  All callers replaced by xalloc, so that
53822         our invokers don't have to worry about reporting memory failures.
53823         (make_node_op_equals): Remove.
53824         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
53825         New constants.
53826         (struct mode_change): Moved here from modechange.h.
53827         (mode_append_entry): Remove.
53828         (mode_compile): Remove MASKED_OPS arg, since it encouraged
53829         apps to have incorrect behavior.  Use simpler algorithm for head
53830         and tail.  Don't futz with umask; that's now the job of mode_adjust.
53831         Detect more invalid usages rather than having somewhat-random behavior.
53832         Don't insert an "a=" action, as that leads to incorrect behavior.
53833         (mode_compile, mode_create_from_ref): Return NULL on error instead
53834         of an enum, since now there's only one way to have an error.  All
53835         callers changed.
53836         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
53837         at the correct time.  Simplify calculation of "+u" and its ilk.
53838         Don't mishandle "+X".
53839         (mode_free): Remove "register" and localize decls.
53840         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
53841         (struct mode_change): Move to modechange.c; callers don't
53842         need to see this stuff.
53843         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
53844         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
53845         (mode_change, mode_adjust): Reflect the new signatures noted above.
53846         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
53847         that might redefine system include files.
53848         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
53849         (my_usleep): Use NULL rather than (void *) 0.
53850         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
53851         Use siginterrupt to specify that system calls should be interrupted.
53852         (rpl_nanosleep): Move initialization of suspended closer to call of
53853         my_usleep.
53854         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
53855         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
53856         (desirable_utmp_entry): New function.
53857         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
53858         using x2nrealloc, to simplify logic.
53859         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
53860         size calculation.  Do not assume utmp file is a regular file.
53861         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
53862         (READ_UTMP_CHECK_PIDS): New constant.
53863         * lib/save-cwd.c: Include unistd-safer.h.
53864         (save_cwd): Use fd_safer.
53865         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
53866         [!_LIBC] Include "stat-macros.h" instead.
53867         * lib/unistd-safer.h (fd_safer): New decl.
53868
53869 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53870
53871         * modules/getloadavg (Depends-on): Add unistd-safer.
53872         * modules/getusershell (Depends-on): Add stdio-safer.
53873         * modules/lstat (Depends-on): Remove xalloc.
53874         * modules/mkstemp (Depends-on): Add stat-macros.
53875         * modules/modechange (Depends-on): Remove xstrtol.
53876         Add stat-macros, xalloc.
53877         * modules/save-cwd (Depends-on): Add unistd-safer.
53878         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
53879         * modules/unistd-safer (Files): Add lib/fd-safer.c
53880         (Makefile.am): Remove lib_SOURCES.
53881
53882         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
53883         Remove fcntl-safer; unistd-safer supersedes it.
53884
53885 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53886
53887         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
53888         AC_HEADER_STAT.
53889         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
53890         (gl_PREREQ_CHOWN): Remove.
53891         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
53892         it.  Don't require AC_HEADER_STAT.
53893         (gl_PREREQ_LSTAT): Remove.
53894         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
53895         Don't require AC_HEADER_STAT.
53896         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
53897         (gl_PREREQ_RMDIR): Remove.
53898         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
53899         mention stat-macros.h or AC_HEADER_STAT, since we'll make
53900         the stat-macros module a prerequisite.
53901         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
53902         * m4/filemode.m4 (gl_FILEMODE): Likewise.
53903         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
53904         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
53905         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
53906         variable names.
53907         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
53908         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
53909         variable prefixes.
53910         * m4/fcntl-safer.m4: Remove.
53911         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
53912         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
53913         Invoke gl_PREREQ_FD_SAFER.
53914         (gl_PREREQ_FD_SAFER): New macro.
53915         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
53916         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
53917         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
53918         Remove duplicate call to AC_LIBOBJ(readutmp).
53919         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
53920
53921         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
53922         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
53923
53924 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53925
53926         * MODULES.html.sh (Misc): Add byteswap.
53927
53928 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53929
53930         * modules/getcwd (Depends-on): Add extensions.
53931         * modules/openat (Depends-on): Likewise.
53932
53933 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53934
53935         * modules/byteswap: New file.
53936
53937 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53938
53939         * m4/byteswap.m4: New file.
53940
53941 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53942
53943         * lib/byteswap_.h: New file.
53944
53945 2005-04-25  Karl Berry  <karl@gnu.org>
53946
53947         * m4/gettext.m4: Update from GNU gettext 0.14.4.
53948
53949 2005-04-25  Albert Chin  <china@thewrittenword.com>
53950
53951         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
53952         Toolkit C bug.
53953
53954 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
53955
53956         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
53957         (func_ln_if_changed) Remove forcibly for no error message
53958         in case file does not exist.
53959
53960 2005-04-19  Simon Josefsson  <jas@extundo.com>
53961
53962         * gnulib-tool (Options): Make --symlink mean --symbolic.
53963
53964 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
53965
53966         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
53967
53968 2005-04-16  Simon Josefsson  <jas@extundo.com>
53969
53970         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
53971
53972 2005-04-15  Simon Josefsson  <jas@extundo.com>
53973
53974         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
53975
53976 2005-04-15  Simon Josefsson  <jas@extundo.com>
53977
53978         * gnulib-tool: Rename --symlink to --symbolic.
53979
53980 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
53981
53982         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
53983         symbolic links to files instead of copying/moving.  Add --aux-dir,
53984         specifying directory relative --dir where auxiliary build tools
53985         are placed.
53986
53987 2005-04-14  Bruno Haible  <bruno@clisp.org>
53988
53989         * modules/allocsa (License): Change to LGPL.
53990         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
53991
53992 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
53993
53994         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
53995         that "UTC +1 second" continues to work.  Problem reported
53996         by Dmitry V. Levin.
53997         (relunit_snumber): New rule.
53998         (relunit): Use it.
53999
54000 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
54001
54002         * lib/getdate.y (universal_time_zone_table): New constant.
54003         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
54004         universal_time_zone_table.
54005         (lookup_zone): Prefer universal_time_zone_table to
54006         local_time_zone_table, so that "GMT" time stamps are allowed in
54007         London during the summer.  Problem reported by Ian Abbott.
54008
54009 2005-04-12  Jim Meyering  <jim@meyering.net>
54010
54011         * lib/human.c (humblock): Set *options even when returning due to
54012         xstrtoumax conversion failure.  Thanks to a used-uninitialized
54013         warning from gcc-4.
54014
54015 2005-04-09  Jim Meyering  <jim@meyering.net>
54016
54017         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
54018         -Wuninitialized: initialize tm0.tm_year.
54019
54020 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
54021
54022         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
54023         count, since there's no maximum.  All uses changed.
54024         Add member dsts_seen.
54025         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
54026         not being INT_MAX.
54027         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
54028         Use pc_rels_seen to decide whther a date is absolute.
54029
54030         * lib/getdate.y (number): Don't overwrite year.
54031         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
54032         check.
54033
54034 2005-04-02  Simon Josefsson  <jas@extundo.com>
54035
54036         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
54037         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
54038
54039 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
54040
54041         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
54042         where no absolute path name can be longer than PATH_MAX.
54043
54044 2005-03-27  Jim Meyering  <jim@meyering.net>
54045
54046         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
54047
54048 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
54049
54050         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
54051         "one's complement" -> "ones' complement" in comment, as per Knuth.
54052         "value of type" -> "type or expression" in comment.
54053         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
54054
54055 2005-03-26  Jim Meyering  <jim@meyering.net>
54056
54057         Comment nits.
54058         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
54059         Correct typos: s/or/of/.
54060
54061 2005-03-26  Jim Meyering  <jim@meyering.net>
54062
54063         * modules/check-include-files: Move to ../ and rename to...
54064         * check-module: ...this.
54065
54066 2005-03-25  Jim Meyering  <jim@meyering.net>
54067
54068         * modules/xvasprintf (Files): Add xalloc.h.
54069
54070 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
54071
54072         * modules/gettext (Files): config/config.rpath ->
54073         build-aux/config.rpath
54074         * modules/iconv (Files): Likewise.
54075         Problem reported by Oskar Liljeblad.
54076
54077 2005-03-23  Jim Meyering  <jim@meyering.net>
54078
54079         * modules/check-include-files: New script to check for
54080         missing dependencies, multiple includes, etc.
54081
54082         * modules/c-strtold (Depends-on): Add xalloc.
54083         * modules/c-strtod (Depends-on): Add xalloc.
54084         * modules/hash (Depends-on): Add xalloc.
54085         (Files): Remove lib/xalloc.h.
54086
54087         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
54088         * modules/userspec (Files): Add lib/inttostr.h.
54089
54090 2005-03-23  Jim Meyering  <jim@meyering.net>
54091
54092         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
54093
54094 2005-03-22  Jim Meyering  <jim@meyering.net>
54095
54096         * modules/stat-macros: New module.
54097         * modules/canonicalize, modules/euidaccess, modules/file-type,
54098         * modules/filemode, modules/lchown, modules/makepath,
54099         * modules/rmdir, modules/stat: Depend on new stat-macros module
54100         rather than listing lib/stat-macros.h manually.
54101         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
54102
54103 2005-03-22  Jim Meyering  <jim@meyering.net>
54104
54105         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
54106
54107 2005-03-22  Bruno Haible  <bruno@clisp.org>
54108
54109         * config/srclist.txt: Replace target directory 'config' with
54110         'build-aux'.
54111         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
54112         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
54113         ../build-aux/.
54114
54115 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
54116
54117         * modules/chdir-long (Depends-on): Add mempcpy.
54118
54119         * modules/acl, modules/backupfile, modules/c-strtod,
54120         modules/c-strtold, modules/canon-host, modules/canonicalize,
54121         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
54122         modules/exclude, modules/exitfail, modules/file-type,
54123         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
54124         modules/getdate, modules/getline, modules/getpagesize,
54125         modules/getpass, modules/getugroups, modules/group-member,
54126         modules/hard-locale, modules/hash, modules/human, modules/idcache,
54127         modules/inttostr, modules/long-options, modules/makepath,
54128         modules/md5, modules/memcasecmp, modules/memcoll,
54129         modules/modechange, modules/mountlist, modules/path-concat,
54130         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
54131         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
54132         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
54133         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
54134         modules/strftime, modules/strndup, modules/strverscmp,
54135         modules/timespec, modules/unlocked-io, modules/userspec,
54136         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
54137         modules/yesno:
54138         Remove lib_SOURCES line from Makefile.am section, as this is now
54139         done automatically by the corresponding Autoconf macro.
54140
54141 2005-03-21  Jim Meyering  <jim@meyering.net>
54142
54143         Changes imported from coreutils.
54144
54145         * lib/cycle-check.c: Don't include xalloc.h.
54146
54147         * lib/path-concat.c: Don't include assert.h.
54148         (path_concat): Remove assertion that would have triggered
54149         for ABASE starting with more than one slash.
54150         Reported by Andreas Schwab.
54151
54152         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
54153         properly when ABASE is an absolute file name.
54154         Correct the description of this function.
54155         Include <assert.h>.
54156         Add an assertion and a test driver.
54157         This fixes a bug introduced on 2004-07-02.
54158         Andreas Schwab reported the resulting failure of cp --parents:
54159         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
54160
54161 2005-03-21  Jim Meyering  <jim@meyering.net>
54162
54163         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
54164         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
54165
54166 2005-03-21  Jim Meyering  <jim@meyering.net>
54167         and  Paul Eggert  <eggert@cs.ucla.edu>
54168
54169         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
54170         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
54171         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
54172         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
54173         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
54174         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
54175         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
54176         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
54177         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
54178         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
54179         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
54180         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
54181         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
54182         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
54183         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
54184         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
54185         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
54186         for these modules.
54187
54188 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
54189
54190         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
54191         (which shouldn't happen), generate nothing instead of returning 0
54192         immediately, so that nstrftime (NULL, ...) doesn't return 0.
54193
54194 2005-03-16  Bruno Haible  <bruno@clisp.org>
54195
54196         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
54197         HAVE_LONGLONG_64BIT.
54198
54199 2005-03-16  Bruno Haible  <bruno@clisp.org>
54200
54201         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
54202         HAVE_LONGLONG_64BIT.
54203
54204 2005-03-16  Bruno Haible  <bruno@clisp.org>
54205
54206         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
54207         HAVE_LONGLONG_64BIT.
54208
54209 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
54210
54211         * lib/strftime.c (my_strftime): Prepend space to format so that we can
54212         reliably distinguish strftime failure from empty output on POSIX
54213         hosts.
54214
54215 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
54216
54217         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
54218         (iconv_string): Don't guess a size-zero buffer, as that might cause
54219         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
54220         result would be 'too large', where 'too large' is (heuristically)
54221         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
54222         overflow concerns.  This will prevent some unwanted malloc failures
54223         when the inputs are very large.
54224
54225 2005-03-15  Karl Berry  <karl@gnu.org>
54226
54227         * config/srclist.txt (config.rpath): from gettext.
54228         * config/config.rpath: update.
54229
54230 2005-03-15  Bruno Haible  <bruno@clisp.org>
54231
54232         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
54233         to 'negate'.
54234
54235         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
54236         variable.
54237
54238         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
54239         results.
54240
54241 2005-03-14  Simon Josefsson  <jas@extundo.com>
54242
54243         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
54244         <fx@gnu.org>.
54245
54246 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
54247
54248         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
54249         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
54250         intprops.h.
54251         * lib/strtol.c: Likewise.
54252
54253 2005-03-14  Jim Meyering  <jim@meyering.net>
54254
54255         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
54256         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
54257         to be nonzero so that we (and caller) can detect the difference
54258         between a valid zero-length expansion and an error return, even
54259         when the underlying strftime fails before writing anything into
54260         that location.
54261
54262 2005-03-14  Bruno Haible  <bruno@clisp.org>
54263
54264         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
54265         Update from GNU gettext 0.14.3.
54266
54267 2005-03-10  Jim Meyering  <jim@meyering.net>
54268
54269         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
54270
54271 2005-03-10  Jim Meyering  <jim@meyering.net>
54272
54273         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
54274         so that this module works on systems without fchdir.
54275
54276 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
54277
54278         Factor int-properties macros into a single file, except for
54279         glibc-related files.
54280         * lib/intprops.h: New file.
54281         * lib/getloadavg.c: Include it instead of limits.h.
54282         (INT_STRLEN_BOUND): Remove.
54283         * lib/human.c: Include intprops.h.
54284         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
54285         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
54286         302/1000.
54287         * lib/inttostr.h: Include intprops.h instead of limits.h.
54288         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
54289         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
54290         for consistency with intprops.h.
54291         (time_t_is_integer, twos_complement_arithmetic): Use them.
54292         * lib/sig2str.h: Include <signal.h>, intprops.h.
54293         (INT_STRLEN_BOUND): Remove.
54294         * lib/strftime.c (TYPE_SIGNED): Remove.
54295         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
54296         * lib/strtol.c: Adjust comments to match intprops.h.
54297         * lib/userspec.c: Include intprops.h.
54298         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
54299         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
54300         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
54301         instead of rolling our own expressions.
54302         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
54303
54304         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
54305         instead of int.
54306         (my_strftime): Do not mishandle years close to INT_MAX, by doing
54307         the right thing even if adding 1900 would overflow.  Similarly
54308         for tm_mon + 1 and tm_yday + 1.
54309         Make %Y always equivalent to %C%y, and similarly for %G and %g.
54310         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
54311         (DO_SIGNED_NUMBER): New macro.
54312         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
54313
54314 2005-03-07  Bruno Haible  <bruno@clisp.org>
54315
54316         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
54317
54318 2005-03-07  Bruno Haible  <bruno@clisp.org>
54319
54320         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
54321
54322 2005-03-04  Derek R. Price  <derek@ximbiot.com>
54323
54324         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
54325         (func_import): Only replace files via --import when they have actually
54326         changed.
54327
54328 2005-03-03  Derek R. Price  <derek@ximbiot.com>
54329
54330         * m4/mmap-anon.m4: New file.
54331         * m4/pagealign_alloc.m4: New file.
54332
54333 2005-03-03  Derek R. Price  <derek@ximbiot.com>
54334             Bruno Haible  <bruno@clisp.org>
54335
54336         * modules/pagealign_alloc: New file.
54337         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
54338
54339 2005-03-03  Derek R. Price  <derek@ximbiot.com>
54340             Bruno Haible  <bruno@clisp.org>
54341
54342         * lib/pagealign_alloc.h: New file.
54343         * lib/pagealign_alloc.c: New file.
54344
54345 2005-03-03  Bruno Haible  <bruno@clisp.org>
54346
54347         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
54348         Use an all-permissive copyright notice, recommended by RMS.
54349
54350 2005-03-02  Bruno Haible  <bruno@clisp.org>
54351
54352         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
54353         of AIX, the replacement has to be done only after <string.h> is
54354         included, therefore not in config.h. stpncpy.h does the replacement,
54355         and stpncpy.c uses it.
54356
54357 2005-03-02  Bruno Haible  <bruno@clisp.org>
54358
54359         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
54360         stpncpy.c uses it.
54361
54362 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
54363
54364         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
54365         The workaround isn't strictly needed for POSIX conformance, and
54366         it's too much of a pain to configure and maintain.  We'll ask
54367         people to fix their kernels instead.
54368         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
54369         (NANOSLEEP_BUG_WORKAROUND): Remove.
54370         (xnanosleep): Remove the workaround.
54371
54372 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
54373
54374         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
54375         Reported by Derek Price.
54376         (Include): Add "timespec.h".
54377
54378         * modules/xnanosleep (Depends-on): Remove gethrxtime.
54379
54380 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
54381
54382         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
54383         to detect nanosleep bug.
54384
54385 2005-03-01  Bruno Haible  <bruno@clisp.org>
54386
54387         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
54388
54389 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
54390
54391         * modules/gethrxtime: New file.
54392         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
54393         (Depends-on): Add gethrxtime.
54394         (configure.ac): Add gl_XNANOSLEEP.
54395         (Makefile.am): Remove lib_SOURCES line.
54396
54397 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
54398
54399         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
54400         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
54401
54402 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
54403
54404         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
54405         * lib/timespec.h (gettime): Return void, since it always
54406         succeeds now.  All uses changed.
54407         * lib/gettime.c (gettime) Likewise.
54408         [HAVE_NANOTIME]: Prefer nanotime.
54409         Assume gettimeofday succeeds, as POSIX requires.
54410         Assime time () succeeds, since other code already does.
54411         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
54412         (timespec_subtract): Remove.
54413         (NANOSLEEP_BUG_WORKAROUND): New constant.
54414         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
54415         things considerably.  Use it only on GNU/Linux hosts, since the
54416         workaround shouldn't be needed elsewhere.
54417
54418 2005-02-24  Bruno Haible  <bruno@clisp.org>
54419
54420         * modules/gettext (Files): Add m4/glibc2.m4.
54421
54422 2005-02-24  Bruno Haible  <bruno@clisp.org>
54423
54424         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
54425         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
54426         * m4/progtest.m4:
54427         Update from GNU gettext 0.14.2.
54428         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
54429
54430 2005-02-24  Bruno Haible  <bruno@clisp.org>
54431
54432         * lib/localcharset.c: Update from GNU gettext 0.14.2.
54433         * lib/config.charset: Update from GNU gettext 0.14.2.
54434
54435 2005-02-24  Bruno Haible  <bruno@clisp.org>
54436
54437         * lib/gettext.h: Update from GNU gettext 0.14.2.
54438
54439 2005-02-23  Simon Josefsson  <jas@extundo.com>
54440
54441         * m4/iconvme.m4: New file.
54442
54443 2005-02-23  Jim Meyering  <jim@meyering.net>
54444
54445         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
54446         change.
54447         Thanks to Bruno Haible for catching it.
54448
54449 2005-02-22  Simon Josefsson  <jas@extundo.com>
54450
54451         * modules/iconvme: New file.
54452
54453         * MODULES.html.sh: Add iconvme.
54454
54455 2005-02-22  Simon Josefsson  <jas@extundo.com>
54456
54457         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
54458
54459 2005-02-22  Simon Josefsson  <jas@extundo.com>
54460
54461         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
54462
54463 2005-02-22  Jim Meyering  <jim@meyering.net>
54464
54465         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
54466         s/ifndef/ifdef/.
54467
54468 2005-02-20  Neil Conway  <neilc@samurai.com>
54469
54470         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
54471         returned by OSX/Darwin if the specified buffer is not large
54472         enough for the hostname.
54473
54474 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54475
54476         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
54477         pass it to _help, otherwise the latter coredumps trying to
54478         dereference state.root_argp.
54479
54480 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
54481
54482         * modules/chdir-long (Depends-on): Add memrchr.
54483         * modules/memrchr (Files): Add lib/memrchr.h.
54484         (Include): "memrchr.h".
54485
54486 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
54487
54488         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
54489
54490 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
54491
54492         * lib/memrchr.h: New file.
54493         * lib/chdir-long.c: Include it.
54494         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
54495         Don't bother including stddef.h.
54496
54497 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
54498
54499         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
54500         inclusion.
54501         Include <sys/types.h>, for dev_t.
54502         (ME_DUMMY, ME_REMOTE): Move from here....
54503         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
54504         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
54505         Dmitry V. Levin.
54506         Include mountlist.h first, to test the interface.
54507
54508 2005-01-29  Bruno Haible  <bruno@clisp.org>
54509
54510         * lib/progname.c (program_name): Initialize.
54511         Needed when linking statically on MacOS X.
54512
54513 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
54514
54515         Sync from coreutils.
54516         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
54517         (Depends-on): Add c-strtod.
54518         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
54519
54520 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
54521
54522         Sync from coreutils.
54523         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
54524
54525         Remove files that are specific to coreutils.
54526         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
54527
54528 2005-01-28  Bruno Haible  <bruno@clisp.org>
54529
54530         * modules/javacomp: New file.
54531         * MODULES.html.sh (Java): Add javacomp.
54532
54533 2005-01-28  Bruno Haible  <bruno@clisp.org>
54534
54535         * m4/javacomp.m4: New file, from GNU gettext.
54536
54537 2005-01-28  Bruno Haible  <bruno@clisp.org>
54538
54539         * lib/javacomp.sh.in: New file, from GNU gettext.
54540         * lib/javacomp.h: New file, from GNU gettext.
54541         * lib/javacomp.c: New file, from GNU gettext.
54542
54543 2005-01-26  Simon Josefsson  <jas@extundo.com>
54544
54545         * lib/gai_strerror.c: Use GPL in header.
54546
54547 2005-01-26  Bruno Haible  <bruno@clisp.org>
54548
54549         * modules/javaexec: New file.
54550         * MODULES.html.sh (Java): Add javaexec.
54551
54552 2005-01-26  Bruno Haible  <bruno@clisp.org>
54553
54554         * m4/javaexec.m4: New file, from GNU gettext.
54555
54556 2005-01-26  Bruno Haible  <bruno@clisp.org>
54557
54558         * lib/javaexec.sh.in: New file, from GNU gettext.
54559         * lib/javaexec.h: New file, from GNU gettext.
54560         * lib/javaexec.c: New file, from GNU gettext.
54561
54562 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54563
54564         * modules/lchown (Depends-on): Remove lchown.h
54565
54566 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54567
54568         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
54569         must be defined if the header file was not found, in order
54570         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
54571
54572 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54573
54574         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
54575         initializers for struct pentry_state.
54576         (__argp_error): Check return value of __asprintf
54577         (__argp_failure): Translate error message
54578
54579         * lib/argp-parse.c: Removed braces around the expansion of N_()
54580
54581 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
54582
54583         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
54584         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
54585         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
54586         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
54587         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
54588         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
54589         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
54590         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
54591         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
54592         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
54593         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
54594         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
54595         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
54596         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
54597         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
54598         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
54599         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
54600         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
54601         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
54602         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
54603         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
54604         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
54605         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
54606         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
54607         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
54608         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
54609         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
54610         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
54611         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
54612         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
54613         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
54614         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
54615         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
54616         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
54617         xstrtol.m4, xstrtoumax.m4, yesno.m4:
54618         Use an all-permissive copyright notice, recommended by RMS.
54619
54620 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
54621
54622         * modules/chdir-long (Depends-on): Remove mempcpy.
54623
54624 2005-01-21  Jim Meyering  <jim@meyering.net>
54625
54626         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
54627         same value as for Solaris 9.
54628
54629         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
54630         component length.  This included changing the parameter to be
54631         of type `char *' rather than `char const *'.
54632         * lib/chdir-long.h (chdir_long): Update prototype.
54633
54634         * lib/openat.c (fdopendir, fstatat): New functions.
54635         * lib/openat.h: Include headers required for use of DIR and struct
54636         stat.
54637         [AT_SYMLINK_NOFOLLOW]: Define.
54638         (fdopendir, fstatat): Add prototypes.
54639
54640 2005-01-21  Bruno Haible  <bruno@clisp.org>
54641
54642         * modules/classpath: New file.
54643         * MODULES.html.sh (Java): Add classpath.
54644
54645 2005-01-21  Bruno Haible  <bruno@clisp.org>
54646
54647         * lib/classpath.h: New file, from GNU gettext.
54648         * lib/classpath.c: New file, from GNU gettext.
54649
54650 2005-01-20  Simon Josefsson  <jas@extundo.com>
54651
54652         * modules/version-etc-fsf: New file.
54653
54654 2005-01-20  Simon Josefsson  <jas@extundo.com>
54655
54656         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
54657         * lib/version-etc.c: Remove version_etc_copyright.
54658         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
54659         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
54660
54661 2005-01-20  Simon Josefsson  <jas@extundo.com>
54662
54663         * lib/base64.h (isbase64): Add.
54664
54665         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
54666         using a unsigned prototype, don't inline.
54667         (base64_decode): Use it.
54668
54669 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
54670
54671         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
54672         it.
54673
54674 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
54675
54676         * lib/save-cwd.c (save_cwd): Remove code to support the case
54677         where fchdir is missing or flaky.
54678
54679 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
54680
54681         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
54682
54683 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
54684
54685         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
54686         AC_LIBSOURCES now does this.
54687         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
54688         with new ullong_max module.
54689
54690 2005-01-19  Bruno Haible  <bruno@clisp.org>
54691
54692         * modules/sh-quote: New file.
54693         * MODULES.html.sh (Executing programs): Add sh-quote.
54694
54695 2005-01-19  Bruno Haible  <bruno@clisp.org>
54696
54697         * lib/sh-quote.h: New file, from GNU gettext.
54698         * lib/sh-quote.c: New file, from GNU gettext.
54699
54700 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
54701
54702         Merge from coreutils.
54703         * m4/ullong_max.m4: New file.
54704         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
54705         (gl_MACROS): Assume localeconv exists.
54706
54707 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
54708
54709         Merge changes from coreutils, as described below in several
54710         changelogs dated today.
54711
54712         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
54713         (O_DIRECTORY): Remove; not needed here, since "." must be
54714         a directory.  All uses removed.
54715         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
54716         universal on Suns, and we also need to test for IRIX.
54717         Revamp code to use 'if' rather than '#if'.
54718         Avoid unnecessary comparison of cwd->desc to 0.
54719
54720         * lib/utimens.c (futimens): Robustify the previous patch, by checking
54721         for known valid error numbers rather than observed invalid ones.
54722
54723 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
54724
54725         * modules/ullong_max: New file.
54726
54727         * modules/chdir-long, modules/openat: New files.
54728         * modules/save-cwd (Depends-on): Depend on chdir-long.
54729         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
54730
54731 2005-01-18  Jim Meyering  <jim@meyering.net>
54732
54733         Merge from coreutils.
54734         * m4/chdir-long.m4, m4/openat.m4: New files.
54735         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
54736         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
54737         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
54738         is sane and DOES follow symlinks.  Besides, testing 20 different
54739         systems found no broken chown implementations.
54740         Prompted by a change in rsync's copy of this macro.
54741         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
54742
54743         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
54744
54745         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
54746         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
54747         NULL-means-set-to-current-time semantics.
54748         Remove temporary file immediately, rather than waiting
54749         for configure's at-exit trap code to do it.
54750
54751 2005-01-18  Jim Meyering  <jim@meyering.net>
54752
54753         * lib/version-etc.c (version_etc_copyright): Update copyright date.
54754
54755         * lib/utimens.c (futimens): Account for the fact that futimes
54756         can also fail with errno == ENOSYS or errno == ENOENT.
54757         Patch from Dmitry V. Levin.
54758
54759         Change the name of the robust chdir function from chdir to chdir_long.
54760         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
54761         (restore_cwd): Use chdir_long, not chdir.
54762         * lib/chdir-long.c: Renamed from chdir.c.
54763         * lib/chdir-long.h: Renamed from chdir.h.
54764         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
54765         Hurd.
54766
54767 2005-01-18  Bruno Haible  <bruno@clisp.org>
54768
54769         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
54770         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
54771         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
54772         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
54773         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
54774         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
54775         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
54776         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
54777         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
54778         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
54779         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
54780         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
54781         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
54782         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
54783         Use an all-permissive copyright notice, recommended by RMS.
54784
54785 2005-01-18  Bob Proulx  <bob@proulx.com>
54786
54787         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
54788         simplify offsetof() macro construct to avoid compile failure with
54789         native HP-UX 11.0 ANSI C compiler.
54790
54791 2005-01-17  Bruno Haible  <bruno@clisp.org>
54792
54793         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
54794         redundant because stpncpy.m4 takes care of it.
54795
54796 2005-01-17  Bruno Haible  <bruno@clisp.org>
54797
54798         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
54799
54800 2005-01-17  Bruno Haible  <bruno@clisp.org>
54801
54802         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
54803         used.
54804
54805 2005-01-17  Bruno Haible  <bruno@clisp.org>
54806
54807         * lib/fwriteerror.h (fwriteerror): Change specification to include
54808         fclose.
54809         * lib/fwriteerror.c: Include <stdbool.h>.
54810         (fwriteerror): At the end, close the file stream. Record whether
54811         stdout was already closed.
54812
54813 2005-01-17  Bruno Haible  <bruno@clisp.org>
54814
54815         * lib/execute.c (environ): Declare if needed.
54816         * lib/pipe.c (environ): Likewise.
54817         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
54818
54819 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54820
54821         * modules/argp: Depend on vsnprintf
54822
54823 2005-01-10  Jim Meyering  <jim@meyering.net>
54824
54825         * modules/closeout (Depends-on): Add atexit.
54826
54827 2005-01-06  Bruno Haible  <bruno@clisp.org>
54828
54829         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
54830
54831 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
54832
54833         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
54834         definitions to be after all include files, to avoid collisions.
54835         Problem reported by Bob Proulx.
54836
54837 2005-01-04  Jim Meyering  <jim@meyering.net>
54838
54839         Changes imported from coreutils.
54840         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
54841         as the mkstemp template, use a temporary directory and an
54842         8.3-friendly template to avoid trouble on systems like DJGPP.
54843         Reported by Juan M. Guerrero via Stepan Kasal.
54844         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
54845         close. Remove the temporary directory right away, rather than waiting
54846         for configure's at-exit trap code to do it.
54847         Suggestion from Stepan Kasal.
54848
54849 2005-01-01  Simon Josefsson  <jas@extundo.com>
54850
54851         * gnulib-tool: Print #include directives when --import'ing.
54852
54853 2004-12-28  Simon Josefsson  <jas@extundo.com>
54854
54855         * tests/test-base64.c: Include required header files.  Remove
54856         unused variables.
54857
54858 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
54859
54860         * modules/error (Depends-on): Remove gettext.
54861
54862 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
54863
54864         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
54865         not needed.  This removes a dependency on the gettext module.
54866         [defined _LIBC]: Do not include <libintl.h>; not needed.
54867
54868 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
54869
54870         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
54871         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
54872
54873 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
54874
54875         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
54876         HAVE_DECL_STRTOLD.
54877
54878 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54879
54880         * modules/getdate (Depends-on): Remove alloca-opt.
54881
54882 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54883
54884         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
54885
54886 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54887
54888         * lib/argp-parse.c: Include <stddef.h>.
54889         (alignof, alignto): New macros.
54890         (parser_init): Don't assume that void * is aligned sufficiently
54891         for struct option.
54892
54893         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
54894         need to extend the stack.
54895         (YYINITDEPTH): New macro, so that the initial stack isn't overly
54896         large.
54897
54898 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54899
54900         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
54901
54902 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
54903
54904         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
54905         (2004-10-24) change.  Apparently this was a false alarm.
54906
54907         * modules/getdate: Depend on alloca-opt, not alloca.
54908
54909 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
54910
54911         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
54912         Remove now-obsolete comment about AIX.
54913         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
54914         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
54915         (YYMAXDEPTH): New macro.
54916
54917 2004-12-18  Simon Josefsson  <jas@extundo.com>
54918
54919         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
54920
54921 2004-12-18  Bruno Haible  <bruno@clisp.org>
54922
54923         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
54924
54925 2004-12-18  Bruno Haible  <bruno@clisp.org>
54926
54927         * lib/fatal-signal.c (fatal_signals): Make non-const.
54928         (init_fatal_signals): New function.
54929         (uninstall_handlers, install_handlers): Ignore signals that were set to
54930         SIG_IGN.
54931         (at_fatal_signal): Call init_fatal_signals.
54932         (init_fatal_signal_set): Likewise. Ignore signals that were set to
54933         SIG_IGN.
54934         Reported by Paul Eggert.
54935
54936 2004-12-18  Bruno Haible  <bruno@clisp.org>
54937
54938         * doc/alloca.texi: New file.
54939         * doc/alloca-opt.texi: New file.
54940
54941 2004-12-17  Jim Meyering  <jim@meyering.net>
54942
54943         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
54944         Otherwise, install-sh could exit with improper exit status when
54945         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
54946
54947 2004-12-16  Simon Josefsson  <jas@extundo.com>
54948
54949         * tests/test-base64.c: Add license.
54950
54951 2004-12-15  Stepan Kasal  <address@hidden>
54952
54953         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
54954
54955 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
54956
54957         * modules/getcwd (Files): Add m4/d-ino.m4.
54958         Suggested by Mark D. Baushke.
54959
54960 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
54961
54962         * lib/getdate.y (textint): New member "negative".
54963         (time_zone_hhmm): New function.
54964         Expect 14 shift-reduce conflicts, not 13.
54965         (o_colon_minutes): New rule.
54966         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
54967         (yylex): Set the "negative" member of signed numbers.
54968
54969 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
54970
54971         * doc/getdate.texi (Time of day items, Time zone items):
54972         Describe new formats +00:00, UTC+00:00.
54973
54974 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
54975
54976         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
54977         spurious "-l"s.  Problem reported by Stepan Kasal.
54978
54979 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
54980
54981         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
54982         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
54983
54984 2004-12-04  Simon Josefsson  <jas@extundo.com>
54985
54986         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
54987         Vandoorselaere <yoann@prelude-ids.org>.
54988
54989 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54990
54991         Changes imported from coreutils.
54992         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
54993         exist.
54994         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
54995
54996 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54997
54998         Changes imported from coreutils.
54999         * lib/hard-locale.c: Assume <locale.h> exists.
55000         Include "strdup.h".
55001         (GLIBC_VERSION): New macro.
55002         (hard_locale): Assume setlocale exists.
55003         Rewrite to avoid #ifdef.
55004         Use strdup rather than malloc + strcpy.
55005         * lib/human.c: Assume <locale.h> exists.
55006         (human_readable): Assume localeconv exists.
55007
55008 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
55009
55010         * modules/hard-locale (Depends-on): Add strdup.
55011
55012 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
55013
55014         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
55015         convert T2, not T.  (Imported from libc.)
55016
55017 2004-11-30  Simon Josefsson  <jas@extundo.com>
55018
55019         * modules/restrict (License): Change to LGPL.
55020
55021 2004-11-30  Simon Josefsson  <jas@extundo.com>
55022
55023         * m4/restrict.m4: Add copyright and copying conditions.
55024
55025 2004-11-30  Simon Josefsson  <jas@extundo.com>
55026
55027         * m4/base64.m4: New file.
55028
55029 2004-11-30  Simon Josefsson  <jas@extundo.com>
55030
55031         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
55032         base64.
55033
55034         * tests/test-base64.c: New file.
55035
55036         * modules/base64: New file.
55037
55038 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
55039
55040         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
55041         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
55042
55043         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
55044
55045 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
55046
55047         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
55048         (__getcwd.c): Don't restore errno; glibc doesn't.
55049         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
55050         first, falling back to our code only if its results look suspicious.
55051         Ensure that the resulting buffer is only as large as necessary.
55052
55053         * lib/readutmp.c: Include readutmp.h first.
55054         Include <errno.h>, since readutmp.h no longer does that.
55055         * lib/readutmp.h: Don't include <errno.h>,
55056         <sys/param.h>, <time.h>; not needed to establish interface.
55057         (errno): Remove decl.
55058         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
55059         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
55060         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
55061
55062 2004-11-28  Simon Josefsson  <jas@extundo.com>
55063
55064         * lib/base64.h, base64.c: New file.
55065
55066 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
55067
55068         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
55069
55070 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
55071
55072         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
55073         (Depends-on): Remove pathmax, same.  Add mempcpy.
55074         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
55075         (Makefile.am): Append getcwd.h to lib_SOURCES.
55076         (Include): Add getcwd.h.
55077         (Maintainer): Change from Jim Meyering to "all, glibc",
55078         since getdate now uses intended-for-glibc code.
55079         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
55080         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
55081
55082 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
55083
55084         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
55085         HP's ANSI C compiler.
55086         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
55087         Declaring int functions causes warnings on some modern systems and
55088         shouldn't be needed to compile on ancient ones.
55089         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
55090         defined.
55091
55092         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
55093         with the following changes.
55094         (__set_errno): Parenthesize properly.
55095         Include <stdbool.h>.
55096         (MIN, MAX, MATCHING_INO): New macros.
55097         (__getcwd): Define with prototype, not K&R form.
55098         Use heuristics to allocate default buffer on stack if possible.
55099         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
55100         behavior, and to avoid the PATH_MAX limit when computing
55101         ../../../../...
55102         Use MATCHING_INO to compare inode number to file.
55103         Check for arithmetic overflow in size calculations.
55104         Fix bug in reallocation of dot array that caused getcwd to fail
55105         on directories nested deeper than 75.
55106         Be more careful about saving errno on error.
55107         Do not use realloc; use only free+malloc, as this is a bit
55108         more flexible and avoids a needless copy operation.
55109         Do not inspect st_dev and st_ino for symbolic links; POSIX
55110         doesn't specify the latter.
55111         Check for closedir errors.
55112         Avoid needless casts.
55113         Use "#ifdef weak_alias" around weak_alias, to be like other
55114         glibc code.
55115         The following changes to getcwd.c have effect only when used in
55116         gnulib; they have no effect inside glibc proper.
55117         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
55118         as alloca isn't used.
55119         (alloca, __alloca): Likewise.
55120         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
55121         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
55122         unconditionally, as gnulib assumes C89 or better.
55123         Do not include <sys/param.h>.
55124         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
55125         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
55126         better.
55127         (NULL) [!defined NULL]: Remove; we assume C89 or better.
55128         Include <dirent.h> in a way that is compatible with modern Autoconf.
55129         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
55130         New macros, if not already defined.
55131         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
55132         Use "_LIBC", not "defined _LIBC", for consistency.
55133         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
55134         a mempcpy module.
55135         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
55136         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
55137         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
55138         credit only to Jim Meyering and adjust the copyright dates.
55139         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
55140         <stdlib.h>, <unistd.h>, "pathmax.h".
55141         Instead, include "xgetcwd.h" (first) and "getcwd.h".
55142         (INITIAL_BUFFER_SIZE): Remove.
55143         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
55144
55145 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
55146
55147         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
55148         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
55149         Use the _ONCE methods, for efficiency.
55150         Check for fcntl.h.  In test program, include <errno.h>
55151         and <fcntl.h> if available.  Remove old K&R cruft from
55152         test program.  Check for common errors in GNU/Linux,
55153         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
55154         don't do AC_LIBOBJ, as that's getcwd.m4's job.
55155         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
55156         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
55157         name accordingly.
55158         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
55159         accommodate new getcwd.c.
55160         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
55161         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
55162         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
55163         that's all we need now.
55164
55165 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55166
55167         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
55168         argp-parse.c depends on getopt internals, that means we should
55169         always use our getopt, to be on the safe side.
55170         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
55171         order not to spoil the result of an eventual previous invocation
55172         of gl_GETOPT_SUBSTITUTE.
55173
55174 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55175
55176         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
55177         redefinition warnings. To avoid them, include the defines
55178         in `#if !defined __need_getopt ... #endif'. The only place
55179         where __getopt_argv_const is used is in definitions
55180         of getopt_long and getopt_long_only below, which are as well
55181         protected by `#ifndef __need_getopt'.
55182         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
55183         __need_getopt after including <stdio.h> and <unistd.h> These
55184         headers might have defined it.
55185
55186 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
55187
55188         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
55189
55190 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
55191
55192         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
55193         (futimens): New function, which uses futimes if available.
55194         (futimens, utimens): Support timespec==NULL, with same semantics
55195         as utime and utimens.
55196         * lib/utimens.h (futimens): New decl.
55197
55198 2004-11-23  Jim Meyering  <jim@meyering.net>
55199
55200         * lib/getopt_.h: Remove trailing blanks.
55201
55202 2004-11-23  Jim Meyering  <jim@meyering.net>
55203
55204         * lib/__fpending.c: Add comment.
55205
55206 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
55207
55208         * modules/canonicalize (Depends-on): Add xreadlink.
55209         Problem reported by James Youngman.
55210
55211 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
55212
55213         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
55214         New macros.
55215         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
55216         optopt): Use them instead of invoking ## directly; otherwise, the
55217         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
55218
55219 2004-11-19  Bruno Haible  <bruno@clisp.org>
55220
55221         * lib/strtok_r.c: Move comments from here...
55222         * lib/strtok_r.h: ... to here.
55223
55224 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
55225
55226         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
55227         implementations that mishandle size_t overflow.
55228
55229 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
55230
55231         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
55232         might fail.  Problem reported by Yoann Vandoorselaere.
55233         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
55234         implementations that mishandle size_t overflow.
55235
55236 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55237
55238         * modules/canon-host (Depends-on): Add strdup.
55239
55240 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55241
55242         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
55243
55244 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55245
55246         * lib/canon-host.c: Include "strdup.h".
55247         (canon_host): Use getaddrinfo if available, so that IPv6 works.
55248         Use strdup instead of malloc/strcpy to duplicate strings.
55249
55250         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
55251         (human_space_before_unit): New constant.
55252         * lib/human.c (human_readable): Support it.
55253
55254         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
55255         (xgetcwd): Set errno correctly when failing.
55256         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
55257         the failure is actually due to a PATH_MAX problem.
55258
55259         Further getopt changes to make it more likely that glibc will
55260         buy the changes back.
55261         * lib/getopt.c (POSIXLY_CORRECT): New constant.
55262         (getopt): Use it, so to preserve glibc semantic
55263         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
55264         when compiling for libc.
55265         * lib/getopt_.h (__getopt_argv_const): Bring it back.
55266         (getopt_long, getopt_long_only): Use it.
55267
55268         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
55269         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
55270         (getopt): Argv is now char * const *, as per standard.
55271         (_getopt_internal_r, _getopt_internal): Argv is now char **,
55272         not char *__getopt_argv_const *.
55273         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
55274         _getopt_long_only_r): Likewise.
55275         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
55276         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
55277         _getopt_long_r, _getopt_long_only_r): Likewise.
55278         * lib/getopt_.h (__getopt_argv_const): Remove.
55279         (getopt): Argv is now char * const *, as per standard.
55280
55281         * lib/getdate.y (tORDINAL): New token.
55282         (day, relunit): Allow it for relative times.
55283         (relative_time_table): Use tORDINAL for ordinals.
55284
55285 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55286
55287         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
55288         Document that "second" isn't allowed as an ordinal number.
55289
55290 2004-11-16  Jim Meyering  <jim@meyering.net>
55291
55292         * modules/closeout (Depends-on): Add fpending.
55293
55294 2004-11-15  Jim Meyering  <jim@meyering.net>
55295
55296         * lib/closeout.c: Include "__fpending.h" once again.
55297         Include <stdbool.h>.
55298         (close_stdout): Don't fail just because stdout was closed initially,
55299         since some programs don't write to stdout in the normal course of
55300         operation (other than --version and --help), and we don't want this
55301         function to make e.g. `touch file >&-' fail.
55302         But do fail if it was closed and someone has tried to write to it.
55303         E.g., `printf foo >&-' must fail.
55304
55305 2004-11-13  Jim Meyering  <jim@meyering.net>
55306
55307         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
55308
55309 2004-11-12  Simon Josefsson  <jas@extundo.com>
55310
55311         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
55312         small doc fix is still pending.
55313
55314 2004-11-11  Simon Josefsson  <jas@extundo.com>
55315
55316         * modules/strtok_r: New file.
55317
55318         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
55319         strtok_r.
55320
55321 2004-11-11  Simon Josefsson  <jas@extundo.com>
55322
55323         * m4/strtok_r.m4: New file.
55324
55325         * m4/getopt.m4: Replace opterr.
55326
55327 2004-11-11  Simon Josefsson  <jas@extundo.com>
55328
55329         * lib/strtok_r.h, strtok_r.c: New file.
55330
55331 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
55332
55333         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
55334         of replacing opterr, getopt, etc.  This should handle the
55335         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
55336
55337 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
55338
55339         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
55340         we can stop lying to compilers about the constness of argv when we
55341         are compiled outside glibc.
55342         (getopt, getopt_long, getopt_long_only): Use it.
55343         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
55344         _getopt_internal, getopt): Likewise.
55345         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
55346         _getopt_long_only_r): Likewise.
55347         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
55348         _getopt_long_r, _getopt_long_only_r): Likewise.
55349
55350         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
55351         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
55352         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
55353         the other external symbols.
55354         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
55355         declaration, since the above renaming now works around collisions.
55356
55357 2004-11-11  Jim Meyering  <jim@meyering.net>
55358
55359         * lib/linebreak.c: Remove trailing blanks.
55360         * lib/alloca_.h: Likewise.
55361         * lib/acosl.c: Likewise.
55362         * lib/euidaccess.c: Likewise.
55363         * lib/allocsa.h: Likewise.
55364
55365 2004-11-10  Simon Josefsson  <jas@extundo.com>
55366
55367         * m4/getaddrinfo.m4: New file.
55368
55369 2004-11-10  Simon Josefsson  <jas@extundo.com>
55370
55371         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
55372
55373 2004-11-10  Simon Josefsson  <jas@extundo.com>
55374
55375         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
55376         getaddrinfo.
55377
55378         * modules/getaddrinfo: New file.
55379
55380 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
55381
55382         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
55383
55384 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
55385
55386         * lib/mktime.c (SHR): New macro, which is a portable
55387         substitute for >> that should work even on Crays.
55388         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
55389         Problem reported by Mark D. Baushke in
55390         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
55391         * lib/getdate.y (SHR): Likewise.
55392         (tm_diff): Use it.
55393         * lib/strftime.c (SHR): Likewise.
55394         (tm_diff): Use it.
55395         * lib/quotearg.c (struct quoting_options): Use unsigned int for
55396         quote_these_too, so that right shifts are well defined.  All uses
55397         changed.
55398
55399 2004-11-10  Jim Meyering  <jim@meyering.net>
55400
55401         Ensure that no close failure goes unreported.
55402         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
55403         return early when it seems there's nothing to flush.
55404         Don't include __fpending.h.
55405
55406 2004-11-10  Jim Meyering  <jim@meyering.net>
55407
55408         * modules/closeout (Depends-on): Remove fpending.
55409
55410 2004-11-10  Jim Meyering  <jim@meyering.net>
55411
55412         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
55413
55414 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
55415
55416         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
55417         gl_FUNC_STRFTIME.
55418         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
55419         and AC_REQUIRE when possible, to avoid duplicate checks.
55420         Check for <wchar.h>.
55421
55422 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
55423
55424         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
55425
55426 2004-11-09  Bruno Haible  <bruno@clisp.org>
55427
55428         * m4/sockpfaf.m4: New file.
55429
55430 2004-11-05  Bruno Haible  <bruno@clisp.org>
55431
55432         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
55433         Reported by Mark D. Baushke <mdb@cvshome.org>.
55434
55435 2004-11-04  Bruno Haible  <bruno@clisp.org>
55436
55437         2004-09-11  Bruno Haible  <bruno@clisp.org>
55438                 * allocsa.valgrind: New file.
55439         2004-02-06  Bruno Haible  <bruno@clisp.org>
55440                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
55441                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
55442                 Reported by Christopher Seip <chris.seip@hp.com>.
55443
55444 2004-11-04  Bruno Haible  <bruno@clisp.org>
55445
55446         * modules/allocsa (Files): Add lib/allocsa.valgrind.
55447         (Makefile.am): Distribute it.
55448
55449 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
55450
55451         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
55452         with errno == ERANGE if the buffer is too small.
55453         Problem reported by Mark D. Baushke.
55454
55455 2004-11-03  Albert Chin  <china@thewrittenword.com>
55456             Paul Eggert  <eggert@cs.ucla.edu>
55457
55458         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
55459         equivalent, substitute $ac_type for equivalent type rather than
55460         blindly using uint32_t *always* which won't work if uint32_t is not
55461         available.  Define _UINT32_T to work around typedef of uint32_t if
55462         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
55463         2.5.1.
55464
55465 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
55466
55467         * m4/jm-macros.m4: Sync from coreutils.
55468         (gl_MACROS): Check for mbrlen, for pathchk.
55469         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
55470
55471 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
55472
55473         * lib/xreadlink.c (MAXSIZE): New macro.
55474         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
55475         size does not exceed MAXSIZE.  Avoid cast.
55476         As suggested by Mark D. Baushke in
55477         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
55478         if readlink fails with buffer size just under MAXSIZE, try again
55479         with MAXSIZE.
55480
55481 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
55482
55483         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
55484
55485 2004-11-02  Derek R. Price  <derek@ximbiot.com>
55486         and  Paul Eggert  <eggert@cs.ucla.edu>
55487
55488         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
55489         (get_date): Overparenthesize to avoid GCC warning.
55490
55491 2004-11-02  Bruno Haible  <bruno@clisp.org>
55492
55493         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
55494         returns void.
55495
55496 2004-11-02  Bruno Haible  <bruno@clisp.org>
55497
55498         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
55499         function returns void.
55500
55501 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
55502
55503         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
55504         fflush_unlocked, flockfile, funlockfile, funlockfile,
55505         fputs_unlocked, putc_unlocked.
55506
55507 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
55508
55509         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
55510         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
55511         already declared.
55512
55513 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
55514
55515         * modules/getdate (Files): Add doc/getdate.texi.
55516         (Depends-on): Add setenv, xalloc.
55517
55518 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
55519
55520         * lib/getdate.y: Add support for TZ="foo" within a date string.
55521         Fix some bugs near time_t boundaries.  Reject dates with
55522         out-of-range components, e.g., "Sept 31".
55523         Include <stdlib.h>, "setenv.h", "xalloc.h".
55524         (ISDIGIT_LOCALE): Remove; unused.
55525         Note that the TZ and time functions used here are not reentrant.
55526         (mktime_ok, get_tz): New functions.
55527         (TZBUFSIZE): New constant.
55528         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
55529         This requires that we sometimes generate our own TZ="XXX..." setting.
55530
55531 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
55532
55533         * doc/getdate.texi: New file, from coreutils with modifications for
55534         the new TZ parsing.
55535
55536 2004-10-27  Derek R. Price  <derek@ximbiot.com>
55537
55538         * lib/mktime.c (not_equal_tm): Remove redundant check.
55539
55540 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
55541
55542         * modules/regex (lib_SOURCES): Add regex.c.
55543         Reported by James Youngman in
55544         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
55545
55546 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
55547
55548         * lib/getdate.y: Use Bison 1.875 features, and some minor
55549         code cleanups.  This change does not affect semantics.
55550         Don't include <stdlib.h>; no longer needed.
55551         Don't include unlocked-io.h; only the "#if TEST" code uses
55552         stdio, and performance isn't crucial there.
55553         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
55554         Bison 1.875 features as described below.
55555         All uses of "PC." replaced by "pc->".
55556         (YYSTYPE): Add a forward declaration.
55557         (yylex, yyerror): Use full prototypes in forward decls.
55558         Use "%pure-parser" rather than obsolescent "%pure_parser".
55559         Use %parse-param and %lex-param instead of obsolescent
55560         YYPARSE_PARAM and YYLEX_PARAM.
55561         (meridian_table, month_and_day_table, time_units_table,
55562         relative_time_table, time_zone_table, military_table,
55563         lookup_zone, lookup_word, get_date):
55564         Use NULL instead of 0 where appropriate.
55565         (to_hour): Avoid abort (), to avoid a dependency on
55566         stdlib.h.
55567         (yyerror, yylex): Now accepts parser_control * arg.
55568         (main) [TEST]: Use '\0' rather than 0 for char.
55569
55570 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
55571
55572         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
55573
55574 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
55575
55576         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
55577         It's now the caller's responsibility to handle the case where
55578         !HAVE_GETPAGESIZE && !defined getpagesize.
55579
55580         * lib/mktime.c (leapyear): Arg is long int, not int.
55581
55582 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
55583
55584         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
55585
55586 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
55587
55588         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
55589         missing.  Problem reported by James Youngman.
55590
55591 2004-10-16  Simon Josefsson  <jas@extundo.com>
55592
55593         * gnulib-tool: Fix comments.  Fix parse problem.
55594         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
55595
55596 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
55597
55598         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
55599         implementation of getopt_long.  Problem reported by Alexander Taler in:
55600         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
55601
55602 2004-10-15  Bruno Haible  <bruno@clisp.org>
55603
55604         * gnulib-tool: Untabify. Initialize supplied_libname.
55605         (func_usage): More homogenous output.
55606         (func_modules_transitive_closure, func_modules_to_filelist,
55607         func_emit_lib_Makefile_am): New functions.
55608         (func_import): New function, extracted from big case statement. Use
55609         func_get_license, func_modules_transitive_closure,
55610         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
55611         opt_lgpl. Don't use test -a, as it's not portable.
55612         (func_create_testdir): Use func_modules_transitive_closure,
55613         func_modules_to_filelist, func_emit_lib_Makefile_am.
55614
55615 2004-10-15  Bruno Haible  <bruno@clisp.org>
55616
55617         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
55618
55619 2004-10-15  Bruno Haible  <bruno@clisp.org>
55620
55621         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
55622         the portions belonging to each module.
55623         Suggested by Derek Robert Price <derek@ximbiot.com>.
55624
55625 2004-10-12  Simon Josefsson  <jas@extundo.com>
55626
55627         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
55628         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
55629         to real functions.
55630
55631 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55632
55633         * modules/vsnprintf: New file.
55634
55635 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55636
55637         * m4/vsnprintf.m4: New file.
55638
55639 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55640
55641         * lib/vsnprintf.h: New file.
55642         * lib/vsnprintf.c: New file.
55643
55644 2004-10-11  Bruno Haible  <bruno@clisp.org>
55645
55646         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
55647         vsnprintf.
55648
55649 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
55650
55651         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
55652
55653 2004-10-07  Bruno Haible  <bruno@clisp.org>
55654
55655         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
55656         fits into the provided buffer.
55657
55658 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
55659
55660         * lib/diacrit.c, diacrit.h: Add GPL notice.
55661
55662         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
55663         notice.
55664         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
55665         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
55666         This avoids a potential constant-folding bug.
55667
55668 2004-10-05  Bruno Haible  <bruno@clisp.org>
55669
55670         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
55671         for the declaration of strsep.
55672
55673 2004-10-05  Bruno Haible  <bruno@clisp.org>
55674
55675         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
55676
55677 2004-10-04  Simon Josefsson  <jas@extundo.com>
55678
55679         * modules/memmem: New file.
55680         * tests/test-memmem.c: New file.
55681         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
55682
55683 2004-10-04  Simon Josefsson  <jas@extundo.com>
55684
55685         * m4/memmem.m4: New file.
55686
55687 2004-10-04  Simon Josefsson  <jas@extundo.com>
55688
55689         * lib/memmem.h: New file.
55690         * lib/memmem.c: New file, taken from glibc.
55691
55692 2004-10-04  Simon Josefsson  <jas@extundo.com>
55693
55694         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
55695         '#ifdef USE_UNLOCKED_IO'.
55696
55697 2004-10-04  Simon Josefsson  <jas@extundo.com>
55698
55699         * config/srclist.txt: Add memmem from glibc.
55700
55701 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55702
55703         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
55704
55705         * modules/argmatch, modules/argp, modules/closeout, modules/error,
55706         modules/exclude, modules/getdate, modules/getline,
55707         modules/getndelim2, modules/getpass, modules/getpass-gnu,
55708         modules/getusershell, modules/linebuffer, modules/md5,
55709         modules/mountlist, modules/posixtm, modules/readtokens,
55710         modules/readutmp, modules/regex, modules/sha1,
55711         modules/version-etc, modules/yesno:
55712         Remove dependency on unlocked-io.
55713
55714 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55715
55716         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
55717
55718         * m4/unlocked-io.m4: Add copyright notice.
55719         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
55720
55721 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55722
55723         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
55724         * lib/xmalloc.c (xmemdup): Likewise.
55725         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
55726         XFREE): Remove these long-obsolescent macros.
55727         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
55728         * lib/xstrdup.c: Remove.
55729
55730         * lib/regex.c (re_comp): Cast gettext return value to char *,
55731         Problem reported by Martin Neitzel via Mark D. Baushke.
55732
55733 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55734
55735         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
55736         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
55737         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
55738         regex.c, sha1.c, version-etc.c, yesno.c:
55739         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
55740         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
55741         the includer's responsibility.
55742
55743         Sync from coreutils.
55744
55745         * lib/modechange.c (mode_compile): Don't decrement a pointer that
55746         points to the start of a string, as the C Standard says the
55747         resulting behavior is undefined.
55748
55749         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
55750         simple -> simple_backups, numbered_existing ->
55751         numbered_existing_backups, numbered -> numbered_backups
55752         to avoid shadowing problems.  All uses changed.
55753         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
55754         * lib/backupfile.c (check_extension, numbered_backup):
55755         Rename locals to avoid shadowing 'basename'.
55756         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
55757         once.
55758
55759         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
55760         * lib/.cvsignore: Add getopt.h.
55761
55762 2004-10-04  Bruno Haible  <bruno@clisp.org>
55763
55764         * modules/README: New file.
55765         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
55766         not a module.
55767
55768 2004-10-02  Jim Meyering  <jim@meyering.net>
55769
55770         * lib/dirfd.h, getpagesize.h: Add copyright notice.
55771
55772 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55773
55774         * modules/strsep: New file.
55775
55776 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55777
55778         * m4/strsep.m4: New file.
55779
55780 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55781
55782         * lib/strsep.h: New file.
55783         * lib/strsep.c: New file.
55784
55785 2004-10-01  Simon Josefsson  <jas@extundo.com>
55786
55787         * lib/snprintf.c (snprintf): Handle size==0.
55788
55789 2004-10-01  Simon Josefsson  <jas@extundo.com>
55790             Bruno Haible  <bruno@clisp.org>
55791
55792         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
55793         (snprintf): Declare 'args'.
55794
55795 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
55796
55797         * lib/snprintf.c: Remove comments as to why each header is needed.
55798
55799 2004-10-01  Bruno Haible  <bruno@clisp.org>
55800
55801         * MODULES.html.sh: Add strsep.
55802
55803 2004-09-30  Simon Josefsson  <jas@extundo.com>
55804
55805         * modules/snprintf: New file.
55806
55807 2004-09-30  Simon Josefsson  <jas@extundo.com>
55808
55809         * m4/snprintf.m4: New file.
55810
55811 2004-09-30  Simon Josefsson  <jas@extundo.com>
55812
55813         * lib/snprintf.h, lib/snprintf.c: New files.
55814
55815 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55816
55817         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
55818         (hol_entry_help): Never translate an empty string.
55819         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
55820         * lib/argp.h (OPTION_NO_TRANS): New option.
55821
55822 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55823
55824         * modules/argp (Maintainer): Replace Simon Josefsson
55825         by Sergey Poznyakoff.
55826
55827 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55828
55829         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
55830         changes merged back into glibc.
55831
55832 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55833
55834         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
55835
55836 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
55837
55838         * lib/xvasprintf.c: Include xalloc.h.
55839         (xvasprintf): Use xalloc_die, not xmalloc_die.
55840
55841 2004-09-29  Bruno Haible  <bruno@clisp.org>
55842
55843         * modules/alloca-opt: New file, derived from modules/alloca.
55844         * modules/allocsa: Depend on alloca-opt instead of alloca.
55845         * modules/setenv: Likewise.
55846         * modules/vasnprintf: Likewise.
55847         * MODULES.html.sh: Add alloca-opt.
55848
55849 2004-09-28  Simon Josefsson  <jas@extundo.com>
55850
55851         * gnulib-tool: New parameter --lgpl, to asseert that modules are
55852         LGPL, and to replace license template from GPL to LGPL.
55853
55854 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
55855
55856         * modules/dummy: Change license to LGPL.
55857
55858 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
55859
55860         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
55861
55862 2004-09-24  Simon Josefsson  <jas@extundo.com>
55863
55864         * modules/minmax (License): Change from GPL to LGPL.
55865
55866 2004-09-23  Simon Josefsson  <jas@extundo.com>
55867
55868         * gnulib-tool (--import): Typo.
55869
55870 2004-09-23  Simon Josefsson  <jas@extundo.com>
55871
55872         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
55873
55874 2004-09-22  Bruno Haible  <bruno@clisp.org>
55875
55876         * modules/*: Add 'License' field.
55877         * gnulib-tool: Accept --extract-license option.
55878         (func_get_license): New function.
55879
55880 2004-09-21  Bruno Haible  <bruno@clisp.org>
55881
55882         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
55883         Reported by Simon Josefsson.
55884
55885 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
55886
55887         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
55888         gl_AC_TYPE_LONG_LONG.
55889
55890 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
55891
55892         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
55893
55894 2004-09-18  Simon Josefsson  <jas@extundo.com>
55895         and  Paul Eggert  <eggert@cs.ucla.edu>
55896
55897         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
55898         calls with autoreconf.  Define GL_LIB.
55899
55900 2004-09-14  Karl Berry  <karl@gnu.org>
55901
55902         * config/srclist.txt: unsync setenv.c, sigh.
55903
55904 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
55905
55906         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
55907         Problem reported by Bruno Haible in:
55908         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
55909
55910 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
55911
55912         * config/srclist.txt: Comment out argp-pvh.c.
55913
55914 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
55915
55916         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
55917         in case some system header has #define'd it.  Problem reported by
55918         Soeren D. Schulze in
55919         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
55920
55921 2004-09-09  Karl Berry  <karl@gnu.org>
55922
55923         * regex.[ch]: delete from the root.  These were supposed to be
55924                 synced with emacs cvs, but this has not happened for about
55925                 a year, and anyway nothing else uses emacs regex.[ch].
55926                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
55927                 lib/regex[.ch] is untouched.
55928
55929 2004-09-09  Bruno Haible  <bruno@clisp.org>
55930
55931         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
55932
55933 2004-09-09  Bruno Haible  <bruno@clisp.org>
55934
55935         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
55936         modifications.
55937         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
55938
55939 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
55940
55941         * modules/xvasprintf: New file.
55942         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
55943
55944 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
55945
55946         * lib/xvasprintf.h: New file.
55947         * lib/xvasprintf.c: New file.
55948         * lib/xasprintf.c: New file.
55949
55950 2004-09-08  Bruno Haible  <bruno@clisp.org>
55951
55952         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
55953
55954 2004-09-08  Bruno Haible  <bruno@clisp.org>
55955
55956         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
55957         length is > INT_MAX.
55958         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
55959         more.
55960
55961 2004-09-08  Bruno Haible  <bruno@clisp.org>
55962
55963         * lib/stdint_.h: New file, taken from GNU clisp.
55964
55965 2004-09-08  Bruno Haible  <bruno@clisp.org>
55966             Oskar Liljeblad  <oskar@osk.mine.nu>
55967
55968         * modules/stdint: New file.
55969         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
55970
55971 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55972
55973         Import from coreutils.
55974         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
55975         strings on unbounded length.  alloca's performance benefits aren't
55976         that important here.
55977         (V_STRDUP): Remove.
55978         (parse_with_separator): New function, with most of the internals
55979         of the old parse_user_spec.  Allow user to omit both user and group,
55980         for compatibility with FreeBSD.
55981         Clone only the user name, not the entire spec.
55982         Do not set *uid, *gid unless entirely successful.
55983         Avoid memory leak in some failing cases.
55984         Fix regression for USER.GROUP reported by Dmitry V. Levin in
55985         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
55986         (parse_user_spec): Rewrite to use parse_with_separator.
55987
55988 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55989
55990         * modules/userspec: Don't depend on alloca.
55991
55992 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55993
55994         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
55995
55996 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
55997
55998         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
55999         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
56000         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
56001
56002 2004-08-16  Simon Josefsson  <jas@extundo.com>
56003
56004         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
56005         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
56006         Add --dry-run for --import.
56007         Let user provided command line parameters override configure.ac
56008         settings.
56009
56010 2004-08-12  Simon Josefsson  <jas@extundo.com>
56011
56012         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
56013         as discussed with Paul Eggert in threads rooted at
56014         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
56015         and
56016         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
56017         Before, the test was empty, and relied on ELIDE_CODE in source
56018         code.)
56019         (gl_PREREQ_GETOPT): New macro.
56020         (gl_GETOPT): Use them.
56021
56022 2004-08-12  Simon Josefsson  <jas@extundo.com>
56023
56024         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
56025         * lib/getopt_.h: Renamed from getopt.h.
56026
56027 2004-08-12  Simon Josefsson  <jas@extundo.com>
56028
56029         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
56030         Change default library name from libfoo to libgnu.
56031         Now, if you have a configure.ac that says:
56032                 gl_SOURCE_BASE(gl)
56033                 gl_M4_BASE(gl/m4)
56034                 gl_MODULES(error getopt etcetera)
56035                 gl_INIT
56036         you can import all you need by running:
56037                 ../gnulib/gnulib-tool --import
56038
56039         * modules/getopt (Files): Rename getopt.h to getopt_.h.
56040         (Makefile.am): Rewrite, use logic from argz.
56041         (Include): Use <getopt.h> instead of "getopt.h".
56042
56043 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
56044
56045         * modules/argp (Files): Add m4/unlocked-io.m4.
56046         (Depends-on): Add extensions.
56047
56048 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
56049
56050         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
56051         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
56052         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
56053         Check for program_invocation_name, program_invocation_short_name,
56054         flockfile, funlockfile, features.h, _getopt_long_only_r.
56055
56056 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
56057
56058         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
56059         its complicated substitute.
56060         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
56061         and program_invocation_name.
56062         (__argp_basename) [!_LIBC]: Remove; the only use was
56063         replaced by its body.
56064         (__argp_short_program_name): Change condition from
56065         !defined __argp_short_program_name to
56066         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
56067         to match argp-namefrob.h.
56068         (__argp_failure): Don't assume strerror_r returns char *.
56069         * lib/argp-parse.c (N_): Define unconditionally.
56070         (argp_default_options): Fill out initializers with 0 to avoid
56071         gcc warnings.
56072
56073 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
56074
56075         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
56076         getopt1.c.
56077
56078 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
56079
56080         Merge from coreutils.
56081
56082         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
56083
56084         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
56085         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
56086
56087 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
56088
56089         Merge from coreutils.
56090
56091         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
56092         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
56093         for Reliant Unix 5.43.
56094
56095         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
56096         (union fooround): Use uintmax_t, not long int.
56097         The rest is a merge from libc:
56098         [defined _LIBC]: Include <shlib-compat.h>.
56099         (_obstack) [defined _LIBC]: Remove after 2.3.4.
56100
56101         * lib/settime.c (settime): Recode to avoid warning with
56102         Sun Forte C 6U2.
56103
56104         * lib/strverscmp.c: Convert to UTF-8.
56105
56106 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
56107
56108         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
56109         m4/uintmax_t.m4.
56110
56111 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
56112
56113         * modules/xalloc-die: New file.
56114         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
56115
56116         * modules/md5 (Files): Add m4/uint32_t.m4.
56117         * modules/sha1: Renamed from modules/sha.
56118         (Files):
56119         Rename lib/sha.h to lib/sha1.h.
56120         Rename lib/sha.c to lib/sha1.c.
56121         Rename m4/sha.m4 to m4/sha1.m4.
56122         (lib_SOURCES): Likewise.
56123         (configure.ac): Rename gl_SHA to gl_SHA1.
56124         (Include): sha.h -> sha1.h.
56125
56126 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
56127
56128         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
56129         * m4/sha1.m4: Renamed from sha.m4.
56130         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
56131
56132 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
56133
56134         * lib/obstack.h (obstack_empty_p):
56135         Don't assume that chunk->contents is suitably aligned.
56136         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
56137         Likewise. Problem reported by Benno in
56138         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
56139
56140         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
56141         readable.  This could be improved further but it'd take some work.
56142
56143 2004-08-08  Simon Josefsson  <jas@extundo.com>
56144
56145         * modules/xgethostname (Depends-on): Remove exit and error (not
56146         used).
56147
56148         * modules/getpass-gnu: Add getpass.h.
56149         (Depends-on): Add stdbool.
56150         * modules/getpass: Add getpass.h.
56151
56152 2004-08-08  Simon Josefsson  <jas@extundo.com>
56153
56154         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
56155         Check getpass declaration.
56156
56157 2004-08-08  Simon Josefsson  <jas@extundo.com>
56158
56159         * lib/xgethostname.c: Don't include error.h (not used).
56160
56161         * lib/getpass.h: Add.
56162         * lib/getpass.c: Include getpass.h first.
56163
56164 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
56165
56166         * lib/xalloc-die.c: New file.
56167         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
56168         All uses removed.
56169         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
56170         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
56171         xalloc-die.c.
56172         (_, N_, xalloc_die): Move to xalloc-die.c.
56173         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
56174         so that we needn't mess with xalloc_msg_memory_exhausted.
56175
56176         * lib/sha1.h: Renamed from sha.h.
56177         (SHA1_H): Renamed from _SHA_H.
56178         (sha1_ctx): Renamed from sha_ctx.
56179         (sha1_init_ctx): Renamed from sha_init_ctx.
56180         (sha1_process_block): Renamed from sha_process_block.
56181         (sha1_process_bytes): Renamed from sha_process_bytes.
56182         (sha1_finish_ctx): Renamed from sha_finish_ctx.
56183         (sha1_read_ctx): Renamed from sha_read_ctx.
56184         (sha1_stream): Renamed from sha_stream.
56185         (sha1_buffer): Renamed from sha_buffer.
56186         * lib/sha1.c: Likewise; renamed from sha.c.
56187         Do not include <sys/types.h>.
56188         Include <stddef.h> rather than <stdlib.h>.
56189
56190 2004-08-08  Bruno Haible  <bruno@clisp.org>
56191
56192         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
56193         FILESYSTEM_PREFIX_LEN.
56194         * lib/progreloc.c: Likewise.
56195         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
56196
56197 2004-08-06  Simon Josefsson  <jas@extundo.com>
56198
56199         * modules/progname (Depends-on): Don't depend on stdbool.
56200
56201 2004-08-06  Simon Josefsson  <jas@extundo.com>
56202
56203         * modules/getsubopt: New file.
56204         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
56205         getsubopt.
56206
56207 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
56208
56209         More merge from coreutils.
56210
56211         * m4/utimens.m4, m4/utimecmp.m4: New files.
56212         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
56213         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
56214         prereq.m4, sha.m4: Import changes from coreutils.
56215
56216 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
56217
56218         More merge from coreutils.
56219         * modules/raise, modules/readtokens0, modules/utimens:
56220         * modules/utimecmp, module/xnanosleep: New files.
56221         * modules/strftime: Add lib/strftime.h.
56222         Change include from <time.h> to "strftime.h".
56223         * modules/yesno: Add lib/yesno.h.
56224         * modules/backupfile: Remove lib/addext.c.
56225         * modules/euidaccess: Add stat-macros.h.
56226         * modules/canonicalize, modules/euidaccess,
56227         modules/filemode, modules/lchown, modules/makepath,
56228         modules/rmdir, modules/stat: Likewise.
56229
56230 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
56231
56232         Merge from tar.
56233         * lib/argp-help.c (make_hol, hol_append): Don't assume that
56234         SIZE_MAX is a valid preprocessor constant.
56235         (__argp_basename): Change from "#ifndef _LIBC"
56236         to "#ifndef __argp_short_program_name", so that
56237         we don't compile these functions for tar.
56238
56239         More merges from coreutils.
56240         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
56241         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
56242         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
56243         * lib/addext.c: Remove; no longer needed.
56244         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
56245         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
56246         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
56247         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
56248         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
56249         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
56250         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
56251         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
56252         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
56253         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
56254         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
56255         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
56256         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
56257         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
56258         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
56259         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
56260         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
56261         Import changes from coreutils.
56262
56263 2004-08-05  Simon Josefsson  <jas@extundo.com>
56264
56265         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
56266
56267 2004-08-05  Simon Josefsson  <jas@extundo.com>
56268
56269         * m4/getsubopt.m4: New file.
56270
56271 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
56272
56273         Merge from coreutils.
56274
56275         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
56276         * m4/getcwd-path-max.m4: New files.
56277
56278         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
56279         FILESYSTEM_PREFIX_LEN ->
56280         FILE_SYSTEM_PREFIX_LEN.
56281         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
56282         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
56283         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
56284         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
56285
56286         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
56287         prerequisite modules now handle the DOS stuff.
56288         Don't check for unistd.h.
56289
56290 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
56291
56292         Merge from coreutils.
56293
56294         * lib/.gdb-history: Remove; this doesn't belong here.
56295
56296         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
56297         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
56298         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
56299         * lib/getcwd.c: New files.
56300
56301         * lib/dirname.h: Include <stdbool.h>.
56302         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
56303         for consistency with POSIX terminology.  All uses changed.
56304         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
56305         (strip_trailing_slashes): Use bool for booleans.
56306         * lib/stripslash.c (strip_trailing_slashes): Likewise.
56307
56308         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
56309         sometimes returns a positive errno value even when it succeeds.
56310         (print_errno_message) [!LIBC]: Fall back on strerror if
56311         __strerror_r fails.
56312
56313         * lib/path-concat.c (mempcpy): Don't define if a system header defines
56314         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
56315         (longest_relative_suffix): New function.
56316         (path_concat): Use it.  Assume first argument is not NULL.
56317         Port to DOS.  Omit redundant separators.
56318         Report an error instead of returning NULL.
56319         Use mempcpy instead of memcpy.
56320         (xpath_concat): Remove: not declared or used.
56321
56322         * lib/same.h: Include <stdbool.h>
56323         (same_name): Return bool, not int.
56324         * lib/same.c (same_name): Likewise.
56325         (errno): Don't declare; we assume C89 or better now.
56326
56327         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
56328         if not already defined.
56329
56330         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
56331         * lib/dup-safer.c (errno): Likewise.
56332
56333 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
56334
56335         Merge from coreutils.
56336         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
56337         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
56338         * modules/path-concat: Don't depend on strdup.
56339
56340 2004-08-03  Simon Josefsson  <jas@extundo.com>
56341
56342         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
56343         * lib/progname.h: Don't include stdbool.h.
56344
56345 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
56346
56347         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
56348         * MODULES.html.sh (func_all_modules): Remove fatal.
56349
56350 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
56351
56352         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
56353
56354 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
56355
56356         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
56357         working.
56358
56359 2004-08-02  Simon Josefsson  <jas@extundo.com>
56360
56361         * lib/getsubopt.h: New file, with comments from Bruno Haible.
56362         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
56363         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
56364
56365 2004-08-01  Simon Josefsson  <jas@extundo.com>
56366
56367         * lib/xgetdomainname.c: Include stdlib.h, for free().
56368
56369 2004-07-19  Bruno Haible  <bruno@clisp.org>
56370
56371         * MODULES.html.sh (func_all_modules): Add dummy.
56372
56373 2004-07-16  Simon Josefsson  <jas@extundo.com>
56374
56375         * modules/dummy: New file.
56376
56377 2004-07-16  Simon Josefsson  <jas@extundo.com>
56378
56379         * lib/dummy.c: New file.
56380
56381 2004-07-16  Bruno Haible  <bruno@clisp.org>
56382
56383         * lib/backupfile.h: Add extern "C" for C++.
56384         * lib/closeout.h: Likewise.
56385         * lib/copy-file.h: Likewise.
56386         * lib/findprog.h: Likewise.
56387         * lib/full-write.h: Likewise.
56388         * lib/pathname.h: Likewise.
56389         * lib/progname.h: Likewise.
56390         * lib/stpcpy.h: Likewise.
56391         * lib/stpncpy.h: Likewise.
56392         * lib/strcase.h: Likewise.
56393         * lib/strstr.h: Likewise.
56394         * lib/xalloc.h: Likewise.
56395
56396         * lib/mbswidth.h: Add extern "C" for C++.
56397         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
56398
56399 2004-07-13  Robert Millan  <robertmh@gnu.org>
56400
56401         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
56402
56403 2004-07-09  Simon Josefsson  <jas@extundo.com>
56404
56405         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
56406         failed without this.)
56407
56408 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
56409
56410         * modules/chown (Files): Add lib/fchown-stub.c, since
56411         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
56412
56413 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
56414
56415         * lib/fchown-stub.c: New file.
56416
56417 2004-06-24  Jim Meyering  <jim@meyering.net>
56418
56419         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
56420
56421 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56422
56423         * modules/argz: Omit "#include".
56424
56425         * MODULES.html.sh (func_all_modules): Add calloc, to match
56426         2004-06-01 addition of calloc module.
56427
56428 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56429
56430         * m4/argz.m4: New file, which is autoupdated from libtool.
56431
56432 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56433
56434         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
56435         libtool.
56436
56437 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56438
56439         * config/srclist-update: Don't insist on "USA." before the
56440         close-comment, as libtool omits the period and puts the */ on a
56441         separate line.
56442         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
56443         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
56444
56445 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
56446
56447         * modules/argz: New file.
56448         * MODULES.html.sh (func_all_modules): Add argz.
56449
56450 2004-06-12  Jim Meyering  <jim@meyering.net>
56451         and  Paul Eggert  <eggert@cs.ucla.edu>
56452
56453         * modules/hash (Files): Add lib/xalloc.h.
56454         * modules/pipe (Depends-on): Add wait-process.
56455         * modules/stat (Depends-on): Add xalloc.
56456         * modules/userspec (Files): Add lib/userspec.h.
56457         * modules/xstrto
56458
56459         Upgrade from gettext-0.13.
56460         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
56461         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
56462         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
56463
56464 2004-06-10  Jim Meyering  <jim@meyering.net>
56465
56466         * lib/calloc.c: New file.
56467
56468 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
56469
56470         * lib/getdate.y (yylex): Allow space between sign and number.
56471         Problem reported by Dan Jacobson.
56472
56473 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
56474
56475         Merge from coreutils CVS.
56476
56477         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
56478         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
56479         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
56480         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
56481         xstrtol.m4: Fix copyright date and/or serial number.
56482
56483         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
56484         See if we need an fchown replacement.
56485         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
56486         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
56487         and use the replacement function if we detect either defect.
56488
56489         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
56490         gl_UTIMECMP.
56491
56492 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
56493         and  Jim Meyering  <jim@meyering.net>
56494
56495         Merge from coreutils CVS.
56496
56497         * lib/stat-macros.h: New file, with contents from file-type.h
56498         and coreutils' system.h.
56499         * lib/file-type.c: Include "stat-macros.h".
56500         * lib/file-type.h (file_type): Move all macro definitions to new file,
56501         stat-macros.h.
56502
56503         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
56504         Wrap old code with this conditional.
56505         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
56506         function that does not dereference symlinks.
56507         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
56508
56509         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
56510         dependency problems.
56511         (xreadlink): Accept new arg SIZE, for efficiency.
56512         All decls and uses changed.
56513         * lib/xreadlink.h: Include <stddef.h>, for size_t.
56514
56515         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
56516         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
56517
56518         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
56519         sysexits.h.
56520
56521 2004-06-01  Jim Meyering  <jim@meyering.net>
56522
56523         * m4/calloc.m4: New file.
56524
56525 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
56526
56527         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
56528         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
56529         Also, fix a typo in a diagnostic.
56530
56531 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
56532
56533         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
56534         or AC_FUNC_REALLOC.
56535
56536 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
56537
56538         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
56539         macros to be defined.
56540         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
56541         the allocator returns NULL because the requested size is zero.
56542
56543 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
56544
56545         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
56546         var.  Add comment explaining why libc still defines it.  This
56547         merges the following patch from glibc:
56548         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
56549
56550 2004-05-20  Andreas Schwab  <schwab@suse.de>
56551
56552         * m4/free.m4: Replace free if it not known to work, not the other
56553         way round.
56554
56555 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
56556
56557         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
56558         present in glibc since revision 1.1 of this file.
56559         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
56560         obstack_alignment_mask, obstack_alloc, obstack_base,
56561         obstack_blank, obstack_blank_fast, obstack_chunk_size,
56562         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
56563         obstack_grow0, obstack_init, obstack_int_grow,
56564         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
56565         obstack_next_free, obstack_object_size, obstack_ptr_grow,
56566         obstack_ptr_grow_fast, obstack_room): Remove declarations of
56567         nonexistent functions.
56568
56569 2004-05-18  Karl Berry  <karl@gnu.org>
56570
56571         * config/srclist.txt: break link for vasnprintf.c.
56572
56573 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
56574
56575         Port obstack to the AS/400, where pointers are 16 bytes wide and
56576         you cannot cast an integer to a valid pointer.  This patch is
56577         currently waiting to be integrated into glibc; see
56578         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
56579
56580         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
56581         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
56582         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
56583         (struct obstack): temp member is now a union of a pointer and
56584         an integer, instead of an integer.  All integer uses changed.
56585         This does not affect the physical layout of struct obstack,
56586         except on hosts (like the AS/400) where the size or alignment of
56587         void * is greater than that of ptrdiff_t.
56588         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
56589         __STDC__)]: Store temporary in pointer member of union, not
56590         integer member.
56591         * lib/obstack.c: Include <stddef.h>, for offsetof.
56592         (struct fooalign): Remove; it doesn't need a name.
56593         (union fooround): Change double to long double, and add void *.
56594         (DEFAULT_ALIGNMENT): Use offsetof to compute.
56595         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
56596         not a macro.  Hence the values are always int; so remove all
56597         casts-to-int in uses.
56598
56599 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
56600
56601         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
56602         we can get this patch merged into glibc.
56603
56604 2004-05-17  Derek R. Price  <derek@ximbiot.com>
56605             Paul Eggert  <eggert@cs.ucla.edu>
56606
56607         * m4/argp: Depend on alloca.
56608
56609 2004-05-17  Derek R. Price  <derek@ximbiot.com>
56610             Paul Eggert  <eggert@cs.ucla.edu>
56611
56612         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
56613         freecoding.
56614
56615 2004-05-17  Bruno Haible  <bruno@clisp.org>
56616
56617         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
56618         precision that consists of a '.' followed by an empty digit string.
56619         Patch by Tor Lillqvist <tml@iki.fi>.
56620
56621 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
56622
56623         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
56624         for backward compatibility with older code.  We need our own
56625         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
56626         it under some other name, and our alloca.h will define it.
56627
56628 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
56629             Derek Price  <derek@ximbiot.com>
56630
56631         * lib/alloca.c: Include <alloca.h>, to get our interface.
56632         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
56633         include <alloca.h> first.  Use C89 prototype for alloca; this
56634         requires including <stddef.h> for size_t.  Use extern "C" if C++.
56635         Use #elif for simplicity, since we can assume C89 now.
56636         Don't try to source the system alloca.h since it will not be found
56637         and to prevent recursively including its replacement.
56638         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
56639         * lib/regex.c: Likewise.
56640
56641 2004-05-16  Derek Price  <derek@ximbiot.com>
56642             Paul Eggert  <eggert@cs.ucla.edu>
56643
56644         getline cleanup.  This changes the getndelim2 API: both order of
56645         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
56646         no delimiter).
56647
56648         * lib/getline.c: Don't include stddef.h or stdio.h, since our
56649         interface does that.
56650         (getline): Always use getdelim, so that we don't have two
56651         copies of this code.
56652         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
56653         if available.
56654         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
56655         (GETNDELIM2_MAXIMUM): New macro.
56656         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
56657         instead of the old practice of delim2==0.  All callers changed.
56658         Return -1 on overflow, instead of returning junk.
56659         Do not set *linesize unless allocation succeeds.
56660         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
56661         that we include sys/types.h.
56662         * lib/getnline.h: Likewise.
56663         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
56664         (getndelim2): Reorder arguments.
56665         * lib/getnline.c (getnline, getndelim):
56666         Don't discard the NMAX argument.
56667         (getnline): Invoke getndelim, to avoid code duplication.
56668         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
56669         of (size_t) -1 by callers of the getnline family.
56670
56671 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
56672
56673         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
56674         Check for gettimeofday.
56675         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
56676         Check for settimeofday, stime.
56677
56678 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
56679
56680         * lib/nanosleep.c (suspended): Change its type from int to
56681         sig_atomic_t volatile.
56682         (first_call): Make it private to rpl_nanosleep, and have it
56683         be zero initially as that's a bit faster.
56684         (my_usleep): Round up fractional times instead of truncating them,
56685         as this is the usual meaning for 'sleep'.
56686
56687         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
56688         doesn't work.
56689         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
56690         (ENOSYS): Define if not defined.
56691         (settime): Fall back on stime if it exists and settimeofday fails.
56692         But don't bother with fallbacks if a method fails with errno == EPERM.
56693
56694 2004-05-11  Jim Meyering  <jim@meyering.net>
56695
56696         Prior to this change, the save_cwd caller required read access to the
56697         current directory on most systems (ones with the fchdir function).
56698
56699         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
56700         fails, try write-only, and finally, resort to using xgetcwd.
56701
56702 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
56703
56704         * lib/obstack.c, obstack.h: Import changes from libc.
56705
56706 2004-04-28  Bruno Haible  <bruno@clisp.org>
56707
56708         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
56709         also implicitly appends .exe to executables.
56710         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
56711         accepts Windows pathnames.
56712         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
56713         Treat Cygwin like Windows, since it now accepts Windows pathnames.
56714         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
56715         Treat Cygwin like Windows, since it now accepts Windows pathnames.
56716         Reported by Derek Robert Price <derek@ximbiot.com>.
56717
56718 2004-04-21  Karl Berry  <karl@gnu.org>
56719
56720         * config/srclist.txt (localcharset.c): break sync.
56721
56722 2004-04-20  Paul Eggert  <eggert@twinsun.com>
56723
56724         * m4/host-os.m4: Add a copyright notice.
56725
56726 2004-04-20  Jim Meyering  <jim@meyering.net>
56727
56728         Change UTILS_ to gl_ in AC_DEFINE'd names.
56729         Change utils_- and jm_-prefixed variables, too.
56730         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
56731         UTILS_FUNC_MKDIR_TRAILING_SLASH.
56732         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
56733
56734         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
56735         Don't emit trailing blanks.
56736         Also rename jm_-prefixed variables to have gl_ prefix.
56737
56738         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
56739         Also rename jm_-prefixed variables to have gl_ prefix.
56740
56741         * m4/jm-macros.m4: Reflect the renamings.
56742         * m4/prereq.m4: Likewise.
56743
56744 2004-04-20  Jim Meyering  <jim@meyering.net>
56745
56746         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
56747         memory.
56748
56749 2004-04-20  Jim Meyering  <jim@meyering.net>
56750             Bruno Haible  <bruno@clisp.org>
56751
56752         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
56753         memory when realloc fails.
56754
56755 2004-04-19  Jim Meyering  <jim@meyering.net>
56756
56757         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
56758         now that readutmp.c may call `free (0)'.
56759
56760 2004-04-19  Bruno Haible  <bruno@clisp.org>
56761
56762         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
56763         * m4/inttypes_h.m4: Likewise.
56764         * m4/stdint_h.m4: Likewise.
56765         * m4/intmax_t.m4: Likewise.
56766         * m4/uintmax_t.m4: Likewise.
56767
56768 2004-04-18  Jim Meyering  <jim@meyering.net>
56769
56770         * m4/prereq.m4: Don't forbid jm_ prefix.
56771
56772         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
56773         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
56774         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
56775         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
56776         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
56777         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
56778         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
56779         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
56780         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
56781         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
56782         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
56783         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
56784         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
56785         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
56786         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
56787         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
56788         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
56789         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
56790         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
56791
56792 2004-04-18  Jim Meyering  <jim@meyering.net>
56793
56794         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
56795         failure, don't leak memory and do call END_UTMP_ENT.
56796
56797 2004-04-16  Jim Meyering  <jim@meyering.net>
56798
56799         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
56800         coreutils' stat program.
56801         (gl_PREREQ): Don't require jm_PREREQ_STAT.
56802
56803 2004-04-11  Paul Eggert  <eggert@twinsun.com>
56804
56805         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
56806         C89.
56807         (CHAR_BIT): Remove, since we assume C89.
56808         Include <stdint.h> if available, as per current Autoconf CVS advice.
56809
56810 2004-03-31  Jim Meyering  <jim@meyering.net>
56811
56812         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
56813         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
56814         * m4/xalloc.m4: Likewise.
56815
56816 2004-03-30  Paul Eggert  <eggert@twinsun.com>
56817
56818         Merge from coreutils.
56819
56820         * m4/inttostr.m4: New file.
56821         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
56822         Require AM_STDBOOL_H and gl_TIMESPEC instead.
56823         Require gl_CLOCK_TIME.
56824         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
56825
56826 2004-03-30  Paul Eggert  <eggert@twinsun.com>
56827
56828         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
56829         not bool, to be more consistent with Unix conventions.
56830         Suggested by Bruno Haible.
56831
56832         Merge from coreutils.
56833
56834         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
56835         * lib/umaxtostr.c: New files.
56836
56837         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
56838         the usual <time.h> dance.
56839         (get_date): Change signature to support fractional time stamps.
56840         All callers changed.
56841         * lib/getdate.y: Include "getdate.h" first, as we can now
56842         assume C89 and don't need to worry about 'const'.
56843         Similarly, include "unlocked-io.h" near start, not in middle.
56844         Include <limits.h>.
56845         (textint.value): Use long int rather than int.
56846         (textint.digits): Use size_t rather than int.
56847         (BILLION, LOG10_BILLION): New constants.
56848         (parser_control): New member rel_ns.  Members day_ordinal,
56849         time_zone, month, day, hour, minutes, rel_year, rel_month,
56850         rel_day, rel_hour, rel_minutes, rel_seconds
56851         are now long int, not int.  Member seconds is now struct timespec,
56852         not int.  New member timespec_seen.  Members dates_seen, days_seen,
56853         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
56854         not int.
56855         (%union.intval): Now long int, not int.
56856         New member timespec.
56857         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
56858         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
56859         (spec): Now is a timespec or an item list.
56860         (timespec, items): New nonterminals.
56861         (time, rel, relunit, number, get_date):
56862         Add support for fractional seconds.
56863         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
56864         (gmtime, localtime, mktime): Remove decls; not needed with C89.
56865         (to_hour): First arg is now long int, not int.
56866         (to_year): Returns long int, not int.
56867         Don't treat year -70 like 70.
56868         (tm_diff): Returns long int, not int.
56869         (lookup_word): Use bool instead of int when appropriate.
56870         (yylex): Use size_t for count, not int.
56871         Detect overflow when parsing large integer constants.
56872         Add support for fractions.
56873         (get_date): Make pointers 'const' if possible.
56874         Use more-portable code to detect integer overflow.
56875         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
56876         Don't use ctime; it's not reliable if the year has >4 digits.
56877
56878         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
56879         This is for compatibility with BSD.
56880
56881         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
56882         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
56883         From coreutils' system.h.
56884
56885         * lib/userspec.c: Don't include "posixver.h".
56886         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
56887         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
56888         compatible extension.  Simplify code by removing a boolean int
56889         that was always nonzero if a string was nonnull.
56890
56891 2004-03-30  Jim Meyering  <jim@meyering.net>
56892
56893         Merge from coreutils.
56894
56895         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
56896         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
56897         on some systems one must include <grp.h> before it.
56898         Reported by Christian Krackowizer.
56899
56900 2004-03-30  Jim Meyering  <jim@meyering.net>
56901
56902         Merge from coreutils.
56903
56904         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
56905
56906         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
56907         an empty input stream.
56908
56909         * lib/readtokens.c: Include <stdbool.h>.
56910         (readtoken): Use `size_t' rather than int/long.
56911         All callers adjusted.
56912         Use `bool' rather than `int' where appropriate.
56913         Use memset rather than an explicit loop.
56914         Use x2nrealloc rather than xrealloc.
56915         Allow the use of `\0' as a delimiter.
56916         (readtokens): Likewise.
56917         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
56918
56919 2004-03-30  Jim Meyering  <jim@meyering.net>
56920
56921         * m4/realloc.m4: Remove file, since now it does no more than
56922         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
56923         the `configure.ac' section of module/realloc.
56924         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
56925
56926 2004-03-30  Bruno Haible  <bruno@clisp.org>
56927
56928         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
56929         nonnull.
56930
56931 2004-03-29  Paul Eggert  <eggert@twinsun.com>
56932
56933         Merge changes to getloadavg.c from coreutils and Emacs.
56934
56935         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
56936         Define to an expression, not to the empty string.
56937         Include cloexec.h and xalloc.h.
56938         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
56939         Use set_cloexec_flag rather than rolling our own.
56940         * lib/cloexec.c, lib/cloexec.h: New files.
56941
56942 2004-03-29  Paul Eggert  <eggert@twinsun.com>
56943
56944         * m4/cloexec.m4: New file.
56945
56946 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56947
56948         * lib/getopt.h: Sync with libc CVS.
56949
56950 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56951             Bruno Haible  <bruno@clisp.org>
56952
56953         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
56954         mbswidth.
56955
56956 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56957             Bruno Haible  <bruno@clisp.org>
56958
56959         * lib/mbswidth.h: Include <wchar.h> only if
56960         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
56961         <wchar.h>.
56962         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
56963
56964 2004-03-09  Paul Eggert  <eggert@twinsun.com>
56965
56966         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
56967         Sync with libc CVS.
56968         * lib/getopt_int.h: New file, also synced from libc.
56969
56970 2004-03-09  Paul Eggert  <eggert@twinsun.com>
56971
56972         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
56973         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
56974         Bring back getopt.c, getopt.h, getopt1.c.
56975
56976 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56977
56978         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
56979         All uses changed.  Check for sa_sigaction member; this fixes
56980         a bug first reported by Jason Andrade in
56981         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56982
56983 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56984
56985         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
56986         '#if' expressions.  Unlike the code it replaces, it does not
56987         depend on (defined _SC_PAGESIZE).  However, it does depend on
56988         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
56989         first reported by Jason Andrade in
56990         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56991
56992 2004-02-25  Simon Josefsson  <jas@extundo.com>
56993
56994         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
56995
56996 2004-02-25  Simon Josefsson  <jas@extundo.com>
56997
56998         * lib/strdup.h: New file.
56999         * lib/strdup.c: Include it.
57000         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
57001         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
57002
57003 2004-02-23  Karl Berry  <karl@gnu.org>
57004
57005         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
57006         (from fencepost.gnu.org:/gd/gnuorg).
57007
57008 2004-02-23  Karl Berry  <karl@gnu.org>
57009
57010         * config/srclistvars.sh (GNUORG) [karl]: redefine.
57011         * config/srclist.txt: add maintain/standards documents.
57012
57013 2004-02-18  Bruno Haible  <bruno@clisp.org>
57014
57015         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
57016         Reported by Derek Robert Price <derek@ximbiot.com>.
57017
57018 2004-02-16  Karl Berry  <karl@gnu.org>
57019
57020         * config/mkinstalldirs, install-sh: update from automake.
57021
57022 2004-02-06  Karl Berry  <karl@gnu.org>
57023
57024         * m4/po.m4: update from gettext 0.14.1.
57025
57026 2004-02-06  Karl Berry  <karl@gnu.org>
57027
57028         * lib/config.charset: update from gettext 0.14.1.
57029
57030 2004-02-05  Paul Eggert  <eggert@twinsun.com>
57031
57032         Add comments and code, prompted by suggestions from Bruno Haible
57033         for sh-quote.
57034         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
57035         describing the enum quoting_style values.
57036         * lib/quotearg.c (quotearg_alloc): New function.
57037         (quotearg_buffer_restyled): Treat lone { and } as special.
57038         Treat = as special.  Work around bug with older shells
57039         that "see" a '\' that is really the 2nd byte of a multibyte char.
57040         Quote empty string with shell_quoting_style.
57041
57042 2004-02-03  Bruno Haible  <bruno@clisp.org>
57043
57044         * m4/pipe.m4: New file, from GNU gettext.
57045
57046 2004-02-03  Bruno Haible  <bruno@clisp.org>
57047
57048         * lib/pipe.h: New file, from GNU gettext.
57049         * lib/pipe.c: New file, from GNU gettext.
57050
57051 2004-01-27  Bruno Haible  <bruno@clisp.org>
57052
57053         * m4/execute.m4: New file, from GNU gettext.
57054
57055 2004-01-27  Bruno Haible  <bruno@clisp.org>
57056
57057         * lib/execute.h: New file, from GNU gettext.
57058         * lib/execute.c: New file, from GNU gettext.
57059         * lib/w32spawn.h: New file, from GNU gettext.
57060
57061 2004-01-24  Paul Eggert  <eggert@twinsun.com>
57062
57063         Merge from diffutils.
57064
57065         * lib/file-type.c (file_type): Add typed memory objects.
57066         * lib/file-type.h (S_TYPEISTMO): New macro.
57067
57068         * lib/c-stack.h (c_stack_action): Remove argv argument.
57069         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
57070         (die): Don't calculate message unless segv_action returns.
57071         (get_stack_location, min_address_from_argv, max_address_from_argv,
57072         volatile stack_base, volatile_stack_size): Remove.
57073         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
57074         that every segmentation violation is a stack overflow.  (Ouch!)
57075         See Debian bug 136249 (still outstanding) for more info about why
57076         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
57077
57078 2004-01-24  Paul Eggert  <eggert@twinsun.com>
57079
57080         Exit-status fix from coreutils.
57081
57082         Use exit_failure consistently in place of EXIT_FAILURE,
57083         so that program exit statuses are consistent on failure.
57084
57085         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
57086         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
57087         * lib/argmatch.h: Comment fix to match the above.
57088         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
57089         Now a macro referring to exit_failure, instead of a separate
57090         variable.  Include "exitfail.h" to get it.
57091         * lib/xstrtol.h: Include "exitfail.h".
57092         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
57093
57094         * lib/long-options.c (parse_long_options): Use prototype
57095         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
57096         for clarity.
57097
57098 2004-01-21  Jim Meyering  <jim@meyering.net>
57099
57100         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
57101         so as not to conflict with a different-sized __mktime_internal
57102         function in GNU libc.
57103         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
57104         Problem building statically-linked `ls' reported by Michael Brunnbauer.
57105
57106 2004-01-20  Karl Berry  <karl@gnu.org>
57107
57108         * config/config.guess: update from config.
57109
57110         * config/srclistvars.sh: GNUWWWLICENSES for karl.
57111
57112 2004-01-20  Bruno Haible  <bruno@clisp.org>
57113
57114         Safer stack allocation.
57115         * lib/setenv.c: Include allocsa.h.
57116         (alloca): Remove fallback definition.
57117         (freea): Remove macro.
57118         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
57119         instead of freea.
57120
57121 2004-01-20  Bruno Haible  <bruno@clisp.org>
57122
57123         * m4/eealloc.m4: New file, from GNU gettext.
57124
57125 2004-01-20  Bruno Haible  <bruno@clisp.org>
57126
57127         * m4/allocsa.m4: New file, from GNU gettext.
57128
57129 2004-01-20  Bruno Haible  <bruno@clisp.org>
57130
57131         * lib/xallocsa.h: New file, from GNU gettext.
57132         * lib/xallocsa.c: New file, from GNU gettext.
57133
57134 2004-01-20  Bruno Haible  <bruno@clisp.org>
57135
57136         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
57137
57138 2004-01-20  Bruno Haible  <bruno@clisp.org>
57139
57140         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
57141         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
57142         specially.
57143
57144 2004-01-20  Bruno Haible  <bruno@clisp.org>
57145
57146         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
57147         patch.
57148
57149 2004-01-20  Bruno Haible  <bruno@clisp.org>
57150
57151         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
57152
57153 2004-01-20  Bruno Haible  <bruno@clisp.org>
57154
57155         * lib/eealloc.h: New file.
57156
57157 2004-01-20  Bruno Haible  <bruno@clisp.org>
57158
57159         * lib/binary-io.h: Avoid warnings on Cygwin.
57160
57161 2004-01-20  Bruno Haible  <bruno@clisp.org>
57162
57163         * lib/allocsa.h: New file, from GNU gettext.
57164         * lib/allocsa.c: New file, from GNU gettext.
57165
57166 2004-01-18  Karl Berry  <karl@gnu.org>
57167
57168         * doc/gpl.texi, doc/lgpl.texi: new files.
57169
57170 2004-01-18  Karl Berry  <karl@gnu.org>
57171
57172         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
57173         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
57174
57175 2004-01-15  Paul Eggert  <eggert@twinsun.com>
57176
57177         Merge from coreutils.
57178
57179         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
57180         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
57181         (gl_DEFAULT_POSIX2_VERSION): Move
57182         the documentation from 'configure' into 'config.hin',
57183         so that 'configure --help' isn't burdened by it and
57184         we don't have to worry about its formatting there.
57185         Reword the documentation so that it's more succinct
57186         and can be run together into a single paragraph.
57187         * m4/same.m4 (gl_SAME): Check for pathconf.
57188
57189 2004-01-15  Paul Eggert  <eggert@twinsun.com>
57190
57191         Merge from coreutils.
57192
57193         * lib/posixver.c: Include posixver.h.
57194
57195         * lib/same.c: Include <stdbool.h>, <limits.h>.
57196         (_POSIX_NAME_MAX): Define if not defined.
57197         (MIN): New macro.
57198         (same_name): If file names are silently truncated, report
57199         that the file names are the same if they are the same after
57200         the silent truncation.
57201
57202         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
57203         conversion function.
57204         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
57205         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
57206         longer needed.
57207
57208 2004-01-15  Jim Meyering  <jim@meyering.net>
57209
57210         Merge from coreutils.
57211
57212         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
57213         if no library is required.
57214         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
57215         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
57216         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
57217         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
57218         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
57219         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
57220         value, $ac_cv_search_crypt, if it's "none required".
57221         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
57222         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
57223         not gl_FUNC_GETLOADAVG.
57224         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
57225         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
57226
57227 2004-01-15  Jim Meyering  <jim@meyering.net>
57228
57229         Merge from coreutils.
57230
57231         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
57232         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
57233         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
57234
57235         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
57236         optional configure-time default.
57237
57238         * lib/version-etc.c (version_etc_copyright): Update copyright date.
57239
57240         * lib/xreadlink.c (xreadlink): Correct outdated comment.
57241
57242 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
57243
57244         Merge from coreutils.
57245
57246         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
57247         value, $ac_cv_search_nanosleep, if it's "none required".
57248
57249 2004-01-14  Paul Eggert  <eggert@twinsun.com>
57250
57251         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
57252         with like-named macro in fnmatch.c.
57253         (EXT): Use an internal constant instead.
57254
57255         Merge fnmatch patches from glibc.
57256         * lib/fnmatch.c (mbsinit): Remove define.
57257         Add libc_hidden_ver (__fnmatch, fnmatch).
57258         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
57259         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
57260
57261 2004-01-14  Karl Berry  <karl@gnu.org>
57262
57263         * config/install-sh: update from automake.
57264
57265 2004-01-13  Karl Berry  <karl@gnu.org>
57266
57267         * config/install-sh: update from automake.
57268
57269 2004-01-09  Karl Berry  <karl@gnu.org>
57270
57271         * config/install-sh: update from automake.
57272
57273 2004-01-05  Karl Berry  <karl@gnu.org>
57274
57275         * config/config.{sub,guess}: update from config.
57276
57277 2003-12-31  Karl Berry  <karl@gnu.org>
57278
57279         * config/depcomp: update from automake.
57280
57281 2003-12-14  Karl Berry  <karl@gnu.org>
57282
57283         * lib/config.charset: update from gettext-runtime.
57284
57285 2003-12-03  Paul Eggert  <eggert@twinsun.com>
57286
57287         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
57288         Bug reported by Alfred M. Szmidt.
57289
57290 2003-12-03  Bruno Haible  <bruno@clisp.org>
57291
57292         * m4/gettext.m4: Upgrade from gettext-0.13.
57293         * m4/po.m4: Upgrade from gettext-0.13.
57294         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
57295         * m4/intmax.m4: New file, from gettext-0.13.
57296         * m4/printf-posix.m4: New file, from gettext-0.13.
57297
57298 2003-11-29  Karl Berry  <karl@gnu.org>
57299
57300         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
57301
57302 2003-11-25  Paul Eggert  <eggert@twinsun.com>
57303             Bruno Haible  <bruno@clisp.org>
57304
57305         * lib/printf-parse.h: Don't include sys/types.h.
57306         (ARG_NONE): New macro.
57307         (char_directive): Change type of *arg_index fields to size_t.
57308         * lib/printf-parse.c: Don't include sys/types.h.
57309         (SSIZE_MAX): Remove macro.
57310         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
57311         Remove unnecessary overflow check.
57312         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
57313         fields.
57314
57315 2003-11-25  Bruno Haible  <bruno@clisp.org>
57316
57317         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
57318
57319 2003-11-25  Bruno Haible  <bruno@clisp.org>
57320
57321         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
57322         gt_TYPE_SSIZE_T.
57323
57324 2003-11-24  Paul Eggert  <eggert@twinsun.com>
57325
57326         * modules/alloca: Remove dependency on xalloc.
57327
57328 2003-11-24  Paul Eggert  <eggert@twinsun.com>
57329
57330         * lib/alloca.c: Remove dependency on xalloc module.
57331         (xalloc_die): Remove.
57332         (memory_full) [!defined emacs]: New macro.
57333         [!defined emacs]: Don't include xalloc.h.
57334         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
57335         address arithmetic overflows.  Change datatypes a bit to avoid
57336         unnecessary casts.
57337
57338 2003-11-22  Jim Meyering  <jim@meyering.net>
57339
57340         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
57341         s/size/size_t/.
57342
57343 2003-11-21  Karl Berry  <karl@gnu.org>
57344
57345         * config/config.{sub,guess}: update from config.
57346
57347 2003-11-18  Karl Berry  <karl@gnu.org>
57348
57349         * config/config.{sub,guess}: update from config.
57350
57351         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
57352
57353 2003-11-17  Paul Eggert  <eggert@twinsun.com>
57354
57355         * README: Mention that S+T cannot overflow if S is the size of
57356         an existing object and T is sufficiently small.
57357
57358 2003-11-17  Jim Meyering  <jim@meyering.net>
57359
57360         On systems without utime and without a utimes function capable of
57361         dealing with a NULL struct utimbuf* argument, this utime replacement
57362         could -- in unusual circumstances -- leak a file descriptor.
57363         * lib/utime.c: Include <unistd.h> and <errno.h>.
57364         (utime_null): Be sure to close `fd' and to preserve errno.
57365         Reported by Geoff Collyer via Arnold Robbins.
57366
57367 2003-11-17  Bruno Haible  <bruno@clisp.org>
57368
57369         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
57370         (Depends-on): Add xsize.
57371
57372 2003-11-17  Bruno Haible  <bruno@clisp.org>
57373
57374         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
57375
57376 2003-11-17  Bruno Haible  <bruno@clisp.org>
57377
57378         * lib/vasnprintf.c (alloca): Remove fallback definition.
57379         (freea): Remove definition.
57380         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
57381         Reported by Paul Eggert.
57382
57383 2003-11-16  Paul Eggert  <eggert@twinsun.com>
57384             Bruno Haible  <bruno@clisp.org>
57385
57386         Protect against address arithmetic overflow.
57387         * lib/printf-args.h: Include stddef.h.
57388         (arguments): Change type of field 'count' to size_t.
57389         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
57390         'unsigned int' where appropriate.
57391         * lib/printf-parse.h: Include sys/types.h.
57392         (char_directive): Change type of *arg_index fields to ssize_t.
57393         (char_directives): Change type of fields 'count', max_*_length to
57394         size_t.
57395         * lib/printf-parse.c: Include sys/types.h and xsize.h.
57396         (SSIZE_MAX): Define fallback value.
57397         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
57398         instead of 'int' where appropriate. Check a_allocated, d_allocated
57399         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
57400         * lib/vasnprintf.c: Include xsize.h.
57401         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
57402         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
57403         overflow. Avoid wraparound when converting a width or precision from
57404         decimal to binary.
57405
57406 2003-11-16  Bruno Haible  <bruno@clisp.org>
57407
57408         Update from GNU gettext.
57409         * lib/printf-parse.c: Generalize to it can be compiled for wide
57410         strings.
57411         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
57412         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
57413         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
57414         SNPRINTF): New macros.
57415         Don't include <alloca.h> if the file is used inside libintl.
57416         (local_wcslen): New function, for Solaris 2.5.1.
57417         (VASNPRINTF): Use it instead of wcslen.
57418
57419 2003-11-16  Bruno Haible  <bruno@clisp.org>
57420
57421         * lib/xsize.h (xmax): New function.
57422         (xsum, xsum3, xsum4): Declare as "pure" functions.
57423
57424 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57425
57426         * modules/xalloc (Files): Undo latest change, since xalloc.h
57427         no longer needs SIZE_MAX or PTRDIFF_MAX.
57428
57429 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57430
57431         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
57432         gl_PTRDIFF_MAX.
57433
57434 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57435
57436         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
57437         "return", to pacify some unknown compiler.  Problem reported
57438         by Joerg Schilling.
57439
57440 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57441
57442         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
57443         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
57444         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
57445         heuristic is just as accurate as far as we know, and it removes a
57446         dependency on size_max.m4 and ptrdiff_max.m4.
57447
57448 2003-11-11  Bruno Haible  <bruno@clisp.org>
57449
57450         * modules/xsize (Files): Add m4/size_max.m4.
57451         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
57452
57453 2003-11-11  Bruno Haible  <bruno@clisp.org>
57454
57455         * m4/size_max.m4: New file.
57456         * m4/ptrdiff_max.m4: New file.
57457         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
57458         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
57459         (gl_XALLOC): Invoke it.
57460
57461 2003-11-11  Bruno Haible  <bruno@clisp.org>
57462
57463         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
57464         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
57465         defined.
57466
57467 2003-11-10  Paul Eggert  <eggert@twinsun.com>
57468
57469         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
57470         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
57471         rejected some allocations of exactly SIZE_MAX - 2 bytes.
57472         From Bruno Haible.
57473         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
57474         not (size_t) -1, since it's defined here.
57475
57476 2003-11-09  Karl Berry  <karl@gnu.org>
57477
57478         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
57479
57480 2003-11-06  Paul Eggert  <eggert@twinsun.com>
57481
57482         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
57483         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
57484         Reject sizes of exactly SIZE_MAX bytes.
57485         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
57486         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
57487
57488 2003-11-05  Bruno Haible  <bruno@clisp.org>
57489
57490         * lib/xsize.h: Include limits.h, to avoid a possible collision with
57491         SIZE_MAX defined in <limits.h> on Solaris.
57492
57493 2003-11-04  Jim Meyering  <jim@meyering.net>
57494
57495         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
57496         variable names, rather than @VAR@.
57497         * modules/poll: Likewise.
57498
57499 2003-11-04  Bruno Haible  <bruno@clisp.org>
57500
57501         * modules/xsize: New file.
57502         * modules/linebreak: Depend on xsize.
57503         * MODULES.html.sh (func_all_modules): Add xsize.
57504
57505 2003-11-04  Bruno Haible  <bruno@clisp.org>
57506
57507         * m4/xsize.m4: New file.
57508
57509 2003-11-04  Bruno Haible  <bruno@clisp.org>
57510
57511         * lib/xsize.h: New file.
57512         * lib/linebreak.c: Include xsize.h.
57513         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
57514         argument for overflow.
57515         Suggested by Paul Eggert.
57516
57517 2003-11-03  Karl Berry  <karl@gnu.org>
57518
57519         * config/config.{guess,sub}: update from config.
57520
57521 2003-11-03  Jim Meyering  <jim@meyering.net>
57522
57523         * modules/userspec (lib_SOURCES): Add userspec.h.
57524         (Include): Add "userspec.h".
57525         Improve description.
57526
57527 2003-11-03  Jim Meyering  <jim@meyering.net>
57528
57529         * lib/userspec.c: Include "userspec.h".
57530         * lib/userspec.h: New file.
57531
57532 2003-11-03  Bruno Haible  <bruno@clisp.org>
57533
57534         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
57535
57536 2003-11-03  Bruno Haible  <bruno@clisp.org>
57537
57538         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
57539         available, to avoid (extremely rare) race condition.
57540         Suggested by Paul Eggert.
57541
57542 2003-11-02  Karl Berry  <karl@gnu.org>
57543
57544         * config/srclist.txt (vasprintf.c): sync broken, sigh.
57545
57546 2003-10-31  Paul Eggert  <eggert@twinsun.com>
57547
57548         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
57549         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
57550         (read_filesystem_list): Set and use me_type_malloced.
57551         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
57552         whatever the type happens to be), for brevity and consistency.
57553         Check for size calculation overflow on Alphas running OSF/1.
57554
57555 2003-10-31  Jim Meyering  <jim@meyering.net>
57556
57557         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
57558
57559         * lib/linebuffer.c: Include <string.h> for declaration of memset.
57560
57561 2003-10-30  Paul Eggert  <eggert@twinsun.com>
57562             Bruno Haible  <bruno@clisp.org>
57563
57564         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
57565         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
57566
57567 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
57568
57569         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
57570         netbsd*-gnu*.  Suggested by Robert Millan.
57571
57572 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57573
57574         * modules/group-member: Depend on stdbool.
57575
57576 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57577
57578         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
57579
57580 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57581
57582         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
57583         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
57584         after the 'gnu' in these cases.  This fixes some bugs in the
57585         previous change, and is based on suggestions by Robert Millan.
57586
57587 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57588
57589         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
57590         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
57591         no longer needed.
57592         * lib/quotearg.c (quotearg_n_options): Use it.
57593         * lib/group-member.c: Include <stdbool.h>.
57594         (free_group_info): Arg is now const *; don't free arg.
57595         (get_group_info): Now returns bool and accepts struct group_info *,
57596         rather than returning a malloc'ed struct group_info *.
57597         All uses changed.  Check for overflow in internal size calculation.
57598
57599         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
57600         rather than xmalloc/xrealloc.
57601         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
57602         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
57603         conformance bug: the old code used a pointer after freeing the
57604         storage that it addressed.
57605         * lib/hash.c (hash_initialize): Simplify the code by using
57606         xalloc_oversized rather than doing it by hand.
57607         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
57608         the buffer preserved.  Use free and xmalloc instead.
57609         * lib/quotearg.c (quotearg_n_options): Likewise.
57610         Use a simpler test for size overflow.  Don't use xalloc_oversized
57611         because unsigned int might be wider than size_t (!); this suggests
57612         that we should switch from unsigned int to size_t for slot numbers.
57613
57614 2003-10-28  Paul Eggert  <eggert@twinsun.com>
57615
57616         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
57617         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
57618         NetBSD kernels.  Requested by Richard Stallman.
57619
57620 2003-10-27  Paul Eggert  <eggert@twinsun.com>
57621
57622         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
57623         to allocate the returned structure.  Do not allocate a subarray,
57624         as x2nrealloc will do that.
57625         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
57626         instead of xnrealloc.
57627         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
57628
57629 2003-10-27  Bruno Haible  <bruno@clisp.org>
57630
57631         * lib/stdbool_.h: Better support for BeOS.
57632
57633 2003-10-26  Paul Eggert  <eggert@twinsun.com>
57634
57635         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
57636         now uses inline.
57637
57638 2003-10-26  Paul Eggert  <eggert@twinsun.com>
57639
57640         * lib/xalloc.h (xalloc_oversized): New static inline function, for
57641         callers that want to do their own size-overflow checking.  Include
57642         <stdbool.h>, since xalloc_oversized returns bool.
57643         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
57644         to use xalloc_oversized.
57645
57646         Add two functions x2realloc, x2nrealloc, for programs that grow
57647         arrays dynamically by doubling their sizes.
57648         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
57649         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
57650         New functions.
57651
57652         Port to C99 semantics for 'inline' of external functions.
57653         Bug reported by Bruno Haible.
57654         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
57655         with the old contents of xnmalloc.
57656         (xnmalloc, xmalloc): Use it.
57657         (xnrealloc_inline): New static inline function,
57658         with the old contents of xnrealloc.
57659         (xnrealloc, xrealloc): Use it.
57660
57661         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
57662         that.
57663
57664 2003-10-26  Karl Berry  <karl@gnu.org>
57665
57666         * config/srclist.txt (COPYING.DOC): no longer available from
57667         /gd/gnuorg; don't know where the ultimate source is.
57668
57669 2003-10-25  Paul Eggert  <eggert@twinsun.com>
57670
57671         Fix several address-calculation bugs in the hash modules,
57672         plus some minor code cleanup.
57673
57674         * lib/hash.h: Include <stdbool.h>, for bool.
57675         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
57676         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
57677         hash_get_n_entries, hash_get_max_bucket_length,
57678         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
57679         hash_rehash): Use size_t rather than unsigned.
57680         * lib/hash.c (struct hash_table, hash_get_n_buckets,
57681         hash_get_n_buckets_used, hash_get_n_entries,
57682         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
57683         hash_get_entries, hash_do_for_each, hash_string, is_prime,
57684         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
57685         Likewise.
57686         (SIZE_MAX): Define if not defined.
57687         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
57688         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
57689         hash_print):
57690         Use const * when possible.
57691         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
57692         (check_tuning): Fix bug: if tuning parameters were very close to
57693         0 or 1, rounding errors could have caused subscript violations.
57694         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
57695         (hash_initialize): Add 'fail:' label
57696         to free table and return NULL, and use it to simplify code.
57697         Use calloc rather than clearing the storage ourself.
57698         (hash_initialize, hash_rehash): Check for arithmetic overflow in
57699         buffer size calculations.
57700         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
57701         Include <stddef.h>, for size_t.
57702         * lib/hash-pjw.c (hash_pjw): Likewise.
57703         Switch to method described by Bruno Haible.
57704         Include <limits.h>, for CHAR_BIT.
57705         (SIZE_BITS): New macro.
57706
57707 2003-10-23  Paul Eggert  <eggert@twinsun.com>
57708
57709         * m4/getline.m4 (AM_FUNC_GETLINE):
57710         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
57711         hosts.  Problem reported by Derek Robert Price in
57712         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
57713         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
57714         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
57715
57716 2003-10-21  Paul Eggert  <eggert@twinsun.com>
57717
57718         * lib/getndelim2.c (getndelim2): When size calculation overflows,
57719         ceiling the allocation at NMAX bytes rather than silently
57720         discarding input bytes before NMAX is reached.  This makes
57721         a difference only if NMAX exceeds SIZE_MAX / 2.
57722
57723         * lib/obstack.c: Merge from glibc.
57724         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
57725         Add libc_hidden_def (_obstack_newchunk).
57726         (_obstack_free) [! defined _LIBC]: Remove.
57727         [defined _LIBC]: Make a strong alias from obstack_free, rather than
57728         a clone of the function body.
57729         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
57730         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
57731
57732         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
57733         glibc.
57734         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
57735         arg to memcpy.
57736
57737         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
57738         (obstack_ptr_grow_fast, obstack_int_grow_fast):
57739         Don't use lvalue casts, as GCC plans to remove support for them
57740         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
57741         was also present in the non-GCC version, indicating that this
57742         code had always been buggy and had never been widely used.
57743         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
57744         Use the fast variant of each macro, rather than copying the
57745         definiens of the fast variant; that way, we'll be more likely to
57746         catch future bugs in the fast variants.
57747
57748 2003-10-20  Bruno Haible  <bruno@clisp.org>
57749
57750         * modules/wait-process: New file.
57751         * MODULES.html.sh (func_all_modules): Add wait-process.
57752
57753 2003-10-20  Bruno Haible  <bruno@clisp.org>
57754
57755         * m4/wait-process.m4: New file.
57756
57757 2003-10-20  Bruno Haible  <bruno@clisp.org>
57758
57759         * lib/wait-process.h: New file, from GNU gettext.
57760         * lib/wait-process.c: New file, from GNU gettext.
57761
57762 2003-10-19  Jim Meyering  <jim@meyering.net>
57763
57764         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
57765         HPUX 10.20.
57766
57767 2003-10-18  Karl Berry  <karl@gnu.org>
57768
57769         * config/config.guess: update from config.
57770
57771 2003-10-16  Paul Eggert  <eggert@twinsun.com>
57772
57773         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
57774         (getgroups): First arg is int, not size_t.
57775         Don't let 'free' mangle errno.
57776
57777 2003-10-16  Paul Eggert  <eggert@twinsun.com>
57778
57779         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
57780
57781 2003-10-16  Karl Berry  <karl@gnu.org>
57782
57783         * config/config.{guess,sub}: update from config.
57784
57785 2003-10-16  Jim Meyering  <jim@meyering.net>
57786
57787         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
57788         memcpy.
57789
57790 2003-10-15  Paul Eggert  <eggert@twinsun.com>
57791
57792         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
57793         (SIZE_MAX): Remove.
57794         (new_exclude, add_exclude_file): Initial size no longer needs to
57795         be a power of 2.
57796         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
57797         our own address arithmetic overflow checking.
57798
57799         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
57800         (fnmatch): Do not alloca more than 2000 wide characters;
57801         instead, use malloc for large buffers.
57802         Check for address arithmetic overflow, and return -1
57803         with errno set to ENOMEM in that case.
57804         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
57805         (NEW_PATTERN): Do not alloca more than 8000 bytes;
57806         instead, return -1.  Check for address arithmetic overflow.
57807
57808 2003-10-14  Paul Eggert  <eggert@twinsun.com>
57809
57810         Handle invalid suffixes and overflow independently, so that
57811         callers can treat them independently as needed.  Fix some bugs in
57812         suffix handling, e.g., "100k@" was not diagnosed as an invalid
57813         suffix for a human-readable blocksize.  The major caller-visible
57814         change is the addition of a new
57815         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
57816         that both overflow and suffix chars were found.
57817
57818         * lib/human.c (humblock): Don't check separately for invalid suffix
57819         char; that is xstrtoumax's job (now that its bug is fixed).
57820         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
57821         INTMAX_MAX]: New macros.
57822         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
57823         TYPE_MAXIMUM): New macros.
57824         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
57825         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
57826         if overflow occurs, as it's what __strtol does and it's more useful
57827         in practice.
57828         (__xstrtol): If __strtol reports some error other than ERANGE,
57829         reflect it to the caller as LONGINT_INVALID.  If it reports
57830         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
57831         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
57832         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
57833         value.
57834         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
57835         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
57836         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
57837         [defined UINTMAX_MAX]: New macros.
57838
57839 2003-10-14  Bruno Haible  <bruno@clisp.org>
57840
57841         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
57842
57843 2003-10-14  Bruno Haible  <bruno@clisp.org>
57844
57845         * m4/sig_atomic_t: New file, from GNU gettext.
57846         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
57847
57848 2003-10-14  Bruno Haible  <bruno@clisp.org>
57849
57850         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
57851         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
57852         Also use volatile where needed.
57853
57854 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57855
57856         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
57857         Change maintainer from Bruno Haible to 'all'.
57858
57859 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57860
57861         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
57862
57863 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57864
57865         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
57866         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
57867         and define in terms of the other primitives.
57868         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
57869         (SIZE_MAX): Define if not already defined.
57870         (array_size_overflow): New function.
57871         (xalloc_die): Abort instead of exiting if 'error' returns.
57872         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
57873         (xmalloc, xrealloc): Use them.
57874         (xcalloc): Check for address arithmetic overflow.
57875         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
57876         a bit faster than strcpy.
57877
57878 2003-10-10  Simon Josefsson  <jas@extundo.com>
57879
57880         * modules/argp (Depends-on): Add restrict and strcase.
57881
57882 2003-10-10  Simon Josefsson  <jas@extundo.com>
57883
57884         * m4/argp.m4: Add AC_C_INLINE.
57885
57886 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57887
57888         Merge getpass from libc, plus a few fixes.
57889
57890         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
57891         Include <stdbool.h>.
57892         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
57893         __fsetlocking to empty.
57894         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
57895         do include <bits/libc-lock.h>.
57896         Do not include <fcntl.h>; not needed.
57897         [_LIBC]: Include <wchar.h>.
57898         (NOTCANCEL_MODE): New macro.
57899         (flockfile, funlockfile) [_LIBC]: New macros.
57900         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
57901         [!_LIBC]: New macros.
57902         (call_fclose): New function.
57903         (getpass): Use it.  Save tty stream separately; this simplifies the
57904         code and makes it more reliable if stdin happens to equal stdout.
57905         Invoke __fsetlocking on tty.
57906         Handle thread cancellation if needed.
57907         Namespace cleanup (use __tcgetattr, __getline).
57908         Use bool for Booleans.
57909         [USE_IN_LIBIO]: Handle wide streams.
57910         [!_LIBC]: Unconditionally do the fseek, since we don't know what
57911         stream might go where.
57912
57913         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
57914         doesn't have to include <stdio.h> before us.
57915         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
57916         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
57917         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
57918         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
57919         if not declared, so that we can use getpass.c code from libc without
57920         rewriting it.
57921         (flockfile, ftrylockfile, funlockfile): New macros.
57922
57923 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57924
57925         * modules/getpass: Depend on stdbool.
57926
57927 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57928
57929         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
57930
57931 2003-10-07  Karl Berry  <karl@gnu.org>
57932
57933         * config/config.{guess,sub}: update from config.
57934
57935 2003-10-06  Jim Meyering  <jim@meyering.net>
57936             Bruno Haible  <bruno@clisp.org>
57937
57938         This lets translators provide better translations for the
57939         "Written by ..." part of --version output.
57940         * lib/version-etc.h: Include stdarg.h.
57941         (version_etc_copyright): Declare as readonly.
57942         (version_etc): Make this function variadic with a NULL-terminated list
57943         of author name strings.
57944         (version_etc_va): New declaration.
57945         * lib/version-etc.c: Include stdarg.h, stdlib.h.
57946         (version_etc_copyright): Declare as readonly.
57947         (version_etc_va): New function. Provide a different translatable string
57948         for each possible number of authors < 10. Abbreviate when there are 10
57949         authors or more.
57950         (version_etc): Make this function variadic. Call version_etc_va.
57951         Suggestion from Gary V. Vaughan.
57952
57953         * lib/long-options.h (parse_long_options): Change prototype: the
57954         authors string is moved to the end and becomes variadic.
57955         * lib/long-options.c: Include stdarg.h.
57956         (parse_long_options): Make this function variadic, too.
57957         Call version_etc_va, not version_etc.
57958
57959 2003-10-06  Bruno Haible  <bruno@clisp.org>
57960
57961         * modules/version-etc-2: Remove file.
57962         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
57963
57964 2003-10-06  Bruno Haible  <bruno@clisp.org>
57965
57966         * modules/fatal-signal: New file.
57967         * MODULES.html.sh (func_all_modules): Add fatal-signal.
57968
57969 2003-10-06  Bruno Haible  <bruno@clisp.org>
57970
57971         * m4/fatal-signal.m4: New file.
57972         * m4/signalblocking.m4: New file, from GNU gettext.
57973
57974 2003-10-06  Bruno Haible  <bruno@clisp.org>
57975
57976         * lib/version-etc-2.h: Remove file.
57977         * lib/version-etc-2.c: Remove file.
57978
57979 2003-10-06  Bruno Haible  <bruno@clisp.org>
57980
57981         * lib/fatal-signal.h: New file, from GNU gettext.
57982         * lib/fatal-signal.c: New file, from GNU gettext.
57983
57984 2003-10-05  Paul Eggert  <eggert@twinsun.com>
57985
57986         * README: Rework advice for preventing empty .o files.
57987         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
57988         not <sys/types.h>.
57989
57990 2003-10-04  Karl Berry  <karl@gnu.org>
57991
57992         * lib/argp*: update from libc.
57993
57994 2003-10-04  Karl Berry  <karl@gnu.org>
57995
57996         * config/config.{guess,sub}: update from config.
57997
57998 2003-10-02  Bruno Haible  <bruno@clisp.org>
57999
58000         * modules/lchown (Include): Add lchown.h.
58001         * modules/time_r (Include): Use "..." syntax.
58002         * modules/xgetdomainname (Include): Add xgetdomainname.h.
58003
58004 2003-10-01  Simon Josefsson  <jas@extundo.com>
58005
58006         * MODULES.html.sh (func_all_modules): Move gethostname from section
58007         'based on' to section 'lacking' POSIX:2001.
58008
58009 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
58010
58011         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
58012         to output mode on the same stream.
58013
58014 2003-09-29  Paul Eggert  <eggert@twinsun.com>
58015
58016         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
58017         Fix arg typo in previous patch.
58018
58019 2003-09-28  Jim Meyering  <jim@meyering.net>
58020
58021         * lib/error.c: Correct cpp indentation.
58022
58023 2003-09-27  Paul Eggert  <eggert@twinsun.com>
58024
58025         * modules/free: New file.
58026
58027 2003-09-27  Paul Eggert  <eggert@twinsun.com>
58028
58029         * m4/free.m4: New file.
58030
58031 2003-09-27  Paul Eggert  <eggert@twinsun.com>
58032
58033         * lib/minmax.h (MIN, MAX)
58034         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
58035         Omit the special code that used __typeof__, since we worry that
58036         it could be more trouble than it's worth.  See:
58037         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
58038         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
58039
58040         * lib/free.c: New file.
58041
58042 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
58043
58044         Trivial fixes to Makefile.am parts of module listings.
58045         * modules/strstr: Append strstr.h to lib_SOURCES.
58046         * modules/strcase: Likewise, for strcase.h.
58047
58048 2003-09-27  Karl Berry  <karl@gnu.org>
58049
58050         * config/mkinstalldirs: update from automake.
58051
58052 2003-09-26  Paul Eggert  <eggert@twinsun.com>
58053
58054         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
58055         (error_tail): Do not loop, reallocating temporary buffer, since
58056         the output cannot contain more wide characters than the input
58057         contains bytes, the size must be big enough already.  This avoids
58058         one potential size overflow calculation.  Check for size overflow
58059         when calculating temporary buffer size.  Free temporary buffer
58060         when done, if it was allocated with malloc; this plugs a memory
58061         leak.  Remove casts from void * to pointers, that are no longer
58062         needed now that we're assuming C89 or better.
58063
58064         Merge error changes from glibc.
58065
58066         * lib/error.c, error.h: Update copyright notice header to match glibc.
58067         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
58068         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
58069         Disable cancellation while printing error.
58070         * lib/error.h: Prepend __ to parameter names.
58071
58072 2003-09-26  Jim Meyering  <jim@meyering.net>
58073
58074         * lib/error.c (error_tail): Move some declarations
58075         into inner scope where the local variables are used.
58076
58077 2003-09-26  Bruno Haible  <bruno@clisp.org>
58078
58079         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
58080         stpncpy().
58081         Don't define stpncpy through config.h; it's now done through stpncpy.h.
58082
58083 2003-09-26  Bruno Haible  <bruno@clisp.org>
58084
58085         * lib/stpncpy.h (gnu_stpncpy): New declaration.
58086         (stpncpy): Define as alias for gnu_stpncpy.
58087         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
58088
58089 2003-09-25  Simon Josefsson  <jas@extundo.com>
58090
58091         * lib/xgetdomainname.h: New file.
58092         * lib/xgetdomainname.c: New file.
58093
58094 2003-09-25  Simon Josefsson  <jas@extundo.com>
58095             Bruno Haible  <bruno@clisp.org>
58096
58097         * modules/getdomainname: New file.
58098         * modules/xgetdomainname: New file.
58099         * MODULES.html.sh (func_all_modules): Add getdomainname,
58100         xgetdomainname.
58101
58102 2003-09-25  Simon Josefsson  <jas@extundo.com>
58103             Bruno Haible  <bruno@clisp.org>
58104
58105         * m4/getdomainname.m4: New file.
58106
58107 2003-09-25  Simon Josefsson  <jas@extundo.com>
58108             Bruno Haible  <bruno@clisp.org>
58109
58110         * lib/getdomainname.h: New file.
58111         * lib/getdomainname.c: New file.
58112
58113 2003-09-25  Karl Berry  <karl@gnu.org>
58114
58115         * lib/argp-fmtstream.c, argp-help.c: update from libc.
58116
58117 2003-09-25  Karl Berry  <karl@gnu.org>
58118
58119         * config/install-sh: update from automake.
58120
58121 2003-09-25  Bruno Haible  <bruno@clisp.org>
58122
58123         * modules/version-etc-2: New file, from modules/version-etc with
58124         modifications.
58125         * MODULES.html.sh (func_all_modules): Add version-etc-2.
58126
58127 2003-09-25  Bruno Haible  <bruno@clisp.org>
58128
58129         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
58130         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
58131
58132 2003-09-24  Simon Josefsson  <jas@extundo.com>
58133
58134         * modules/xgethostname: Add xgethostname.h.
58135
58136 2003-09-24  Paul Eggert  <eggert@twinsun.com>
58137
58138         * lib/linebuffer.c (freebuffer): Don't free the argument, just
58139         the buffer associated with the argument.  Bug reported by
58140         Simon Josefsson.
58141
58142 2003-09-24  Paul Eggert  <eggert@twinsun.com>
58143
58144         * README: Document assumptions that 'int' is at least 32 bits
58145         wide, that integer arithmetic is 2's complement without overflow,
58146         that there are no holes in integer values, that adding sizes of
58147         two nonoverlapping objects can't overflow, and that all-bits-zero
58148         yields scalar zero.  Fix spelling and capitalization typos.
58149
58150 2003-09-19  Karl Berry  <karl@gnu.org>
58151
58152         * lib/argp.h: update from libc.
58153
58154 2003-09-17  Paul Eggert  <eggert@twinsun.com>
58155
58156         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
58157         to avoid spurious warnings like "AC_RUN_IFELSE was called before
58158         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
58159
58160 2003-09-17  Paul Eggert  <eggert@twinsun.com>
58161
58162         * gnulib-tool: Use "test -h", not "test -L", for portability
58163         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
58164         (tags_regexp): Remove, since \| doesn't conform to POSIX.
58165         (sed_extract_prog): Issue s commands one-by-one, rather than
58166         using \| in one s command.
58167
58168 2003-09-16  Paul Eggert  <eggert@twinsun.com>
58169
58170         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
58171         input error, instead of returning NULL the next time we are called
58172         (and therefore losing track of errno).
58173
58174 2003-09-16  Bruno Haible  <bruno@clisp.org>
58175
58176         * gnulib-tool (func_create_testdir): Warn about duplicated
58177         dependencies.
58178
58179 2003-09-15  Paul Eggert  <eggert@twinsun.com>
58180
58181         * modules/argmatch, modules/fatal, modules/obstack,
58182         modules/xalloc, modules/xgethostname: Sort dependencies by
58183         importance, not alphabetically.
58184
58185 2003-09-15  Paul Eggert  <eggert@twinsun.com>
58186
58187         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
58188         fails, so that the caller gets the proper errno.
58189
58190         * lib/readutmp.c (read_utmp): Likewise.
58191         Check for fstat error.  Close stream and free storage
58192         when failing.
58193
58194 2003-09-14  Karl Berry  <karl@gnu.org>
58195
58196         * config/srclist.txt (strdup.c): disable for c89 changes.
58197
58198 2003-09-14  Jim Meyering  <jim@meyering.net>
58199
58200         * lib/getloadavg.c: Correct cpp indentation.
58201         * lib/strdup.c: Likewise.
58202         * lib/vasnprintf.c: Likewise.
58203
58204 2003-09-14  Bruno Haible  <bruno@clisp.org>
58205
58206         * modules/fwriteerror: New file.
58207         * MODULES.html.sh (func_all_modules): Add fwriteerror.
58208
58209 2003-09-14  Bruno Haible  <bruno@clisp.org>
58210
58211         * lib/fwriteerror.h: New file.
58212         * lib/fwriteerror.c: New file.
58213
58214 2003-09-12  Paul Eggert  <eggert@twinsun.com>
58215
58216         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
58217         modules/xgethostname, modules/xalloc: Depend on exit.
58218
58219 2003-09-12  Paul Eggert  <eggert@twinsun.com>
58220
58221         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
58222
58223         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
58224         and AC_MINIX, too, so that their extensions are available.
58225
58226         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
58227         This macro has been superseded by gl_BACKUPFILE.
58228
58229         More patches to assume C89 or better.
58230
58231         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
58232
58233         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
58234         unconditionally.
58235         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
58236         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
58237         Include <string.h>, <stdlib.h> unconditionally.
58238         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
58239         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
58240         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
58241         headers or for string.h.
58242         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
58243         or strtoul.
58244
58245         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
58246         headers.
58247         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
58248         * m4/userspec.m4 (gl_USERSPEC): Likewise.
58249         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
58250         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
58251         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
58252         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
58253         memcpy, memset.
58254         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
58255         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
58256         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
58257         strtol.
58258         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
58259         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
58260         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
58261         strtoul.
58262
58263 2003-09-12  Paul Eggert  <eggert@twinsun.com>
58264
58265         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
58266         * lib/obstack.c [!defined _LIBC]: Likewise.
58267         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
58268         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
58269         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
58270
58271         More changes to assume C89 or better.
58272
58273         * lib/error.c (error_tail): Assume vprintf.
58274
58275         * lib/argmatch.c (getenv): Remove decl.
58276         * lib/progreloc.c (get_full_program_name): Define via prototype.
58277         * lib/setenv.c (clearenv): Likewise.
58278         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
58279         needed.
58280         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
58281         (malloc, memcpy): Remove decls.
58282         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
58283         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
58284         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
58285         (memcpy): Remove macro.
58286         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
58287         (__P): Remove.  All uses removed.
58288         (PTR): Remove.  All uses changed to void *.
58289         (CHAR_BIT, NULL): Remove.
58290         (spaces, zeros, memset_space, memset_zero)
58291         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
58292         Remove.
58293         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
58294         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
58295         Define with prototype.
58296         Remove now-unnecessary prototype decl.
58297         (extra_args_spec): Assume ANSI C.  All uses changed.
58298         (extra_args_spec_iso): Remove.
58299         (my_strftime, emacs_strftimeu): Define via prototype.
58300         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
58301         unconditionally.
58302         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
58303         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
58304         (strtoul, strtol): Remove decls.
58305         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
58306         LONG_MAX): Remove.
58307         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
58308         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
58309         (LOCALE_PARAM_PROTO): New macro.
58310         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
58311         (INTERNAL (strtol), strtol): Define with a prototype.
58312         (PARAMS): Remove.  All uses removed.
58313         * lib/tempname.c: Include <string.h> unconditionally.
58314         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
58315         * lib/xgethostname.c (main): Define with a prototype.
58316         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
58317         Include <stdlib.h> unconditionally.
58318         (calloc, malloc, realloc, free): Remove decls.
58319         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
58320         Include <stdlib.h> unconditionally.  Sort include file names.
58321         (strtod): Remove.
58322         (xstrtod): Define with a prototype.
58323         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
58324         (strtol, strtoul): Remove decls.
58325
58326 2003-09-11  Paul Eggert  <eggert@twinsun.com>
58327
58328         More patches to assume C89 or better.
58329         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
58330         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
58331         string.h, memchr, STDC_HEADERS.
58332
58333 2003-09-11  Paul Eggert  <eggert@twinsun.com>
58334
58335         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
58336         Include <stdlib.h>, <string.h> unconditionally.
58337         Remove now-unnecessary cast to char *.
58338         * lib/strnlen.c: Include <string.h> unconditionally.
58339         * lib/yesno.c (yesno): Define with a prototype.
58340
58341 2003-09-11  Bruno Haible  <bruno@clisp.org>
58342
58343         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
58344
58345 2003-09-10  Jim Meyering  <jim@meyering.net>
58346
58347         * lib/error.c: Correct indentation of cpp directives.
58348
58349 2003-09-10  Bruno Haible  <bruno@clisp.org>
58350
58351         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
58352         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
58353         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
58354         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
58355         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
58356         <stdlib.h> and <string.h> checks.
58357         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
58358         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
58359
58360 2003-09-10  Bruno Haible  <bruno@clisp.org>
58361
58362         * lib/strcspn.c: Include <string.h> unconditionally.
58363         * lib/strpbrk.c: Include <string.h> unconditionally.
58364         * lib/strstr.c: Include <string.h> unconditionally.
58365         * lib/unicodeio.c: Include <string.h> unconditionally.
58366         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
58367         * lib/unsetenv.c: Likewise.
58368         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
58369         * lib/yesno.c: Include <stdlib.h> unconditionally.
58370         (rpmatch): Add prototype.
58371
58372 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58373
58374         More patches to assume C89 or better.
58375         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
58376         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
58377         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
58378         or for string.h.
58379         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
58380         stdlib.h.
58381         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
58382         C headers.
58383         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
58384         string.h.
58385         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
58386         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
58387         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
58388         or for string.h.
58389         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
58390         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
58391         C headers.
58392         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
58393         memcpy.
58394         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
58395         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
58396         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
58397         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
58398         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
58399         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
58400         string.h, free.
58401         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
58402         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
58403         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
58404         C headers, or for string.h.
58405         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
58406         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
58407         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
58408         headers, memory.h, stdlib.h, string.h, strings.h.
58409         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
58410         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
58411         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
58412         strchr.
58413         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
58414         headers, memory.h, string.h.
58415         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
58416         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
58417         free.
58418         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
58419         headers.
58420         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
58421         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
58422         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
58423         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
58424         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
58425
58426 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58427
58428         More K&R removal.
58429
58430         * lib/acosl.c (main): Use a prototype.
58431         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
58432         tanl.c: Likewise.
58433
58434         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
58435
58436         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
58437         (getopt, etopt_long, getopt_long_only, _getopt_internal)
58438         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
58439         with a prototype.
58440         * lib/getopt.c (const): Remove macro.
58441         Include <string.h> unconditionally.
58442         (my_index): Remove; all uses changed to strchr.
58443         (strlen): Remove decl.
58444         (exchange): Remove forward decl; no longer needed.
58445         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
58446         Define with prototype.
58447         * lib/getopt1.c (const): Remove macro.
58448         (getopt_long, getopt_long_only, main): Define with prototype.
58449
58450         * lib/getugroups.c: Include <string.h> unconditionally.
58451
58452         * lib/getusershell.c: Include <stdlib.h> unconditionally.
58453         (getusershell, setusershell, endusershell, readname, main):
58454         Define with prototypes.
58455
58456         * lib/group-member.c: Include group-member.h first.
58457         Include <stdlib.h> unconditionally.
58458
58459         * lib/hard-locale.c: Include hard-locale.h first.
58460         Include <stdlib.h>, <string.h> unconditionally.
58461
58462         * lib/hash.c (free, malloc): Remove decls.
58463         Include <stdlib.h> unconditionally.
58464
58465         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
58466         (getenv): Do not declare.
58467
58468         * lib/idcache.c: Include <string.h> unconditionally.
58469
58470         * lib/long-options.c: Include long-options.h first, to test interface.
58471         Include <stdlib.h> unconditionally.
58472
58473         * lib/makepath.c: Include makepath.h first, to test interface.
58474         Include <stdlib.h> and <string.h> unconditionally.
58475
58476         * lib/linebuffer.c: Include <stdlib.h>.
58477         (free): Remove decl.
58478
58479         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
58480         stddef.h. rpl_malloc returns void *, not char *.
58481         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
58482         prototype.
58483
58484         * lib/md5.h: Include <limits.h> unconditionally.
58485         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
58486         (__P): Remove; all uses removed.
58487         * lib/md5.c: Include "md5.h" first.
58488         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
58489         md5_buffer, md5_process_bytes, md5_process_block):
58490         Define with prototypes.
58491         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
58492         * lib/sha.c: Include "sha.h" first.
58493         Include <stdlib.h>, <string.h> unconditionally.
58494
58495         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
58496         * lib/memcmp.c (__ptr_t): Likewise.
58497         * lib/memrchr.c (__ptr_t): Likewise.
58498         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
58499         Include <string.h> unconditionally.
58500         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
58501         * lib/memchr.c: Include <stdlib.h> unconditionally.
58502         * lib/memchr.c (LONG_MAX): Remove.
58503         * lib/memrchr.c (LONG_MAX): Likewise.
58504         * lib/memchr.c (__memchr): Define via a prototype.
58505         * lib/memrchr.c (__memrchr): Likewise.
58506         * lib/memcmp.c (__P): Remove, and remove all uses.
58507         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
58508         Remove forward decls; no longer needed.
58509         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
58510         Use types required by C89 in prototype.
58511
58512         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
58513         * lib/savedir.c: Likewise.
58514         * lib/mkdir.c (free): Remove decl.
58515         * lib/rmdir.c (rmdir): Define with a prototype.
58516         * lib/savedir.c: Include savedir.h first, to test interface.
58517
58518         * lib/mktime.c (STDC_HEADERS): Remove.
58519         Include <stdlib.h>, <string.h> unconditionally.
58520
58521         * lib/modechange.c: Include <stdlib.h> unconditionally.
58522         (malloc): Remove decl.
58523
58524         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
58525         (free): Remove decl.
58526
58527         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
58528         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
58529         (This type really should be intptr_t, but that's a C99ism.)
58530         (_obstack_memcpy): Remove: all uses changed to memcpy.
58531         Include <string.h> unconditionally.
58532         (struct obstack): Assume __STDC__ for types of members
58533         chunkfun, freefun, extra_arg.
58534         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
58535         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
58536         obstack_begin, obstack_specify_allocation,
58537         obstack_specify_allocation_with_arg, obstack_chunkfun,
58538         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
58539         Remove unprototyped decls and the macros that use them.
58540         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
58541         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
58542         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
58543         (defined __STDC__ && __STDC__)]:
58544         Remove nonprototyped code.
58545         Include <stdlib.h> unconditionally.
58546         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
58547         _obstack_allocated_p, _obstack_free, obstack_free,
58548         _obstack_memory_used, print_and_abort):
58549         Define using prototypes.
58550         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
58551         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
58552         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
58553         obstack_next_free, obstack_object_size, obstack_room) [0]:
58554         Remove unused, unprototyped code.
58555
58556         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
58557
58558         * lib/physmem.c (physmem_total, physmem_available, main): Define
58559         with prototypes.
58560
58561         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
58562         (main): Define with a prototype.
58563
58564         * lib/posixver.c (getenv): Remove decl.
58565
58566         * lib/putenv.c (malloc): Returns void *, not char *.
58567         Include <string.h> unconditionally.
58568         (strchr, memcpy, NULL): Do not define.
58569
58570         * lib/readtokens.c: Include readtokens.h first, to test interface.
58571         Include <stdlib.h>, <string.h> unconditionally.
58572         (init_tokenbuffer): Define with a prototype.
58573
58574         * lib/regex.c (PARAMS): Remove.  All uses removed.
58575         All uses of _RE_ARGS removed, too.
58576         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
58577         unconditionally.
58578         (bzero): Assume memset exists.
58579         (memcmp, memcpy, NULL): Remove.
58580         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
58581         char, or assignments to local vars of type signed char.
58582         (init_syntax_once, PREFIX(extract_number_and_incr),
58583         PREFIX(print_partial_compiled_pattern),
58584         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
58585         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
58586         PREFIX(regex_grow_registers), PREFIX(regex_compile),
58587         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
58588         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
58589         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
58590         wcs_compile_range, byte_compile_range, truncate_wchar,
58591         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
58592         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
58593         count_mbs_length, wcs_re_match_2_internal,
58594         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
58595         PREFIX(alt_match_null_string_p),
58596         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
58597         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
58598         regfree, PREFIX(extract_number)): Define with prototype.  Remove
58599         now-unnecessary declaration, if any.
58600         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
58601         regcomp, regexec):
58602         Remove now-unnecessary casts among pointer types.
58603         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
58604
58605         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
58606         (free): Remove decl.
58607
58608         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
58609
58610         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
58611         (free): Remove decl.
58612
58613         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
58614         * lib/xgetcwd.c: Likewise.
58615
58616         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
58617         (free): Remove decl.
58618
58619         * lib/strchrnul.c (strchrnul): Define with a prototype.
58620         Fix bug: c_in was not converted to char before searching.
58621
58622         The following changes are not K&R related:
58623
58624         * lib/group-member.h: Include <sys/types.h>, so that this file is
58625         self-contained.
58626         * lib/makepath.h: Likewise.
58627
58628         * lib/getusershell.c (readname, default_index, line_size, readname):
58629         Use size_t, not int, for sizes.
58630         (readname): If the size overflows, report an error instead of
58631         looping forever.
58632
58633 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58634
58635         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
58636         libc.
58637
58638 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58639
58640         * README: New section: portability guidelines.
58641
58642 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
58643
58644         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
58645         C89 spec.
58646
58647 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
58648
58649         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
58650
58651 2003-09-08  Paul Eggert  <eggert@twinsun.com>
58652
58653         Assume C89 or better; remove K&R cruft.
58654         A few of these changes were first proposed by Derek Robert Price
58655         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
58656
58657         * lib/addext.c: Include <string.h> unconditionally.
58658         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
58659         Don't declare getenv or malloc.
58660
58661         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
58662         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
58663         (NULL): Remove.
58664         (find_stack_direction, alloca): Use prototypes.
58665
58666         * lib/atexit.c (atexit): Define using a prototype.
58667
58668         * lib/basename.c, dirname.c, stripslash.c:
58669         Include <string.h> unconditionally.
58670
58671         * lib/bcopy.c: Include <stddef.h>.
58672         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
58673
58674         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
58675
58676         * lib/error.h (error, error_at_line, error_print_progname)
58677         [! (defined (__STDC__) && __STDC__)]: Remove decls.
58678         * lib/error.c: Include error.h first, to check interface.
58679         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
58680         (VA_START): Remove; all uses changeed to va_start.
58681         (exit, strerror): Remove decls.
58682         (error_print_progname): Prototype uncondionally.
58683         Don't include <errno.h>; no longer needed.
58684         (private_strerror): Remove.
58685         (error_tail): Always define.
58686         (error, error_at_line): Assume C89 or better; always use prototypes.
58687         * lib/fatal.c: Include "fatal.h" first, to test interface.
58688         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
58689         (VA_START): Remove; all uses changed to va_start.
58690         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
58691         this case.
58692         (exit): Remove decl.
58693         (fatal): Prototype unconditionally.  Assume va_start works.
58694         Abort at end, to pacify gcc.
58695
58696         * lib/euidaccess.c (main): Define with a prototype.
58697
58698         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
58699
58700         * lib/exitfail.c: Include <stdlib.h> unconditionally.
58701
58702         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
58703         prototypes.
58704         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
58705         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
58706         (getenv): Remove decl.
58707         (fnmatch): Define using a prototype.
58708         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
58709         (FCT): Define using a prototype.
58710
58711         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
58712
58713         * lib/gethostname.c: Include <stddef.h>.
58714         (gethostname): Define with prototype.  Length is size_t, not int.
58715
58716 2003-09-08  Paul Eggert  <eggert@twinsun.com>
58717
58718         Assume C89 or better; remove K&R cruft.
58719         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
58720         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
58721         string.h, getenv, malloc.
58722         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
58723         headers.
58724         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
58725         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
58726         do not check for strerror.
58727         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
58728         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
58729         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
58730         do not check for doprnt or vprintf.
58731         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
58732         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
58733
58734 2003-09-08  Paul Eggert  <eggert@twinsun.com>
58735
58736         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
58737         getversion.c should have been removed then, but was accidentally
58738         preserved.
58739
58740         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
58741         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
58742
58743 2003-09-08  Karl Berry  <karl@gnu.org>
58744
58745         * config/config.sub, config.guess, srclistvars.sh: update from savannah
58746                 config, forget about prep.
58747
58748         * config/depcomp, missing: update from automake.
58749
58750 2003-09-07  Paul Eggert  <eggert@twinsun.com>
58751
58752         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
58753         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
58754
58755 2003-09-07  Paul Eggert  <eggert@twinsun.com>
58756
58757         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
58758         copy_tm_result.  Bug reported by Simon Josefsson in
58759         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
58760
58761 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58762
58763         * m4/time_r.m4: New file.
58764         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
58765         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
58766         is. Check for timegm declaration.
58767         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
58768         Do not check for gmtime_r.
58769         Replace mktime if __mktime_internal does not exist and if mktime
58770         hasn't been replaced already.
58771
58772 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58773
58774         * lib/time_r.c, lib/time_r.h: New files.
58775
58776         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
58777         __localtime_r.
58778         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
58779         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
58780
58781         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
58782         __gmtime_r.
58783         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
58784         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
58785         Include <time_r.h>.
58786
58787         * lib/timegm.c: Switch to glibc implementation, with the following
58788         changes:
58789         [defined HAVE_CONFIG_H]: Include <config.h>.
58790         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
58791         (__mktime_internal) [!defined _LIBC]: New decl.
58792         (__gmtime_r) [!defined _LIBC]: New macro and function.
58793         (timegm): Use a prototype, since gnulib assumes C89.
58794         Do not bother declaring tmp to be const, as it's not really usefu.
58795         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
58796         (timegm): Declare only if HAVE_DECL_TIMEGM.
58797
58798 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58799
58800         * MODULES.html.sh (func_all_modules): Add time_r.
58801         * modules/time_r: New file.
58802         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
58803         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
58804
58805 2003-09-03  Paul Eggert  <eggert@twinsun.com>
58806
58807         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
58808         Bug reported by Lute Kamstra in
58809         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
58810
58811         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
58812         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
58813         course with correspondingly smaller numbers for tomorrow and
58814         yesterday.  From Tadayoshi Funaba.  Originally installed into
58815         sh-utils on 1999-08-07, but the patch got lost (I guess during the
58816         coreutils merge?).
58817
58818 2003-08-31  Simon Josefsson  <jas@extundo.com>
58819
58820         * modules/timegm: New file.
58821         * MODULES.html.sh (func_all_modules): Add timegm.
58822
58823 2003-08-31  Simon Josefsson  <jas@extundo.com>
58824
58825         * m4/timegm.m4: New file.
58826
58827 2003-08-31  Simon Josefsson  <jas@extundo.com>
58828
58829         * lib/timegm.h: New file.
58830         * lib/timegm.c: New file.  Based on
58831         wget-1.8.2/src/http.c:mktime_from_utc.
58832
58833 2003-08-31  Karl Berry  <karl@gnu.org>
58834
58835         * lib/argp.h: update from libc.
58836
58837 2003-08-28  Bruno Haible  <bruno@clisp.org>
58838
58839         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
58840         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
58841         followed by '#define fnmatch fnmatch_posix' gives an error.
58842
58843 2003-08-28  Bruno Haible  <bruno@clisp.org>
58844
58845         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
58846         warning on QNX, which defines O_BINARY to 000000.
58847
58848 2003-08-27  Jim Meyering  <jim@meyering.net>
58849
58850         * m4/mkstemp.m4: Require that the system mkstemp be able to create
58851         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
58852         would fail after 32.  Reported by Danny Levinson.  Details here:
58853         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
58854
58855 2003-08-24  Bruno Haible  <bruno@clisp.org>
58856
58857         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
58858         MSVC7 <stdio.h> is included later.
58859
58860 2003-08-22  Simon Josefsson  <jas@extundo.com>
58861
58862         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
58863
58864 2003-08-20  Karl Berry  <karl@gnu.org>
58865
58866         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
58867
58868 2003-08-20  Bruno Haible  <bruno@clisp.org>
58869
58870         * modules/progname: New file.
58871         * MODULES.html.sh (func_all_modules): Add progname.
58872
58873 2003-08-20  Bruno Haible  <bruno@clisp.org>
58874
58875         * lib/progname.h: New file, from GNU gettext.
58876         * lib/progname.c: New file, from GNU gettext.
58877         * lib/progreloc.c: New file, from GNU gettext.
58878
58879 2003-08-19  Jim Meyering  <jim@meyering.net>
58880
58881         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
58882         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
58883
58884 2003-08-19  Bruno Haible  <bruno@clisp.org>
58885
58886         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
58887         more.
58888
58889 2003-08-19  Bruno Haible  <bruno@clisp.org>
58890
58891         * lib/xstrdup.c: Assume <string.h> exists.
58892
58893 2003-08-18  Paul Eggert  <eggert@twinsun.com>
58894
58895         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
58896         in makefile rules.
58897
58898 2003-08-18  Jim Meyering  <jim@meyering.net>
58899
58900         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
58901         * m4/lib-ld.m4: Likewise.
58902
58903 2003-08-18  Jim Meyering  <jim@meyering.net>
58904
58905         * lib/setenv.h: Indent nested cpp directive.
58906         * lib/vasnprintf.c: Remove trailing blanks.
58907
58908 2003-08-17  Simon Josefsson  <jas@extundo.com>
58909
58910         * modules/xstrndup: New file.
58911         * MODULES.html.sh (func_all_modules): Add xstrndup.
58912
58913 2003-08-17  Simon Josefsson  <jas@extundo.com>
58914
58915         * modules/argp: Fix autoconf macro name. Add more dependencies.
58916
58917 2003-08-17  Simon Josefsson  <jas@extundo.com>
58918
58919         * m4/xstrndup.m4: New file.
58920
58921 2003-08-17  Simon Josefsson  <jas@extundo.com>
58922
58923         * m4/argp.m4: New file.
58924
58925 2003-08-17  Simon Josefsson  <jas@extundo.com>
58926             Bruno Haible  <bruno@clisp.org>
58927
58928         * lib/xstrndup.h: New file.
58929         * lib/xstrndup.c: New file.
58930
58931 2003-08-17  Bruno Haible  <bruno@clisp.org>
58932
58933         * modules/strndup (Files, Include): Add lib/strndup.h.
58934
58935 2003-08-17  Bruno Haible  <bruno@clisp.org>
58936
58937         * modules/euidaccess (Files): Add lib/euidaccess.h.
58938
58939 2003-08-17  Bruno Haible  <bruno@clisp.org>
58940
58941         * lib/strndup.h: New file.
58942
58943 2003-08-17  Bruno Haible  <bruno@clisp.org>
58944
58945         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
58946         like AC_GNU_SOURCE.
58947         * modules/extensions (configure.ac): Comment out the invocation of
58948         gl_USE_SYSTEM_EXTENSIONS.
58949
58950 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58951
58952         Merges from coreutils, etc.
58953         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
58954         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
58955         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
58956         fixing a typo.
58957         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
58958         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
58959
58960 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58961
58962         Document merge from coreutils.
58963         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
58964         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
58965         * modules/utime: Add m4/utimes-null.m4.
58966
58967 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58968
58969         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
58970         space, undoing this 2003-08-12 change:
58971         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58972
58973 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58974
58975         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
58976         strtoul.c from libc, undoing this 2003-08-12 change:
58977         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58978
58979 2003-08-16  Jim Meyering  <jim@meyering.net>
58980
58981         Merges from coreutils.
58982         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
58983         prefix.  Adjust cache variables similarly.  Create 500 rather than
58984         just 300 files, to exercise bug on Darwin6.5, too.
58985         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
58986         $missing_dir.
58987         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
58988         AM_SYS_POSIX_TERMIOS.
58989         Reported by mkc@mathdogs.com.
58990         Also change use of $am_cv_sys_posix_termios
58991         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
58992         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
58993         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
58994         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
58995         in /proc/mounts until it finds one with matching device number.  This
58996         is unnecessary when the FILE argument *is* a mount point.  No stat call
58997         is necessary in that case.  So, disable the statvfs-testing code on
58998         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
58999         as RedHat bug# 84846.
59000         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
59001         to 1MB, so as not to render systems with no stack size limit (e.g.,
59002         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
59003         Include <unistd.h>.  On some systems,
59004         it is required for the definition of _SC_PAGESIZE.
59005
59006 2003-08-16  Jim Meyering  <jim@meyering.net>
59007
59008         Merge from coreutils.
59009         * lib/xstrtoimax.c: #else #if -> #elif.
59010         * lib/xstrtoumax.c: Likewise.
59011
59012 2003-08-16  Jim Meyering  <jim@meyering.net>
59013
59014         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
59015         * m4/utimes.m4: Removed.
59016         * m4/utimes-null.m4: Renamed from utimes.m4.
59017
59018         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
59019         to 1MB, so as not to render systems with no stack size limit (e.g.,
59020         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
59021         Include <unistd.h>.  On some systems,
59022         it is required for the definition of _SC_PAGESIZE.
59023
59024 2003-08-16  Jim Meyering  <jim@meyering.net>
59025         and Paul Eggert  <eggert@cs.ucla.edu>
59026
59027         Merges from coreutils, etc.
59028
59029         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
59030         using the latest version from cvs.  This avoids problems with #line
59031         directives using a vendor (Sun) compiler.
59032         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
59033         Don't set GETGROUPS_LIB here; now it's
59034         done via getgroups.m4's wrapper function.
59035         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
59036         rather than just in sh-util/configure.in, so that the
59037         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
59038         same.
59039         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
59040         AC_FUNC_GETLOADAVG where to find getloadavg.c.
59041         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
59042         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
59043         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
59044         Remove code that is now done by the newly-required macros.
59045         Append $(EXEEXT) to DF_PROG.
59046         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
59047         Do not invoke or require the following here,
59048         since prereq.m4 or some gnulib .m4 now does this for us:
59049         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
59050         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
59051         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
59052         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
59053         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
59054         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
59055         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
59056         AC_FUNC_OBSTACK.
59057         Do not replace the following functions, as this is now the job
59058         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
59059         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
59060         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
59061         atexit getpass, strdup, getpagesize.
59062         Replace 'raise'.
59063         Do not check for the following functions, as this is now the job
59064         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
59065         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
59066         setregid.
59067         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
59068         Check for sys/sysctl.h.
59069         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
59070         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
59071         of checking for ssize_t ourselves.
59072
59073         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
59074         Require every macro that gnulib/modules/* suggests for us.
59075         (jm_PREREQ_ADDEXT): New macro.
59076         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
59077         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
59078
59079         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
59080         (gl_PHYSMEM): Use it.
59081         Also check for `table' function.
59082         Check for new headers and functions.
59083         Add check for sys/sysmp.h.
59084         With suggestions from Kaveh Ghazi.
59085         Ignore headers that are present but cannot be compiled.  This
59086         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
59087         C 5.4.
59088
59089 2003-08-15  Paul Eggert  <eggert@twinsun.com>
59090
59091         Document merge from coreutils.
59092         * modules/userspec: Depend on posixver.
59093         * modules/strftime: Depend on tzset.
59094
59095 2003-08-15  Paul Eggert  <eggert@twinsun.com>
59096
59097         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
59098         rather than tab, after '#' in shell-script copyright notices.
59099         Suggested by Bruno Haible.
59100
59101 2003-08-15  Paul Eggert  <eggert@twinsun.com>
59102
59103         * config/srclist-update: Use three spaces, rather than tab, after '#'
59104         in shell-script copyright notices.  Suggested by Bruno Haible.
59105         Remove unnecessary parenthesization in regular expression.
59106
59107 2003-08-15  Jim Meyering  <jim@meyering.net>
59108
59109         Merge from coreutils.
59110         * lib/xgethostname.c: Include <stdlib.h>.
59111         (xghostname): Don't exit for anything other than memory-related
59112         failure; just return NULL.
59113         * lib/userspec.c: Include "posixver.h".
59114         (parse_user_spec): Accept `.' as a separator only
59115         in pre-POSIX-200112 mode.
59116         * lib/strtoimax.c: Use #elif rather than #else #if.
59117         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
59118         Remove function, now that we can rely on a working tzset function.
59119         [!_LIBC]: Ensure that the required autoconf test has been run.
59120         [!defined _NL_CURRENT && HAVE_STRFTIME]:
59121         Use underlying_strftime for %r.
59122         * lib/sha.c: Merge in some clean-up and optimization changes from
59123         glibc.
59124         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
59125         Ensure that it is a multiple of 64.
59126         Rearrange loop exit tests so as to avoid performing an
59127         additional fread after encountering an error or EOF.
59128         * lib/realloc.c: Update copyright date.
59129
59130 2003-08-15  Jim Meyering  <jim@meyering.net>
59131         and Paul Eggert  <eggert@twinsun.com>
59132
59133         Merge from coreutils.
59134         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
59135         member but strut utmpx does not.  Needed for AIX 4.3.3.
59136         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
59137
59138 2003-08-15  Jim Meyering  <jim@meyering.net>
59139         and Paul Eggert  <eggert@cs.ucla.edu>
59140
59141         Merges from coreutils, etc.
59142         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
59143         Require gl_FUNC_TZSET_CLOBBER.
59144         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
59145         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
59146         members.
59147
59148 2003-08-14  Paul Eggert  <eggert@twinsun.com>
59149
59150         Help the merge from coreutils.
59151         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
59152         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
59153         * m4/tzset.m4: Use it too.
59154
59155 2003-08-14  Paul Eggert  <eggert@twinsun.com>
59156
59157         * modules/tzset: New file.
59158
59159 2003-08-14  Jim Meyering  <jim@meyering.net>
59160
59161         Merges from coreutils.
59162         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
59163         variable names, rather than @FNMATCH_H@.
59164         * modules/alloca: Likewise for $(ALLOCA_H).
59165
59166         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
59167         the three copies of the literal target, `fnmatch.h'.
59168         * modules/alloca (alloca.h): Likewise.
59169
59170 2003-08-14  Jim Meyering  <jim@meyering.net>
59171
59172         Merge from coreutils.
59173         * m4/tzset.m4: New file.
59174         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
59175         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
59176         otherwise, AIX 5.1 systems would end up using the latter.
59177         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
59178         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
59179         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
59180         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
59181
59182 2003-08-14  Jim Meyering  <jim@meyering.net>
59183
59184         Merge from coreutils.
59185         * lib/obstack.h: Whitespace changes.
59186         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
59187         and xcalloc return values.
59188         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
59189         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
59190         hang on OSF/1 5.1 for DIR on both local and remote file systems.
59191         Reported by (and fix confirmed by) Nelson H. F. Beebe.
59192         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
59193         error from mntctl.
59194         Use mntctl's return value to drive the entry-processing loop, since
59195         we can't rely on the value of the vmt_length member in the last
59196         entry.  On some systems doing so could result in exhausting
59197         virtual memory.  Based in part on a patch from Mike Jetzer.
59198
59199 2003-08-14  Jim Meyering  <jim@meyering.net>
59200         and Paul Eggert  <eggert@twinsun.com>
59201
59202         Merges from coreutils, plus other fixes.
59203         * lib/physmem.c: Merge in portability changes from gcc/libiberty
59204         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
59205         for credits and details.  Thanks to Kaveh Ghazi for helping
59206         to keep these files in sync.
59207         (ARRAY_SIZE): Define it.
59208         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
59209         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
59210         (memcasecmp): Don't assume size_t fits in unsigned int.
59211         Remove casts and duplicate code.
59212         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
59213         (memcpy): Remove definition.
59214         Merge in some clean-up and optimization changes from glibc.
59215         [BLOCKSIZE]: Move definition to top of file.
59216         Ensure that it is a multiple of 64.
59217         Rearrange loop exit tests so as to avoid performing an
59218         additional fread after encountering an error or EOF.
59219         * lib/md5.h (md5_uintptr): Define.
59220         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
59221         return to the initial working directory.  Preserve errno
59222         for caller.
59223         * lib/idcache.c: Include "xalloc.h".
59224         (xmalloc, xrealloc): Remove decls.
59225         (getuser): Remove casts no longer required in C89.
59226         * lib/human.c: Include stdio.h, for sprintf.
59227         * lib/group-member.c: Include "xalloc.h".
59228         (xmalloc, xrealloc): Remove decls.
59229         (get_group_info): Remove casts no longer required in C89.
59230         * lib/getusershell.c (readname): Remove casts no longer required in
59231         C89.
59232         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
59233         * lib/getline.c: Whitespace fix, from coreutils.
59234
59235 2003-08-13  Paul Eggert  <eggert@twinsun.com>
59236
59237         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
59238         Check for isascii.
59239
59240         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
59241         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
59242         Undo previous (whitespace-only) change.
59243
59244 2003-08-13  Paul Eggert  <eggert@twinsun.com>
59245
59246         * lib/exclude.c: Include <ctype.h>
59247         (IN_CTYPE_DOMAIN): New macro.
59248         (is_space): New fn.
59249         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
59250         and empty lines.
59251
59252         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
59253         Undo previous (whitespace-only) change.
59254
59255 2003-08-13  Paul Eggert  <eggert@twinsun.com>
59256
59257         * config/srclist-update: Change update back to the old behavior,
59258         leaving whitespace alone.  Use one 'sed' command rather than a
59259         pipeline.
59260         (fixlicense): Now a variable, not a function.
59261         (remove_trailing_blanks): Remove.
59262         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
59263         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
59264         Undo previous (whitespace-only) change.
59265
59266 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59267
59268         Merge from coreutils.
59269         * modules/euidaccess: Add lib_SOURCES, include for new
59270         file euidaccess.h
59271
59272 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59273
59274         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
59275         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
59276         Normalize leading white space and remove trailing white space.
59277
59278         Merge from coreutils
59279         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
59280
59281         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
59282         0.12.1.  These files are now being upgraded automatically by
59283         ../config/srclist-update.
59284
59285 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59286
59287         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
59288         Normalize leading white space and remove trailing white space.
59289         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
59290         notice, as per ../config/srclist-update.
59291
59292         Merge from coreutils.
59293         * lib/euidaccess.h: New file.
59294         * lib/euidaccess.c: Include it.
59295         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
59296         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
59297         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
59298
59299 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59300
59301         * config/srclist-update: Add copyright notice.
59302         (remove_id_lines, remove_trailing_blanks): New constants.
59303         (fixfile): Use them to normalize spacing a bit in copied files.
59304         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
59305         Normalize leading white space and remove trailing white space.
59306
59307         * config/texinfo.tex: Sync with texinfo.
59308
59309         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
59310         strtoul.c from libc, to merge coreutils whitespace changes.
59311
59312         * config/srclist.txt: Get the following m4 files from gettext:
59313         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
59314         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
59315         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
59316         wint_t.m4.
59317
59318 2003-08-12  Karl Berry  <karl@gnu.org>
59319
59320         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
59321         been made.
59322
59323 2003-08-11  Paul Eggert  <eggert@twinsun.com>
59324
59325         * modules/gnu-source, m4/gnu-source.m4:
59326         Remove; we're assuming Autoconf 2.54 or later now.
59327         Suggested by Bruno Haible.
59328         * MODULES.html.sh (func_all_modules): Remove gnu-source.
59329
59330 2003-08-11  Bruno Haible  <bruno@clisp.org>
59331
59332         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
59333
59334 2003-08-11  Bruno Haible  <bruno@clisp.org>
59335
59336         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
59337         (vasnprintf): Use it instead of wcslen.
59338
59339 2003-08-11  Bruno Haible  <bruno@clisp.org>
59340
59341         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
59342         value to ensure that _Bool promotes to int. Use #define for _Bool when
59343         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
59344
59345 2003-08-10  Karl Berry  <karl@gnu.org>
59346
59347         * lib/regex.h: update from libc (whitespace fix).
59348
59349 2003-08-09  Paul Eggert  <eggert@twinsun.com>
59350
59351         Merge some files from coreutils.  These changes were
59352         originally made by Jim Meyering.
59353         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
59354         many older Unixes require this.
59355         * lib/alloca.c (alloca): Remove cast to argument of free;
59356         no longer needed in C89.
59357         * lib/alloca_.h, regex.h: Fix white space to match
59358         what GNU indent does.
59359
59360 2003-08-09  Paul Eggert  <eggert@twinsun.com>
59361
59362         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
59363         apparently Emacs's Unicode mode got confused before my 2003-08-05
59364         checkin.
59365
59366 2003-08-08  Paul Eggert  <eggert@twinsun.com>
59367
59368         * m4/extensions.m4: New file.
59369         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
59370         Require gl_USE_SYSTEM_EXTENSIONS.
59371         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
59372         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
59373
59374 2003-08-08  Paul Eggert  <eggert@twinsun.com>
59375
59376         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
59377         * modules/extensions, modules/gnu-source: New files.
59378         * modules/timespec, modules/unlocked-io: Depend on extensions.
59379
59380 2003-08-07  Paul Eggert  <eggert@twinsun.com>
59381
59382         * modules/restrict: New file.
59383         * MODULES.html.sh (func_all_modules): Add restrict.
59384         * modules/regex: Depend on restrict.
59385
59386 2003-08-07  Paul Eggert  <eggert@twinsun.com>
59387
59388         * m4/restrict.m4: New file.
59389         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
59390
59391 2003-08-07  Bruno Haible  <bruno@clisp.org>
59392
59393         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
59394         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
59395
59396 2003-08-07  Bruno Haible  <bruno@clisp.org>
59397
59398         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
59399         makes the module 'getndelim2' compatible with the module 'getline'.
59400
59401 2003-08-05  Paul Eggert  <eggert@twinsun.com>
59402
59403         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
59404         byte with "\201" to avoid glitches when editing that source file
59405         with multi-gnome-terminal.
59406
59407 2003-08-05  Paul Eggert  <eggert@twinsun.com>
59408
59409         * lib/bumpalloc.h: Remove.
59410
59411 2003-08-05  Paul Eggert  <eggert@twinsun.com>
59412
59413         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
59414         * modules/bumpalloc: Remove.
59415
59416 2003-08-04  Paul Eggert  <eggert@twinsun.com>
59417
59418         * lib/getloadavg.c: Change copyright notice and spacing to conform to
59419         GNU coding style.
59420
59421         Merge from coreutils.
59422         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
59423         1. From glibc.
59424         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
59425         from Karl Berry, implemented by Jim Meyering.
59426         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
59427         from Dmitry V. Levin.
59428         Remove anachronistic cast of xrealloc.
59429         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
59430         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
59431         type. Otherwise, it wouldn't compile with at least /bin/cc on
59432         ymp-cray-unicos9.0.2.X.
59433         Combine two mostly-identical uses of alloca into one.
59434         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
59435
59436 2003-08-04  Dave Love  <d.love@dl.ac.uk>
59437
59438         [From Emacs.]
59439
59440         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
59441         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
59442         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
59443         obsolete NLIST_NAME_UNION.
59444         [__GNU__]: Undef BSD and FSCALE.
59445         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
59446
59447 2003-08-03  Paul Eggert  <eggert@twinsun.com>
59448
59449         * lib/stdbool_.h (_Bool): Make it signed char, instead of
59450         an enum type, so that it's guaranteed to promote to int.  See:
59451         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
59452
59453 2003-08-03  Karl Berry  <karl@gnu.org>
59454
59455         * config/depcomp: update from automake.
59456
59457 2003-07-31  Paul Eggert  <eggert@twinsun.com>
59458
59459         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
59460         (strerror): Don't assume that a printable int fits in 14 bytes.
59461
59462 2003-07-31  Bruno Haible  <bruno@clisp.org>
59463
59464         * modules/getpass-gnu: New file.
59465         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
59466
59467 2003-07-31  Bruno Haible  <bruno@clisp.org>
59468
59469         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
59470
59471 2003-07-24  Karl Berry  <karl@gnu.org>
59472
59473         * config/missing: update from automake.
59474
59475 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
59476             Bruno Haible  <bruno@clisp.org>
59477
59478         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
59479         * lib/getline.c (getline, getdelim): Likewise.
59480         Remove _GNU_SOURCE define; now it's defined in config.h through
59481         m4/getline.m4.
59482
59483 2003-07-23  Karl Berry  <karl@gnu.org>
59484
59485         * config/config.sub: update from prep.
59486
59487 2003-07-22  Paul Eggert  <eggert@twinsun.com>
59488
59489         * modules/xalloc (Depends-on): Add exitfail.
59490         * modules/xmemcoll: Likewise.
59491
59492 2003-07-22  Paul Eggert  <eggert@twinsun.com>
59493
59494         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
59495         over-parenthesization in macros.
59496
59497         Sync with coreutils.
59498
59499         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
59500         required by C99.
59501
59502         Use `exit_failure' for xalloc and xmemcoll instead of their own
59503         private exit-failure variables.
59504         * lib/xalloc.h (xalloc_exit_failure): Remove.
59505         * lib/xmalloc.c: Likewise.  Include exitfail.h.
59506         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
59507         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
59508         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
59509         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
59510
59511 2003-07-20  Jim Meyering  <jim@meyering.net>
59512
59513         * modules/closeout (Depends-on): Add exitfail.
59514         Suggestion from Bruno Haible.
59515
59516 2003-07-19  Karl Berry  <karl@gnu.org>
59517
59518         * config/config.sub: update from prep.
59519
59520 2003-07-18  Paul Eggert  <eggert@twinsun.com>
59521
59522         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
59523         Remove.
59524         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
59525         to test that it can stand by itself.  Include "exitfail.h".
59526         Clients should set exit_failure instead.
59527         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
59528
59529 2003-07-18  Bruno Haible  <bruno@clisp.org>
59530
59531         * modules/getndelim2: New file.
59532         * modules/getline: Share files with module getndelim2.
59533         * modules/getnline: Depend on getndelim2 instead of sharing files with
59534         it. Add getnline.c to lib_SOURCES.
59535         * MODULES.html.sh (func_all_modules): Add getndelim2.
59536
59537 2003-07-18  Bruno Haible  <bruno@clisp.org>
59538
59539         * m4/getndelim2.m4: New file.
59540         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
59541         invoke gl_PREREQ_GETNDELIM2.
59542         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
59543         gl_PREREQ_GETNDELIM2.
59544         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
59545         gl_GETNDELIM2.
59546
59547 2003-07-18  Bruno Haible  <bruno@clisp.org>
59548
59549         * lib/getndelim2.h: New file.
59550         * lib/getndelim2.c: Make into a module of its own. Include config.h,
59551         getndelim2.h.
59552         (getndelim2): Make non-static. Change return type to ssize_t.
59553         * lib/getline.h: Change argument names.
59554         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
59555         * lib/getnline.c: Include getndelim2.h.
59556
59557 2003-07-18  Andreas Schwab  <schwab@suse.de>
59558
59559         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
59560
59561 2003-07-17  Karl Berry  <karl@gnu.org>
59562
59563         * config/config.sub: update from prep.
59564
59565 2003-07-17  Bruno Haible  <bruno@clisp.org>
59566
59567         * modules/getnline: New file.
59568         * modules/getline: Add lib/getndelim2.c to source file list.
59569         * MODULES.html.sh (func_all_modules): Add getnline.
59570
59571 2003-07-17  Bruno Haible  <bruno@clisp.org>
59572
59573         * m4/getnline.m4: New file.
59574
59575 2003-07-17  Bruno Haible  <bruno@clisp.org>
59576
59577         * m4/Makefile.am.in: Remove file.
59578         * m4/Makefile.am: Remove file.
59579         * m4/Makefile.in: Remove file.
59580
59581 2003-07-17  Bruno Haible  <bruno@clisp.org>
59582
59583         * lib/getnline.h: New file.
59584         * lib/getnline.c: New file.
59585         * lib/getndelim2.c: New file, extracted from getline.c.
59586         (getndelim2): Renamed from getdelim2, with added nmax argument.
59587         * lib/getline.c: Include getndelim2.c.
59588         (getdelim2): Moved out to getndelim2.c.
59589         (getline, getdelim): Update.
59590
59591 2003-07-17  Bruno Haible  <bruno@clisp.org>
59592
59593         * lib/Makefile.am: Remove file.
59594         * lib/Makefile.in: Remove file.
59595
59596 2003-07-17  Bruno Haible  <bruno@clisp.org>
59597
59598         * configure.in: Remove file.
59599         * Makefile.in: Remove file.
59600
59601 2003-07-17  Bruno Haible  <bruno@clisp.org>
59602
59603         * MODULES.html.sh: Put the </BODY> right before </HTML>.
59604
59605 2003-07-16  Karl Berry  <karl@gnu.org>
59606
59607         * config/srclist-update: was running fixlicense twice, which caused
59608                 texinfo.tex to be nullified for some reason.  Simplify,
59609                 $gplsrc is no longer needed as far as I can see?
59610
59611 2003-07-16  Jim Meyering  <jim@meyering.net>
59612
59613         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
59614
59615 2003-07-15  Paul Eggert  <eggert@twinsun.com>
59616
59617         * config/srclist.txt: Get the following files from gettext-runtime/intl
59618         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
59619         ref-del.sin.  From Bruno Haible.
59620         * config/srclist-update (fixfile): Change grep pattern again, since the
59621         previous fix didn't work (there was another trailing $).  Use
59622         '[$]' to escape the $s.
59623
59624 2003-07-15  Karl Berry  <karl@gnu.org>
59625
59626         * lib/vasnprintf.c: update from gettext.
59627
59628 2003-07-15  Karl Berry  <karl@gnu.org>
59629
59630         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
59631         gets expanded when surrounded by '$'.
59632
59633 2003-07-15  Jim Meyering  <jim@meyering.net>
59634
59635         * modules/save-cwd: Don't depend on error.  From Derek Price.
59636
59637 2003-07-15  Jim Meyering  <jim@meyering.net>
59638
59639         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
59640
59641 2003-07-14  Simon Josefsson  <jas@extundo.com>
59642
59643         * modules/mempcpy: New file.
59644         * MODULES.html.sh (func_all_modules): Add mempcpy.
59645
59646 2003-07-14  Simon Josefsson  <jas@extundo.com>
59647
59648         * m4/mempcpy.m4: New file.
59649
59650 2003-07-14  Simon Josefsson  <jas@extundo.com>
59651
59652         * lib/mempcpy.h: New file.
59653         * lib/mempcpy.c: New file.
59654
59655 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59656
59657         * modules/getdate, modules/posixtm: Depend on mktime.
59658
59659 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59660
59661         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
59662         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
59663         unicodeio.c, unicodeio.h, unlocked-io.h:
59664         Switch from LGPL to GPL.
59665
59666 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59667
59668         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
59669         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
59670         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
59671         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
59672         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
59673         updated automatically by ../config/srclist-update.  This changes
59674         their license from LPGL to GPL.
59675
59676 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59677
59678         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
59679         assumed to refer to the root of the most recent stable gettext version.
59680         * config/srclistvars.sh: Add defaults for eggert.
59681         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
59682         Match "This program" as well as "The program".  This is needed
59683         for gettext.
59684
59685 2003-07-14  Jim Meyering  <jim@meyering.net>
59686
59687         Don't emit diagnostics.  Let callers do that.
59688         * lib/save-cwd.c: Don't include "error.h".
59689         (save_cwd): Don't call error.  Ensure that errno is valid
59690         when returning nonzero.
59691
59692         * lib/save-cwd.h (restore_cwd): Update prototype.
59693         * lib/save-cwd.c (restore_cwd): Remove two parameters.
59694         Simplify.  Don't call error upon failure.  Let callers do that.
59695         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
59696         when auditing is enabled.  But don't bother updating the #if.
59697
59698 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
59699
59700         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
59701         it breaks C++ compilation.
59702         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
59703
59704 2003-07-10  Simon Josefsson  <jas@extundo.com>
59705
59706         * modules/strchrnul (Makefile.am): Add strchrnul.h.
59707
59708 2003-07-10  Jim Meyering  <jim@meyering.net>
59709
59710         * m4/clock_time.m4: Remove trailing blank.
59711         * m4/intmax_t.m4: Likewise.
59712
59713 2003-07-10  Jim Meyering  <jim@meyering.net>
59714
59715         * lib/vasnprintf.c: Remove trailing blanks.
59716         Make cpp indentation consistent.
59717
59718 2003-07-09  Paul Eggert  <eggert@twinsun.com>
59719
59720         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
59721         posixver.c, strftime.c, strnlen.c, strverscmp.c:
59722         Switch from LGPL to GPL.
59723
59724 2003-07-09  Paul Eggert  <eggert@twinsun.com>
59725
59726         * config/srclist.txt: Sort sublists.  Add
59727         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
59728         that differ from gnulib for one reason or another; we'd like this list
59729         to be smaller but for now let's document what we have.
59730
59731 2003-07-08  Paul Eggert  <eggert@twinsun.com>
59732
59733         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
59734         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
59735         and sweeter "eval x=$x".
59736         * config/srclist.txt: Get lib/argp* from glibc.
59737
59738 2003-07-07  Paul Eggert  <eggert@twinsun.com>
59739
59740         * lib/mktime.c: Fix some boundary cases and remove need for floating
59741         point.
59742
59743         Issue a compile-time diagnostic if time_t is floating point, or if
59744         two's complement arithmetic is not in effect, or if arithmetic
59745         right shift does not propagate the sign.  These assumptions were
59746         all in the original code but they weren't checked.
59747
59748         (TIME_T_MIDPOINT, verify): New macros.
59749         (__isleap): Remove; it has integer overflow problems.
59750         (leapyear): New function, without those problems.
59751         (ydhms_tm_diff): Remove; splitting into two parts.
59752         (ydhms_diff): New function, containing the arithmetic part of
59753         the old ydhms_tm_diff function.  Issue a compile-time
59754         diagnostic if we are not using C99 integer division.
59755         Avoid casts when possible.
59756         (guess_time_tm): New function, containing the checking part of
59757         the old ydhms_tm_diff function.  Return the new value, rather than
59758         the difference between it and the old.  Accept a new argument T
59759         so that *T specifies the old value.  Check for overflow in the result.
59760
59761         (__mktime_internal): Use a time_t offset, not a long int offset.
59762         This undoes the 2003-06-04 change, which is no longer needed now
59763         that we have better overflow checking.
59764         (localtime_offset): Likewise.
59765
59766         (__mktime_internal): Avoid harmful overflow on hosts where time_t
59767         and long are 64-bit but int is only 32-bit.
59768         (ydhms_diff): Use long int to store year1 and yday1.
59769         Issue a compile-time diagnostic if long int is not wide enough.
59770
59771         (__mktime_internal): Use long int to store adjusted year and yday.
59772         Use plain C rather than preprocessor commands, if that doesn't
59773         affect efficiency.
59774         Check for overflow (and try to repair) after each probe
59775         rather than checking only at the very end.  This avoids some bugs
59776         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
59777         does not equal GMT offset at maximum time).
59778         Use integer to check for overflow rather than floating point; this
59779         is more portable to non-IEEE hosts, and is a tad faster.
59780         When we detect that we are oscillating between two values,
59781         don't check whether tm_isdst has the requested value, since
59782         we already know the answer.  When tm_isdst has the wrong value,
59783         use a different heuristic to find the right one, based on the
59784         extreme values actually observed in practice in tz2003a,
59785         rather than the (overly optimistic) "previous 3 calendar quarters".
59786
59787         (not_equal_tm, print_tm, check_result): Use "const T" rather than
59788         "T const" to accommodate glibc style.
59789         (check_result): Use less-confusing report format.  "long" -> "long int.
59790         (main): Likewise.
59791         Don't loop if the iteration overflows time_t.
59792         Allow a negative step in the iteration.
59793
59794 2003-07-06  Karl Berry  <karl@gnu.org>
59795
59796         * config/depcomp: update from automake.
59797         * config/config.sub: update from prep.
59798
59799 2003-07-03  Karl Berry  <karl@gnu.org>
59800
59801         * config/config.guess: update from prep.
59802
59803 2003-07-01  Paul Eggert  <eggert@twinsun.com>
59804
59805         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
59806         xreadlink.c now includes it unconditionally.
59807
59808 2003-07-01  Paul Eggert  <eggert@twinsun.com>
59809
59810         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
59811         having it depend on HAVE_SYS_TYPES_H.
59812
59813 2003-07-01  Bruno Haible  <bruno@clisp.org>
59814
59815         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
59816         <sys/types.h> should be sufficient.
59817         Reported by Paul Eggert.
59818
59819 2003-06-26  Karl Berry  <karl@gnu.org>
59820
59821         * config/depcomp: update from automake.
59822
59823 2003-06-26  Bruno Haible  <bruno@clisp.org>
59824
59825         * modules/human: Depend on module stdbool.
59826
59827 2003-06-25  Bruno Haible  <bruno@clisp.org>
59828
59829         * modules/readlink: New file.
59830         * modules/xreadlink: Depend on it.
59831         * MODULES.html.sh (func_all_modules): Add readlink.
59832
59833 2003-06-25  Bruno Haible  <bruno@clisp.org>
59834
59835         * m4/readlink.m4: New file.
59836
59837 2003-06-25  Bruno Haible  <bruno@clisp.org>
59838
59839         * lib/readlink.c: New file.
59840
59841 2003-06-22  Karl Berry  <karl@gnu.org>
59842
59843         * config/srclist.txt: update mkinstalldirs from automake.
59844         * config/mkinstalldirs: update.
59845
59846 2003-06-22  Bruno Haible  <bruno@clisp.org>
59847
59848         Portability to mingw32.
59849         * m4/ssize_t.m4: New file, from GNU gettext.
59850         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
59851         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
59852
59853 2003-06-22  Bruno Haible  <bruno@clisp.org>
59854
59855         * modules/safe-read: Add m4/ssize_t.m4.
59856         * modules/xreadlink: Add m4/ssize_t.m4.
59857
59858 2003-06-20  Bruno Haible  <bruno@clisp.org>
59859
59860         Assume C89, so PARAMS isn't needed.
59861         * lib/unicodeio.h (PARAMS): Remove.
59862         * lib/unicodeio.c: Don't use PARAMS.
59863
59864 2003-06-18  Karl Berry  <karl@gnu.org>
59865
59866         * config/config.{guess,sub}: update from prep.
59867
59868 2003-06-18  Jim Meyering  <jim@meyering.net>
59869
59870         Merge changes from coreutils.
59871         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
59872         Remove explicit declarations of xmalloc and realloc.
59873         Include xalloc.h.
59874         (read_utmp): Remove anachronistic cast of xmalloc.
59875
59876 2003-06-17  Paul Eggert  <eggert@twinsun.com>
59877
59878         Assume C89, so PARAMS isn't needed.
59879         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
59880         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
59881         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
59882         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
59883         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
59884         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
59885         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
59886         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
59887         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
59888         lib/xstrtod.h, lib/xstrtol.h: Likewise.
59889         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
59890         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
59891         no longer needed. Anyway, config.h should always be included before any
59892         other file.
59893
59894 2003-06-11  Simon Josefsson  <jas@extundo.com>
59895
59896         * modules/sysexits: New file.
59897         * MODULES.html.sh (func_all_modules): Add sysexits.
59898
59899 2003-06-11  Simon Josefsson  <jas@extundo.com>
59900
59901         * lib/sysexit_.h: New file.
59902
59903 2003-06-11  Derek Price  <derek@ximbiot.com>
59904
59905         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
59906         necessary.
59907
59908 2003-06-11  Bruno Haible  <bruno@clisp.org>
59909
59910         * m4/sysexits.m4: New file.
59911
59912 2003-06-10  Simon Josefsson  <jas@extundo.com>
59913
59914         * lib/argp.h: New file, from glibc.
59915         * lib/argp-ba.c: New file, from glibc.
59916         * lib/argp-eexst.c: New file, from glibc.
59917         * lib/argp-fmtstream.c: New file, from glibc.
59918         * lib/argp-fmtstream.h: New file, from glibc.
59919         * lib/argp-fs-xinl.c: New file, from glibc.
59920         * lib/argp-help.c: New file, from glibc.
59921         * lib/argp-namefrob.h: New file, from glibc.
59922         * lib/argp-parse.c: New file, from glibc.
59923         * lib/argp-pv.c: New file, from glibc.
59924         * lib/argp-pvh.c: New file, from glibc.
59925         * lib/argp-xinl.c: New file, from glibc.
59926
59927 2003-06-10  Simon Josefsson  <jas@extundo.com>
59928
59929         * modules/strchrnul: New file.
59930
59931 2003-06-10  Simon Josefsson  <jas@extundo.com>
59932
59933         * modules/argp: New file.
59934
59935 2003-06-10  Simon Josefsson  <jas@extundo.com>
59936
59937         * m4/strchrnul.m4: New file.
59938
59939 2003-06-10  Simon Josefsson  <jas@extundo.com>
59940
59941         * lib/strchrnul.h: New file.
59942         * lib/strchrnul.c: New file.
59943
59944 2003-06-10  Bruno Haible  <bruno@clisp.org>
59945
59946         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
59947
59948 2003-06-07  Karl Berry  <karl@gnu.org>
59949
59950         * config/config.{guess,sub}: update from prep.
59951
59952 2003-06-07  Jim Meyering  <jim@meyering.net>
59953
59954         * modules/strtod: Use $(...) notation, not @...@ for
59955         AC_REPLACE'd variables.
59956         * modules/localcharset: Likewise.
59957
59958 2003-06-07  Jim Meyering  <jim@meyering.net>
59959
59960         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
59961         in place of my name in the copyright comment.
59962         Remove definition and uses of __P.
59963
59964         From coreutils.
59965         * lib/stat.c: Don't declare xmalloc explicitly.
59966         Instead, include "xalloc.h".
59967         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
59968         xrealloc, and xcalloc return values.
59969         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
59970         Improve comment.
59971         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
59972
59973 2003-06-07  Bruno Haible  <bruno@clisp.org>
59974
59975         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
59976         avoid AC_CONFIG_LINKS.
59977         * modules/fnmatch (Makefile.am): Use explicit creation rule for
59978         fnmatch.h, to avoid AC_CONFIG_LINKS.
59979         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
59980
59981 2003-06-07  Bruno Haible  <bruno@clisp.org>
59982
59983         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
59984         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
59985         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59986         directory.
59987         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
59988         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59989         directory.
59990
59991 2003-06-06  Jim Meyering  <jim@meyering.net>
59992
59993         Merge from coreutils.
59994         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
59995         Consolidate declarations and initializations of *_base* locals.
59996
59997         Merge from coreutils.
59998         This avoids a core dump on systems without GNU putenv,
59999         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
60000         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
60001         (unsetenv): New static function, from GNU libc.
60002         (rpl_putenv): Use it.
60003
60004         * lib/modechange.c: Remove trailing blanks.
60005
60006         Merge from coreutils.
60007         * lib/fsusage.c: Remove declaration of statfs.
60008         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
60009
60010         * lib/posixtm.c: Include <stdbool.h> unconditionally.
60011
60012 2003-06-06  Jim Meyering  <jim@meyering.net>
60013
60014         * lib/stdbool_.h: Renamed from stdbool.h.in.
60015
60016 2003-06-06  Jim Meyering  <jim@meyering.net>
60017             Bruno Haible  <bruno@clisp.org>
60018
60019         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
60020         Adjust Makefile.am snippet not to redirect directly to target.
60021         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
60022
60023 2003-06-05  Paul Eggert  <eggert@twinsun.com>
60024
60025         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
60026         mismatch, look in future quarters as well as past.  This fixes a
60027         bug when processing fall-backwards gaps immediately after a long
60028         period of daylight-saving time.
60029
60030         * lib/mktime.c: Assume freestanding C89 or better.
60031         (HAVE_LIMITS_H): Remove.  Assume it's 1.
60032         (__P): Remove; not used.
60033         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
60034         (mktime, not_equal_tm, print_tm, check_result,
60035         main): Use prototypes.  Use const * where appropriate.
60036         (main): Fix typo in testing code that uncovered by above changes.
60037         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
60038
60039 2003-06-04  Paul Eggert  <eggert@twinsun.com>
60040
60041         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
60042         locale.h, localeconv.  This merges changes from coreutils.
60043
60044         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
60045         It can be removed after the next Autoconf is released.
60046         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
60047         needed.
60048
60049 2003-06-04  Paul Eggert  <eggert@twinsun.com>
60050
60051         * lib/mktime.c: Fix Debian bug 177940
60052         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
60053         (localtime_offset): Now long int, not time_t, because we want it
60054         to be guaranteed to be signed.  All uses changed.
60055         (__mktime_internal): If overflow would occur when adding offset,
60056         don't add it.
60057
60058         Merge 'human' changes from coreutils.  Rewrite to support
60059         locale-specific notations like thousands separators.
60060         * lib/human.c: Simplify authorship notice.
60061         Include human.h immediately after config.h.
60062         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
60063         <limits.h>: Do not include, since human.h does.
60064         (SIZE_MAX, UINTMAX_MAX): New macros.
60065         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
60066         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
60067         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
60068         (power_letter): Renamed from suffixes.
60069         (generate_suffix_backwards): Remove.
60070         (adjust_value): Now takes int style (because of human.h changes)
60071         and long double value (for greater precision on some platforms).
60072         (group_number): New function.
60073         (human_readable): Use it.  Use integer options, not enum.
60074         Put the options before the sizes in the arg list.
60075         Support all the new options.
60076         The old human_readable function has been removed;
60077         use inttostr.h instead.
60078         (human_readable, default_block_size, humblock):
60079         Use uintmax_t, not int, for block sizes.
60080         (human_readable_inexact, block_size_types): Remove.
60081         (block_size_opts): New constant.
60082         (human_options): Renamed from human_block_size, with new signature
60083         that allows block sizes up to UINTMAX_MAX.  All callers changed.
60084         * lib/human.h: Add copyright and authorship notice.
60085         Include <limits.h> and <stdbool.h> unconditionally.
60086         (PARAMS): Remove.  All uses removed.
60087         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
60088         (enum human_inexact_style): Remove tag; now a nameless enum.
60089         (human_floor, human_ceiling, human_round_to_even): Now have
60090         values 2, 0, 1 rather than -1, 1, 0.
60091         (human_group_digits, human_suppress_point_zero, human_autoscale,
60092         human_base_1024, human_SI, human_B): New constants.
60093         (human_readable_inexact, human_block_size): Remove.
60094         (human_readable): Size args are now uintmax_t, not int.
60095         (human_options): New decl.
60096
60097         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
60098         unnecessary now that we assume C89 or better.  This change
60099         imported from coreutils.
60100
60101         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
60102         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
60103         in the 2003-05-30 sync from glibc.
60104
60105         .h files should stand alone, but we shouldn't include <sys/types.h>
60106         if we can get away with just <stddef.h>.
60107
60108         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
60109         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
60110         rather than <sys/types.h>, as we merely need size_t.
60111         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
60112         to get size_t.
60113         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
60114         Include <stdio.h>, to get FILE.
60115         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
60116         memcasecmp.h has included <stddef.h> and all we need is size_t.
60117         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
60118         our interface, instead of including <sys/types.h>
60119
60120 2003-06-04  Paul Eggert  <eggert@twinsun.com>
60121
60122         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
60123         now, as glibc mktime is buggy on non-glibc systems.
60124
60125 2003-06-03  Karl Berry  <karl@gnu.org>
60126
60127         * config/config.sub: update from prep.
60128
60129 2003-06-02  Paul Eggert  <eggert@twinsun.com>
60130
60131         [from coreutils]
60132         Fix some minor time-related bugs with POSIX time arguments.
60133         Some valid time stamps were being rejected (notably -1, and
60134         time stamps before 1900 on 64-bit hosts).  And some invalid
60135         time stamps were being accepted, e.g. September 31.
60136
60137         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
60138         that we can return (time_t) -1 successfully.
60139         * lib/posixtm.c: Likewise.
60140         [HAVE_STDBOOL_H]: Include <stdbool.h>.
60141         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
60142         (t): Remove static var.
60143         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
60144         of static var.  All uses changed.
60145         (year): Do not reject years before 1900; they can occur with
60146         64-bit time_t.
60147         (posix_time_parse): Do not check for out-of-range components;
60148         that is now the caller's responsibility, since our checks were
60149         only approximations.
60150         (posixtime): Use mktime to check for out-of-range components,
60151         since it knows them exactly.
60152         If mktime returns (time_t) -1, check whether an error actually occurred
60153         by invoking localtime on -1.
60154         (main) [TEST_POSIXTIME]: Check for input data errors, and report
60155         posixtime failures better.
60156         Improve the test data (in comments only).
60157
60158 2003-06-02  Karl Berry  <karl@gnu.org>
60159
60160         * config/mkinstalldirs (version): new variable.
60161         (--version): new option.
60162         (usage): improve message.
60163
60164 2003-05-30  Karl Berry  <karl@gnu.org>
60165
60166         * lib/mktime.c: update from libc.
60167
60168 2003-05-30  Bruno Haible  <bruno@clisp.org>
60169
60170         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
60171         * config/config.rpath: Upgrade to gettext-0.12.1.
60172
60173 2003-05-30  Bruno Haible  <bruno@clisp.org>
60174
60175         * m4/gettext.m4: Upgrade to gettext-0.12.1.
60176         * m4/nls.m4: New file, from gettext-0.12.1.
60177         * m4/po.m4: New file, from gettext-0.12.1.
60178         * m4/progtest.m4: Upgrade to gettext-0.12.1.
60179
60180 2003-05-30  Bruno Haible  <bruno@clisp.org>
60181
60182         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
60183         * lib/localcharset.h: Likewise.
60184         * lib/localcharset.c: Likewise.
60185
60186 2003-05-29  Karl Berry  <karl@gnu.org>
60187
60188         * config/config.rpath: update from gettext.
60189
60190 2003-05-28  Paul Eggert  <eggert@twinsun.com>
60191
60192         Assume the headers required for C89 freestanding compilers.
60193         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
60194         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
60195         * m4/human.m4 (gl_HUMAN): Likewise.
60196         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
60197         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
60198         * m4/userspec.m4 (gl_USERSPEC): Likewise.
60199         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
60200         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
60201         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
60202
60203 2003-05-28  Paul Eggert  <eggert@twinsun.com>
60204
60205         Assume the headers required for C89 freestanding compilers.
60206         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
60207         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
60208         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
60209         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
60210         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
60211         define, since <limits.h> is guaranteed to do that.
60212         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
60213         * lib/exclude.c: Include <stdbool.h> unconditionally.
60214         * lib/tempname.c: Include <stddef.h> unconditionally.
60215         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
60216         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
60217         <stddef.h> does that.
60218         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
60219         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
60220         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
60221         needed.
60222         * lib/xstrtol.c: Likewise.
60223         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
60224         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
60225
60226         * lib/addext.c (addext): Use assignment rather than cast, to avoid
60227         warnings on some platforms.
60228
60229         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
60230         arbitrarily.
60231
60232 2003-05-26  Jim Meyering  <jim@meyering.net>
60233
60234         Merge in a change from coreutils:
60235         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
60236         that is guaranteed to be `no'.  Use `no_such_member' to indicate
60237         that condition, rather than `-1' which is slightly misleading.
60238         Change the name of the cache variable to have the gl_ prefix.
60239         Prompted by a patch from Richard Dawe for DJGPP.
60240
60241 2003-05-24  Karl Berry  <karl@gnu.org>
60242
60243         * config/config.guess: update from prep.
60244
60245 2003-05-22  Karl Berry  <karl@gnu.org>
60246
60247         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
60248
60249 2003-05-20  Karl Berry  <karl@gnu.org>
60250
60251         * config/config.guess: update from prep.
60252
60253 2003-05-18  Karl Berry  <karl@gnu.org>
60254
60255         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
60256         might actually be set by the user.
60257
60258         * config/depcomp, install-sh, mdate-sh: update from automake.
60259
60260 2003-05-17  Bruno Haible  <bruno@clisp.org>
60261
60262         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
60263         invalid expansion for AC_EGREP_CPP.
60264         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
60265         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
60266         Suggested by Akim Demaille <akim@epita.fr> in
60267         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
60268
60269 2003-05-12  Jim Meyering  <jim@meyering.net>
60270
60271         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
60272         the space-padded-by-default conversion specifiers, %e, %k, %l.
60273
60274 2003-05-12  Bruno Haible  <bruno@clisp.org>
60275
60276         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
60277         the string is longer than 4 KB.
60278
60279 2003-05-11  Karl Berry  <karl@gnu.org>
60280
60281         * config/config.{guess,sub}: update from prep.
60282
60283 2003-05-09  Bruno Haible  <bruno@clisp.org>
60284
60285         * modules/error: Add m4/strerror_r.m4 to file list.
60286
60287 2003-05-03  Bruno Haible  <bruno@clisp.org>
60288
60289         Upgrade to Unicode-4.0.
60290         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
60291         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
60292         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
60293         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
60294         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
60295         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
60296         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
60297         Change width of U+E0100..U+E01EF from 1 to 0.
60298
60299 2003-04-25  Jim Meyering  <jim@meyering.net>
60300
60301         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
60302         of type size_t, not int.
60303
60304 2003-04-25  Bruno Haible  <bruno@clisp.org>
60305
60306         * lib/copy-file.c: Include <stddef.h>, for size_t.
60307
60308 2003-04-21  Paul Eggert  <eggert@twinsun.com>
60309
60310         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
60311         code which expansion is under static control.  Patch imported from
60312         Akim Demaille's patch to Bison; see
60313         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
60314
60315 2003-04-14  Bruno Haible  <bruno@clisp.org>
60316
60317         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
60318
60319 2003-04-11  Jim Meyering  <jim@meyering.net>
60320
60321         Merge changes from Coreutils.
60322
60323         2003-03-22  Jim Meyering  <jim@meyering.net>
60324
60325         * lib/strftime.c (widen): Cast alloca return value to proper type.
60326
60327         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
60328
60329         From GNU libc.
60330         * lib/strftime.c (my_strftime): Handle very large width
60331         specifications for numeric values correctly.  Improve checks for
60332         overflow.
60333
60334         2003-01-19  Jim Meyering  <jim@meyering.net>
60335
60336         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
60337         definitions.
60338         (nl_get_alt_digit) [! defined my_strftime]: Define.
60339         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
60340         _nl_get_alt_digit and _nl_get_walt_digit.
60341
60342         * lib/strftime.c (my_strftime): Merge in locale-related changes from
60343         libc. These changes have no effect outside of _LIBC.
60344
60345 2003-04-10  Bruno Haible  <bruno@clisp.org>
60346
60347         * modules/findprog: New file.
60348         * MODULES.html.sh (func_all_modules): Add it.
60349
60350 2003-04-10  Bruno Haible  <bruno@clisp.org>
60351
60352         * m4/findprog.m4: New file.
60353         * m4/eaccess.m4: New file.
60354
60355 2003-04-10  Bruno Haible  <bruno@clisp.org>
60356
60357         * lib/findprog.h: New file, from GNU gettext.
60358         * lib/findprog.c: New file, from GNU gettext.
60359
60360 2003-04-05  Jim Meyering  <jim@meyering.net>
60361
60362         Merge changes from Coreutils.
60363
60364         * lib/exclude.h (PARAMS): Remove definition and uses.
60365         * lib/exclude.c: Remove uses of `PARAMS'.
60366
60367         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
60368         Add test-cases for DOS filenames. Declare program_name.
60369         (main): Set up program_name.  Patch by Rich Dawe.
60370
60371         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
60372         error from mntctl.
60373         Use mntctl's return value to drive the entry-processing loop, since
60374         we can't rely on the value of the vmt_length member in the last
60375         entry.  On some systems doing so could result in exhausting
60376         virtual memory.  Based in part on a patch from Mike Jetzer.
60377
60378 2003-04-04  Bruno Haible  <bruno@clisp.org>
60379
60380         * modules/linebreak: New file.
60381         * MODULES.html.sh (func_all_modules): Add it.
60382
60383 2003-04-04  Bruno Haible  <bruno@clisp.org>
60384
60385         * m4/linebreak.m4: New file.
60386
60387 2003-04-04  Bruno Haible  <bruno@clisp.org>
60388
60389         * lib/linebreak.h: New file, from GNU gettext.
60390         * lib/linebreak.c: New file, from GNU gettext with slight
60391         modifications.
60392         * lib/lbrkprop.h: New file, from GNU gettext.
60393
60394 2003-04-03  Bruno Haible  <bruno@clisp.org>
60395
60396         * modules/utf8-ucs4: New file.
60397         * modules/utf16-ucs4: New file.
60398         * modules/ucs4-utf8: New file.
60399         * modules/ucs4-utf16: New file.
60400         * MODULES.html.sh (func_all_modules): Add them.
60401
60402 2003-04-03  Bruno Haible  <bruno@clisp.org>
60403
60404         * m4/utf-ucs4.m4: New file.
60405         * m4/ucs4-utf.m4: New file.
60406
60407 2003-04-03  Bruno Haible  <bruno@clisp.org>
60408
60409         * lib/utf8-ucs4.h: New file, from GNU gettext.
60410         * lib/utf16-ucs4.h: New file, from GNU gettext.
60411         * lib/ucs4-utf8.h: New file, from GNU gettext.
60412         * lib/ucs4-utf16.h: New file, from GNU gettext.
60413
60414 2003-04-02  Bruno Haible  <bruno@clisp.org>
60415
60416         * modules/binary-io: New file.
60417         * MODULES.html.sh (func_all_modules): Add it.
60418
60419 2003-04-02  Bruno Haible  <bruno@clisp.org>
60420
60421         * lib/binary-io.h: New file, from GNU gettext.
60422
60423 2003-04-01  Bruno Haible  <bruno@clisp.org>
60424
60425         * modules/pathname: New file.
60426         * MODULES.html.sh (func_all_modules): Add it.
60427
60428 2003-04-01  Bruno Haible  <bruno@clisp.org>
60429
60430         * lib/pathname.h: New file, from GNU gettext.
60431         * lib/concatpath.c: New file, from GNU gettext.
60432
60433 2003-03-30  Bruno Haible  <bruno@clisp.org>
60434
60435         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
60436
60437 2003-03-30  Bruno Haible  <bruno@clisp.org>
60438
60439         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
60440         function chown() doesn't exist.
60441
60442 2003-03-28  Bruno Haible  <bruno@clisp.org>
60443
60444         * modules/copy-file: New file.
60445         * MODULES.html.sh (func_all_modules): Add it.
60446
60447 2003-03-28  Bruno Haible  <bruno@clisp.org>
60448
60449         * m4/copy-file.m4: New file.
60450
60451 2003-03-28  Bruno Haible  <bruno@clisp.org>
60452
60453         * lib/copy-file.h: New file, from GNU gettext.
60454         * lib/copy-file.c: New file, from GNU gettext.
60455
60456 2003-03-18  Jim Meyering  <jim@meyering.net>
60457
60458         * lib/quote.c (quote_n): Fix typo in comment.
60459
60460 2003-03-18  Bruno Haible  <bruno@clisp.org>
60461
60462         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
60463         checking.
60464         * m4/onceonly_2_57.m4: Likewise.
60465
60466 2003-03-17  Bruno Haible  <bruno@clisp.org>
60467
60468         * m4/onceonly.m4: Require autoconf 2.54 or newer.
60469         (m4_quote): Remove macro.
60470         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
60471
60472 2003-03-14  Jim Meyering  <jim@meyering.net>
60473
60474         Merge changes from Coreutils.
60475         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
60476         to be const, in order to avoid warnings.
60477         (obstack_room): Likewise.
60478         (obstack_empty_p): Likewise.
60479
60480 2003-03-14  Bruno Haible  <bruno@clisp.org>
60481
60482         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
60483         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
60484
60485 2003-03-13  Paul Eggert  <eggert@twinsun.com>
60486
60487         Merge changes from Bison.
60488         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
60489         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
60490         when compiling Bison 1.875's `bitset bset = obstack_alloc
60491         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
60492         * lib/hash.c: Include <stdbool.h> unconditionally.
60493
60494 2003-03-13  Paul Eggert  <eggert@twinsun.com>
60495
60496         * m4/onceonly.m4 (m4_quote): New macro.
60497         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
60498         Quote AC_FOREACH variable-expansions properly.
60499
60500 2003-03-13  Paul Eggert  <eggert@twinsun.com>
60501
60502         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
60503
60504 2003-03-09  Paul Eggert  <eggert@twinsun.com>
60505
60506         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
60507         Reported by Bruce Becker; see:
60508         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
60509
60510 2003-03-03  Paul Eggert  <eggert@twinsun.com>
60511             Bruno Haible  <bruno@clisp.org>
60512
60513         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
60514         Reported by John Hughes, see
60515         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
60516
60517 2003-02-20  Bruno Haible  <bruno@clisp.org>
60518
60519         * MODULES.html.sh (func_all_modules): Add poll.
60520
60521 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
60522
60523         * modules/poll: New file.
60524
60525 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
60526
60527         * lib/poll_.h: New file.
60528         * lib/poll.c: New file.
60529
60530 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
60531
60532         * m4/poll.m4: New file.
60533
60534 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
60535
60536         * modules/mathl: New file.
60537
60538 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
60539
60540         * lib/mathl.h: New file.
60541         * lib/acosl.c: New file.
60542         * lib/asinl.c: New file.
60543         * lib/atanl.c: New file.
60544         * lib/ceill.c: New file.
60545         * lib/cosl.c: New file.
60546         * lib/expl.c: New file.
60547         * lib/floorl.c: New file.
60548         * lib/frexpl.c: New file.
60549         * lib/ldexpl.c: New file.
60550         * lib/logl.c: New file.
60551         * lib/sincosl.c: New file.
60552         * lib/sinl.c: New file.
60553         * lib/sqrtl.c: New file.
60554         * lib/tanl.c: New file.
60555         * lib/trigl.c: New file.
60556         * lib/trigl.h: New file.
60557
60558 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
60559
60560         * m4/mathl.m4: New file.
60561
60562 2003-02-18  Bruno Haible  <bruno@clisp.org>
60563
60564         * MODULES.html.sh (func_all_modules): Add mathl.
60565
60566 2003-02-17  Bruno Haible  <bruno@clisp.org>
60567
60568         * modules/mkdtemp: New module.
60569         * MODULES.html.sh (func_all_modules): Add it.
60570
60571 2003-02-17  Bruno Haible  <bruno@clisp.org>
60572
60573         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
60574
60575 2003-02-17  Bruno Haible  <bruno@clisp.org>
60576
60577         * lib/mkdtemp.h: New file, from GNU gettext.
60578         * lib/mkdtemp.c: New file, from GNU gettext.
60579
60580 2003-02-02  Jim Meyering  <jim@meyering.net>
60581
60582         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
60583         e.g. glibc-2.2.93.
60584
60585 2003-01-31  Bruno Haible  <bruno@clisp.org>
60586
60587         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
60588         'rpl_rename'.
60589         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
60590         'rpl_strnlen'.
60591         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
60592         'rpl_strtod'.
60593         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
60594         'rpl_utime'.
60595
60596 2003-01-31  Bruno Haible  <bruno@clisp.org>
60597
60598         * lib/rename.c: #undef rename before defining rpl_rename.
60599         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
60600
60601 2003-01-30  Bruno Haible  <bruno@clisp.org>
60602
60603         * modules/vasnprintf, modules/vasprintf: New modules.
60604         * MODULES.html.sh (func_all_modules): Add them.
60605
60606 2003-01-30  Bruno Haible  <bruno@clisp.org>
60607
60608         * m4/signed.m4: New file, from GNU gettext.
60609         * m4/longdouble.m4: New file, from GNU gettext.
60610         * m4/wchar_t.m4: New file, from GNU gettext.
60611         * m4/wint_t.m4: New file, from GNU gettext.
60612         * m4/vasnprintf.m4: New file.
60613         * m4/vasprintf.m4: New file.
60614
60615 2003-01-30  Bruno Haible  <bruno@clisp.org>
60616
60617         * lib/printf-args.h: New file, from GNU gettext.
60618         * lib/printf-args.c: New file, from GNU gettext.
60619         * lib/printf-parse.h: New file, from GNU gettext.
60620         * lib/printf-parse.c: New file, from GNU gettext.
60621         * lib/vasnprintf.h: New file, from GNU gettext.
60622         * lib/vasnprintf.c: New file, from GNU gettext.
60623         * lib/asnprintf.c: New file, from GNU gettext.
60624         * lib/vasprintf.h: New file, from GNU gettext with modifications.
60625         * lib/vasprintf.c: New file, from GNU gettext.
60626         * lib/asprintf.c: New file, from GNU gettext.
60627
60628 2003-01-29  Bruno Haible  <bruno@clisp.org>
60629
60630         * modules/stpncpy: New module.
60631         * MODULES.html.sh (func_all_modules): Add it.
60632
60633 2003-01-29  Bruno Haible  <bruno@clisp.org>
60634
60635         * m4/stpncpy.m4: New file.
60636
60637 2003-01-29  Bruno Haible  <bruno@clisp.org>
60638
60639         * lib/stpncpy.h: New file, from GNU gettext with modifications.
60640         * lib/stpncpy.c: New file, from GNU gettext with modifications.
60641
60642 2003-01-28  Bruno Haible  <bruno@clisp.org>
60643
60644         * modules/c-ctype: New module.
60645         * MODULES.html.sh (func_all_modules): Add it.
60646
60647 2003-01-28  Bruno Haible  <bruno@clisp.org>
60648
60649         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
60650         Paul Eggert.
60651         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
60652         Paul Eggert.
60653
60654 2003-01-27  Bruno Haible  <bruno@clisp.org>
60655
60656         * modules/xsetenv: New module.
60657         * MODULES.html.sh (func_all_modules): Add it.
60658
60659 2003-01-27  Bruno Haible  <bruno@clisp.org>
60660
60661         * lib/xsetenv.h: New file, from GNU gettext.
60662         * lib/xsetenv.c: New file, from GNU gettext.
60663
60664 2003-01-23  Jim Meyering  <jim@meyering.net>
60665
60666         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
60667         from working on systems without dirfd (at least Irix and OSF1/Tru64).
60668
60669 2003-01-23  Bruno Haible  <bruno@clisp.org>
60670
60671         * modules/minmax: New module.
60672         * MODULES.html.sh (func_all_modules): Add it.
60673
60674 2003-01-23  Bruno Haible  <bruno@clisp.org>
60675
60676         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
60677         Eggert.
60678
60679 2003-01-22  Bruno Haible  <bruno@clisp.org>
60680
60681         * modules/exit: New module.
60682         * MODULES.html.sh (func_all_modules): Add it.
60683
60684 2003-01-22  Bruno Haible  <bruno@clisp.org>
60685
60686         * lib/exit.h: New file, from GNU gettext.
60687
60688 2003-01-19  Bruno Haible  <bruno@clisp.org>
60689
60690         * gnulib-tool: Recognize option --extract-maintainer.
60691         (func_get_maintainer): New function.
60692         * modules/*: Add Maintainer entry.
60693
60694 2003-01-16  Jim Meyering  <jim@meyering.net>
60695
60696         * m4/regex.m4: The `regex' struct is both input and output.
60697         Initialize it before each use.  Patch by Tim Waugh.
60698
60699 2003-01-16  Bruno Haible  <bruno@clisp.org>
60700
60701         * MODULES.html.sh: Add a table of contents. Add the module name as
60702         leftmost column. Add hyperlinks.
60703
60704 2003-01-15  Bruno Haible  <bruno@clisp.org>
60705
60706         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
60707
60708 2003-01-15  Bruno Haible  <bruno@clisp.org>
60709
60710         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
60711         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
60712         suffix.
60713
60714 2003-01-15  Bruno Haible  <bruno@clisp.org>
60715
60716         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
60717
60718 2003-01-15  Bruno Haible  <bruno@clisp.org>
60719
60720         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
60721         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
60722
60723 2003-01-14  Jim Meyering  <jim@meyering.net>
60724
60725         * lib/same.c (same_name): Tweak a comment.
60726
60727 2003-01-14  Bruno Haible  <bruno@clisp.org>
60728
60729         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
60730         when a string comparison is sufficient.
60731
60732 2003-01-14  Bruno Haible  <bruno@clisp.org>
60733
60734         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
60735         'unsigned int'.
60736
60737 2003-01-14  Bruno Haible  <bruno@clisp.org>
60738
60739         * lib/hash-pjw.c: Add comment about low quality of this function.
60740
60741 2003-01-13  Bruno Haible  <bruno@clisp.org>
60742
60743         * modules/stpcpy: Distribute lib/stpcpy.h.
60744         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
60745
60746 2003-01-13  Bruno Haible  <bruno@clisp.org>
60747
60748         * modules/*: Add a description.
60749         * modules/strpbrk: Fix Makefile.am snippet.
60750         * modules/strtoimax: Fix dependencies.
60751         * modules/strtoumax: Likewise.
60752
60753 2003-01-13  Bruno Haible  <bruno@clisp.org>
60754
60755         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
60756         * modules/alloca (Makefile.am): All object files depend on alloca.h.
60757         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
60758
60759 2003-01-13  Bruno Haible  <bruno@clisp.org>
60760
60761         * gnulib-tool (func_create_testdir): Store config/* files in the main
60762         directory.
60763         * config.rpath: Move to ...
60764         * config/config.rpath: ... here.
60765         * modules/gettext: Contains config/config.rpath, not config.rpath.
60766         * modules/iconv: Likewise.
60767
60768 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60769
60770         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60771         to avoid collisions with libcurses and libreadline.
60772
60773         * m4/getstr.m4: Remove.
60774         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
60775
60776 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60777
60778         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60779         to avoid collisions with libcurses and libreadline.
60780
60781         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
60782         * lib/getstr.h, getstr.c: Remove.
60783         * lib/getline.c: Include "getline.h", to check interface.
60784         Move body of old getstr.c here: this defines MIN_CHUNK and
60785         declares getdelim2, which is renamed from getstr.
60786         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
60787
60788         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
60789         All uses changed.
60790         * lib/linebuffer.h: Likewise.
60791         (readline): Remove backward-compatibility macro.
60792
60793 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60794
60795         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60796         to avoid collisions with libcurses and libreadline.
60797         * getstr: Remove.
60798         * MODULES.html.sh: Remove getstr.
60799         * modules/getline: Depend on unlocked-io, not getstr.
60800
60801 2003-01-12  Jim Meyering  <jim@meyering.net>
60802
60803         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
60804
60805 2003-01-10  Bruno Haible  <bruno@clisp.org>
60806
60807         * modules/alloca: Change Makefile.am requirements. Simplify Include
60808         requirements. Add lib/alloca_.h to file list.
60809
60810 2003-01-10  Bruno Haible  <bruno@clisp.org>
60811
60812         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
60813
60814 2003-01-10  Bruno Haible  <bruno@clisp.org>
60815
60816         * lib/alloca_.h: New file.
60817         * lib/getdate.y: Unconditionally include alloca.h.
60818         * lib/makepath.c: Likewise.
60819         * lib/setenv.c: Likewise.
60820         * lib/userspec.c: Likewise.
60821
60822 2003-01-09  Karl Berry  <karl@gnu.org>
60823
60824         * MODULES.html.sh: include `dirname $0` in PATH, to find
60825         gnulib-tool.
60826
60827 2003-01-09  Bruno Haible  <bruno@clisp.org>
60828
60829         * modules/stdbool: Change configure.ac, Makefile.am requirements.
60830         Simplify Include requirements. Add lib/stdbool.h.in to file list.
60831
60832 2003-01-09  Bruno Haible  <bruno@clisp.org>
60833
60834         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
60835
60836 2003-01-09  Bruno Haible  <bruno@clisp.org>
60837
60838         * lib/stdbool.h.in: New file.
60839
60840 2003-01-09  Bruno Haible  <bruno@clisp.org>
60841
60842         * gnulib-tool (func_all_modules): Ignore files ending in ~.
60843         * MODULES.html.sh: Likewise.
60844
60845 2003-01-08  Jim Meyering  <jim@meyering.net>
60846
60847         * lib/full-write.c: Undefine and define-away `const' after inclusion
60848         of errno.h, not before.  Suggestion from Bruno Haible.
60849
60850 2003-01-08  Bruno Haible  <bruno@clisp.org>
60851
60852         * modules/full-read: Depend on full-write.
60853
60854 2003-01-08  Bruno Haible  <bruno@clisp.org>
60855
60856         * lib/safe-read.c: Include specification header first, to ensure its
60857         selfcontainedness.
60858         * lib/full-write.c: Likewise.
60859
60860 2003-01-07  Jim Meyering  <jim@meyering.net>
60861
60862         * lib/full-write.c: Rework so that it may serve to define full_read,
60863         too.
60864         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
60865
60866 2003-01-07  Bruno Haible  <bruno@clisp.org>
60867
60868         * lib/strtoimax.c: Include <stdint.h> as an alternative to
60869         <inttypes.h>.
60870         * lib/xstrtol.h: Likewise.
60871         * lib/xstrtoimax.c: Likewise.
60872         * lib/xstrtoumax.c: Likewise.
60873         * lib/human.h: Likewise.
60874
60875         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
60876         on systems that have <inttypes.h> but not <stdint.h>.
60877
60878 2003-01-07  Bruno Haible  <bruno@clisp.org>
60879
60880         * MODULES.html.sh: Add copyright notice.
60881         (missed_files): Omit CVS directory entries.
60882         (func_module): Make it work with sed-3.02.
60883         * MODULES.txt: Remove file.
60884
60885 2003-01-06  Jim Meyering  <jim@meyering.net>
60886
60887         * lib/version-etc.c: Update year in translatable copyright string.
60888
60889 2003-01-03  Karl Berry  <karl@gnu.org>
60890
60891         * config/config.{guess,sub}: update from prep.
60892
60893 2003-01-02  Karl Berry  <karl@gnu.org>
60894
60895         * doc/COPYING.DOC: belatedly updated to 1.2.
60896
60897 2003-01-01  Karl Berry  <karl@gnu.org>
60898
60899         * gnulib-tool (func_verify_module): report module name $module in
60900         error message, not $1.
60901         * gnulib-tool (create-testdir): don't complain if destdir couldn't
60902         be created, only if it doesn't exist.
60903         * gnulib-tool (last_checkin_date): don't expand the $Date here.
60904
60905 2002-12-31  Paul Eggert  <eggert@twinsun.com>
60906
60907         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
60908
60909 2002-12-31  Paul Eggert  <eggert@twinsun.com>
60910
60911         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
60912         memcmp if strcoll doesn't work.
60913
60914 2002-12-31  Bruno Haible  <bruno@clisp.org>
60915
60916         * lib/utime.c (utime_null): No need to call ftruncate if the file was
60917         nonempty.
60918
60919 2002-12-31  Bruno Haible  <bruno@clisp.org>
60920
60921         * lib/memcoll.c (STRCOLL): New macro.
60922         (memcoll): Use it.
60923
60924 2002-12-31  Bruno Haible  <bruno@clisp.org>
60925
60926         * lib/localcharset.h: New file.
60927         * lib/localcharset.c: Include it.
60928         * lib/unicodeio.c: Likewise.
60929
60930 2002-12-31  Bruno Haible  <bruno@clisp.org>
60931
60932         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
60933         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
60934
60935 2002-12-31  Bruno Haible  <bruno@clisp.org>
60936
60937         * lib/getline.h: Include <stddef.h>, for size_t.
60938
60939         * lib/unicodeio.h: Include <stddef.h>, for size_t.
60940         * lib/unicodeio.c: Don't include <stddef.h>.
60941
60942 2002-12-31  Bruno Haible  <bruno@clisp.org>
60943
60944         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
60945         HAVE_TM_ZONE.
60946
60947 2002-12-24  Karl Berry  <karl@gnu.org>
60948
60949         * config/config.guess: update from prep.
60950
60951 2002-12-24  Bruno Haible  <bruno@clisp.org>
60952
60953         General infrasructure.
60954         * m4/README: Rewritten.
60955         * m4/onceonly.m4: New file.
60956         * m4/onceonly_2_57.m4: New file.
60957
60958         Module atexit.
60959         * m4/atexit.m4: New file.
60960
60961         Module strtod.
60962         * m4/strtod.m4: New file.
60963
60964         Module strtol.
60965         * m4/strtol.m4: New file.
60966
60967         Module strtoul.
60968         * m4/strtoul.m4: New file.
60969
60970         Module memchr.
60971         * m4/memchr.m4: New file.
60972
60973         Module memcmp.
60974         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
60975         (jm_FUNC_MEMCMP): Invoke it.
60976
60977         Module memcpy.
60978         * m4/memcpy.m4: New file.
60979
60980         Module memmove.
60981         * m4/memmove.m4: New file.
60982
60983         Module memset.
60984         * m4/memset.m4: New file.
60985
60986         Module strcspn.
60987         * m4/strcspn.m4: New file.
60988
60989         Module strpbrk.
60990         * m4/strpbrk.m4: New file.
60991
60992         Module strstr.
60993         * m4/strstr.m4: New file.
60994
60995         Module strerror.
60996         * m4/strerror.m4: New file.
60997
60998         Module mktime.
60999         * m4/mktime.m4: Renamed from jm-mktime.m4.
61000         (gl_PREREQ_MKTIME): New macro.
61001         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
61002
61003         Module malloc.
61004         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
61005         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
61006         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
61007
61008         Module realloc.
61009         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
61010         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
61011         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
61012
61013         Module strftime.
61014         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
61015         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
61016         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
61017         gl_TM_GMTOFF.
61018         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
61019
61020         Module xalloc.
61021         * m4/xalloc.m4: New file.
61022
61023         Module alloca.
61024         * m4/alloca.m4: New file.
61025
61026         Module putenv.
61027         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
61028         (jm_FUNC_PUTENV): Invoke it.
61029
61030         Module setenv.
61031         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
61032         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
61033         when invoked twice.
61034         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
61035         gt_FUNC_SETENV.
61036
61037         Module memrchr.
61038         * m4/memrchr.m4: New file.
61039
61040         Module stpcpy.
61041         * m4/stpcpy.m4: New file.
61042
61043         Module strcase.
61044         * m4/strcase.m4: New file.
61045
61046         Module strdup.
61047         * m4/strdup.m4: New file.
61048
61049         Module strnlen.
61050         * m4/strnlen.m4: New file.
61051
61052         Module strndup.
61053         * m4/strndup.m4: New file.
61054
61055         Module xstrtod.
61056         * m4/xstrtod.m4: New file.
61057
61058         Module xstrtol.
61059         * m4/xstrtol.m4: New file.
61060
61061         Module getdate.
61062         * m4/getdate.m4: New file.
61063
61064         Module unlocked-io.
61065         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
61066         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
61067         * m4/jm-glibc-io.m4n: Remove file.
61068
61069         Module long-options.
61070         * m4/long-options.m4: New file.
61071
61072         Module md5.
61073         * m4/md5.m4: New file.
61074
61075         Module sha.
61076         * m4/sha.m4: New file.
61077
61078         Module getstr.
61079         * m4/getstr.m4: New file.
61080
61081         Module getline.
61082         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
61083         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
61084         <sys/types.h>, for size_t. Use the function name gnu_getline, not
61085         simply getline. Infoke gl_PREREQ_GETLINE.
61086
61087         Module obstack.
61088         * m4/obstack.m4: New file.
61089
61090         Module hash.
61091         * m4/hash.m4: New file.
61092
61093         Module readtokens.
61094         * m4/readtokens.m4: New file.
61095
61096         Module strverscmp.
61097         * m4/strverscmp.m4: New file.
61098
61099         Module stdbool.
61100         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
61101         OSF/1.
61102
61103         Module strtoll.
61104         * m4/strtoll.m4: New file.
61105
61106         Module strtoull.
61107         * m4/strtoull.m4: New file.
61108
61109         Module strtoimax.
61110         * m4/strtoimax.m4: New file.
61111
61112         Module strtoumax.
61113         * m4/strtoumax.m4: New file.
61114
61115         Module xstrtoimax.
61116         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
61117         jm_AC_PREREQ_XSTRTOIMAX.
61118         Moved the strtol prerequisites to strtol.m4.
61119         Moved the strtoll prerequisites to strtoll.m4.
61120         Moved the strtoimax prerequisites to strtoimax.m4.
61121
61122         Module xstrtoumax.
61123         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
61124         jm_AC_PREREQ_XSTRTOUMAX.
61125         Moved the strtoul prerequisites to strtoul.m4.
61126         Moved the strtoull prerequisites to strtoull.m4.
61127         Moved the strtoumax prerequisites to strtoumax.m4.
61128
61129         Module chown.
61130         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
61131         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
61132
61133         Module dup2.
61134         * m4/dup2.m4: New file.
61135
61136         Module ftruncate.
61137         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
61138         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
61139
61140         Module getgroups.
61141         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
61142         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
61143
61144         Module gettimeofday.
61145         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
61146         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
61147         gl_PREREQ_GETTIMEOFDAY.
61148
61149         Module mkdir.
61150         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
61151         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
61152
61153         Module mkstemp.
61154         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
61155         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
61156         jm_AC_TYPE_UINTMAX_T.
61157         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
61158
61159         Module stat.
61160         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
61161         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
61162
61163         Module lstat.
61164         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
61165         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
61166
61167         Module timespec.
61168         * m4/timespec.m4 (gl_TIMESPEC): New macro.
61169         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
61170         * m4/st_mtim.m4: Indentation.
61171
61172         Module nanosleep.
61173         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
61174         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
61175         gl_PREREQ_NANOSLEEP.
61176
61177         Module regex.
61178         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
61179         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
61180         (gl_REGEX): New macro.
61181
61182         Module rename.
61183         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
61184         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
61185
61186         Module rmdir.
61187         * m4/rmdir.m4: New file.
61188
61189         Module utime.
61190         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
61191         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
61192         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
61193
61194         Module dirname.
61195         * m4/dirname.m4: New file.
61196
61197         Module getopt.
61198         * m4/getopt.m4: New file.
61199
61200         Module unistd-safer.
61201         * m4/unistd-safer.m4: New file.
61202
61203         Module fnmatch.
61204         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
61205         declaration.
61206         (gl_PREREQ_FNMATCH_EXTRA): New macro.
61207         (gl_FUNC_FNMATCH_POSIX): New macro.
61208         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
61209         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
61210         simply fnmatch.
61211
61212         Module exclude.
61213         * m4/exclude.m4: New file.
61214
61215         Module human.
61216         * m4/human.m4: New file.
61217
61218         Module acl.
61219         * m4/acl.m4: Nop.
61220
61221         Module backupfile.
61222         * m4/backupfile.m4: New file.
61223         * m4/d-ino.m4: Indentation.
61224
61225         Module fsusage.
61226         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
61227         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
61228         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
61229
61230         Module dirfd.
61231         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
61232         requirements.
61233
61234         Module euidaccess.
61235         * m4/euidaccess.m4: New file.
61236
61237         Module file-type.
61238         * m4/file-type.m4: New file.
61239
61240         Module fileblocks.
61241         * m4/fileblocks.m4: New file.
61242
61243         Module filemode.
61244         * m4/filemode.m4: New file.
61245
61246         Module isdir.
61247         * m4/isdir.m4: New file.
61248
61249         Module lchown.
61250         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
61251         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
61252
61253         Module makepath.
61254         * m4/makepath.m4: New file.
61255
61256         Module modechange.
61257         * m4/modechange.m4: New file.
61258
61259         Module mountlist.
61260         * m4/mountlist.m4: New file.
61261         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
61262         Indentation.
61263
61264         Module path-concat.
61265         * m4/path-concat.m4: New file.
61266
61267         Module pathmax.
61268         * m4/pathmax.m4: New file.
61269
61270         Module same.
61271         * m4/same.m4: New file.
61272
61273         Module save-cwd.
61274         * m4/save-cwd.m4: New file.
61275
61276         Module savedir.
61277         * m4/savedir.m4: New file.
61278
61279         Module xgetcwd.
61280         * m4/xgetcwd.m4: New file.
61281         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
61282
61283         Module xreadlink.
61284         * m4/xreadlink.m4: New file.
61285
61286         Module safe-read.
61287         * m4/safe-read.m4: New file.
61288
61289         Module safe-write.
61290         * m4/safe-write.m4: New file.
61291
61292         Module closeout.
61293         * m4/closeout.m4: New file.
61294
61295         Module stdio-safer.
61296         * m4/stdio-safer.m4: New file.
61297
61298         Module getpass.
61299         * m4/getpass.m4: New file.
61300
61301         Module getugroups.
61302         * m4/getugroups.m4: New file.
61303
61304         Module group-member.
61305         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
61306         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
61307
61308         Module idcache.
61309         * m4/idcache.m4: New file.
61310
61311         Module userspec.
61312         * m4/userspec.m4: New file.
61313
61314         Module gettime.
61315         * m4/clock_time.m4: New file.
61316         * m4/gettime.m4: New file.
61317
61318         Module settime.
61319         * m4/settime.m4: New file.
61320
61321         Module posixtm.
61322         * m4/posixtm.m4: New file.
61323
61324         Module gethostname.
61325         * m4/gethostname.m4: New file.
61326
61327         Module canon-host.
61328         * m4/canon-host.m4: New file.
61329
61330         Module gettext.
61331         * m4/codeset.m4: New file, from gettext-0.11.5.
61332         * m4/gettext.m4: New file, from gettext-0.11.5.
61333         * m4/glibc21.m4: New file, from gettext-0.11.5.
61334         * m4/iconv.m4: New file, from gettext-0.11.5.
61335         * m4/intdiv0.m4: New file, from gettext-0.11.5.
61336         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
61337         * m4/inttypes.m4: New file, from gettext-0.11.5.
61338         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
61339         * m4/isc-posix.m4: New file, from gettext-0.11.5.
61340         * m4/lcmessage.m4: New file, from gettext-0.11.5.
61341         * m4/lib-ld.m4: New file, from gettext-0.11.5.
61342         * m4/lib-link.m4: New file, from gettext-0.11.5.
61343         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
61344         * m4/progtest.m4: New file, from gettext-0.11.5.
61345         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
61346         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
61347         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
61348
61349         Module localcharset.
61350         * m4/localcharset.m4: New file.
61351
61352         Module hard-locale.
61353         * m4/hard-locale.m4: New file.
61354
61355         Module mbswidth.
61356         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
61357         onceonly macros.
61358         * m4/mbrtowc.m4: Add comment.
61359
61360         Module memcasecmp.
61361         * m4/memcasecmp.m4: New file.
61362
61363         Module memcoll.
61364         * m4/memcoll.m4: New file.
61365
61366         Module unicodeio.
61367         * m4/unicodeio.m4: New file.
61368
61369         Module rpmatch.
61370         * m4/rpmatch.m4: New file.
61371
61372         Module yesno.
61373         * m4/yesno.m4: New file.
61374
61375         Module exitfail.
61376         * m4/exitfail.m4: New file.
61377
61378         Module c-stack.
61379         * m4/c-stack.m4 (gl_C_STACK): New macro.
61380         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
61381
61382         Module error.
61383         * m4/error.m4 (gl_ERROR): New macro.
61384         (jm_PREREQ_ERROR): Use onceonly macros.
61385
61386         Module fatal.
61387         * m4/fatal.m4: New file.
61388
61389         Module getloadavg.
61390         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
61391         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
61392
61393         Module getpagesize.
61394         * m4/getpagesize.m4: New file.
61395
61396         Module getusershell.
61397         * m4/getusershell.m4: New file.
61398
61399         Module physmem.
61400         * m4/physmem.m4: New file.
61401
61402         Module posixver.
61403         * m4/posixver.m4: New file.
61404
61405         Module quotearg.
61406         * m4/quotearg.m4: New file.
61407
61408         Module quote.
61409         * m4/quote.m4: New file.
61410
61411         Module readutmp.
61412         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
61413
61414         Module sig2str.
61415         * m4/sig2str.m4: New file.
61416
61417         Other.
61418         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
61419         ulonglong.m4.
61420         * m4/intmax_t.m4: New file.
61421         * m4/d-type.m4: Indentation.
61422         * m4/jm-macros.m4: Update.
61423         * m4/prereq.m4 (jm_PREREQ): Update.
61424         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
61425         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
61426         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
61427         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
61428         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
61429         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
61430         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
61431         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
61432         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
61433         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
61434         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
61435         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
61436         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
61437         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
61438         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
61439         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
61440         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
61441         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
61442         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
61443
61444 2002-12-24  Bruno Haible  <bruno@clisp.org>
61445
61446         * MODULES.txt: Update according to m4/ changes.
61447
61448         Module gettext.
61449         * config.rpath: New file, from gettext-0.11.5.
61450
61451         * modules/*: New module descriptions.
61452         * gnulib-tool: New file.
61453         * MODULES.html.sh: New file.
61454
61455 2002-12-21  Karl Berry  <karl@gnu.org>
61456
61457         * doc/fdl.texi: update to version 1.2.
61458
61459 2002-12-19  Karl Berry  <karl@gnu.org>
61460
61461         * config/config.guess: update from prep.
61462
61463 2002-12-18  Bruno Haible  <bruno@clisp.org>
61464
61465         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
61466         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
61467
61468 2002-12-17  Bruno Haible  <bruno@clisp.org>
61469
61470         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
61471         stdlib.h, string.h.
61472
61473 2002-12-17  Bruno Haible  <bruno@clisp.org>
61474
61475         * lib/canon-host.c (strdup): Remove unused declaration.
61476
61477         * lib/fsusage.c: Include full_read.h.
61478         (get_fs_usage): Use full_read instead of safe_read.
61479
61480         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
61481
61482 2002-12-12  Karl Berry  <karl@gnu.org>
61483
61484         * config/config.guess: update from prep.
61485
61486 2002-12-11  Bruno Haible  <bruno@clisp.org>
61487
61488         * m4/setenv.m4: New file, from gettext-0.11.5.
61489
61490 2002-12-11  Bruno Haible  <bruno@clisp.org>
61491
61492         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
61493         not unsetenv().
61494         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
61495         modifications:
61496
61497         2002-12-11  Bruno Haible  <bruno@clisp.org>
61498
61499                 * setenv.c (alloca): Fall back to malloc.
61500                 (freea): New macro.
61501                 (setenv): Use freea() to free memory allocated with alloca().
61502
61503         2002-11-13  Bruno Haible  <bruno@clisp.org>
61504
61505                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
61506                 function declarations.
61507                 * unsetenv.c (unsetenv): Likewise.
61508
61509         2002-03-04  Bruno Haible  <bruno@clisp.org>
61510
61511                 Portability to AIX 4.3.3.
61512                 * unsetenv.c: New file, extracted from setenv.c.
61513                 * setenv.c: Move the unsetenv() function to unsetenv.c.
61514
61515         2001-12-20  Bruno Haible  <bruno@clisp.org>
61516
61517                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
61518                 use malloc instead. For SunOS 4.
61519
61520         2001-12-11  Bruno Haible  <bruno@clisp.org>
61521
61522                 * setenv.c: Declare alloca.
61523                 (compar_fn_t): New typedef.
61524                 (KNOWN_VALUE, STORE_VALUE): Use it.
61525
61526         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
61527         setenv.h.
61528
61529 2002-12-10  Paul Eggert  <eggert@twinsun.com>
61530
61531         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
61532         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
61533         Choose values that are less likely to collide with system fnmatch
61534         options.
61535         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
61536         defined (e.g., a pure POSIX system).
61537         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
61538         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
61539
61540 2002-12-06  Paul Eggert  <eggert@twinsun.com>
61541
61542         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
61543         a pain in practice to deal with generated m4 files.  This change
61544         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
61545
61546         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
61547         and jm-glibc-io.m4, as they are no longer a special case.
61548         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
61549         kludge and the auto-generation stuff.  Check only whether the
61550         functions are declared, not whether they exist, since older hosts
61551         that don't declare the functions can't use the optimization anyway.
61552
61553 2002-12-06  Jim Meyering  <jim@meyering.net>
61554
61555         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
61556
61557         Merge in changes from libc's misc/error.c, in preparation
61558         for the merge of gnulib's changes back into libc.
61559
61560         * lib/error.c (_): Define only if not already defined.
61561         Move definition to follow all #include directives.
61562         Include unlocked-io.h only if !_LIBC.
61563         [_LIBC]: Include <libio/libioP.h>.
61564         [USE_IN_LIBIO]: Include <libio/iolibio.h>
61565         (fflush): Tweak definition to use INTUSE.
61566         (putc): Define.
61567
61568 2002-12-05  Paul Eggert  <eggert@twinsun.com>
61569
61570         * lib/alloca.c [defined emacs]: Include "lisp.h".
61571         (xalloc_die) [defined emacs]: New macro.
61572         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
61573         [! defined emacs]: Include <xalloc.h>.
61574         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
61575         (pointer): Typedef to POINTER_TYPE *.
61576         (malloc): Remove decl; we now always use xmalloc.
61577         (alloca): Use old-style definition, since Emacs needs this.
61578         Check for arithmetic overflow when computing combined size.
61579
61580 2002-12-04  Paul Eggert  <eggert@twinsun.com>
61581
61582         Do not generate unlocked-io.h automatically, since it's easier to
61583         maintain it by hand.
61584
61585         * lib/unlocked-io.h: New file, from GNU diffutils,
61586         but with proper copyright notice and attribution.
61587         * lib/gen-uio: Remove.
61588         * lib/Makefile.am: Add copyright notice.
61589         (libfetish_a_SOURCES): Add unlocked-io.h.
61590         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
61591         (DISTCLEANFILES, io_functions): Remove macros.
61592         (EXTRA_DIST): Remove gen_uio.
61593         (unlocked-io.h): Remove rule.
61594
61595 2002-12-04  Jim Meyering  <jim@meyering.net>
61596
61597         Reflect the fact that stat.c and lstat.c are no longer generated.
61598         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
61599         (DISTCLEANFILES): Likewise.
61600         (EXTRA_DIST): Likewise.
61601         (all_local): Don't depend on stat.c or lstat.c.
61602         (stat.c, lstat.c): Remove rules.
61603         (EXTRA_DIST): Remove xstat.in.
61604
61605         * lib/xstat.in: Remove file.  Contents moved into stat.c.
61606         * lib/stat.c: New file.  Contents mostly from xstat.in.
61607         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
61608         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
61609
61610         * lib/safe-read.c: Rework so that it may serve to define safe_write,
61611         too.
61612         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
61613
61614 2002-12-03  Jim Meyering  <jim@meyering.net>
61615
61616         * lib/safe-read.c, safe-write.c: Change variable names and comments,
61617         but not semantics, to minimize the differences between these two files.
61618         (safe_read): Change comment to mention SAFE_READ_ERROR.
61619
61620         * lib/safe-read.c (IS_EINTR): Define.
61621         (safe_read): Use IS_EINTR in place of in-function cpp directives.
61622
61623 2002-12-02  Jim Meyering  <jim@meyering.net>
61624
61625         * lib/safe-read.c (EINTR): Define.
61626         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
61627         (INT_MAX): Provide fallback.
61628         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
61629
61630         * lib/safe-read.h (SAFE_READ_ERROR): Define.
61631
61632 2002-12-02  Bruno Haible  <bruno@clisp.org>
61633
61634         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
61635         Define, taken from safe-read.c.
61636         (INT_MAX): Provide fallback.
61637         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
61638         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
61639
61640         * lib/safe-read.c (EINTR): Remove definition.
61641         (safe_read): Don't use EINTR if it is absent.
61642
61643 2002-12-01  Jim Meyering  <jim@meyering.net>
61644
61645         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
61646         zero.
61647         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
61648
61649 2002-11-27  Paul Eggert  <eggert@twinsun.com>
61650
61651         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
61652         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
61653         with `if (! (value < limit)) abort ();', for readability.
61654
61655 2002-11-26  Karl Berry  <karl@gnu.org>
61656
61657         * lib/strdup.c: copy from libc again, with jim's ok.
61658         * lib/.cppi-disable: re-add strdup.c
61659
61660 2002-11-25  Karl Berry  <karl@gnu.org>
61661
61662         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
61663         instead of "strtol.c".
61664
61665 2002-11-25  Karl Berry  <karl@gnu.org>
61666
61667         * config/install-sh: update from automake for variable quoting, $0 in
61668         error msgs, etc.
61669
61670         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
61671         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
61672         entry.
61673
61674 2002-11-25  Jim Meyering  <jim@meyering.net>
61675
61676         * lib/mktime.c: Sync from libc, now that it has the latest fix.
61677
61678 2002-11-24  Karl Berry  <karl@gnu.org>
61679
61680         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
61681         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
61682
61683 2002-11-24  Jim Meyering  <jim@meyering.net>
61684
61685         Update from coreutils:
61686
61687         * lib/mktime.c: Merge in changes from libc.
61688
61689         Avoid a link-time failure on some Linux systems.
61690         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
61691         (otherwise).
61692         (__mon_yday): Declare with the STATIC attribute.
61693         (__mktime_internal): Likewise.
61694         Based on a report from Greg Schafer.
61695
61696 2002-11-23  Jim Meyering  <jim@meyering.net>
61697
61698         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
61699         Use `unsigned', not `int', as type of index.
61700
61701         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
61702
61703         * lib/fsusage.c: Remove unneeded parentheses around operands of
61704         `defined'.
61705
61706 2002-11-22  Paul Eggert  <eggert@twinsun.com>
61707
61708         * lib/quotearg.h: Allow multiple inclusion by surrounding with
61709         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
61710         so that we can be included first.
61711         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
61712         * lib/quotearg.c: Include quotearg.h immediately after config.h.
61713         No need to include stddef.h or sys/types.h any more.
61714         Surround local include files with "", not "<>".
61715         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
61716         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
61717         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
61718         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
61719         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
61720         (ISPRINT): Remove; no longer needed now that we assume C89.
61721
61722         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
61723         Preserve errno.
61724
61725         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
61726         quotearg_char): Use SIZE_MAX rather than
61727         (size_t) -1 when we are talking about "infinity".
61728
61729         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
61730
61731 2002-11-22  Paul Eggert  <eggert@twinsun.com>
61732
61733         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
61734         hint that one should use `if (! x) abort ();' rather than `assert
61735         (x);', and anyway it's one less thing to worry about configuring.
61736         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
61737         hash_rehash, hash_insert): Use abort rather than assert.
61738
61739 2002-11-22  Bruno Haible  <bruno@clisp.org>
61740
61741         * lib/safe-read.h: Assume C89. Add comments.
61742         (safe_read): Change return type to size_t.
61743         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
61744         byte counts > SSIZE_MAX correctly.
61745         * lib/safe-write.h: New file.
61746         * lib/safe-write.c: New file.
61747         * lib/full-read.h: New file.
61748         * lib/full-read.c: New file.
61749         * lib/full-write.h: Assume C89. Add comments.
61750         * lib/full-write.c: Include safe-write.h.
61751         (full_write): Rewritten to use safe_write.
61752         Suggested by Jim Meyering and Paul Eggert.
61753
61754 2002-11-21  Jim Meyering  <jim@meyering.net>
61755
61756         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
61757
61758         Merge in changes from the coreutils.
61759
61760         2002-09-25  Paul Eggert  <eggert@twinsun.com>
61761         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
61762         <stdint.h>.
61763         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
61764         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
61765         int.  Work more efficiently if X is the same width as uintmax_t.
61766         Do not compare X to -1, to avoid bogus compiler warning.
61767         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
61768         Don't assume that f_frsize and f_bsize are the same type.
61769
61770         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
61771         warning on FreeBSD.
61772
61773         * lib/makepath.c (make_path): Restore umask *before* creating the final
61774         component.
61775         (make_path): Minor reformatting.
61776
61777         * lib/xmalloc.c: Adjust to work with new autoconf macros,
61778         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
61779         HAVE_MALLOC/HAVE_REALLOC.
61780
61781         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
61782         dummy ones.  At least on GNU/Linux systems, `auto' means something
61783         else.
61784         From Michael Stone.
61785
61786 2002-11-21  Bruno Haible  <bruno@clisp.org>
61787
61788         Remove case insensitive option matching.
61789         * lib/argmatch.h (argcasematch): Remove declaration.
61790         (ARGCASEMATCH): Remove macro.
61791         (__xargmatch_internal): Remove case_sensitive argument.
61792         (XARGMATCH): Update.
61793         (XARGCASEMATCH): Remove macro.
61794         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
61795         case_sensitive argument.
61796         (argcasematch): Remove function.
61797         (__xargmatch_internal): Remove case_sensitive argument.
61798         (main): Use XARGMATCH instead of XARGCASEMATCH.
61799
61800         * lib/xmalloc.c: Change compile-time error message. Add comment about
61801         required autoconf version.
61802
61803 2002-11-20  Paul Eggert  <eggert@twinsun.com>
61804
61805         Merge argmatch cleanups from Bison.  Assume C89.
61806
61807         * lib/argmatch.c: Include config.h here, not in argmatch.h.
61808         Include stdlib.h, for EXIT_FAILURE.
61809         Always include <string.h>, since we assume C89.
61810         (EXIT_FAILURE): Remove pre-C89 bug workaround.
61811         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
61812         Include <stddef.h> instead, since it's all we need for size_t.
61813         (PARAMS): Remove.  All uses removed.
61814         (ARRAY_CARDINALITY): Do not bother to #undef.
61815         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
61816         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
61817         Remove unnecessary parentheses.
61818         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
61819         Insert necessary parentheses.
61820         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
61821         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
61822
61823 2002-11-19  Bruno Haible  <bruno@clisp.org>
61824
61825         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
61826         * lib/mbswidth.h: Include <stddef.h>, for size_t.
61827
61828         * lib/mbswidth.h (PARAMS): Remove macro.
61829         (mbswidth, mbsnwidth): Use ANSI C function declarations.
61830         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
61831
61832         * lib/gcd.h (PARAMS): Remove macro.
61833         (gcd): Use ANSI C function declarations.
61834         * lib/gcd.c (gcd): Likewise.
61835
61836 2002-11-15  Bruno Haible  <bruno@clisp.org>
61837
61838         * lib/strcspn.c: Include <stddef.h>.
61839         (strcspn): Use ANSI C function declaration. Change return type to
61840         size_t. Use NULL.
61841         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
61842         (strpbrk): Use NULL.
61843         * lib/strpbrk.h (PARAMS): Remove macro.
61844         (strpbrk): Use ANSI C function declaration.
61845         * lib/strstr.c: Don't include <sys/types.h>.
61846         * lib/strstr.h (PARAMS): Remove macro.
61847         (strstr): Use ANSI C function declarations.
61848
61849 2002-11-14  Karl Berry  <karl@gnu.org>
61850
61851         * config/mkinstalldirs: `do' on separate line, instead of
61852         `for var; do'.
61853
61854 2002-11-06  Bruno Haible  <bruno@clisp.org>
61855
61856         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
61857         * lib/gcd.c (gcd): Likewise.
61858
61859 2002-11-05  Bruno Haible  <bruno@clisp.org>
61860
61861         * lib/gcd.h: New file, from gettext-0.11.5.
61862         * lib/gcd.c: New file, from gettext-0.11.5.
61863
61864 2002-11-05  Bruno Haible  <bruno@clisp.org>
61865
61866         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61867         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61868         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61869         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61870
61871         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
61872         <libintl.h>.
61873         * lib/makepath.c: Include gettext.h instead of <locale.h> and
61874         <libintl.h>.
61875
61876         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
61877         * lib/human.c: Include gettext.h instead of <libintl.h>.
61878         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
61879         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
61880         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
61881         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
61882         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
61883         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
61884         (textdomain): Remove definition.
61885         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
61886
61887         * lib/long-options.c: Remove include of <libintl.h> and definition of
61888         _.
61889         * lib/same.c: Remove include of <libintl.h> and definition of _.
61890
61891 2002-11-04  Owen Taylor  <otaylor@redhat.com>
61892
61893         * lib/config.charset: A few additions for Solaris.
61894
61895 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
61896
61897         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
61898         * lib/localcharset.c (locale_charset): Declare as extern "C".
61899
61900 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
61901
61902         * lib/config.charset: msdos in uk_UA uses CP1125.
61903
61904 2002-11-04  Bruno Haible  <bruno@clisp.org>
61905
61906         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
61907         * lib/strcase.h: New file, from GNU gettext-0.11.5.
61908         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
61909         * lib/strstr.h: New file, from GNU gettext-0.11.5.
61910         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
61911
61912 2002-11-04  Bruno Haible  <bruno@clisp.org>
61913
61914         * lib/localcharset.c (locale_charset): Don't return an empty string.
61915
61916 2002-11-04  Bruno Haible  <bruno@clisp.org>
61917
61918         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
61919         aliases.
61920
61921 2002-11-04  Bruno Haible  <bruno@clisp.org>
61922
61923         * lib/config.charset: Update for newest glibc. Add canonical names
61924         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
61925
61926 2002-11-04  Bruno Haible  <bruno@clisp.org>
61927
61928         * lib/config.charset: Add support for NetBSD.
61929
61930 2002-11-04  Bruno Haible  <bruno@clisp.org>
61931
61932         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
61933
61934 2002-11-01  Bruno Haible  <bruno@clisp.org>
61935
61936         * configure.in: Add AC_CONFIG_AUX_DIR call.
61937         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
61938         test/Makefile.
61939         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
61940
61941 2002-09-28  Karl Berry  <karl@gnu.org>
61942
61943         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
61944         installed automake until the next release, since changes have been
61945         made.
61946
61947 2002-09-25  Karl Berry  <karl@gnu.org>
61948
61949         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
61950         * lib/getopt*: copy from libc/posix.
61951         * lib/gettext.h: copy from gettext.
61952         * lib/.cppi-disable: add strdup.c, gettext.h.
61953
61954 2002-09-25  Karl Berry  <karl@gnu.org>
61955
61956         * config/srclist.txt: enable gettext.h check.
61957         * config/config.{guess,sub}: update from prep.
61958         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
61959                 from automake 1.6.3.
61960         See srclist*.
61961
61962 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
61963
61964         * regex.c (PATFETCH): Remove the translating fetch.
61965         (PATFETCH_RAW): Rename to PATFETCH.
61966         (set_image_of_range): New fun.
61967         (SET_RANGE_TABLE_WORK_AREA): Use it.
61968         (regex_compile): Don't translate the pattern chars so eagerly.
61969         Only do it when inserting an `exactn' bytecode or when handling
61970         a char-range.
61971         (mutually_exclusive_p): Avoid empty statement.
61972
61973 2002-07-06  Jim Meyering  <meyering@lucent.com>
61974
61975         * m4/README: Don't mention Makefile.am.in.
61976         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
61977
61978 2002-07-01  Jim Meyering  <meyering@lucent.com>
61979
61980         * lib/c-stack.c: Include sys/time.h.
61981         From Volker Borchert.
61982
61983 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61984
61985         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
61986
61987 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61988
61989         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
61990         New macro.  Use it uniformly instead of
61991         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
61992         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
61993         reported by Vin Shelton.
61994
61995 2002-06-22  Paul Eggert  <eggert@twinsun.com>
61996
61997         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
61998         Do not assume SA_SIGINFO behavior.
61999         Bug reported by Jim Meyering on NetBSD 1.5.2.
62000
62001 2002-06-22  Jim Meyering  <meyering@lucent.com>
62002
62003         * m4/c-stack.m4: New file, from diffutils-2.8.2.
62004         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
62005
62006         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
62007         now that configure.ac uses AC_GNU_SOURCE.
62008         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
62009         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
62010
62011         Update to latest tools.  Suggestions from Paul Eggert.
62012         * m4/stdbool.m4: New file, from diffutils-2.8.2.
62013         * m4/gnu-source.m4: Update from diffutils-2.8.2.
62014         * m4/fnmatch.m4: Likewise.
62015         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
62016         to AC_HEADER_STDBOOL
62017
62018 2002-06-22  Jim Meyering  <meyering@lucent.com>
62019
62020         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
62021         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
62022
62023 2002-06-22  Jim Meyering  <meyering@lucent.com>
62024
62025         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
62026
62027         * lib/exitfail.c, exitfail.h: Likewise.
62028         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
62029
62030         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
62031         of fnmatch.h.
62032         (EXTRA_DIST): Add fnmatch_loop.c.
62033         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
62034
62035         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
62036         * lib/fnmatch.c: Update from diffutils-2.8.2.
62037         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
62038         * lib/fnmatch.h: Remove file.
62039
62040 2002-06-21  Jim Meyering  <meyering@lucent.com>
62041
62042         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
62043         * m4/mbrtowc.m4: Likewise.
62044
62045         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
62046         * m4/mbswidth.m4: Reflect name change:
62047         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
62048         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
62049
62050         * m4/lib-link.m4: Update from gettext-0.11.2.
62051         * m4/gettext.m4: Likewise.
62052
62053         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
62054         From Alfred M. Szmidt.
62055
62056 2002-06-18  Paul Eggert  <eggert@twinsun.com>
62057
62058         * lib/file-type.h: Report an error if neither S_ISREG nor
62059         S_IFREG is defined, instead of using a test specific to glibc
62060         2.2.  This should be safe, since POSIX requires S_ISREG and
62061         Unix Version 7 had S_IFREG.  We don't need to check for
62062         <sys/types.h> since we don't use any symbols that it defines.
62063
62064 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
62065
62066         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
62067         $@-t, so that each temporary file name is unique and valid in the first
62068         8 characters, for operation under DOS.
62069
62070 2002-06-15  Paul Eggert  <eggert@twinsun.com>
62071
62072         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
62073
62074 2002-06-15  Jim Meyering  <meyering@lucent.com>
62075
62076         Work even with DJGPP 2.03, which lacks support for symlinks.
62077         From Richard Dawe.
62078         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
62079         is defined.
62080         * lib/lchown.c (S_ISLNK): Likewise.
62081
62082 2002-06-15  Jim Meyering  <meyering@lucent.com>
62083
62084         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
62085         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
62086         have been included before this file.
62087
62088 2002-06-14  Jim Meyering  <meyering@lucent.com>
62089
62090         * lib/file-type.h: Use the version from diffutils-2.8.2.
62091         * lib/file-type.c: Likewise.
62092
62093 2002-06-07  Jim Meyering  <meyering@lucent.com>
62094
62095         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
62096         They're needed at least for NetBSD 1.5.2.
62097         ($statxfs_includes): Include those same headers.
62098         ($statxfs_includes): Include sys/vfs.h if available.
62099         ($statxfs_includes): Likewise for sys/statvfs.h.
62100         Check for the following members in both structs statfs and statvfs:
62101         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
62102
62103 2002-06-01  Jim Meyering  <meyering@lucent.com>
62104
62105         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
62106         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
62107
62108 2002-05-28  Jim Meyering  <meyering@lucent.com>
62109
62110         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
62111         Reported by Volker Borchert.
62112
62113 2002-05-27  Jim Meyering  <meyering@lucent.com>
62114
62115         Fix a problem seen only on nonconforming systems whereby ls.c's
62116         use of localtime, and then of gettimeofday would cause trouble:
62117         the localtime call used to initialize rpl_gettimeofday's save
62118         mechanism would clobber ls's current local time information so
62119         that in any long listing the first file would always be listed
62120         with date 1970-01-01.  Analysis by Volker Borchert.
62121
62122         * lib/gettimeofday.c (localtime): Undefine.
62123         (rpl_localtime): New function.
62124
62125 2002-05-27  Jim Meyering  <meyering@lucent.com>
62126
62127         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
62128         localtime.
62129
62130         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
62131         use the replacement function; it wouldn't resolve at link time.
62132         Reported by Volker Borchert.
62133
62134 2002-05-22  Jim Meyering  <meyering@lucent.com>
62135
62136         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
62137         file-type.h.
62138         * lib/file-type.h: New file.
62139         * lib/file-type.c (file_type): New file/function.  Extracted from
62140         diffutils.
62141
62142 2002-04-30  Jim Meyering  <meyering@lucent.com>
62143
62144         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
62145
62146 2002-04-29  Paul Eggert  <eggert@twinsun.com>
62147
62148         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
62149
62150 2002-04-29  Paul Eggert  <eggert@twinsun.com>
62151
62152         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
62153         Do not check for alloca.h (no longer used) or stdbool.h (was never
62154         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
62155
62156 2002-04-29  Paul Eggert  <eggert@twinsun.com>
62157
62158         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
62159
62160 2002-04-29  Jim Meyering  <meyering@lucent.com>
62161
62162         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
62163         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
62164         Use AC_FUNC_STRNLEN here instead.
62165
62166         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
62167         With autoconf-2.53a, it's part of AC_PROG_CC.
62168
62169 2002-04-28  Paul Eggert  <eggert@twinsun.com>
62170
62171         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
62172         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
62173
62174 2002-04-28  Paul Eggert  <eggert@twinsun.com>
62175
62176         * lib/sig2str.h, lib/sig2str.c: New files.
62177         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
62178
62179 2002-04-28  Paul Eggert  <eggert@twinsun.com>
62180
62181         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
62182         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
62183         of 127, since 64 is the largest conceivable number for ancient
62184         nonstandard hosts.
62185         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
62186
62187 2002-04-28  Jim Meyering  <meyering@lucent.com>
62188
62189         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
62190
62191 2002-04-24  Jim Meyering  <meyering@lucent.com>
62192
62193         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
62194         (jm_PREREQ): Use it.
62195
62196         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
62197         mach/mach.h fcntl.h.
62198         Check for this function: setlocale.
62199
62200 2002-04-24  Jim Meyering  <meyering@lucent.com>
62201
62202         * lib/gettext.h: New file, from Gettext.
62203         * lib/Makefile.am (INCLUDES): Remove -I../intl.
62204         (libfetish_a_SOURCES): Add gettext.h.
62205
62206 2002-04-16  Jim Meyering  <meyering@lucent.com>
62207
62208         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
62209         ut_pid, ut_id, ut_exit.
62210
62211 2002-04-16  Jim Meyering  <meyering@lucent.com>
62212
62213         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
62214         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
62215         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
62216
62217 2002-04-12  Jim Meyering  <meyering@lucent.com>
62218
62219         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
62220         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
62221         existence of the getmntinfo function.  Needed for Darwin 5.3.
62222
62223         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
62224         This is necessary at least on Darwin 5.3.
62225
62226         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
62227         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
62228         strnlen.o in the library, and that makes some versions of ranlib
62229         object.
62230
62231 2002-04-12  Jim Meyering  <meyering@lucent.com>
62232
62233         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
62234
62235 2002-04-09  Jim Meyering  <meyering@lucent.com>
62236
62237         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
62238         to be more precise.  Rather than saying we're checking whether the
62239         function `works', say what we're testing.
62240         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
62241         Reported by Bruno Haible.
62242
62243 2002-03-10  Jim Meyering  <meyering@lucent.com>
62244
62245         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
62246         Suggestion from Santiago Vila.
62247
62248 2002-03-08  Jim Meyering  <meyering@lucent.com>
62249
62250         * lib/rename.c: Mention that this wrapper is needed also on
62251         mips-dec-ultrix4.4 systems.
62252
62253 2002-03-02  Jim Meyering  <meyering@lucent.com>
62254
62255         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
62256         not HAVE_CLOCK_SETTIME.
62257
62258 2002-02-27  Paul Eggert  <eggert@twinsun.com>
62259
62260         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
62261         Check for clock_settime.
62262
62263 2002-02-27  Paul Eggert  <eggert@twinsun.com>
62264
62265         * lib/nanosleep.h: Rename to....
62266         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
62267
62268         * lib/gettime.c: New file.
62269         * lib/settime.c: New file.
62270         * lib/stime.c: Remove.
62271
62272         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
62273         timespec.h.  Remove nanosleep.h.
62274
62275 2002-02-25  Paul Eggert  <eggert@twinsun.com>
62276
62277         * m4/acl.m4: New file.
62278         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
62279         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
62280
62281 2002-02-25  Paul Eggert  <eggert@twinsun.com>
62282
62283         * lib/acl.c, lib/acl.h: New files.
62284         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
62285
62286 2002-02-24  Jim Meyering  <meyering@lucent.com>
62287
62288         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
62289         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
62290         cause trouble.  Reported by Nelson Beebe.
62291
62292 2002-02-23  Paul Eggert  <eggert@twinsun.com>
62293
62294         * lib/path-concat.c (xpath_concat): Reorder code to pacify
62295         compilers that don't know that xalloc_die never returns.
62296
62297 2002-02-20  Jim Meyering  <meyering@lucent.com>
62298
62299         * lib/getdate.c: Regenerate using bison-1.33.
62300
62301 2002-02-17  Jim Meyering  <meyering@lucent.com>
62302
62303         * config/config.guess (main): Don't use `head -1'; it's no longer
62304         portable. Use `sed 1q' instead.
62305
62306 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
62307
62308         * m4/codeset.m4: Upgrade to gettext-0.11.
62309         * m4/gettext.m4: Upgrade to gettext-0.11.
62310         * m4/glibc21.m4: Upgrade to gettext-0.11.
62311         * m4/iconv.m4: Upgrade to gettext-0.11.
62312         * m4/isc-posix.m4: Upgrade to gettext-0.11.
62313         * m4/lcmessage.m4: Upgrade to gettext-0.11.
62314         * m4/lib-ld.m4: New file, from gettext-0.11.
62315         * m4/lib-link.m4: New file, from gettext-0.11.
62316         * m4/lib-prefix.m4: New file, from gettext-0.11.
62317         * m4/progtest.m4: Upgrade to gettext-0.11.
62318
62319 2002-02-15  Paul Eggert  <eggert@twinsun.com>
62320
62321         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
62322         (jm_PREREQ): Use it.
62323
62324 2002-02-15  Paul Eggert  <eggert@twinsun.com>
62325
62326         * lib/posixver.c, lib/posixver.h: New files.
62327         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
62328
62329 2002-02-02  Paul Eggert  <eggert@twinsun.com>
62330             Bruno Haible  <bruno@clisp.org>
62331
62332         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
62333         (fwrite_success_callback): New declaration.
62334         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
62335         print_unicode_char. Call failure callback instead of error.
62336         (fwrite_success_callback): New function.
62337         (exit_failure_callback): New function.
62338         (fallback_failure_callback): New function.
62339         (print_unicode_char): Call unicode_to_mb.
62340
62341 2002-01-26  Jim Meyering  <meyering@lucent.com>
62342
62343         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
62344         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
62345
62346 2002-01-26  Jim Meyering  <meyering@lucent.com>
62347
62348         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
62349
62350 2002-01-22  Paul Eggert  <eggert@twinsun.com>
62351
62352         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
62353
62354 2002-01-22  Jim Meyering  <meyering@lucent.com>
62355
62356         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
62357         Otherwise, some versions of automake would omit the rule that makes
62358         Makefile from Makefile.in.
62359
62360 2002-01-21  Paul Eggert  <eggert@twinsun.com>
62361
62362         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
62363         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
62364         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
62365         (memcoll): Set errno to zero if there is no error.
62366
62367         * lib/quotearg.c (quotearg_buffer_restyled):
62368         Fix bug with quoting buffers containing NUL when backslashing escapes.
62369         This bug was exposed by the other changes in this patch.
62370         (quotearg_n_options): New arg ARGSIZE.
62371         All callers changed.
62372         (quoting_options_from_style): New function.
62373         (quotearg_n_style): Use it.
62374         (quotearg_n_style_mem): New function.
62375
62376         * lib/quotearg.h (quotearg_n_style_mem): New function.
62377
62378 2002-01-19  Jim Meyering  <meyering@lucent.com>
62379
62380         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
62381         Remove useless quotes: DF_PROG="df".
62382         * m4/strnlen.m4: New file.
62383
62384 2002-01-16  Paul Eggert  <eggert@twinsun.com>
62385
62386         * lib/backupfile.c (ISDIGIT): Comment fix.
62387         * lib/getdate.y (ISDIGIT): Likewise.
62388         * lib/posixtm.c (ISDIGIT, year): Likewise.
62389         * lib/strverscmp.c (ISDIGIT): Likewise.
62390         * lib/userspec.c (ISDIGIT): Likewise.
62391
62392 2002-01-16  Jim Meyering  <meyering@lucent.com>
62393
62394         * lib/getdate.y: Add three semicolons, each just before a closing
62395         brace. Bison (as of version 1.31) no longer papers over that mistake.
62396
62397 2002-01-05  Jim Meyering  <meyering@lucent.com>
62398
62399         * lib/version-etc.c (version_etc_copyright): Update copyright year.
62400
62401 2001-12-19  Paul Eggert  <eggert@twinsun.com>
62402
62403         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
62404         not silently exit merely because the output buffer happens to
62405         have nothing pending.
62406
62407 2001-12-18  Paul Eggert  <eggert@twinsun.com>
62408
62409         See the big note in ../ChangeLog.
62410         * lib/human.c (suffixes): Prefer K to k for 1024.
62411         (generate_suffix_backwards): New function.
62412         (human_readable_inexact): Use it.
62413         * lib/xstrtol.c (__xstrtol): If there is no number but there
62414         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
62415         Accept 'K' as well as 'k'.
62416
62417 2001-12-15  Jim Meyering  <meyering@lucent.com>
62418
62419         * lib/regex.h (__restrict_arr): Update from libc.
62420
62421         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
62422         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
62423         (STREQ): Define.
62424
62425 2001-12-14  Jim Meyering  <meyering@lucent.com>
62426
62427         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
62428         Suggestion from Bruno Haible.
62429
62430 2001-12-10  Jim Meyering  <meyering@lucent.com>
62431
62432         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
62433         xrealloc, Instead, include "xalloc.h".
62434         (initbuffer): Don't cast xmalloc return value to char*.
62435         (readline): Reword comment.
62436         Don't cast xrealloc return value to char*
62437         Return NULL, not 0.
62438
62439 2001-12-09  Jim Meyering  <meyering@lucent.com>
62440
62441         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
62442         about `signed and unsigned type in conditional expression'.
62443         * lib/posixtm.c (posix_time_parse): Likewise.
62444
62445         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
62446
62447         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
62448         to avoid a pedantic warning.
62449
62450         * lib/getstr.c: Don't include assert.h.
62451         (getstr): Remove warning-evoking assertions.
62452         Return -1 if offset parameter is out of bounds.
62453         Change the type of a local from int to size_t.
62454
62455         * lib/strftime.c (my_strftime_localtime_r): Include this function
62456         definition in the `#if ! HAVE_TM_GMTOFF' block.
62457
62458         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
62459         Include xalloc.h instead.
62460
62461 2001-12-02  Jim Meyering  <meyering@lucent.com>
62462
62463         * lib/tempname.c: Don't declare getenv, thus reverting the change of
62464         2001-11-18.  It's no longer necessary, now that stdlib.h is always
62465         included.
62466
62467         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
62468         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
62469
62470 2001-11-30  Akim Demaille  <akim@epita.fr>
62471
62472         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
62473         before being defined.
62474
62475 2001-11-27  Paul Eggert  <eggert@twinsun.com>
62476
62477         * lib/quotearg.h (quotearg_n, quotearg_n_style):
62478         First arg is int, not unsigned.
62479         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
62480         (SIZE_MAX, UINT_MAX): New macros.
62481         (quotearg_n_options): Abort if N is negative.
62482         Avoid overflow check on hosts where size_t is 64 bits and int
62483         is 32 bits, as overflow is impossible there.
62484         Fix off-by-one typo that caused unnecessary reallocation.
62485
62486 2001-11-27  Jim Meyering  <meyering@lucent.com>
62487
62488         * lib/tempname.c: Merge with version from libc.
62489         * lib/regex.c: Likewise.
62490
62491         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
62492         systems for which STDC_HEADERS is 0, it was not included, resulting in
62493         a warning about an integer-to-pointer conversion problem with getenv.
62494         Reported by Volker Borchert.
62495
62496 2001-11-26  Jim Meyering  <meyering@lucent.com>
62497
62498         * lib/gtod.h: Remove file.
62499         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
62500         * lib/gettimeofday.c: Don't include gtod.h.
62501         (GTOD_init): Remove function.
62502         (rpl_gettimeofday): Do its job here instead, rather than aborting.
62503         Suggestion from Volker Borchert.
62504
62505 2001-11-23  Jim Meyering  <meyering@lucent.com>
62506
62507         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
62508         it.
62509         * lib/hash.c (struct hash_table): Define it here instead.
62510
62511 2001-11-22  Jim Meyering  <meyering@lucent.com>
62512
62513         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
62514
62515 2001-11-20  Jim Meyering  <meyering@lucent.com>
62516
62517         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
62518         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
62519
62520 2001-11-19  Jim Meyering  <meyering@lucent.com>
62521
62522         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
62523         directory.  Use "conftestXXXXXX" as the template.
62524         Suggestion from Paul Eggert.
62525
62526         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
62527         immediately, so the test doesn't mistakenly hit the max-open-files
62528         limit.
62529
62530 2001-11-18  Paul Eggert  <eggert@twinsun.com>
62531
62532         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
62533         (TEMPORARIES): New macro.
62534         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
62535         removes an artificial limitation (e.g. HP-UX 10.20, where
62536         TMP_MAX is 17576).
62537
62538 2001-11-18  Jim Meyering  <meyering@lucent.com>
62539
62540         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
62541
62542 2001-11-18  Jim Meyering  <meyering@lucent.com>
62543
62544         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
62545         on SunOS 4.
62546
62547         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
62548         files will be created before anything else.
62549
62550 2001-11-17  Paul Eggert  <eggert@twinsun.com>
62551
62552         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
62553         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
62554
62555 2001-11-17  Jim Meyering  <meyering@lucent.com>
62556
62557         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
62558         Prompted by a report from Bob Proulx.
62559
62560         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
62561         Instead, require UTILS_FUNC_MKSTEMP.
62562
62563 2001-11-17  Jim Meyering  <meyering@lucent.com>
62564
62565         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
62566         Now, that's done as part of AC_FUNC_STRTOD.
62567
62568 2001-11-17  Jim Meyering  <meyering@lucent.com>
62569
62570         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
62571         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
62572         rather than group writable.  Patch by Juan F. Codagnone.
62573
62574         * lib/readtokens.c: Remove explicit declarations of xmalloc and
62575         xrealloc, Instead, include "xalloc.h".
62576
62577         * lib/mountlist.c: Include unlocked-io.h after all system headers.
62578         Remove explicit declarations of xmalloc, xrealloc,
62579         and xstrdup.  Instead, include "xalloc.h".
62580
62581         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
62582         unlocked-io.h.
62583         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
62584         Likewise.
62585         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
62586
62587         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
62588         Reported by Padraig Brady.
62589
62590         * lib/mkstemp.c: #undef mkstemp.
62591         Include config.h.
62592         (rpl_mkstemp): Rename from mkstemp.
62593         Protoize.
62594
62595 2001-11-16  Jim Meyering  <meyering@lucent.com>
62596
62597         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
62598         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
62599         determine the amount of total physical memory, use pstat_getstatic.
62600         HPUX-11 doesn't define _SC_PHYS_PAGES.
62601         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
62602         If sysconf couldn't be used to determine the amount of available
62603         physical memory, use both pstat_getstatic and pstat_getdynamic.
62604         Based on a patch from Bob Proulx.
62605
62606 2001-11-10  Jim Meyering  <meyering@lucent.com>
62607
62608         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
62609         (jm_PREREQ): Use it.
62610
62611 2001-11-09  Jim Meyering  <meyering@lucent.com>
62612
62613         * m4/jm-macros.m4: Require autoconf-2.52f.
62614         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
62615         Use these AC_-prefixed names, not the AM_-prefixed ones.
62616
62617         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
62618
62619 2001-11-05  Jim Meyering  <meyering@lucent.com>
62620
62621         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
62622
62623 2001-11-04  Jim Meyering  <meyering@lucent.com>
62624
62625         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
62626         $DEFS.
62627
62628 2001-11-03  Jim Meyering  <meyering@lucent.com>
62629
62630         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
62631         of AC_DEFUN.
62632
62633         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
62634         know the name of the variable in the macro definition.
62635
62636 2001-11-03  Jim Meyering  <meyering@lucent.com>
62637
62638         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
62639         in argmatch_to_argument call.
62640
62641         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
62642         argument.
62643
62644         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
62645         e.g., a fault due to an attempt to free a NULL pointer.
62646
62647 2001-11-01  Jim Meyering  <meyering@lucent.com>
62648
62649         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
62650         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
62651
62652 2001-11-01  Jim Meyering  <meyering@lucent.com>
62653
62654         * lib/dirfd.c, lib/dirfd.h: New files.
62655         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
62656
62657         * lib/hash.c (hash_print) [TESTING]: Clean up.
62658
62659 2001-10-22  Paul Eggert  <eggert@twinsun.com>
62660
62661         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
62662         to avoid a warning if -Wall.
62663
62664 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
62665
62666         * README: New file
62667         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
62668         (per RMS's instructions, this is now the canonical source)
62669         * lgpl/, gpl/: New directories.
62670
62671 2001-10-21  Paul Eggert  <eggert@twinsun.com>
62672
62673         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
62674
62675 2001-10-21  Jim Meyering  <meyering@lucent.com>
62676
62677         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
62678         this code would end up calling gettext even in packages built
62679         with --disable-nls.
62680         * lib/getopt.c (_): Likewise.
62681         * lib/regex.c (_): Likewise.
62682
62683 2001-10-20  Paul Eggert  <eggert@twinsun.com>
62684
62685         * m4/error.m4 (jm_PREREQ_ERROR):
62686         Do not invoke AC_CHECK_FUNCS with strerror_r, as
62687         AC_FUNC_STRERROR_R does that.
62688         Check for strerror declaration.
62689
62690         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
62691         are supposed to have them these days.
62692         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
62693         Merge changes from latest Autoconf CVS.
62694         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
62695         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
62696         POSIX decided to standardize on the int flavor of strerror_r.
62697
62698 2001-10-20  Paul Eggert  <eggert@twinsun.com>
62699
62700         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
62701         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
62702         Use strerror_r that is only a macro, even if it is not a function.
62703         (strerror): Check for HAVE_DECL_STRERROR before declaring.
62704         (private_strerror): Use prototypes, not old-style function definition.
62705         (print_errno_message): New function.
62706         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
62707         char*-flavored one.
62708         (error_tail, error, error_at_line): Use it.
62709
62710 2001-10-11  Jim Meyering  <meyering@lucent.com>
62711
62712         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
62713         and quote_n (1, ... to avoid clobbering a buffer.
62714
62715 2001-10-05  Jim Meyering  <meyering@lucent.com>
62716
62717         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
62718         hash-pjw.h.
62719         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
62720         * lib/hash-pjw.h: New file.
62721
62722 2001-09-30  Jim Meyering  <meyering@lucent.com>
62723
62724         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
62725         `struct fsstat' has the `f_fstypename' member.
62726         Use that to define FS_TYPE, which is now used to make
62727         the getfsstat link test tighter.
62728
62729 2001-09-30  Jim Meyering  <meyering@lucent.com>
62730
62731         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
62732         Include <sys/ucred.h>, for Apple Darwin.
62733         Include sys/mount.h and sys/fs_types.h only if available.
62734         (FS_TYPE): Define.
62735         (read_filesystem_list): Use FS_TYPE.
62736
62737 2001-09-29  Paul Eggert  <eggert@twinsun.com>
62738
62739         * lib/exclude.c (excluded_filename): 0 -> false, since it's
62740         a boolean context.
62741
62742 2001-09-29  Jim Meyering  <meyering@lucent.com>
62743
62744         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
62745         [one-argument getmntent function]): Include stdio.h before mntent.h.
62746         SunOS 4.1.x needs it for the declaration of `FILE'.
62747         Patch by Volker Borchert.
62748
62749         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
62750         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
62751         sys/fs_types.h, and make the link-test for getfsstat guard #include
62752         directives with appropriate #if HAVE_*_H tests so that we can
62753         detect getfsstat on Apple Darwin1.3.7 systems.
62754         Reported by Nelson Beebe.
62755         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
62756
62757 2001-09-28  Paul Eggert  <eggert@twinsun.com>
62758
62759         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
62760         #defines strtoimax.  Also treat the other strto* functions
62761         like strtoimax.
62762
62763         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
62764         Check for strtoul and strtoumax,
62765         as those declarations are made even in the signed case.
62766         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
62767         Likewise, for strtol and strtoimax.
62768
62769 2001-09-28  Paul Eggert  <eggert@twinsun.com>
62770
62771         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
62772         #defines strtoimax.  Also treat the other strto* functions
62773         like strtoimax.
62774
62775         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
62776         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
62777         (strtoimax, strtoumax): Do not declare if already defined as a macro.
62778
62779 2001-09-26  Jim Meyering  <meyering@lucent.com>
62780
62781         Most macros in unlocked-io.h had the wrong number of arguments.
62782         * lib/gen-uio: New script.
62783         (USE_UNLOCKED_IO): Define to 1 if not already defined.
62784         * lib/unlocked-io.hin: Remove file.
62785         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
62786         rather than trying to embed it here.
62787         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
62788         Reported by Padraig Brady.
62789
62790 2001-09-25  Volker Borchert  <bt@teknon.de>
62791
62792         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
62793         `result'.
62794
62795 2001-09-24  Jim Meyering  <meyering@lucent.com>
62796
62797         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
62798
62799 2001-09-23  Jim Meyering  <meyering@lucent.com>
62800
62801         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
62802         instead of the mere test for existence of mntent.h.  The latter
62803         would get a false-positive on AIX 3.4 systems.
62804         In the outer getmntent if-block, don't die if neither of the getmntent
62805         tests succeeds.  Instead, just fall through and continue with the
62806         remaining tests.
62807
62808 2001-09-23  Jim Meyering  <meyering@lucent.com>
62809
62810         * lib/mountlist.c: Remove useless parentheses in #if directives.
62811         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
62812         the deprecated MOUNTED symbol is no longer defined in mntent.h.
62813
62814 2001-09-22  Jim Meyering  <meyering@lucent.com>
62815
62816         * m4/gettext.m4: New file.  From gettext.
62817         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
62818         * m4/progtest.m4: Likewise
62819         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
62820         * m4/glibc21.m4: Likewise.
62821
62822         * m4/libintl.m4: Remove.  No longer used.
62823
62824 2001-09-22  Jim Meyering  <meyering@lucent.com>
62825
62826         * lib/localcharset.c: Update from latest gettext.
62827         * lib/config.charset: Likewise.
62828
62829 2001-09-20  Jim Meyering  <meyering@lucent.com>
62830
62831         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
62832         strtoimax.
62833         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
62834         strtoumax.
62835
62836 2001-09-20  Jim Meyering  <meyering@lucent.com>
62837
62838         * lib/xstrtol.c (strtoimax): Guard declaration with
62839         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
62840         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
62841         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
62842         (strtoumax): Likewise, for completeness (it wasn't necessary).
62843
62844 2001-09-17  Paul Eggert  <eggert@twinsun.com>
62845
62846         * lib/strtoimax.c (HAVE_LONG_LONG):
62847         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
62848         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
62849         to work around bug in IBM C compiler.
62850
62851 2001-09-17  Jim Meyering  <meyering@lucent.com>
62852
62853         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
62854         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
62855         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
62856         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
62857         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
62858         whenever the right hand side need not be expanded by the shell.
62859
62860 2001-09-16  Paul Eggert  <eggert@twinsun.com>
62861
62862         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
62863         library.  It's not correct, as some older glibcs are buggy.
62864         fnmatch wasn't fixed until glibc 2.2.
62865
62866         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
62867         special shell magic here.
62868
62869 2001-09-16  Jim Meyering  <meyering@lucent.com>
62870
62871         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
62872         * m4/jm-macros.m4: Require it.
62873
62874 2001-09-16  Jim Meyering  <meyering@lucent.com>
62875
62876         * lib/mkdir.c: New file.
62877
62878 2001-09-15  Jim Meyering  <meyering@lucent.com>
62879
62880         * m4/jm-macros.m4: Check for help2man.
62881
62882 2001-09-11  Jim Meyering  <meyering@lucent.com>
62883
62884         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
62885         The body, by Paul Eggert, was moved here from configure.in.
62886         * m4/jm-macros.m4: Require UTILS_HOST_OS.
62887
62888 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62889
62890         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
62891         (jm_PREREQ): Use it.
62892
62893 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62894
62895         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
62896         Use ssize_t, not int, to store result of readlink.
62897         Check for ssize_t overflow as well as size_t overflow,
62898         as POSIX says the result of readlink is implementation-defined
62899         when ssize_t overflows.
62900         Remove unnecessary cast to char*.
62901         Use free+malloc instead of realloc, as the storage doesn't need
62902         to be preserved and it's clearer and can be more efficient that way.
62903         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
62904         * lib/xreadlink.h (xreadlink): Update prototype.
62905
62906 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62907
62908         * lib/xgetcwd.c: Revert some of the previous change; intead,
62909         fix the HAVE_GETCWD_NULL code to behave more like the
62910         !HAVE_GETCWD_NULL code used to.
62911
62912         Include "xalloc.h".
62913         (xgetcwd): Do not return NULL when memory is exhausted; instead,
62914         invoke xalloc_die.
62915
62916 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62917
62918         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
62919         sys/param.h, as pathmax.h includes them.
62920
62921 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62922
62923         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
62924         (jm_PREREQ_XGETCWD): New macro.
62925
62926         * m4/getcwd.m4: New file.
62927
62928 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62929
62930         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
62931         like the HAVE_GETCWD_NULL code.
62932         Include pathmax.h if not HAVE_GETCWD.
62933         Do not include xalloc.h.
62934         (INITIAL_BUFFER_SIZE): New symbol.
62935         Do not use xmalloc / xrealloc, since the caller is responsible for
62936         handling errors.  Preserve errno around `free' during failure.
62937         Do not overrun buffer when using getwd.
62938
62939 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62940
62941         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
62942         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
62943         getcwd (NULL, 0).
62944
62945 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62946
62947         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
62948         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
62949         spotted by Jim Meyering.
62950
62951 2001-09-03  Jim Meyering  <meyering@lucent.com>
62952
62953         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
62954         failure.
62955
62956 2001-09-02  Jim Meyering  <meyering@lucent.com>
62957
62958         * lib/error.c: Update from GNU libc.
62959
62960 2001-09-01  Jim Meyering  <meyering@lucent.com>
62961
62962         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
62963         Used by df.
62964
62965 2001-09-01  Jim Meyering  <meyering@lucent.com>
62966
62967         * lib/xreadlink.c: New file.
62968         * lib/xreadlink.h: New file.
62969         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
62970         xreadlink.h.
62971
62972         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
62973         doesn't conflict with sparc Solaris 7's definition in
62974         /usr/include/sys/int_types.h.
62975
62976         * lib/exclude.c: Use `""', not `<>' to #include non-system header
62977         files.
62978         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
62979         and strncasecmp as r-values.  Unixware didn't have declarations.
62980
62981 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62982
62983         * lib/xstrtol.h: Add copyright notice.
62984         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
62985         LONGINT_INVALID_SUFFIX_CHAR.
62986
62987 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62988
62989         * lib/xstrtol.c (strtoimax): New decl.
62990
62991 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62992
62993         * lib/xgetcwd.c: Don't include pathmax.h.
62994         Include stdlib.h and unistd.h if available.
62995         Include xalloc.h.
62996         (xmalloc, xstrdup, free): Remove decls.
62997         (xgetcwd): Don't assume sizes fit in unsigned.
62998         Check for overflow when computing sizes.
62999         Simplify reallocation code.
63000
63001 2001-08-31  Paul Eggert  <eggert@twinsun.com>
63002
63003         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
63004         a directory's st_size can have an arbitrary value, so the old
63005         usage could waste an arbitrary amount of memory.  All uses
63006         changed.
63007         * lib/savedir.h: Update prototype.
63008
63009 2001-08-31  Paul Eggert  <eggert@twinsun.com>
63010
63011         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
63012
63013         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
63014         old strtoimax.c.
63015
63016         Also, make the following further changes to make this file's
63017         configuration more similar to that of strtol.c:
63018         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
63019         (strtoumax, uintmax_t, strtoull, strtol): Remove.
63020         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
63021         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
63022         changed to signed values.
63023
63024         And make the following changes as well:
63025         Fix copyright notice, as 1999 was missing.
63026         (verify): New macro.
63027         (strtoimax): Check sizes at compile-time, not run-time.
63028         Prefer strtol to strtoll if both work.
63029         (main): Remove; it was not that useful and was a pain to maintain.
63030
63031         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
63032
63033 2001-08-31  Jim Meyering  <meyering@lucent.com>
63034
63035         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
63036         Use an initial, malloc'd, buffer of length 128 rather than
63037         a statically allocated one of length 1024.
63038
63039 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63040
63041         Simplify code, partly by assuming autoconf 2.52 semantics.
63042
63043         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
63044
63045         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
63046         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
63047         All uses removed.
63048         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
63049         Move AC_REQUIRE to next-to-top level, to avoid confusion.
63050         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
63051         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
63052         jm_AC_HEADER_INTTYPES_H.
63053         * m4/jm-macros.m4 (jm_MACROS): Likewise.
63054
63055         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
63056
63057         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
63058         Quote first arg of AC_DEFUN.
63059         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
63060         since they are needed to parse the include file even if we need
63061         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
63062         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
63063         but with opposite signedness.
63064
63065 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63066
63067         Merge 'exclude' changes from tar 1.13.22.
63068         This fixes one or two unlikely storage allocation overflow bugs,
63069         but doesn't change user-visible behavior otherwise.
63070
63071 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63072
63073         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
63074         (jm_PREREQ_EXCLUDE): New macro.
63075
63076 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63077
63078         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
63079         tm to be declared.
63080
63081 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63082
63083         * lib/hash.c: Remove '2001' from copyright notice.
63084
63085 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63086
63087         * lib/full-write.h: New file.
63088         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
63089         * lib/full-write.c: Correct credits, as cccp.c no longer
63090         exists and anyway it was so heavily changed from the old cccp
63091         code as to be unrecognizable.  Include full-write.h.
63092         (full_write) Return size_t, with short writes meaning failure.
63093         All callers changed.  This fixes a bug with large buffers
63094         on 64-bit hosts.
63095         * lib/utime.c: Include full-write.h.
63096
63097 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63098
63099         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
63100         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
63101         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
63102         Include if available.
63103         (<xalloc.h>): Include
63104         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
63105         (verify): New macro.  Use it to verify that EXCLUDE macros do not
63106         collide with FNM macros.
63107         (struct patopts): New struct.
63108         (struct exclude): Use it, as exclude patterns now come with options.
63109         (new_exclude): Support above changes.
63110         (new_exclude, add_exclude_file):
63111         Initial size must now be a power of two to simplify overflow checking.
63112         (free_exclude, fnmatch_no_wildcards): New function.
63113         (excluded_filename): No longer requires options arg, as the options
63114         are determined by add_exclude.  Now returns bool, not int.
63115         (excluded_filename, add_exclude):
63116         Add support for the fancy new exclusion options.
63117         (add_exclude, add_exclude_file): Now takes int options arg.
63118         Check for arithmetic overflow when computing sizes.
63119         (add_exclude_file): xrealloc might modify errno, so don't
63120         realloc until after errno might be used.
63121
63122         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
63123         New macros.
63124         (free_exclude): New decl.
63125         (add_exclude, add_exclude_file): Now takes int options arg.
63126         (excluded_filename): No longer requires options arg, as the options
63127         are determined by add_exclude.  Now returns bool, not int.
63128
63129 2001-08-30  Paul Eggert  <eggert@twinsun.com>
63130
63131         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
63132
63133 2001-08-27  Jim Meyering  <meyering@lucent.com>
63134
63135         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
63136
63137         * lib/version-etc.c (N_): Remove definition.
63138         Revert most of last change.
63139         Instead, simply don't mark the `Copyright...' string for translation.
63140         Based on advice from Paul Eggert.
63141
63142         * lib/strtoxmax.c: Tweak comment.
63143
63144 2001-08-26  Jim Meyering  <meyering@lucent.com>
63145
63146         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
63147
63148         * m4/xstrtoimax.m4: New file.
63149         * m4/xstrtoumax.m4: Add comments explaining why we
63150         AC_REPLACE_FUNCS(strtol).
63151
63152 2001-08-26  Jim Meyering  <meyering@lucent.com>
63153
63154         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
63155         of copyright with `%s' so translators don't get an untranslated
63156         message in 2002.
63157         (COPYRIGHT_YEAR): Define.
63158         (version_etc): Use fprintf rather than fputs.
63159         Suggestion from Ulrich Drepper.
63160
63161         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
63162
63163         * lib/strtoll.c: New file, from GNU libc.
63164         * lib/xstrtoimax.c: New file.
63165
63166         * lib/xstrtol.h: Add xstrtoimax.
63167         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
63168         * lib/strtoimax.c: New file.  Likewise, but first define
63169         STRTOUXMAX_SIGNED.
63170
63171         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
63172         ...
63173         * lib/strtoxmax.c: ... then renamed to this.
63174
63175 2001-08-18  Paul Eggert  <eggert@twinsun.com>
63176
63177         * m4/inttypes.m4: Add AC_PREREQ(2.13).
63178         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
63179         (jm_AC_TYPE_INTMAX_T): New macro.
63180         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
63181
63182         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
63183
63184         * m4/longlong.m4: Renamed from ulonglong.m4.
63185         * m4/inttypes.m4: Renamed from inttypes_h.m4.
63186         * m4/uintmax_t.m4: Removed.
63187
63188 2001-08-13  Paul Eggert  <eggert@twinsun.com>
63189
63190         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
63191         Port to Solaris 8, where 'sed' requires a space after the 'r'
63192         command, and where sh dislikes "$/".  Clean up the spacing a bit.
63193         Redirect output to $tmp just once.
63194
63195 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
63196
63197         * lib/addext.c (<errno.h>): Include.
63198         (errno): Declare if not defined.
63199         (addext): Work correctly when pathconf returns -1 and leaves
63200         errno alone because there is no limit.  Also, work even if
63201         pathconf returns a value greater than SIZE_MAX.
63202
63203 2001-08-12  Jim Meyering  <meyering@lucent.com>
63204
63205         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
63206         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
63207         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
63208         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
63209         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
63210         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
63211         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
63212         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
63213         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
63214         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
63215         utime.m4, utimes.m4, xstrtoumax.m4:
63216         Quote the first argument in each use of AC_DEFUN.
63217
63218 2001-08-12  Jim Meyering  <meyering@lucent.com>
63219
63220         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
63221         Simply `return getcwd (NULL, 0);'.
63222         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
63223         Use 1300 as initial value for length, not PATH_MAX.
63224
63225         * lib/pathmax.h: Clean up cpp syntax.
63226
63227 2001-08-12  Jim Meyering  <meyering@lucent.com>
63228
63229         * lib/gettimeofday.c: New file.
63230         * lib/gtod.h: New file.
63231         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
63232
63233 2001-08-05  Jim Meyering  <meyering@lucent.com>
63234
63235         * m4/jm-macros.m4: Require autoconf-2.52.
63236
63237 2001-08-04  Jim Meyering  <meyering@lucent.com>
63238
63239         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
63240         stmt, to get in sync with glibc.
63241
63242 2001-08-03  Paul Eggert  <eggert@twinsun.com>
63243
63244         The following changes are from gettext 0.10.39 as maintained by
63245         Bruno Haible.
63246
63247         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
63248         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
63249         with inverted sense.  All uses changed.
63250
63251         * lib/mbswidth.c: Don't include <limits.h>.
63252         Include <stdlib.h> and <string.h> unconditionally.
63253         (iswcntrl, mbsinit, ISCNTRL): New macros.
63254         (mbsnwidth): Use K&R style function declarations.
63255         Don't bother checking for MB_LEN_MAX == 1, since the compiler
63256         can optimize it when MB_CUR_MAX == 1.
63257         The width of control characters is zero, not 1.
63258
63259 2001-08-03  Paul Eggert  <eggert@twinsun.com>
63260
63261         The following changes are from gettext 0.10.39 as maintained by
63262         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
63263
63264         * m4/codeset.m4: Upgrade to serial AM1.
63265         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
63266         all uses changed.  Quote first arg of AC_DEFUN.
63267         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
63268
63269         * m4/iconv.m4: Upgrade to serial AM2.
63270         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
63271         Add --with-libconv-prefix.
63272         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
63273         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
63274         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
63275         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
63276         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
63277
63278         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
63279         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
63280         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
63281         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
63282         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
63283         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
63284         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
63285         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
63286         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
63287
63288         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
63289         string.h any more.
63290
63291         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
63292         not the default value.
63293
63294         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
63295         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
63296         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
63297         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
63298         Also check for iswcntrl, used for wcwidth fallback.
63299         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
63300         to Autoconf 2.13.
63301
63302 2001-08-03  Jim Meyering  <meyering@lucent.com>
63303
63304         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
63305         as it was in the original.  Reported by Paul Eggert.
63306
63307 2001-07-16  Jim Meyering  <meyering@lucent.com>
63308
63309         * m4/gettimeofday.m4: New file.
63310         Prompted by a report from Bernhard Baehr.
63311
63312 2001-07-15  Jim Meyering  <meyering@lucent.com>
63313
63314         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
63315         stuff. Now it's in ../Makefile.cfg.
63316
63317 2001-07-15  Jim Meyering  <meyering@lucent.com>
63318
63319         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
63320         (BUILT_SOURCES): Add unlocked-io.h.
63321         (io_functions): Define.
63322         (unlocked-io.h): New rule.
63323         (DISTCLEANFILES): Add unlocked-io.h.
63324         (all-local): Depend on unlocked-io.h, to ensure it is created.
63325
63326         * lib/unlocked-io.hin: New file
63327
63328         * lib/regex.c: Update from glibc.
63329
63330 2001-07-05  Jim Meyering  <meyering@lucent.com>
63331
63332         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
63333         recommendation.
63334         (libfetish_a_SOURCES): Put all .h files here instead.
63335         Remove a thus-exposed (better checks in automake) duplicate and
63336         two unnecessary .h files.
63337
63338 2001-07-04  Jim Meyering  <meyering@lucent.com>
63339
63340         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
63341         that generates jm-glibc-io.m4 so that it doesn't trigger any make
63342         distcheck failure.
63343
63344 2001-07-02  Jim Meyering  <meyering@lucent.com>
63345
63346         The following changes were prompted by suggestions from Bruno Haible.
63347
63348         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
63349         is now generated.
63350         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
63351         definition of EXTRA_DIST.
63352         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
63353         ensure that the generated file is created/updated whenever the list
63354         of $(unlocked_functions) is changed.
63355         (jm-glibc-io.m4): New rule.
63356         (unlocked-io.h): New rule -- currently unused.
63357
63358 2001-06-24  Jim Meyering  <meyering@lucent.com>
63359
63360         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
63361         unmatched right bracket, rather than kludging it with an extra,
63362         falsely-matching quote in a comment.  Patch by Akim Demaille.
63363
63364 2001-06-11  Jim Meyering  <meyering@lucent.com>
63365
63366         * lib/regex.c: Update from GNU libc.
63367
63368 2001-05-27  Jim Meyering  <meyering@lucent.com>
63369
63370         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
63371         Check for ut_type in struct utmp.
63372
63373 2001-05-27  Jim Meyering  <meyering@lucent.com>
63374
63375         * lib/readutmp.h (UT_TYPE): Define.
63376
63377 2001-05-24  Jim Meyering  <meyering@lucent.com>
63378
63379         * lib/argmatch.c: Include "quote.h".
63380         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
63381         quote function.  Reported by Göran Uddeborg.
63382
63383 2001-05-22  Jim Meyering  <meyering@lucent.com>
63384
63385         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
63386         now that we use the package-supplied version unconditionally.
63387         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
63388
63389 2001-05-21  Jim Meyering  <meyering@lucent.com>
63390
63391         * m4/regex.m4: Change a couple backticks to single quotes to avoid
63392         shell syntax errors.
63393
63394 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
63395
63396         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
63397
63398 2001-05-20  Paul Eggert  <eggert@twinsun.com>
63399
63400         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
63401         Don't bother to check library strftime, since
63402         we'll be using our own my_strftime function anyway.
63403         Define my_strftime instead of strftime.
63404
63405 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
63406
63407         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
63408         which is not yet declared.
63409
63410 2001-05-15  Jim Meyering  <meyering@lucent.com>
63411
63412         * m4/regex.m4: Use proper quoting so brackets appear in the test
63413         program.
63414         Reported by, and with help from, Bruno Haible.
63415
63416 2001-05-13  Jim Meyering  <meyering@lucent.com>
63417
63418         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
63419         undefined.
63420
63421 2001-05-11  Paul Eggert  <eggert@twinsun.com>
63422
63423         dirname code cleanup.  base_name now behaves more compatibly
63424         with POSIX basename when given file names that have trailing
63425         slashes, and similarly for dir_name.  Add new primitives
63426         base_len and dir_len.  Put the directory-name-related decls
63427         into dirname.h.
63428
63429         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
63430         * lib/backupfile.c (base_name): Likewise.
63431         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
63432         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
63433         * lib/makepath.c (strip_trailing_slashes): Likewise.
63434         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
63435         ISSLASH): Likewise.
63436         * lib/rename.c (strip_trailing_slashes): Likewise.
63437         * lib/same.c (base_name): Likewise.
63438         * lib/stripslash.c (ISSLASH): Likewise.
63439
63440         * lib/addext.c: Include <dirname.h> after size_t is defined.
63441         * lib/backupfile.c: Likewise.
63442
63443         * lib/addext.c (addext): Use base_len to trim redundant
63444         trailing slashes instead of doing it ourselves.
63445         But do not trim the last slash if it is not redundant.
63446
63447         * lib/backupfile.c (find_backup_file_name,
63448         max_backup_version): Use base_len instead of rolling it ourselves.
63449         Handle the case of "" and (on DOS) "C:" correctly.
63450
63451         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
63452         needed. Include <string.h>, <dirname.h>.
63453         (base_name): Allow file names ending in slashes, other than names
63454         that are all slashes.  In this case, return the basename followed
63455         by the slashes.  This is more general, and can be used in places
63456         where the original base_name purposely had an assertion failure.
63457         (base_len): New function.
63458
63459         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
63460         Do not include <assert.h>; no longer needed.
63461         Include xalloc.h.
63462         (memrchr): Remove decl.
63463         (dir_name_r): Remove.
63464         (dir_len): Renamed from dirlen.  All callers changed.
63465         Rewrite in terms of base_name, for simplicity and consistency.
63466         (dir_name): Never return NULL.  All callers changed.
63467         Do not include <stdlib.h> in test program; no longer needed.
63468         return 0; is fine for test program.
63469
63470         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
63471         New macros.
63472         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
63473
63474         * lib/path-concat.c (path_concat): Use base_len to compute
63475         base length, not strlen; this means we cannot rely on memcpy
63476         to null-terminate.
63477
63478         * lib/same.c (STREQ): Remove.
63479         (same_name): Handle the case where the basename ends in trailing '/'.
63480
63481         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
63482         a slash was stripped.  Do not strip the last slash after a
63483         file system prefix.
63484
63485 2001-05-11  Paul Eggert  <eggert@twinsun.com>
63486
63487         * lib/Makefile.am (libfetish_a_SOURCES):
63488         Add strftime.c, since we now compile it on all hosts.
63489
63490         * lib/strftime.c (my_strftime):
63491         Define to nstrftime if emacs, but only if my_strftime is not defined.
63492         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
63493         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
63494         Add one more extra argument: a nanoseconds value.
63495         All uses changed.
63496         (ns): New macro.
63497         (my_strftime function): Add %N format.
63498         (emacs_strftimeu): Renamed from emacs_strftime,
63499         with extra ut argument.
63500
63501 2001-05-09  Paul Eggert  <eggert@twinsun.com>
63502
63503         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
63504
63505 2001-04-21  Jim Meyering  <meyering@lucent.com>
63506
63507         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
63508         doesn't interfere.
63509
63510 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
63511
63512         * m4/ftruncate.m4: Check for chsize.
63513         Link with ftruncate.o unconditionally if ftruncate is missing.
63514         This was required when cross-compiling to i586-mingw32msvc.
63515
63516 2001-04-08  Jim Meyering  <meyering@lucent.com>
63517
63518         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
63519         recomputed; that's necessary when the offset spans a DST transition.
63520         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
63521
63522 2001-04-02  Jim Meyering  <meyering@lucent.com>
63523
63524         * lib/regex.h, regex.c: Update from GNU libc.
63525
63526 2001-03-24  Jim Meyering  <meyering@lucent.com>
63527
63528         * m4/jm-macros.m4: Require autoconf-2.49d.
63529
63530 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
63531
63532         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
63533
63534 2001-03-19  Paul Eggert  <eggert@twinsun.com>
63535
63536         * lib/version-etc.c (version_etc_copyright): Update to 2001.
63537
63538 2001-03-17  Jim Meyering  <meyering@lucent.com>
63539
63540         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
63541         now that the version in autoconf is equivalent.
63542         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
63543
63544         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
63545         Suggestion from Akim Demaille.
63546
63547         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
63548         (jm_PREREQ_TEMPNAME): New function.
63549
63550 2001-03-16  Paul Eggert  <eggert@twinsun.com>
63551
63552         * lib/tempname.c (uint64_t): Define to uintmax_t if
63553         not defined, and if UINT64_MAX is not defined.
63554         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
63555         Reported by John David Anglin.
63556
63557 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
63558
63559         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
63560         resolve alias if codeset is empty.
63561         * lib/config.charset (BeOS): Use wildcard syntax.
63562
63563 2001-03-13  Jim Meyering  <meyering@lucent.com>
63564
63565         * lib/path-concat.c (path_concat)
63566         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
63567         concatenating e.g., `C:' and `foo'.
63568         From Bruno Haible.
63569
63570 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
63571
63572         * lib/localcharset.c (locale_charset): Don't use
63573         setlocale(LC_CTYPE,NULL). Don't return NULL.
63574         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
63575
63576 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
63577
63578         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
63579         support for DOS/DJGPP.
63580
63581 2001-03-01  Paul Eggert  <eggert@twinsun.com>
63582
63583         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
63584         lacks mkstemp.  Compile our own tempname.c if we compile our own
63585         mkstemp.c, as mkstemp relies on tempname.
63586
63587 2001-03-01  Jim Meyering  <meyering@lucent.com>
63588
63589         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
63590         AH_VERBATIM really does output its argument verbatim.
63591
63592 2001-02-28  Paul Eggert  <eggert@twinsun.com>
63593
63594         * lib/Makefile.am (libfetish_a_SOURCES):
63595         Add dup-safer.c, fopen-safer.c.
63596         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
63597
63598         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
63599         * lib/unistd-safer.h: New files.
63600
63601 2001-02-25  Paul Eggert  <eggert@twinsun.com>
63602
63603         The mkstemp replacement is taken from glibc 2.2.2, with some
63604         portability fixes for use outside glibc, as follows:
63605
63606         * lib/tempname.c (struct_stat64): New macro.
63607         (direxists, __gen_tempname): Use it.
63608         This avoids a portability problem with Solaris 8.
63609
63610         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
63611         (<stddef.h>, <stdint.h>, <string.h>):
63612         Include only if STDC_HEADERS || _LIBC.
63613         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
63614         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
63615         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
63616         (__set_errno): Define this macro if <errno.h> doesn't.
63617         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
63618         Define these macros if <stdio.h> doesn't.
63619         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
63620         Define these macros if <sys/stat.h>
63621         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
63622         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
63623         __xstat64): Define if not _LIBC.
63624         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
63625         (__gen_tempname): Invoke gettimeofday only if
63626         HAVE_GETTIMEOFDAY || _LIBC;
63627         otherwise, fall back on plain "time".
63628         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
63629
63630         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
63631
63632         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
63633
63634 2001-02-18  Paul Eggert  <eggert@twinsun.com>
63635
63636         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
63637
63638 2001-02-17  Paul Eggert  <eggert@twinsun.com>
63639
63640         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
63641         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
63642         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
63643         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
63644
63645 2001-02-17  Paul Eggert  <eggert@twinsun.com>
63646
63647         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
63648         Remove workaround macros for hosts that have mbrtowc but not
63649         mbstate_t, as we now insist on proper declarations for both
63650         before using mbrtowc.
63651
63652 2001-02-17  Jim Meyering  <meyering@lucent.com>
63653
63654         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
63655         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
63656         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
63657         UnixWare 7.1.1.
63658
63659         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
63660         rather than AC_CACHE_VAL.
63661
63662 2001-02-17  Jim Meyering  <meyering@lucent.com>
63663
63664         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
63665         around included file name.
63666
63667         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
63668
63669         * lib/strftime.c: Update from GNU libc (the only changes were to
63670         comments).
63671
63672 2001-02-17  Jim Meyering  <meyering@lucent.com>
63673
63674         * lib/regex.c: Update from libc.
63675
63676 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
63677
63678         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
63679         clash.
63680
63681 2001-02-16  Paul Eggert  <eggert@twinsun.com>
63682
63683         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
63684         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
63685         Reported by Mark Hounschell via Paul Eggert.
63686
63687 2001-02-07  Jim Meyering  <meyering@lucent.com>
63688
63689         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
63690
63691 2001-02-05  Jim Meyering  <meyering@lucent.com>
63692
63693         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
63694         it includes the patch required for `large file' support with at least
63695         HP-UX's 10.20 /bin/cc.
63696
63697 2001-02-03  Jim Meyering  <meyering@lucent.com>
63698
63699         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
63700         AS_IF, now that it works once again (mysteriously).
63701         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
63702
63703 2001-01-30  Jim Meyering  <meyering@lucent.com>
63704
63705         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
63706         * m4/chown.m4: Rename conftestchown to conftest.chown.
63707         * m4/rename.m4: s/conftestdir/conftest.d1/ and
63708         s/conftestdir2/conftest.d2/.
63709         * m4/utimes.m4: s/conftestdata/conftest.data/
63710         Inspired by Pavel Roskin's change in autoconf.
63711
63712 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
63713
63714         * lib/config.charset: Update for FreeBSD 4.2.
63715
63716 2001-01-27  Jim Meyering  <meyering@lucent.com>
63717
63718         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
63719         a use of AS_IF.
63720         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
63721
63722 2001-01-26  Jim Meyering  <meyering@lucent.com>
63723
63724         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
63725         quotearg.c includes it.
63726
63727 2001-01-26  Jim Meyering  <meyering@lucent.com>
63728
63729         * lib/quotearg.c: Include stddef.h.
63730         * lib/quote.c: Include stddef.h.
63731         Reported by Axel Kittenberger.
63732
63733         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
63734         line in double quotes so that it evokes a better diagnostic.
63735         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
63736         Reported by Axel Kittenberger.
63737
63738 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
63739
63740         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
63741         as if it was a `charset'.
63742
63743 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
63744
63745         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
63746         has const.
63747
63748 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
63749
63750         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
63751         to avoid a warning.  Add back 'const' to inptr.
63752
63753 2001-01-20  Jim Meyering  <meyering@lucent.com>
63754
63755         Be sure that headers are checked before used in code compiled
63756         for the type checks.
63757         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
63758         In place of that, invoke jm_CHECK_ALL_TYPES.
63759         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
63760         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
63761         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
63762         The check for ssize_t was mistakenly run before the test for unistd.h.
63763
63764         The configure-time check for stdbool.h was missing.
63765         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
63766         (jm_PREREQ_HASH): New function.
63767
63768 2001-01-17  Jim Meyering  <meyering@lucent.com>
63769
63770         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
63771         for autoconf-2.49c.
63772         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
63773
63774 2001-01-16  Jim Meyering  <meyering@lucent.com>
63775
63776         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
63777         From Bruno Haible.
63778
63779 2001-01-14  Jim Meyering  <meyering@lucent.com>
63780
63781         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
63782         foo and bar.  Create conftestdir/ in the script, not in the C code.
63783         Remove directories in the script, not in the C code.
63784         Remove conftestdir{,2} before trying to create the directory.
63785         Make the entire configure script fail if the mkdir fails.
63786
63787 2001-01-14  Jim Meyering  <meyering@lucent.com>
63788
63789         * lib/rename.c: New file.  From Volker Borchert.
63790         Include stdlib.h, string.h or strings.h, and xalloc.h.
63791         Use strip_trailing_slashes rather than open-coding it.
63792
63793 2001-01-03  Paul Eggert  <eggert@twinsun.com>
63794
63795         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
63796
63797 2001-01-03  Jim Meyering  <meyering@lucent.com>
63798
63799         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
63800         of local `inptr' to avoid warning with some system declarations of
63801         iconv.
63802
63803 2001-01-02  Volker Borchert  <bt@teknon.de>
63804
63805         * m4/rename.m4: New file.
63806         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
63807
63808 2001-01-01  Jim Meyering  <meyering@lucent.com>
63809
63810         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
63811         even on systems with utmpx.h.  It's necessary for the declaration of
63812         utmp's ut_user member.  Reported by Andreas Jaeger.
63813
63814         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
63815         available. They are required for the declarations of getgrgid and
63816         getpwuid resp.
63817         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
63818         Reported by Andreas Jaeger.
63819
63820 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
63821
63822         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
63823         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
63824         so `make install' also works in VPATH builds.
63825
63826 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
63827
63828         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
63829         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
63830         can be used in subdirectories.
63831
63832 2000-12-29  Paul Eggert  <eggert@twinsun.com>
63833
63834         * lib/modechange.c: Do not assume that mode_t uses the
63835         traditional octal encoding.  E.g. "chmod 1 FOO" should set
63836         the other-execute bit of FOO even if S_IXOTH != 1.
63837
63838         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
63839         WOTH, XOTH, ALLM): New macros.
63840         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
63841          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
63842         Use them.
63843         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
63844         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
63845         (mode_compile):
63846         No need to use uintmax_t; unsigned long is long enough.
63847         Don't bother to get suffix since we don't use it.
63848
63849 2000-12-26  Jim Meyering  <meyering@lucent.com>
63850
63851         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
63852         better with autoheader.
63853
63854 2000-12-24  Jim Meyering  <meyering@lucent.com>
63855
63856         * lib/hash.c (is_prime): Return explicit boolean values.
63857         (hash_get_first): Return NULL to appease Irix5.6's 89.
63858         Reported by Nelson Beebe.
63859
63860 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
63861
63862         * lib/localcharset.c (locale_charset): Add support for Win32.
63863
63864 2000-12-18  Paul Eggert  <eggert@twinsun.com>
63865
63866         * lib/physmem.h, lib/physmem.c: New files.
63867
63868         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
63869         (noinst_HEADERS): Add physmem.h.
63870
63871         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
63872         't' for compatibility with Solaris 8 sort.
63873
63874 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
63875
63876         * lib/config.charset: Add support for BeOS.
63877
63878 2000-12-17  Jim Meyering  <meyering@lucent.com>
63879
63880         * m4/dos.m4 (jm_AC_DOS): New file and macro.
63881         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
63882
63883 2000-12-16  Jim Meyering  <meyering@lucent.com>
63884
63885         This bug had a serious impact on chown: `chown N:M FILE' (for integer
63886         N and M) would have treated it like `chown N:N FILE'.
63887
63888         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
63889
63890 2000-12-16  Jim Meyering  <meyering@lucent.com>
63891
63892         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
63893         SHELLS_FILE to a file name that's useful on djgpp systems.
63894         Include stdlib.h.
63895         (ADDITIONAL_DEFAULT_SHELLS): Define.
63896         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
63897         Based mostly on a patch from Prashant TR.
63898
63899 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
63900
63901         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
63902         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
63903         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
63904
63905 2000-12-08  Andreas Schwab  <schwab@suse.de>
63906
63907         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
63908         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
63909
63910 2000-12-07  Jim Meyering  <meyering@lucent.com>
63911
63912         * lib/stripslash.c (ISSLASH): Define.
63913         (strip_trailing_slashes): Use ISSLASH rather than comparing against
63914         `/'.
63915         From Prashant TR.
63916
63917         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
63918         (dir_name_r): Declare this function as static.
63919         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
63920         manifest itself on a name containing a mix of slashes and
63921         backslashes.
63922         Make this function work with names starting with a DOS-style
63923         drive letter and colon prefix.
63924         (dir_name): Append `.' if necessary.
63925         Based mostly on patches from Prashant TR and Eli Zaretskii.
63926
63927         * lib/dirname.h (dir_name_r): Remove prototype.
63928
63929 2000-12-06  Paul Eggert  <eggert@twinsun.com>
63930
63931         * m4/off_t-format.m4: Remove this file.
63932         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
63933
63934 2000-12-06  Jim Meyering  <meyering@lucent.com>
63935
63936         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
63937         replacement strtoull, we may well need the replacement strtoul, too.
63938         Check for declarations of strtoul and strtoull.
63939         Check for strtol.  Mainly as a cue to cause automake to include
63940         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
63941         Check for limits.h -- strtol.c needs it.
63942
63943 2000-12-05  Jim Meyering  <meyering@lucent.com>
63944
63945         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
63946
63947 2000-12-04  Jim Meyering  <meyering@lucent.com>
63948
63949         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
63950         Also include memory.h, stdlib.h, unistd.h if appropriate.
63951         Reported by Andreas Jaeger (conflicting declaration of malloc).
63952
63953 2000-12-02  Jim Meyering  <meyering@lucent.com>
63954
63955         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
63956         * m4/jm-macros.m4 (jm_MACROS): require it.
63957
63958 2000-12-02  Jim Meyering  <meyering@lucent.com>
63959
63960         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
63961
63962 2000-12-01  Paul Eggert  <eggert@twinsun.com>
63963
63964         * lib/memrchr.c: Include <config.h> before any system include file.
63965
63966 2000-11-30  Jim Meyering  <meyering@lucent.com>
63967
63968         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
63969
63970 2000-11-30  Jim Meyering  <meyering@lucent.com>
63971
63972         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
63973
63974 2000-11-29  Paul Eggert  <eggert@twinsun.com>
63975
63976         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
63977
63978 2000-11-26  Jim Meyering  <meyering@lucent.com>
63979
63980         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
63981
63982 2000-11-22  Paul Eggert  <eggert@twinsun.com>
63983
63984         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
63985         size of (size_t) -1; it's not portable.
63986
63987 2000-11-17  Jim Meyering  <meyering@lucent.com>
63988
63989         * lib/strstr.c: Update from GNU libc.
63990
63991 2000-11-17  Akim Demaille  <akim@epita.fr>
63992
63993         * lib/obstack.h: Formatting changes.
63994         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
63995         prevent type checking.
63996         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
63997         cast the value to (void *): assigning a `foo *' to a `void *'
63998         variable is valid.
63999         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
64000
64001 2000-11-16  Jim Meyering  <meyering@lucent.com>
64002
64003         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
64004
64005 2000-11-11  Jim Meyering  <meyering@lucent.com>
64006
64007         * lib/error.c: Add a couple #includes, merging from GNU libc version.
64008
64009 2000-11-10  Jim Meyering  <meyering@lucent.com>
64010
64011         * lib/obstack.h: Update from GNU libc.
64012         * lib/obstack.c: Likewise.
64013
64014 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
64015
64016         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
64017
64018 2000-11-06  Paul Eggert  <eggert@twinsun.com>
64019
64020         * lib/getusershell.c (setusershell): Use rewind rather than
64021         fseek/fseeko, to avoid configuration hassles with fseeko.
64022         Don't bother opening SHELLS_FILE if shellstream is NULL;
64023         it's not necessary.
64024
64025 2000-11-05  Jim Meyering  <meyering@lucent.com>
64026
64027         * lib/makepath.h (make_dir): Declare.
64028         * lib/makepath.c (make_dir): Remove `static' attribute.
64029         Tweak a comment.
64030
64031 2000-11-04  Jim Meyering  <meyering@lucent.com>
64032
64033         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
64034
64035 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
64036
64037         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
64038         last one in a bucket, advance to the next bucket.
64039
64040 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
64041
64042         * lib/fnmatch.c: Do not comment out all the code if we are using
64043         the GNU C library, because in some cases we are replacing buggy
64044         code in the GNU C library itself.
64045
64046 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
64047
64048         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
64049         (regex_compile): Catch bogus \(\1\).
64050
64051 2000-10-30  Paul Eggert  <eggert@twinsun.com>
64052
64053         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
64054         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
64055         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
64056
64057 2000-10-30  Paul Eggert  <eggert@twinsun.com>
64058
64059         * lib/error.h, getline.h, modechange.h:
64060         Remove "2000" from Copyright line, as the file hasn't been
64061         changed this year other than in the copyright notice.
64062
64063         * lib/xalloc.h: Add "2000" to Copyright line, as this file
64064         was changed this year.
64065
64066 2000-10-29  Jim Meyering  <meyering@lucent.com>
64067
64068         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
64069         renaming.
64070         * m4/ls-mntd-fs.m4: Likewise
64071
64072 2000-10-29  Jim Meyering  <meyering@lucent.com>
64073
64074         * lib/xstat.in: Fix grammar in comment.
64075
64076 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
64077
64078         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
64079         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
64080         doesn't define __restrict_arr.
64081
64082 2000-10-28  Jim Meyering  <meyering@lucent.com>
64083
64084         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
64085         (jm_PREREQ_MEMCHR): New function.
64086
64087 2000-10-28  Jim Meyering  <meyering@lucent.com>
64088
64089         * lib/memchr.c: Update from libc.
64090         Adjust for portability:
64091         [HAVE_STDLIB_H]: Include stdlib.h.
64092         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
64093         Undef __memchr, too.
64094         [!weak_alias]: Define __memchr to memchr.
64095
64096         * lib/regex.c: Update from libc.
64097         * lib/regex.h: Likewise.
64098         * lib/getopt1.c: Likewise.
64099         * lib/memcmp.c: Likewise.
64100
64101         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
64102         Avoid using fseek, when possible -- it's broken by design.
64103         Patch by Ulrich Drepper.
64104
64105 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
64106
64107         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
64108         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
64109         Giving in to popular pressure to shut up the compiler with casts.
64110
64111 2000-10-26  Jim Meyering  <meyering@lucent.com>
64112
64113         * lib/strftime.c: Update from libc.
64114
64115 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
64116
64117         * regex.c: More `unsigned char' -> `re_char' changes.
64118         Also change several `int' into `re_wchar_t'.
64119         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
64120         (PUSH_FAILURE_POINTER): Don't cast any more.
64121         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
64122         We want GCC to complain, since this piece of code makes
64123         re_match non-reentrant, which *should* be fixed.
64124         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
64125         (EXTEND_BUFFER): Use RETALLOC.
64126         (SET_LIST_BIT): Don't cast.
64127         (re_wchar_t): New type.
64128         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
64129         that those two functions will always properly return.
64130         (IMMEDIATE_QUIT_CHECK): Cast to void.
64131         (analyse_first): Use recursion rather than an explicit stack.
64132         (re_compile_fastmap): Can't fail anymore.
64133         (re_search_2): Don't check re_compile_fastmap for failure.
64134         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
64135         Now also sets the new value (passed in a new argument).
64136         (re_match_2_internal): Use it.
64137         Also, use a new var `reg' of type size_t when looping through regs
64138         rather than reuse the inappropriate `mcnt'.
64139
64140 2000-10-25  Jim Meyering  <meyering@lucent.com>
64141
64142         * lib/obstack.c: Update from libc.
64143
64144 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
64145
64146         * regex.c (regex_compile): Change the way of handling a range from
64147         a char less than 256 to a char not less than 256.
64148
64149 2000-10-24  Andrew Innes  <andrewi@gnu.org>
64150
64151         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
64152         NT-Emacs only.
64153         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
64154         so that re_search functions only quit when callers expect them to.
64155
64156 2000-10-23  Jim Meyering  <meyering@lucent.com>
64157
64158         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
64159         wrong.  That set_locale call must not have any side effects.
64160         From Paul Eggert.
64161
64162 2000-10-22  Jim Meyering  <meyering@lucent.com>
64163
64164         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
64165         [CYCLIC]: Remove now-unused definition.
64166
64167         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
64168         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
64169         Suggestion from Ulrich Drepper.
64170
64171 2000-10-21  Jim Meyering  <meyering@lucent.com>
64172
64173         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
64174         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
64175         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
64176
64177 2000-10-21  Jim Meyering  <meyering@lucent.com>
64178
64179         * lib/dirname.c (memrchr): Declare if necessary.
64180         (dir_name): Remove the restriction that there be no
64181         trailing slashes.  Now, this code skips past them, effectively
64182         ignoring them.
64183         [TEST_DIRNAME] (main): New unit tests.
64184
64185         * lib/memrchr.c: New file from GNU libc.
64186         Undef __memrchr, too.
64187         [!weak_alias]: Define __memrchr to memrchr.
64188         Guard weak_alias use with `#ifdef weak_alias'.
64189
64190 2000-10-21  Jim Meyering  <meyering@lucent.com>
64191
64192         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
64193         (dir_name): Use dir_name_r.
64194         * lib/dirname.h (dir_name_r): Declare it.
64195
64196 2000-10-17  Jim Meyering  <meyering@lucent.com>
64197
64198         * lib/quote.h (PARAMS): Define and use.
64199         Reported by Akim Demaille.
64200
64201         * lib/getopt.c: Update from libc.
64202
64203 2000-10-16  Jim Meyering  <meyering@lucent.com>
64204
64205         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
64206         setlocale.
64207         From Jan Fedak.
64208
64209 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
64210
64211         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
64212
64213 2000-09-25  Jim Meyering  <meyering@lucent.com>
64214
64215         * lib/md5.h (rol): Define (from GnuPG).
64216
64217         * lib/sha.c: Give credit (GnuPG) where due.
64218         (M): Use rol rather than open-coding it.
64219         Add a FIXME comment.
64220
64221 2000-09-21  Jim Meyering  <meyering@lucent.com>
64222
64223         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
64224         Reported by Michael Stone.
64225
64226 2000-09-20  Jim Meyering  <meyering@lucent.com>
64227
64228         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
64229         (noinst_HEADERS): Add sha.h.
64230         Based on code from Scott G. Miller and from GnuPG.
64231
64232 2000-09-18  Jim Meyering  <meyering@lucent.com>
64233
64234         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
64235         LIBS. Otherwise, everyone ends up linking with -lelf for some
64236         configurations.
64237         Reported by Mike Stone.
64238
64239 2000-09-15  Jim Meyering  <meyering@lucent.com>
64240
64241         * lib/regex.c: Update from libc.
64242
64243 2000-09-10  Jim Meyering  <meyering@lucent.com>
64244
64245         * lib/getopt.c (_getopt_internal): Update from glibc.
64246
64247 2000-09-09  Jim Meyering  <meyering@lucent.com>
64248
64249         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
64250         think it should be used as a general replacement for isascii.
64251         * lib/fnmatch.c: Likewise.
64252         * lib/mbswidth.c: Likewise
64253         * lib/regex.c: Likewise.
64254
64255         Don't use atoi.
64256         * lib/userspec.c: Include sys/param.h and limits.h.
64257         Include xstrtol.h.
64258         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
64259         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
64260         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
64261         UID, GID.  Check range.
64262
64263 2000-09-06  Jim Meyering  <meyering@lucent.com>
64264
64265         * lib/getopt.c (_getopt_internal): Update from glibc.
64266
64267 2000-08-30  Jim Meyering  <meyering@lucent.com>
64268
64269         * lib/strftime.c: Merge in changes from GNU libc.
64270
64271 2000-08-26  Jim Meyering  <meyering@lucent.com>
64272
64273         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
64274         * m4/fpending.m4: New file.
64275
64276 2000-08-26  Jim Meyering  <meyering@lucent.com>
64277
64278         * lib/closeout.c: Include "__fpending.h".
64279         (close_stdout_status): Return right away if there's nothing to flush.
64280
64281         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
64282         * lib/__fpending.c: New file.
64283         * lib/__fpending.h: New file.
64284
64285 2000-08-20  Jim Meyering  <meyering@lucent.com>
64286
64287         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
64288         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
64289         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
64290
64291 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
64292
64293         Improve fileutils installation on systems where running
64294         programs (like install) can't be unlinked.
64295         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
64296         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
64297
64298 2000-08-07  Paul Eggert  <eggert@twinsun.com>
64299
64300         Standardize on "memory exhausted" instead of "Memory exhausted"
64301         or "virtual memory exhausted".
64302         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
64303         "virtual memory exhausted".
64304         * lib/same.c (same_name): Invoke xalloc_die instead of printing
64305         our own message.
64306         * lib/userspec.c (parse_user_spec): Likewise.
64307         * lib/bumpalloc.h: comment fix
64308         * lib/same.c, userspec.c: Include xalloc.h.
64309
64310         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
64311         not char *const and pointing to a constant array.
64312         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
64313         (xrealloc): Comment fix.
64314
64315         * lib/userspec.c (parse_user_spec):
64316         Don't translate a message until just before returning,
64317         to avoid unnecessary translation.
64318
64319 2000-08-07  Jim Meyering  <meyering@lucent.com>
64320
64321         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
64322         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
64323         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
64324         getgroups.c, gethostname.c, getopt.h, group-member.c,
64325         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
64326         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
64327         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
64328         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
64329         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
64330         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
64331         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
64332         yesno.c: Back out Copyright date changes for each file with no change
64333         this year.  This eases coordination with other programs using the same
64334         source code modules.  From Paul Eggert.
64335
64336 2000-08-06  Paul Eggert  <eggert@twinsun.com>
64337
64338         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
64339         not char, for compatibility with glibc 2.1.3 strftime.c.
64340
64341 2000-08-03  Greg McGary  <greg@mcgary.org>
64342
64343         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
64344         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
64345         (EXTEND_BUFFER): Use them.
64346
64347 2000-08-01  Jim Meyering  <meyering@lucent.com>
64348
64349         * lib/dirname.c (ISSLASH): Define.
64350         (BACKSLASH_IS_PATH_SEPARATOR): Define.
64351         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
64352         both `\' and `/' may be use as path separators.
64353         Based on a patch from Prashant TR.
64354
64355 2000-07-31  Paul Eggert  <eggert@twinsun.com>
64356
64357         * lib/quotearg.c (quotearg_n_options): Don't make the initial
64358         slot vector a constant, since it might get modified.
64359
64360 2000-07-31  Jim Meyering  <meyering@lucent.com>
64361
64362         * lib/xmalloc.c: Use `virtual memory exhausted', not
64363         `Memory exhausted'.
64364         * lib/obstack.c (print_and_abort): Likewise.
64365
64366 2000-07-30  Paul Eggert  <eggert@twinsun.com>
64367
64368         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
64369         buffer, so that the caller can always quote one small
64370         component of a "memory exhausted" message in slot 0.
64371         From a suggestion by Jim Meyering.
64372
64373 2000-07-30  Jim Meyering  <meyering@lucent.com>
64374
64375         * lib/makepath.c (make_path): Quote the other instance, too.
64376
64377         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
64378         (STATIC_BUF_SIZE): Define.
64379         (quotearg_n_options): Use only statically allocated storage when
64380         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
64381         than STATIC_BUF_SIZE.
64382
64383 2000-07-29  Jim Meyering  <meyering@lucent.com>
64384
64385         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
64386         * lib/dirname.c (dir_name): Likewise.
64387
64388         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
64389         `/'.
64390
64391         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
64392         (dir_name): Assert that there are no trailing slashes.
64393
64394 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
64395
64396         * lib/mbswidth.h (mbswidth): Add a flags argument.
64397         (mbswidth): New declaration.
64398         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
64399         * lib/mbswidth.c (mbswidth): Add a flags argument.
64400         (mbsnwidth): New function.
64401
64402 2000-07-24  Jim Meyering  <meyering@lucent.com>
64403
64404         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
64405
64406 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64407
64408         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
64409
64410 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64411
64412         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
64413         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
64414         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
64415         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
64416         invoke multibyte primitives.
64417
64418 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64419
64420         * lib/quotearg.c:
64421         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
64422         so that mbstate_t is always defined.
64423
64424         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
64425         be 1 in at least one GCC installation, and this configuration
64426         error is likely to be common.  Ignoring MB_LEN_MAX hurts
64427         performance on hosts that have mbrtowc but have only unibyte
64428         locales, but I assume these hosts are rare.
64429
64430 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64431
64432         * lib/mbswidth.c (_XOPEN_SOURCE):
64433         Don't define; this causes problems on Solaris 7.
64434         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
64435
64436 2000-07-23  Jim Meyering  <meyering@lucent.com>
64437
64438         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
64439         too: getgrgid, getpwuid, getuid.
64440
64441 2000-07-23  Jim Meyering  <meyering@lucent.com>
64442
64443         * lib/basename.c (base_name): Add an assertion.
64444
64445 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
64446
64447         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
64448         shadow its mbsinit function.
64449
64450 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
64451
64452         * lib/mbswidth.h: New file.
64453         * lib/mbswidth.c: New file.
64454         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
64455         (noinst_HEADERS): Add mbswidth.h.
64456
64457 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
64458
64459         * lib/config.charset: Add support for FreeBSD. Improve support for
64460         HP-UX and IRIX 6.
64461
64462 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
64463
64464         * m4/mbswidth.m4: New file.
64465         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
64466
64467 2000-07-15  Jim Meyering  <meyering@lucent.com>
64468
64469         * lib/makepath.c: Include quote.h.
64470         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
64471         corresponding argument in a `quote (...)' call.
64472         Give better diagnostics.
64473
64474         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
64475         (noinst_HEADERS): Add quote.h.
64476
64477         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
64478         from tar's src/misc.c.
64479         * lib/quote.h: New file.  Prototypes for same.
64480
64481 2000-07-14  Paul Eggert  <eggert@twinsun.com>
64482
64483         From a suggestion by Bruno Haible.
64484         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
64485         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
64486         to decide whether to define the BeOS workaround macro;
64487         this adjusts to the change to AC_MBSTATE_T.
64488
64489 2000-07-14  Jim Meyering  <meyering@lucent.com>
64490
64491         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
64492         jm_AC_TYPE_UINTMAX_T.
64493
64494 2000-07-13  Paul Eggert  <eggert@twinsun.com>
64495
64496         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
64497
64498         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
64499         quotearg_buffer_restyled): Add support for
64500         clocale_quoting_style.  Undo previous change to
64501         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
64502         and "{RIGHT QUOTATION MARK}" msgids.
64503
64504 2000-07-10  Paul Eggert  <eggert@twinsun.com>
64505
64506         From a suggestion by Bruno Haible.
64507         * m4/mbstate_t.m4 (AC_MBSTATE_T):
64508         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
64509         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
64510         and mbstate_t, to a single-part test that simply defines mbstate_t.
64511         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
64512         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
64513
64514 2000-07-10  Jim Meyering  <meyering@lucent.com>
64515
64516         * m4/strerror_r.m4: Mirror the correction made in autoconf.
64517
64518         * m4/gnu-source.m4: Output to confdefs.h directly.
64519         Suggestion from Akim Demaille.
64520
64521 2000-07-09  Paul Eggert  <eggert@twinsun.com>
64522
64523         The old behavior of quoting `like this' doesn't look good with
64524         newer, ISO-style fonts.  See:
64525         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
64526
64527         Instead, quote "like this" by default.  Let the translator
64528         tailor the locale-specific quoting behavior by providing
64529         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
64530
64531         * lib/quotearg.c (N_): New macro.
64532         (gettext_default): New function.
64533         (quotearg_buffer_restyled): Use
64534         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
64535         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
64536
64537 2000-07-09  Jim Meyering  <meyering@lucent.com>
64538
64539         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
64540         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
64541
64542         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
64543         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
64544
64545 2000-07-09  Jim Meyering  <meyering@lucent.com>
64546
64547         * lib/Most files: Update copyright dates to include 2000.
64548
64549 2000-07-08  Jim Meyering  <meyering@lucent.com>
64550
64551         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
64552         if not defined.
64553         (xgethostname): Remove now-unnecessary #ifdef.
64554         Move declaration of `err' into loop where it's used.
64555
64556 2000-07-05  Paul Eggert  <eggert@twinsun.com>
64557         and Bruno Haible  <haible@clisp.cons.org>
64558
64559         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
64560         only if the test for an object-type mbstate_t fails.  This
64561         prevents us from mistakenly reporting that mbstate_t is a
64562         system object type after we "#define mbstate_t int" to work
64563         around its lack.
64564
64565 2000-07-05  Paul Eggert  <eggert@twinsun.com>
64566         and Bruno Haible  <haible@clisp.cons.org>
64567
64568         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
64569
64570 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
64571
64572         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
64573         to strerror_r.
64574         Include <ctype.h> for use of isalpha.
64575
64576 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
64577
64578         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
64579         by allocating a larger buffer. Test the gethostname return value for
64580         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
64581         returns an error and ENAMETOOLONG isn't defined.
64582
64583 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
64584
64585         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
64586         dimension.
64587
64588 2000-07-04  Jim Meyering  <meyering@lucent.com>
64589
64590         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
64591         of the deprecated AC_CHECKING.
64592
64593 2000-07-04  Jim Meyering  <meyering@lucent.com>
64594
64595         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
64596         Reported by Bruno Haible.
64597
64598 2000-07-04  Jim Meyering  <meyering@lucent.com>
64599
64600         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
64601         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
64602         lacks mbrtowc.
64603
64604 2000-07-03  Paul Eggert  <eggert@twinsun.com>
64605
64606         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
64607         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
64608
64609 2000-07-03  Paul Eggert  <eggert@twinsun.com>
64610         and Bruno Haible  <haible@clisp.cons.org>
64611
64612         * lib/quotearg.c (mbrtowc):
64613         Assign to *pwc, and return 1 only if result is nonzero.
64614         (iswprint): Use ISPRINT when substituting our own mbrtowc.
64615
64616 2000-07-03  Jim Meyering  <meyering@lucent.com>
64617
64618         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
64619
64620 2000-07-03  Jim Meyering  <meyering@lucent.com>
64621
64622         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
64623         This is necessary to get a definition of e.g., UTMP_FILE on
64624         HP-UX 10.20.
64625         From Bob Proulx.
64626
64627 2000-07-02  Jim Meyering  <meyering@lucent.com>
64628
64629         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
64630
64631         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
64632         AC_LIBOBJ(function_name).
64633         * m4/chown.m4: Likewise.
64634         * m4/fnmatch.m4: Likewise.
64635         * m4/ftruncate.m4: Likewise.
64636         * m4/getgroups.m4: Likewise.
64637         * m4/getline.m4: Likewise.
64638         * m4/group-member.m4: Likewise.
64639         * m4/jm-macros.m4: Likewise.
64640         * m4/lstat.m4: Likewise.
64641         * m4/malloc.m4: Likewise.
64642         * m4/memcmp.m4: Likewise.
64643         * m4/nanosleep.m4: Likewise.
64644         * m4/putenv.m4: Likewise.
64645         * m4/realloc.m4: Likewise.
64646         * m4/regex.m4: Likewise.
64647         * m4/stat.m4: Likewise.
64648         * m4/strftime.m4: Likewise.
64649
64650 2000-07-02  Jim Meyering  <meyering@lucent.com>
64651
64652         * lib/quotearg.c (mbstate_t): Don't define here.
64653
64654 2000-07-02  Jim Meyering  <meyering@lucent.com>
64655
64656         * lib/nanosleep.c (SIGCONT): Define if not already defined.
64657
64658 2000-07-01  Jim Meyering  <meyering@lucent.com>
64659
64660         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
64661
64662 2000-07-01  Jim Meyering  <meyering@lucent.com>
64663
64664         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
64665         problem.
64666
64667 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
64668
64669         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
64670         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
64671
64672 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
64673
64674         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
64675         per change in ../m4/ls-mntd-fs.m4.
64676         (read_filesystem_list): Ignore symbolic links.
64677
64678 2000-06-29  Jim Meyering  <meyering@lucent.com>
64679
64680         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
64681         for declaration of strcmp.
64682
64683         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
64684
64685         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
64686         Avoid warning by casting result to `char *' to remove `const'.
64687
64688 2000-06-28  Jim Meyering  <meyering@lucent.com>
64689
64690         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
64691         included by quotearg.c, for which we perform this test.  From
64692         Bruno Haible.
64693
64694 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
64695
64696         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
64697         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
64698         <utmpx.h> exists, put readutmp.o into LIBOBJS.
64699
64700 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
64701
64702         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
64703
64704 2000-06-26  Paul Eggert  <eggert@twinsun.com>
64705
64706         savedir now sets errno on failure and invokes xmalloc to get memory.
64707         Fix a couple of other minor bugs while we're at it.
64708
64709         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
64710         (NAMLEN): Remove macro.
64711         (malloc, realloc): Remove decls.
64712         (stpcpy): Likewise.
64713         ("xalloc.h"): Include.
64714         (NAME_SIZE_DEFAULT): New macro.
64715         (savedir): Use xmalloc / xrealloc to allocate memory.
64716         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
64717         Skip "" directory entries.
64718         Use strlen to calculate directory entry length, since the old method
64719         is rarely used these days and isn't worth supporting.
64720         Don't use a pointer after freeing it.
64721         Check for integer overflow when calculating allocation size.
64722         Use memcpy to copy entries, instead of stpcpy.
64723         Set errno properly when returning NULL.
64724         Check for readdir error.
64725
64726 2000-06-26  Jim Meyering  <meyering@lucent.com>
64727
64728         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
64729
64730 2000-06-25  Jim Meyering  <meyering@lucent.com>
64731
64732         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
64733         Linux header bug when _XOPEN_SOURCE is defined to 500.
64734
64735 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
64736
64737         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
64738         deficiency.
64739
64740 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
64741
64742         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
64743         Include xalloc.h.
64744         Don't include <stdlib.h>.  Don't declare malloc, realloc.
64745
64746 2000-06-24  Jim Meyering  <meyering@lucent.com>
64747
64748         * m4/strerror_r.m4: Revive this file -- to try out an experimental
64749         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
64750         for which strerror does return char*, but which lacks a conveniently
64751         accessible declaration of the function.  If the compile-test says
64752         strerror_r doesn't work, then resort to a `run'-test that works on
64753         BeOS and segfaults on DEC Unix.
64754
64755 2000-06-24  Jim Meyering  <meyering@lucent.com>
64756
64757         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
64758
64759 2000-06-23  Paul Eggert  <eggert@twinsun.com>
64760
64761         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
64762         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
64763
64764 2000-06-23  Paul Eggert  <eggert@twinsun.com>
64765
64766         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
64767         (mbrtowc, mbstate_t): Define substitutes if
64768         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
64769         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
64770         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
64771
64772 2000-06-23  Jim Meyering  <meyering@lucent.com>
64773
64774         * m4/afs.m4: Add missing AC_MSG_RESULT.
64775         Reported by Bruno Haible.
64776
64777         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
64778         Suggestion from Bruno Haible.
64779
64780 2000-06-23  Jim Meyering  <meyering@lucent.com>
64781
64782         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
64783
64784 2000-06-21  Jim Meyering  <meyering@lucent.com>
64785
64786         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
64787
64788 2000-06-21  Jim Meyering  <meyering@lucent.com>
64789
64790         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
64791         (noinst_HEADERS): Add getstr.h.
64792
64793         * lib/getline.c (getstr): Move into a separate file.
64794         * lib/getstr.c (getstr): New file, extracted from getline.c, with
64795         the following changes: new parameter, delim2; both delim[12]
64796         parameters have type `int', not `char'.  The latter would lose
64797         with 8-bit delimiters.
64798         * lib/getstr.h: New file.
64799
64800 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64801
64802         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
64803         than 1024, return a memory chunk of least possible size, instead
64804         of size PATH_MAX + 2. In the loop, increment the size proportionally.
64805         Use free/xmalloc instead of xrealloc to avoid copying for very long
64806         paths.
64807
64808 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64809
64810         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
64811         the empty string.
64812
64813 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64814
64815         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
64816         address, not strdup.  Include <stdlib.h> and don't declare free().
64817
64818 2000-06-19  Jim Meyering  <meyering@lucent.com>
64819
64820         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
64821
64822 2000-06-18  Jim Meyering  <meyering@lucent.com>
64823
64824         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
64825
64826         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
64827         `checking whether...' message to be consistent with that of the
64828         lstat test.
64829
64830 2000-06-18  Jim Meyering  <meyering@lucent.com>
64831
64832         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
64833         Besides, these days every porting target provides a mkdir function.
64834
64835         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
64836         needed. (this snippet comes from src/system.h).
64837
64838 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
64839
64840         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
64841
64842 2000-06-15  Paul Eggert  <eggert@twinsun.com>
64843
64844         * lib/human.c (adjust_value): New function.
64845         (human_readable_inexact): Apply rounding style even when
64846         printing approximate values.
64847
64848 2000-06-14  Paul Eggert  <eggert@twinsun.com>
64849
64850         * lib/human.c (human_readable_inexact): Allow an input block
64851         size that is not a multiple of the output block size, and vice versa.
64852         Reported by Piergiorgio Sartor.
64853
64854 2000-06-14  Paul Eggert  <eggert@twinsun.com>
64855
64856         * lib/getdate.y (get_date): Apply relative times after time
64857         zone indicator, not before.  Reported by Todd A. Jacobs.
64858
64859 2000-06-13  Jim Meyering  <meyering@lucent.com>
64860
64861         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
64862
64863         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
64864
64865 2000-06-12  Paul Eggert  <eggert@twinsun.com>
64866
64867         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
64868
64869 2000-06-12  Jim Meyering  <meyering@lucent.com>
64870
64871         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
64872         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
64873         optional argument.
64874         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
64875         the optional argument, `lib'.
64876
64877 2000-06-08  Jim Meyering  <meyering@lucent.com>
64878
64879         * m4/largefile.m4: Remove file (now that it's part of autoconf).
64880
64881 2000-06-04  Paul Eggert  <eggert@twinsun.com>
64882
64883         Rewrite largefile configuration so that we don't need to run
64884         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
64885         AC_CANONICAL_HOST in configure.in -- jmm]
64886
64887         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
64888         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
64889         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
64890         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
64891         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
64892         All uses changed.
64893         Instead of inspecting the output of getconf, try to compile the
64894         test program without and with the macro definition.
64895         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
64896         for getconf.  Instead, check for the needed flags by compiling
64897         test programs.
64898
64899 2000-06-04  Paul Eggert  <eggert@twinsun.com>
64900
64901         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
64902
64903 2000-06-04  Jim Meyering  <meyering@lucent.com>
64904
64905         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
64906         SunOS 4.1.4 for which gid_t is an unsigned type.
64907
64908 2000-06-03  Jim Meyering  <meyering@lucent.com>
64909
64910         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
64911         now that autoconf requires that.
64912
64913         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
64914         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
64915         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
64916
64917 2000-06-03  Jim Meyering  <meyering@lucent.com>
64918
64919         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
64920
64921 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
64922
64923         * m4/glibc21.m4: New file.
64924         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
64925
64926 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
64927
64928         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
64929         newer, don't install charset.alias.
64930         * lib/config.charset: Change the Linux/glibc rules so they become empty
64931         on glibc-2.1 or newer.
64932
64933 2000-06-02  Jim Meyering  <meyering@lucent.com>
64934
64935         * lib/mountlist.c: Back out last change.  Instead, do this...
64936         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
64937         me_dummy member using the same `ignore'-testing code.
64938         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
64939         fs_type strings.
64940         From Mark D. Roth.
64941
64942 2000-05-29  Jim Meyering  <meyering@lucent.com>
64943
64944         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
64945         mounts with the `ignore' attribute.  Based on a patch from
64946         Mark D. Roth.
64947
64948 2000-05-28  Jim Meyering  <meyering@lucent.com>
64949
64950         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
64951         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64952         * m4/stat.m4: Likewise.
64953         * m4/lstat.m4: Likewise.
64954         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
64955
64956         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
64957         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
64958
64959 2000-05-26  Jim Meyering  <meyering@lucent.com>
64960
64961         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
64962
64963 2000-05-24  Jim Meyering  <meyering@lucent.com>
64964
64965         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
64966         autoconf requires that.
64967         * m4/lib-check.m4: Likewise.
64968         * m4/jm-macros.m4: Likewise.
64969         * m4/strftime.m4: Likewise.
64970
64971         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
64972         AC_CHECK_DECLS, now that autoconf requires that.
64973
64974 2000-05-22  Jim Meyering  <meyering@lucent.com>
64975
64976         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64977         * m4/lstat.m4: Likewise.
64978
64979 2000-05-22  Jim Meyering  <meyering@lucent.com>
64980
64981         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
64982
64983 2000-05-20  Jim Meyering  <meyering@lucent.com>
64984
64985         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
64986         (jm_PREREQ): Use it.
64987
64988 2000-05-18  Jim Meyering  <meyering@lucent.com>
64989
64990         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
64991         back, too, since it may have been modified by allocate_entry.
64992         (hash_delete): Rewrite to use neither the assignment operator
64993         nor the comma operator in an if-expression.
64994
64995 2000-05-15  Paul Eggert  <eggert@twinsun.com>
64996
64997         * lib/closeout.c:
64998         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
64999         Remove; no longer needed.
65000         "quotearg.h": Add include.
65001         (file_name): Do not bother to explicitly initialize to NULL; it's less
65002         efficient on some hosts.
65003         (close_stdout_status): Remove test as to whether stdout was already
65004         closed; it breaks for the case "echo x | sort >&-".
65005         Quote file name colons.
65006         Do not assume that _("write error") lacks format strings.
65007
65008 2000-05-15  Jim Meyering  <meyering@lucent.com>
65009
65010         * lib/version-etc.c (version_etc_copyright): Update the copyright
65011         string used in all --version output.
65012
65013 2000-05-14  Jim Meyering  <meyering@lucent.com>
65014
65015         * lib/closeout.c (close_stdout_set_file_name): New function.
65016         (close_stdout_status): Use new file-scoped global.
65017         Return right away if fstat says the stdout file descriptor is invalid.
65018         * lib/closeout.h (close_stdout_set_file_name): Declare.
65019
65020 2000-05-10  Jim Meyering  <meyering@lucent.com>
65021
65022         * lib/closeout.c [default_exit_status]: New file-scoped variable.
65023         (close_stdout_set_status): New function.
65024         * lib/closeout.h (close_stdout_set_status): Declare.
65025
65026 2000-05-09  Jim Meyering  <meyering@lucent.com>
65027
65028         * m4/gettext.m4: Rename this...
65029         * m4/libintl.m4: ...to this.
65030
65031 2000-05-08  Jim Meyering  <meyering@lucent.com>
65032
65033         * lib/long-options.c: Don't include closeout.h.
65034         (parse_long_options): Don't call close_stdout for --version.
65035
65036 2000-05-06  Paul Eggert  <eggert@twinsun.com>
65037
65038         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
65039         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
65040         2.1.3 bug.  This avoids a clash when files like regex.c define
65041         _GNU_SOURCE.
65042
65043 2000-05-06  Jim Meyering  <meyering@lucent.com>
65044
65045         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
65046         (AC_REPLACE_FUNCS): Add strnlen.
65047
65048         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
65049         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
65050
65051         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
65052         AC_SEARCH_LIBS call for nanosleep.
65053         (LIB_NANOSLEEP): Set and AC_SUBST.
65054
65055 2000-05-06  Jim Meyering  <meyering@lucent.com>
65056
65057         * lib/strnlen.c: Undefine __strnlen and strnlen.
65058         [!weak_alias]: Define __strnlen to strnlen.
65059
65060         * lib/atexit.c: New file, from libiberty.
65061
65062 2000-05-06  Jim Meyering  <meyering@lucent.com>
65063
65064         * lib/closeout.c (close_stdout_status): Also check for errors on the
65065         stderr stream.
65066
65067 2000-05-05  Jim Meyering  <meyering@lucent.com>
65068
65069         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
65070         AC_SEARCH_LIBS call for clock_gettime.
65071         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
65072
65073         * m4/search-libs.m4: Update from autoconf.
65074
65075         su doesn't work on Solaris 2.6.
65076         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
65077         <shadow.h>.  Reported by Dragos Harabor.
65078
65079 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
65080
65081         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
65082         memcpy instead of xmalloc, xrealloc, path_concat.
65083         (locale_charset): Treat empty environment variables as absent.
65084         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
65085
65086 2000-05-04  Jim Meyering  <meyering@lucent.com>
65087
65088         * lib/getopt.c: Update from glibc.
65089         * lib/obstack.c: Likewise.
65090         * lib/obstack.h: Likewise.
65091         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
65092         file
65093
65094         * lib/regex.h: Likewise.
65095         * lib/strndup.c: Likewise.
65096         * lib/strnlen.c: New file, from glibc.
65097
65098 2000-05-03  Jim Meyering  <meyering@lucent.com>
65099
65100         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
65101
65102 2000-05-02  Paul Eggert  <eggert@twinsun.com>
65103
65104         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
65105         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
65106         compile-time test, rather than inspecting host and OS, to
65107         decide whether to define _LARGEFILE_SOURCE.
65108
65109 2000-05-01  Jim Meyering  <meyering@lucent.com>
65110
65111         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
65112
65113         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
65114         Based on a patch from Bruno Haible.
65115
65116 2000-05-01  Jim Meyering  <meyering@lucent.com>
65117
65118         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
65119
65120 2000-04-29  Jim Meyering  <meyering@lucent.com>
65121
65122         * lib/path-concat.c: Declare strdup only if it's not defined.
65123         * lib/canon-host.c: Likewise.
65124
65125 2000-04-28  Jim Meyering  <meyering@lucent.com>
65126
65127         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
65128         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
65129         is included first, then limits.h is included by locale.h by libintl.h.
65130         From John David Anglin.
65131
65132 2000-04-25  Jim Meyering  <meyering@lucent.com>
65133
65134         * lib/makepath.c (S_IRWXUGO): Define.
65135         (make_path): Always perform explicit chmod if MODE specifies any
65136         of the `special' permission bits.  Prompted by a bug report against
65137         install from Mate Wierdl and Joost van Baal.
65138
65139 2000-04-18  Jim Meyering  <meyering@lucent.com>
65140
65141         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
65142         (jm_PREREQ): Use it.
65143
65144 2000-04-18  Jim Meyering  <meyering@lucent.com>
65145
65146         * lib/README: New file.
65147
65148         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
65149         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
65150
65151 2000-04-17  Jim Meyering  <meyering@lucent.com>
65152
65153         Get it right :-)
65154         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
65155         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
65156         Suggestion from Akim Demaille.
65157
65158 2000-04-17  Jim Meyering  <meyering@lucent.com>
65159
65160         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
65161         the definition of it to rpl_strftime also defined-away the system's
65162         declaration.
65163
65164 2000-04-15  Jim Meyering  <meyering@lucent.com>
65165
65166         Use `C' to denote so-called `contiguous' files, the same way
65167         that tar does.
65168         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
65169         (ftypelet): Use S_ISCTG.
65170         From Michael Deutschmann.
65171
65172 2000-04-14  Jim Meyering  <meyering@lucent.com>
65173
65174         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
65175         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
65176         clobbered.
65177
65178 2000-04-14  Jim Meyering  <meyering@lucent.com>
65179
65180         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
65181
65182 2000-04-13  Jim Meyering  <meyering@lucent.com>
65183
65184         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
65185         AH_VERBATIM to insert required #ifndef into config.h.in.
65186         Suggestion from Akim Demaille.
65187
65188 2000-04-12  Jim Meyering  <meyering@lucent.com>
65189
65190         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
65191         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
65192         Christian Krackowizer.
65193
65194         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
65195         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
65196         (AC_SYS_LARGEFILE): Require.
65197         (AM_C_PROTOTYPES): Require.
65198
65199 2000-04-08  Jim Meyering  <meyering@lucent.com>
65200
65201         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
65202         names don't conflict.  Reported by Eli Zaretskii.
65203
65204 2000-04-07  Jim Meyering  <meyering@lucent.com>
65205
65206         * lib/putenv.c: Move inclusion of errno.h so it follows that of
65207         sys/types.h, to work around system header problems on AIX 3.2.5.
65208         From Bruno Haible.
65209
65210 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
65211
65212         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
65213         bug.  Deal with the different error behavior of Irix iconv.
65214
65215 2000-04-05  Paul Eggert  <eggert@twinsun.com>
65216
65217         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
65218         IRIX if the installer said otherwise.
65219
65220 2000-04-05  Jim Meyering  <meyering@lucent.com>
65221
65222         Portability tweaks required for ultrix4.3.
65223         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
65224         (jm_CHECK_DECLS): Add getutent to the list of functions.
65225         (_jm_DECL_HEADERS): Add utmpx.h.
65226         From John David Anglin.
65227
65228         * m4/strftime.m4: Back out the 2000-04-02 change.
65229         Instead of that change, simply undefine putenv in the test program.
65230
65231 2000-04-05  Jim Meyering  <meyering@lucent.com>
65232
65233         Portability tweaks required for ultrix4.3.
65234         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
65235         getutent.
65236         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
65237         * lib/canon-host.c: Declare strdup.
65238         * lib/path-concat.c: Likewise.
65239         From John David Anglin.
65240
65241 2000-04-04  Jim Meyering  <meyering@lucent.com>
65242
65243         Be more DOS 8.3-friendly.
65244         * lib/ref-add.sin: Renamed from ref-add.sed.in.
65245         * lib/ref-del.sin: Renamed from ref-del.sed.in.
65246         * lib/Makefile.am: Reflect renaming.
65247         Reported by Eli Zaretskii.
65248
65249         Use a temporary file name that won't clash with `charset.alias'
65250         in the DOS 8.3 name space.
65251         * lib/Makefile.am (charset_tmp): Define.
65252         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
65253         (uninstall-local): Likewise.
65254         Reported by Eli Zaretskii.
65255
65256 2000-04-03  Jim Meyering  <meyering@lucent.com>
65257
65258         * m4/gettext.m4: Fix typo in comment.
65259
65260         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
65261         textutils/configure.in).  Suggestion from Paul Eggert.
65262         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
65263
65264 2000-04-02  Paul Eggert  <eggert@twinsun.com>
65265
65266         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
65267         variable in the shell rather than using putenv, which isn't
65268         portable.  This avoids the configure-time inter-test dependency
65269         on the potentially-renamed putenv function.
65270
65271 2000-03-30  Paul Eggert  <eggert@twinsun.com>
65272
65273         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
65274         before checking struct stat.st_blksize, so that
65275         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
65276
65277 2000-03-29  Paul Eggert  <eggert@twinsun.com>
65278
65279         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
65280         since strftime.c uses HAVE_STRFTIME to decide whether to use
65281         the underlying strftime.
65282
65283 2000-03-29  Paul Eggert  <eggert@twinsun.com>
65284
65285         * lib/time/strftime.c (my_strftime): Make sure we call the system
65286         strftime, not ourselves, when invoking the underlying strftime.
65287
65288 2000-03-24  Jim Meyering  <meyering@lucent.com>
65289
65290         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
65291         (charset_alias): Define.
65292         (install-exec-local): Factor out common code.
65293         (uninstall-local): Split lines longer than 80.
65294         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
65295         (SUFFIXES): Define.
65296         (.sed.in.sed): New rule.  Don't redirect directly to $@.
65297         (CLEANFILES): Add ref-add.sed and ref-del.sed.
65298
65299 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
65300
65301         * lib/config.charset: Output a line containing "Packages using this
65302         file".
65303         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
65304         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
65305         ref-del.sed): New rules.
65306
65307 2000-03-17  Jim Meyering  <meyering@lucent.com>
65308
65309         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
65310         Otherwise, include <strings.h>
65311
65312 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
65313
65314         * lib/unicodeio.c (utf8_wctomb): New function.
65315         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
65316         format instead of in UCS-4 with platform dependent endianness.
65317
65318 2000-03-10  Jim Meyering  <meyering@lucent.com>
65319
65320         * m4/lib-check.m4: Look for getspnam in -lgen, too.
65321         From Marco Franzen.
65322
65323 2000-03-07  Paul Eggert  <eggert@twinsun.com>
65324
65325         * lib/savedir.c (savedir): Work even if directory size is
65326         negative; this can happen with some screwy NFS configurations.
65327
65328 2000-03-06  Jim Meyering  <meyering@lucent.com>
65329
65330         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
65331         if it's NULL (because we ran out of memory).  From Bruno Haible.
65332
65333 2000-03-05  Jim Meyering  <meyering@lucent.com>
65334
65335         * lib/localcharset.c ("path-concat.h"): Include.
65336         (get_charset_aliases): Use path_concat instead of ANSI string
65337         concatenation.
65338
65339         * lib/unicodeio.h (PARAMS): Define.
65340         Use it to guard prototype.
65341
65342 2000-03-04  Jim Meyering  <meyering@lucent.com>
65343
65344         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
65345         for lib/localcharset.c.
65346
65347 2000-03-04  Jim Meyering  <meyering@lucent.com>
65348
65349         * lib/Makefile.am (install-exec-local): Create $(libdir) before
65350         installing into it.
65351         (uninstall-local): Uncomment this rule so `make distcheck' works
65352         once again.
65353
65354         * lib/unicodeio.c (<errno.h>): Include it.
65355         (errno): Declare if not defined.
65356
65357         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
65358
65359         * lib/config.charset: New version, incorporating remarks from a linux
65360         i18n mailing list.  From Bruno Haible.
65361
65362 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
65363
65364         * m4/codeset.m4: New file.
65365         * m4/iconv.m4: New file.
65366         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
65367
65368 2000-03-03  Jim Meyering  <meyering@lucent.com>
65369
65370         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
65371
65372 2000-03-02  Jim Meyering  <meyering@lucent.com>
65373
65374         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
65375         the messages come out on separate lines.
65376
65377         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
65378         rather than jm_CHECK_DECLARATIONS.
65379         * m4/decl.m4: Remove now-unused file.
65380
65381         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
65382         geteuid.
65383
65384 2000-03-02  Jim Meyering  <meyering@lucent.com>
65385
65386         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
65387
65388 2000-03-01  Jim Meyering  <meyering@lucent.com>
65389
65390         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
65391         * lib/unicodeio.c: Likewise.
65392
65393 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
65394
65395         * lib/config.charset: New file.
65396         * lib/localcharset.c: New file.
65397         * lib/unicodeio.h, lib/unicodeio.c: New files.
65398         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
65399         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
65400         (noinst_HEADERS): Add unicodeio.h.
65401         (all-local, install-exec-local, charset.alias): New targets.
65402
65403 2000-02-28  Paul Eggert  <eggert@twinsun.com>
65404
65405         * lib/quotearg.c (ALERT_CHAR): New macro.
65406         (quotearg_buffer_restyled): Use it.
65407
65408 2000-02-27  Jim Meyering  <meyering@lucent.com>
65409
65410         * m4/check-decl.m4: Add getenv to the list.
65411
65412 2000-02-27  Jim Meyering  <meyering@lucent.com>
65413
65414         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
65415         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
65416
65417         * lib/backupfile.c: Guard inclusion of stdlib.h with
65418         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
65419         Declare malloc if needed.
65420
65421         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
65422         `#ifndef HAVE_DECL..'
65423         now that autoconf always defines the HAVE_DECL_ symbols.
65424         * lib/human.c: Likewise.
65425         * lib/same.c: Likewise.
65426         * lib/strtoumax.c: Likewise.
65427
65428         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
65429         declaration check was not run.
65430         * lib/hash.c: Likewise.
65431         * lib/human.c: Likewise.
65432         * lib/same.c: Likewise.
65433         * lib/strtoumax.c: Likewise.
65434
65435         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
65436         `.', then first look up the entire `.'-containing string as a login
65437         name.
65438
65439 2000-02-23  Jim Meyering  <meyering@lucent.com>
65440
65441         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
65442         in place of my hack.
65443
65444 2000-02-18  Paul Eggert  <eggert@twinsun.com>
65445
65446         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
65447         (textint): New typedef.
65448         (parser_control): Member year changed from int to textint.
65449         All uses changed.
65450         (YYSTYPE): Removed; replaced by %union with int and textint members.
65451         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
65452         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
65453         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
65454         (tSNUMBER, tUNUMBER): Now of type <textintval>.
65455         (date, number, to_year): Use width of number in digits, not its value,
65456         to determine whether it's a 2-digit year, or a 2-digit time.
65457         (yylex): Store number of digits of numeric tokens.
65458         Reported by John Kendall.
65459
65460         (parser_control): Changed from struct parser_control to typedef (for
65461         consistency).  All uses changed.
65462
65463         (tID): Removed; not used.
65464         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
65465
65466 2000-02-14  Paul Eggert  <eggert@twinsun.com>
65467
65468         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
65469         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
65470
65471 2000-02-12  Jim Meyering  <meyering@lucent.com>
65472
65473         * lib/userspec.c (ISDIGIT): Define it.
65474         (isdigit): Remove definition.
65475         (is_number): Use ISDIGIT, not isdigit.
65476         <libintl.h>: Include.
65477         (_ and N_): Define.
65478         (parse_user_spec): Mark translatable strings.
65479
65480 2000-02-10  Jim Meyering  <meyering@lucent.com>
65481
65482         With these changes, nanosleep.[ch] are finally enough like the other
65483         lib/* replacement files to compile on a few more losing systems.
65484
65485         * lib/nanosleep.h: Don't include config.h.
65486         Remove prototype from declaration of nanosleep.
65487         (PARAMS): Remove now-unneeded definition.
65488         * lib/nanosleep.c: #undef nanosleep.
65489         (rpl_nanosleep): Rename from nanosleep.
65490
65491 2000-02-10  Jim Meyering  <meyering@lucent.com>
65492
65493         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
65494         gnu_nanosleep to rpl_nanosleep.
65495
65496 2000-02-09  Jim Meyering  <meyering@lucent.com>
65497
65498         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
65499         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
65500
65501 2000-02-08  Akim Demaille  <akim@epita.fr>
65502
65503         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
65504         `[' and `]' and remove uses of `changequote'.
65505         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
65506         (AC_SYS_LARGEFILE): Likewise.
65507         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
65508         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
65509         of changequote.
65510         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
65511         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
65512         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
65513         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
65514
65515 2000-02-05  Jim Meyering  <meyering@lucent.com>
65516
65517         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
65518         Remove explicit use of AC_HEADER_TIME.  It is required by
65519         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
65520         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
65521         in autoconf whereby the expansion of the latter ended up preceding
65522         the expansion of its prerequisite, AC_HEADER_TIME.
65523         Reported by Volker Borchert.
65524
65525 2000-02-03  Jim Meyering  <meyering@lucent.com>
65526
65527         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
65528
65529 2000-02-03  Jim Meyering  <meyering@lucent.com>
65530
65531         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
65532         rather than with `#if HAVE_UTMPNAME'.
65533
65534 2000-02-02  Jim Meyering  <meyering@lucent.com>
65535
65536         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
65537         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
65538         Reported by Eli Zaretskii.
65539
65540 2000-02-01  Jim Meyering  <meyering@lucent.com>
65541
65542         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
65543
65544 2000-01-31  Jim Meyering  <meyering@lucent.com>
65545
65546         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
65547         functions.  Add the time.h and sys/time.h headers along with the
65548         AC_REQUIRE'ment of AC_HEADER_TIME.
65549
65550 2000-01-31  Jim Meyering  <meyering@lucent.com>
65551
65552         * lib/nanosleep.h (nanosleep): Guard declaration with
65553         `#if ! HAVE_DECL_NANOSLEEP'.
65554         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
65555         the declaration in that vendor's sys/timers.h.
65556         Reported by Christian Krackowizer.
65557
65558         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
65559         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
65560         (ISPRINT): Likewise.
65561         Reported by Tom Tromey.
65562
65563 2000-01-30  Jim Meyering  <meyering@lucent.com>
65564
65565         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
65566
65567         * m4/prereq.m4 (utmp_includes): Define.
65568         Check for ut_user and ut_name members in both struct utmpx
65569         and struct utmp.
65570
65571 2000-01-30  Jim Meyering  <meyering@lucent.com>
65572
65573         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
65574         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
65575         header files where only utmpx.ut_user is declared.
65576
65577         * lib/readutmp.h (UT_USER): Define.
65578
65579 2000-01-29  Jim Meyering  <meyering@lucent.com>
65580
65581         * m4/lib-check.m4: New file containing library-related checks from
65582         fileutils and sh-utils (textutils had none).
65583
65584 2000-01-28  Jim Meyering  <meyering@lucent.com>
65585
65586         * m4/perl.m4: Change format of warning message to look more like that
65587         from the missing script.  Suggestion from François Pinard.
65588
65589 2000-01-25  Jim Meyering  <meyering@lucent.com>
65590
65591         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
65592         well as time.h in the compile check.
65593         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
65594         Fix typo in cross-compiling case: s/yes/no/.
65595
65596 2000-01-23  Jim Meyering  <meyering@lucent.com>
65597
65598         * m4/jm-macros.m4: Move df-related tests here from
65599         fileutils/configure.in
65600
65601         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
65602         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
65603
65604         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
65605         s/space/ac_fsusage_space/.
65606         (jm_FILE_SYSTEM_USAGE): Take two parameters.
65607
65608         * m4/ftruncate.m4: New file (derived from part of
65609         fileutils/configure.in).
65610         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
65611         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
65612
65613         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
65614         AC_SUBST these here, rather than just in sh-util/configure.in, so
65615         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
65616         all the same.
65617         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
65618         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
65619         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
65620         (AC_SUBST(POW_LIBM)): Likewise.
65621         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
65622
65623 2000-01-23  Jim Meyering  <meyering@lucent.com>
65624
65625         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
65626         obstack.c.
65627
65628 2000-01-22  Jim Meyering  <meyering@lucent.com>
65629
65630         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
65631
65632         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
65633
65634         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
65635         configure.in
65636         (AC_CHECK_HEADERS): Likewise for sh-utils.
65637         (AC_CHECK_HEADERS): Likewise for textutils.
65638         Merge the three lists of headers.
65639
65640         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
65641         from fileutils' configure.in.
65642
65643         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
65644         code. Moved tests into their own function (_jm_DECL_HEADERS) in
65645         check-decl.m4.
65646
65647         * m4/check-decl.m4: Use #if rather than #ifdef.
65648         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
65649         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
65650         (_jm_DECL_HEADERS): Define new function.
65651         (jm_CHECK_DECLARATIONS): Require it.
65652
65653 2000-01-22  Jim Meyering  <meyering@lucent.com>
65654
65655         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
65656         [! HAVE_DECL_STRTOULL]: Declare strtoull.
65657         Required for some AIX systems.  Reported by Christian Krackowizer.
65658         [TESTING] (main): New function.
65659
65660         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
65661         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
65662         letters.
65663
65664         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
65665         iswprint.
65666
65667         * lib/strverscmp.c (ISDIGIT): Define.
65668         (strverscmp): Use ISDIGIT, not isdigit.
65669
65670 2000-01-19  Jim Meyering  <meyering@lucent.com>
65671
65672         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
65673         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
65674         defines `struct timespec' in <sys/time.h>
65675
65676         * m4/c-bs-a.m4: Remove uses of changequote altogether.
65677         Thanks to Akim for explaining.
65678
65679 2000-01-17  Paul Eggert  <eggert@twinsun.com>
65680
65681         * lib/nanosleep.c (nanosleep):
65682         Don't use SA_INTERRUPT to decide whether to call sigaction, as
65683         POSIX.1 doesn't require SA_INTERRUPT and some systems
65684         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
65685         it's been part of POSIX.1 since day 1 (in 1988).
65686
65687 2000-01-17  Jim Meyering  <meyering@lucent.com>
65688
65689         * lib/interlock: Remove unused file.  Reported by François Pinard.
65690
65691 2000-01-16  Paul Eggert  <eggert@twinsun.com>
65692
65693         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
65694         alert, backslash, formfeed, and vertical tab unnecessarily in
65695         shell quoting style.
65696
65697 2000-01-16  Jim Meyering  <meyering@lucent.com>
65698
65699         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
65700         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
65701         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
65702         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
65703
65704 2000-01-16  Jim Meyering  <meyering@lucent.com>
65705
65706         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
65707         because the latter didn't work.
65708
65709 2000-01-15  Jim Meyering  <meyering@lucent.com>
65710
65711         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
65712         (AC_REPLACE_FUNCS): Add memcpy and memset.
65713         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
65714         Add strpbrk.
65715         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
65716
65717 2000-01-12  Jim Meyering  <meyering@lucent.com>
65718
65719         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
65720         (jm_PREREQ): Use it.
65721         (jm_PREREQ_READUTMP): New macro.
65722         (jm_PREREQ): Use it.
65723
65724 2000-01-11  Paul Eggert  <eggert@twinsun.com>
65725
65726         Quote multibyte characters correctly.
65727         * m4/c-bs-a.m4: New file.
65728         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
65729         (jm_PREREQ): Use it.
65730
65731 2000-01-11  Paul Eggert  <eggert@twinsun.com>
65732
65733         * m4/uintmax_t.m4: Port to autoconf 2.13.
65734
65735 2000-01-08  Jim Meyering  <meyering@ascend.com>
65736
65737         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
65738         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
65739
65740 2000-01-04  Jim Meyering  <meyering@ascend.com>
65741
65742         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
65743         jm_STRUCT_DIRENT_D_TYPE.
65744         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
65745         jm_STRUCT_DIRENT_D_INO.
65746         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
65747         jm_STRUCT_UTIMBUF.
65748         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
65749         renamings.
65750         * m4/utime.m4: Likewise.
65751
65752         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
65753         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
65754
65755 2000-01-03  Paul Eggert  <eggert@twinsun.com>
65756
65757         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
65758         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
65759
65760 2000-01-02  Jim Meyering  <meyering@ascend.com>
65761
65762         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
65763         remember if this is necessary.
65764
65765 1999-12-26  Jim Meyering  <meyering@ascend.com>
65766
65767         * m4/jm-macros.m4: Use it here.
65768         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
65769
65770 1999-12-23  Jim Meyering  <meyering@ascend.com>
65771
65772         * m4/jm-macros.m4: Check for clock_gettime (moved from
65773         fileutils/configure.in)
65774         Check for gettimeofday.
65775
65776 1999-12-20  Jim Meyering  <meyering@ascend.com>
65777
65778         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
65779         autoconf-2.14a-1999-12-20.
65780
65781 1999-12-19  Jim Meyering  <meyering@ascend.com>
65782
65783         * m4/lstat-slash.m4: New file.
65784         * m4/jm-macros.m4: Use the new macro:
65785         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
65786
65787 1999-12-07  Jim Meyering  <meyering@ascend.com>
65788
65789         * m4/perl.m4: Require that File::Compare be available, too.
65790         Too many systems seem to lack it.
65791
65792         * m4/strftime.m4: Add checks for most of the cpp macros tested in
65793         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
65794
65795 1999-11-18  Paul Eggert  <eggert@twinsun.com>
65796
65797         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
65798         problem with the QNX 4.25 shell, which doesn't propagate exit
65799         status of failed commands inside shell assignments.
65800
65801 1999-11-17  Jim Meyering  <meyering@ascend.com>
65802
65803         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
65804
65805 1999-11-07  Jim Meyering  <meyering@ascend.com>
65806
65807         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
65808
65809 1999-11-06  Jim Meyering  <meyering@ascend.com>
65810
65811         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
65812         * m4/jm-macros.m4 (jm_MACROS): Use it here.
65813
65814 1999-11-05  Jim Meyering  <meyering@ascend.com>
65815
65816         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
65817         configure.in of textutils, fileutils, and sh-utils into this one
65818         (shared between those packages) file.
65819         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
65820         AC_STRUCT_ST_BLKSIZE.
65821
65822 1999-11-03  Jim Meyering  <meyering@ascend.com>
65823
65824         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
65825         of AC_CHECK_TYPE checks includes unistd.h.
65826         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
65827         Suggestion from Akim Demaille.
65828
65829 1999-10-30  Jim Meyering  <meyering@ascend.com>
65830
65831         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
65832         m4-quoted string.
65833         * m4/ls-mntd-fs.m4: Likewise.
65834         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
65835         * m4/jm-winsz1.m4: Likewise.
65836
65837         * m4/const.m4: Remove file, since the fix made it into the experimental
65838         version of autoconf.
65839         * m4/mktime.m4: Likewise.
65840
65841         * m4/check-type.m4: Remove file, now that the latest version of
65842         AC_CHECK_TYPE takes a third arg to specify additional #includes.
65843
65844         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
65845         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
65846         AC_CHECK_TYPE.
65847
65848 1999-10-04  Jim Meyering  <meyering@ascend.com>
65849
65850         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
65851
65852 1999-09-22  Paul Eggert  <eggert@twinsun.com>
65853
65854         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
65855         2.95.1 bug with HP-UX 10.20.
65856
65857 1999-09-17  Jim Meyering  <meyering@ascend.com>
65858
65859         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
65860         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
65861         due to missing strdup (against sh-utils-2.0).
65862
65863 1999-08-29  Jim Meyering  <meyering@ascend.com>
65864
65865         * m4/jm-macros.m4: Require jm_BISON.
65866         * m4/bison.m4: New file.
65867
65868 1999-08-17  Paul Eggert  <eggert@twinsun.com>
65869
65870         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
65871         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
65872
65873 1999-08-05  Jim Meyering  <meyering@ascend.com>
65874
65875         * m4/getline.m4: Rename test file from conftestdata to conftest.data
65876         to avoid conflicts with `conftest' on 8+3 filesystems.
65877         Suggestion from Eli Zaretskii.
65878
65879 1999-08-04  Jim Meyering  <meyering@ascend.com>
65880
65881         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
65882         fileutils and sh-utils (textutils's getline test was inadequate).
65883         (AM_FUNC_GETLINE): Run this test.
65884         (AC_CHECK_FUNCS): Check for getdelim.
65885         Reported by Bob Proulx.
65886
65887 1999-08-02  Jim Meyering  <meyering@ascend.com>
65888
65889         * m4/jm-macros.m4: Add a comment.
65890
65891 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65892
65893         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
65894         <inttypes.h> defines strtoumax as a macro (and not as a
65895         function).
65896
65897 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65898
65899         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
65900         that we can shift, multiply and divide unsigned long long
65901         values; Ultrix cc can't do it.
65902
65903 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65904
65905         * m4/mktime.m4: New file, which is a preview of what should appear
65906         in the next public autoconf release.
65907
65908 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65909
65910         * m4/lfs.m4: Remove this file.
65911         * m4/largefile.m4: New file.  It contains the old contents of
65912         lfs.m4, except that all names with prefix AC_LFS have been
65913         changed to use the prefix AC_SYS_LARGEFILE instead, to be
65914         compatible with future autoconf versions.  Also, some minor m4
65915         quoting problems have been fixed.
65916
65917 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65918
65919         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
65920         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
65921         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
65922         and simplify the shell code.
65923
65924 1999-08-01  Jim Meyering  <meyering@ascend.com>
65925
65926         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
65927         m4.
65928
65929 1999-07-20  Jim Meyering  <meyering@ascend.com>
65930
65931         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
65932
65933 1999-07-15  Jim Meyering  <meyering@ascend.com>
65934
65935         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
65936
65937 1999-05-22  Jim Meyering  <meyering@ascend.com>
65938
65939         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
65940
65941 1999-05-20  Jim Meyering  <meyering@ascend.com>
65942
65943         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
65944         Add a colon after each `then' in case $4 is empty.
65945
65946 1999-05-16  Jim Meyering  <meyering@ascend.com>
65947
65948         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
65949
65950 1999-05-10  Jim Meyering  <meyering@ascend.com>
65951
65952         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
65953
65954         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
65955         AC_FUNC_MKTIME.
65956
65957 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
65958
65959         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
65960
65961 1999-05-04  Paul Eggert  <eggert@twinsun.com>
65962
65963         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
65964         not CPPFLAGS, so that linking works correctly in IRIX.
65965
65966 1999-04-30  Paul Eggert  <eggert@twinsun.com>
65967
65968         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
65969
65970 1999-04-20  Paul Eggert  <eggert@twinsun.com>
65971
65972         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
65973         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
65974         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
65975         jm_AC_TYPE_UNSIGNED_LONG_LONG.
65976         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
65977
65978         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
65979
65980 1999-04-20  Jim Meyering  <meyering@ascend.com>
65981
65982         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
65983         AC_REPLACE xstroull if necessary.  From Paul Eggert.
65984         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
65985
65986 1999-04-18  Jim Meyering  <meyering@ascend.com>
65987
65988         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
65989         * m4/jm-macros.m4: Use it.
65990
65991 1999-04-06  Jim Meyering  <meyering@ascend.com>
65992
65993         * m4/strftime.m4: Remove test for %f.
65994
65995 1999-03-29  Jim Meyering  <meyering@ascend.com>
65996
65997         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
65998         superset of the AC_TYPE_* checks in the textutils, fileutils,
65999         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
66000         AC_TYPE_PID_T.
66001
66002 1999-03-28  Jim Meyering  <meyering@ascend.com>
66003
66004         * m4/jm-macros.m4: Define GNU_PACKAGE here.
66005         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
66006         replaced e.g., in the *.sh files of the sh-utils.
66007
66008 1999-03-20  Jim Meyering  <meyering@ascend.com>
66009
66010         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
66011         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
66012         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
66013
66014 1999-03-19  Jim Meyering  <meyering@ascend.com>
66015
66016         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
66017
66018 1999-03-12  Jim Meyering  <meyering@ascend.com>
66019
66020         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
66021
66022 1999-03-07  Jim Meyering  <meyering@ascend.com>
66023
66024         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
66025         declared.
66026
66027 1999-02-17  Jim Meyering  <meyering@ascend.com>
66028
66029         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
66030         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
66031
66032 1999-02-07  Jim Meyering  <meyering@ascend.com>
66033
66034         * m4/group-member.m4: New file -- extracted from sh-utils'
66035         configure.in.
66036
66037         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
66038         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
66039
66040 1999-02-06  Jim Meyering  <meyering@ascend.com>
66041
66042         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
66043         * m4/fnmatch.m4: Likewise.
66044         * m4/getgroups.m4: Likewise.
66045         * m4/lstat.m4: Likewise.
66046         * m4/malloc.m4: Likewise.
66047         * m4/putenv.m4: Likewise.
66048         * m4/realloc.m4: Likewise.
66049         * m4/regex.m4: Likewise.
66050         * m4/stat.m4: Likewise.
66051         * m4/strftime.m4: Likewise.
66052         Suggestion from Alain Magloire.
66053
66054         * m4/chown.m4: Use `.$ac_objext', not `.o'.
66055         * m4/fnmatch.m4: Likewise.
66056         * m4/getgroups.m4: Likewise.
66057         * m4/getline.m4: Likewise.
66058         * m4/lstat.m4: Likewise.
66059         * m4/malloc.m4: Likewise.
66060         * m4/memcmp.m4: Likewise.
66061         * m4/putenv.m4: Likewise.
66062         * m4/realloc.m4: Likewise.
66063         * m4/regex.m4: Likewise.
66064         * m4/stat.m4: Likewise.
66065         * m4/strftime.m4: Likewise.
66066         Suggestion from Alain Magloire.
66067
66068         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
66069         an argument.
66070
66071         * m4/regex.m4: Add a run-time Test for proper operation of
66072         re_compile_pattern.
66073
66074 1999-01-31  Jim Meyering  <meyering@ascend.com>
66075
66076         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
66077
66078 1999-01-30  Jim Meyering  <meyering@ascend.com>
66079
66080         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
66081
66082         * m4/jm-mktime.m4: Make this a wrapper around the official
66083         AM_FUNC_MKTIME rather than my private copy, now that the official one
66084         is up to date.
66085         * m4/mktime.m4: Remove file.
66086
66087         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
66088         * m4/uptime.m4: Likewise.
66089         * m4/uintmax_t.m4: Likewise.
66090
66091 1999-01-28  Jim Meyering  <meyering@ascend.com>
66092
66093         * m4/jm-macros.m4: Use jm_AFS.
66094         * m4/afs.m4: New file (from fileutils' configure.in).
66095
66096         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
66097         * m4/chown.m4: Likewise.
66098         * m4/d-ino.m4: Likewise.
66099         * m4/d-type.m4: Likewise.
66100         * m4/fnmatch.m4: Likewise.
66101         * m4/getgroups.m4: Likewise.
66102         * m4/gettext.m4: Likewise.
66103         * m4/jm-mktime.m4: Likewise.
66104         * m4/jm-winsz2.m4: Likewise.
66105         * m4/lcmessage.m4: Likewise.
66106         * m4/ls-mntd-fs.m4: Likewise.
66107         * m4/malloc.m4: Likewise.
66108         * m4/memcmp.m4: Likewise.
66109         * m4/putenv.m4: Likewise.
66110         * m4/realloc.m4: Likewise.
66111         * m4/st_mtim.m4: Likewise.
66112         * m4/strftime.m4: Likewise.
66113
66114 1999-01-16  Jim Meyering  <meyering@ascend.com>
66115
66116         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
66117         (ARGMATCH_DIE_DECL): Define.
66118
66119 1999-01-12  Jim Meyering  <meyering@ascend.com>
66120
66121         * m4/Makefile.am.in: Rewrite to avoid using fmt.
66122         Reported by Lars Hecking.
66123
66124 1999-01-10  Jim Meyering  <meyering@ascend.com>
66125
66126         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
66127         gross kludge.
66128         * m4/inttypes_h.m4: Likewise.
66129         * m4/lstat.m4: Likewise.
66130         * m4/malloc.m4: Likewise.
66131         * m4/readdir.m4: Likewise.
66132         * m4/realloc.m4: Likewise.
66133         * m4/st_dm_mode.m4: Likewise.
66134         * m4/stat.m4: Likewise.
66135         * m4/utimbuf.m4: Likewise.
66136         * m4/utimes.m4: Likewise.
66137
66138         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
66139         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
66140         comments in config.h.in are meaningful.
66141
66142         * m4/jm-macros.m4: Require autoconf-2.13 here.
66143
66144         * m4/regex.m4: By default, don't use the included regex.c on systems
66145         with glibc 2.  Suggestion from Uli Drepper.
66146
66147 1999-01-02  Jim Meyering  <meyering@ascend.com>
66148
66149         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
66150
66151 1998-12-18  Jim Meyering  <meyering@ascend.com>
66152
66153         * m4/Makefile.am.in (Makefile.am): Simplify rule.
66154         Based on a suggestion from Lars Hecking.
66155
66156 1998-11-16  Paul Eggert  <eggert@twinsun.com>
66157
66158         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
66159
66160 1998-11-16  Jim Meyering  <meyering@ascend.com>
66161
66162         * m4/lfs.m4: Double-quote the `uname...` expression.
66163
66164 1998-11-14  Jim Meyering  <meyering@ascend.com>
66165
66166         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
66167         * m4/stat.m4: Likewise.
66168
66169 1998-11-03  Jim Meyering  <meyering@ascend.com>
66170
66171         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
66172         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
66173
66174 1998-10-18  Jim Meyering  <meyering@ascend.com>
66175
66176         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
66177
66178 1998-10-17  Jim Meyering  <meyering@ascend.com>
66179
66180         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
66181         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
66182         calls for those previously hard-coded headers.  Instead, take a new
66183         parameter.
66184         (jm_CHECK_DECLARATIONS): Reflect interface change.
66185         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
66186         (jm_CHECK_DECL_LOCALTIME_R): New macro.
66187
66188         * m4/mktime.m4: Test for spring-forward gap before long-running test.
66189
66190 1998-10-14  Jim Meyering  <meyering@ascend.com>
66191
66192         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
66193         instead of "TZ=America/Vancouver".  From Paul Eggert.
66194
66195 1998-10-11  Jim Meyering  <meyering@ascend.com>
66196
66197         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
66198         This adds a test for a recently added compatibility fix for mktime.c.
66199         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
66200
66201 1998-09-27  Jim Meyering  <meyering@ascend.com>
66202
66203         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
66204
66205         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
66206         ../configure.in, including a change from Gordon Matzigkeit to allow
66207         cross-compiling for the Hurd.
66208
66209         * m4/glibc.m4: New file/macro to test for the GNU C Library
66210         versions 1 and 2.  From Gordon Matzigkeit.
66211         Indent.
66212
66213 1998-09-21  Jim Meyering  <meyering@ascend.com>
66214
66215         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
66216
66217 1998-08-18  Paul Eggert  <eggert@twinsun.com>
66218
66219         Port nanosecond-resolution times to UnixWare 2.1.2 and
66220         pedantic Solaris 2.6.
66221
66222         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
66223         AC_STRUCT_ST_MTIM.
66224         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
66225         Generate name of ns member, instead of just 1 or undef.
66226         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
66227
66228 1998-08-15  Jim Meyering  <meyering@ascend.com>
66229
66230         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
66231         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
66232         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
66233         instead of jm_TYPE_SSIZE_T.
66234
66235 1998-08-12  Jim Meyering  <meyering@ascend.com>
66236
66237         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
66238
66239 1998-08-02  Jim Meyering  <meyering@ascend.com>
66240
66241         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
66242         in acconfig.h manually.
66243
66244 1998-07-31  Paul Eggert  <eggert@twinsun.com>
66245
66246         * m4/st_mtim.m4: New file.
66247
66248 1998-07-28  Jim Meyering  <meyering@ascend.com>
66249
66250         * m4/utimes.m4: Undef stat.
66251
66252 1998-07-25  Jim Meyering  <meyering@ascend.com>
66253
66254         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
66255         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
66256
66257 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
66258
66259         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
66260         uid and gid actually remain unchanged.
66261
66262 1998-07-07  Jim Meyering  <meyering@ascend.com>
66263
66264         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
66265
66266 1998-07-04  Jim Meyering  <meyering@ascend.com>
66267
66268         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
66269         to prove that this macro can be used in packages without regex.c.
66270
66271 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
66272
66273         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
66274         is to be used.
66275
66276 1998-07-03  Jim Meyering  <meyering@ascend.com>
66277
66278         * m4/gettext.m4: Add -lintl if it's found to be necessary.
66279
66280         * m4/gettext.m4: New file -- from gettext-0.10.35.
66281         * m4/lcmessage.m4: Likewise.
66282         * m4/progtest.m4: Likewise.
66283
66284         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
66285         * m4/jm-macros.m4: Require the new macro.
66286
66287 1998-06-29  Jim Meyering  <meyering@ascend.com>
66288
66289         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
66290         for the definition of NGROUPS (used in a system header included
66291         by sys/mount.h).
66292
66293 1998-06-28  Jim Meyering  <meyering@ascend.com>
66294
66295         * m4/ls-mntd-fs.m4: New file.
66296         * m4/fstypename.m4: New file.
66297
66298         * m4/jm-macros.m4: Require the new macro.
66299         * m4/jm-glibc-io.m4: New file.
66300
66301 1998-05-19  Jim Meyering  <meyering@ascend.com>
66302
66303         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
66304         * m4/lchown.m4: New file.
66305
66306         * m4/Makefile.am.in: New file.
66307         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
66308
66309 1998-05-14  Jim Meyering  <meyering@ascend.com>
66310
66311         * m4/Makefile.am (EXTRA_DIST): Add them.
66312         * m4/jm-macros.m4: New file.
66313         * m4/utimbuf.m4: New file.
66314
66315 1998-05-12  Jim Meyering  <meyering@ascend.com>
66316
66317         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
66318
66319 1998-05-11  Jim Meyering  <meyering@ascend.com>
66320
66321         * m4/isc-posix.m4: New file.
66322
66323 1998-05-10  Jim Meyering  <meyering@ascend.com>
66324
66325         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
66326
66327 1998-05-09  Jim Meyering  <meyering@ascend.com>
66328
66329         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
66330         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
66331         with automake.
66332
66333         * m4/ssize_t.m4: New file.
66334         * m4/mktime.m4: Remove file -- the new automake has this now.
66335
66336 1998-04-26  Jim Meyering  <meyering@ascend.com>
66337
66338         * m4/assert.m4: New file.
66339         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
66340
66341 1998-04-05  Jim Meyering  <meyering@ascend.com>
66342
66343         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
66344         (jm_PREREQ): Use it here.
66345
66346 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
66347
66348         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
66349         in acconfig.h.
66350
66351 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
66352
66353         * m4/prereq.m4: New file.
66354         * m4/error.m4: New file.
66355         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
66356
66357 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
66358
66359         * m4/getline.m4: Don't set am_cv_func_working_getline before the
66360         cache-check for the same variable -- that defeated the purpose of
66361         the test; the test program was never run.  This was a problem only
66362         on systems with losing getline functions -- HP-UX 10.20 is one.
66363         Reported by Bjorn Helgaas.
66364
66365 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
66366
66367         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
66368
66369 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
66370
66371         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
66372
66373         * m4/const.m4: New file.  Use an initializer in this declaration
66374         typedef int charset[2]; const charset x;
66375         Reported by Bob Glickstein.
66376
66377 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
66378
66379         * m4/chown.m4: Fix reversed types on -1 args to chown.
66380         From Kaveh Ghazi.
66381
66382 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
66383
66384         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
66385         Add lseek and memchr.
66386
66387         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
66388         T.E.Dickey <dickey@clark.net> said that some older preprocessors
66389         have a 20-character limit on names.
66390
66391 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
66392
66393         * m4/inttypes_h.m4: New file.
66394         * m4/uintmax_t.m4: New file.
66395         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
66396
66397
66398         -----
66399
66400         Local Variables:
66401         coding: utf-8
66402         End:
66403
66404         Copyright (C) 1997-2010 Free Software Foundation, Inc.
66405
66406         Copying and distribution of this file, with or without
66407         modification, are permitted provided the copyright notice
66408         and this notice are preserved.